main.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295
  1. /* =================================== */
  2. /* Basic Style
  3. /* =================================== */
  4. body {
  5. background-color: #fff;
  6. font-family: 'Open Sans', sans-serif;
  7. line-height: 24px;
  8. font-size: 16px;
  9. color: #818181;
  10. }
  11. figure, p, address {
  12. margin: 0;
  13. }
  14. iframe {
  15. border: 0;
  16. }
  17. a {
  18. color: #0aa6bd;
  19. -webkit-transition: all 0.3s ease-out 0s;
  20. -moz-transition: all 0.3s ease-out 0s;
  21. -ms-transition: all 0.3s ease-out 0s;
  22. -o-transition: all 0.3s ease-out 0s;
  23. transition: all 0.3s ease-out 0s;
  24. }
  25. a, a:hover, a:focus, .btn:focus {
  26. text-decoration: none;
  27. outline: none;
  28. }
  29. h1, h2, h3, h4, h5, h6,
  30. .h1, .h2, .h3, .h4, .h5, .h6 {
  31. font-family: 'Open Sans', sans-serif;
  32. color: #252525;
  33. }
  34. p {
  35. font-size: 15px;
  36. }
  37. main > section {
  38. padding: 70px 0;
  39. }
  40. .btn {
  41. border-radius: 0;
  42. border: 0;
  43. position: relative;
  44. text-transform: uppercase;
  45. }
  46. .btn-blue {
  47. background-color: rgba(10, 166, 189, 0.75);
  48. box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
  49. padding: 15px 55px;
  50. color: #fff;
  51. }
  52. .btn-border {
  53. border: 2px solid #fff;
  54. color: #fff;
  55. padding: 12px 35px;
  56. }
  57. .bg-blue {
  58. background-color: #0aa6bd;
  59. }
  60. .logo-img {
  61. width: 120px;
  62. margin-top: -4px;
  63. }
  64. /* 遮罩 */
  65. .zhezhao {
  66. position: fixed;
  67. top: 0;
  68. left: 0;
  69. height: 100%;
  70. width: 100%;
  71. background: #000;
  72. opacity: 0.8;
  73. z-index: 10000;
  74. }
  75. /* 登录弹窗 */
  76. .tishi {
  77. font-size: 12px;
  78. color: #FF6A1A;
  79. position: absolute;
  80. left: 42px;
  81. margin-top: -3px;
  82. }
  83. .tishi img {
  84. margin-top: -4px;
  85. margin-right: 10px;
  86. }
  87. .qiantao,.qiantaodl {
  88. display: none;
  89. position: fixed;
  90. top: 55%;
  91. left: 50%;
  92. z-index: 10;
  93. margin-left: -214px;
  94. margin-top: -219px;
  95. width: 428px;
  96. height: 438px;
  97. }
  98. .qiantaodl {
  99. height: 296px;
  100. margin-top: -148px;
  101. width: 350px;
  102. margin-left: -175px;
  103. }
  104. .box{
  105. width: 430px;
  106. height: 504px;
  107. position: fixed;
  108. background:white;
  109. top: 50%;
  110. left:50%;
  111. margin-left: -215px;
  112. margin-top: -252px;
  113. z-index: 10001;
  114. }
  115. .tc-login {
  116. text-align: center;
  117. color: black;
  118. margin: 24px;
  119. /* margin-top: -20px; */
  120. }
  121. .tc-logoimg {
  122. width: 123px;
  123. height: 53px;
  124. margin-top: 22px;
  125. }
  126. .tc-out {
  127. position: absolute;
  128. top: 24px;
  129. right: 24px;
  130. cursor:pointer;
  131. }
  132. /* .tc-logo {
  133. font-family: PingFangSC-Medium;
  134. font-size: 18px;
  135. color: #007FE6;
  136. letter-spacing: 0.34px;
  137. text-align: center;
  138. margin-top: 38px;
  139. } */
  140. .tc-title {
  141. font-family: PingFangSC-Regular;
  142. font-size: 14px;
  143. color: #999999;
  144. letter-spacing: 0.3px;
  145. text-align: center;
  146. margin-top: 10px;
  147. line-height: 30px;
  148. }
  149. .tc-hrleft {
  150. width: 60px;
  151. display: inline-block;
  152. margin-top: 0;
  153. margin-bottom: 5px;
  154. margin-right: 5px;
  155. }
  156. .tc-hrright {
  157. width: 50px;
  158. display: inline-block;
  159. margin-top: 0;
  160. margin-bottom: 5px;
  161. margin-left: 5px;
  162. }
  163. .tc-phone {
  164. background: rgba(32,53,128,0.01);
  165. border: 1px solid #D8DCE8;
  166. border-radius: 3px;
  167. /* width: 330px; */
  168. height: 40px;
  169. margin: 16px auto;
  170. }
  171. .tc-phonebox {
  172. line-height: 33px;
  173. margin-left: 10px;
  174. text-align: left;
  175. }
  176. .tc-phonecon {
  177. border: 0;
  178. width: 94%;
  179. height: 38px;
  180. }
  181. .tc-phonepwd {
  182. border: 0;
  183. width: 295px;
  184. height: 38px;
  185. }
  186. .tc-login-pwd {
  187. background-image: linear-gradient(-90deg, #007EE5 0%, #05B3FF 100%, #5533FF 100%);
  188. border-radius: 3px;
  189. border: 0;
  190. box-shadow: 0px 16px 22px -12px #05B3FF;
  191. width: 100%;
  192. height: 40px;
  193. margin-bottom: 12px;
  194. color: white;
  195. }
  196. .tc-duanxin {
  197. font-family: PingFangSC-Medium;
  198. font-size: 12px;
  199. color: #0080E6;
  200. letter-spacing: 0.26px;
  201. }
  202. .tc-over {
  203. overflow: hidden;
  204. }
  205. .tc-duanxin a {
  206. text-decoration:underline;
  207. }
  208. .tc-color {
  209. font-family: PingFangSC-Regular;
  210. font-size: 12px;
  211. color: #727272;
  212. letter-spacing: 0.26px;
  213. text-align: center;
  214. }
  215. .tc-weixin {
  216. font-family: PingFangSC-Regular;
  217. font-size: 12px;
  218. color: #999999;
  219. letter-spacing: 0.26px;
  220. }
  221. /* 短信登录 */
  222. .tc-yanzhengma {
  223. border: 0;
  224. height: 38px;
  225. }
  226. .tc-shibiema {
  227. width: 204px;
  228. margin-left: -10px;
  229. }
  230. .tc-huoqu {
  231. background-image: linear-gradient(-90deg, #007EE5 0%, #05B3FF 100%, #5533FF 100%);
  232. border-radius: 3px;
  233. border: 0;
  234. height: 40px;
  235. width: 115px;
  236. color: white;
  237. }
  238. /* 新注册 */
  239. .tc-yanzhengimg {
  240. width: 90px;
  241. height: 40px;
  242. margin-left: 10px;
  243. border: #0080E6 1px solid;
  244. }
  245. /* 11/12注册页面 ..........................................*/
  246. .login,.profile {
  247. color: white;
  248. font-size: 16px;
  249. /* font-weight: 600; */
  250. }
  251. .login {
  252. margin-top: 12px;
  253. }
  254. .profile .user-info {
  255. margin: 0 15px;
  256. }
  257. .login img,.profile img {
  258. width: 20px;
  259. margin-right: 5px;
  260. }
  261. .login > span:hover,.profile > span:hover{
  262. cursor:pointer;
  263. /* color: #0aa6bd; */
  264. }
  265. .my-label {
  266. float: left;
  267. line-height: 40px;
  268. color:#414141;
  269. }
  270. .my-ipt {
  271. width: 100%;
  272. }
  273. .zc-box {
  274. margin: 50px;
  275. }
  276. .xieyi {
  277. color: #999;
  278. float: left;
  279. font-size: 12px;
  280. }
  281. .form-buttom {
  282. float: right;
  283. font-family: PingFangSC-Regular;
  284. font-size: 12px;
  285. color: #727272;
  286. letter-spacing: 0.26px;
  287. }
  288. .form-buttom a{
  289. color: #5533FF;
  290. text-decoration: underline;
  291. }
  292. .back {
  293. background: #6f6f6f;
  294. }
  295. /* 首页内容 ..........................................*/
  296. .my-text {
  297. position: absolute;
  298. top: 76%;
  299. left: 7%;
  300. }
  301. .my-tiyan {
  302. background: #5172DD;
  303. border-radius: 4px;
  304. width: 100px;
  305. height: 36px;
  306. font-family: PingFangSC-Regular;
  307. font-size: 14px;
  308. color: #FFFFFF;
  309. border: 0;
  310. }
  311. /* 特色 .......................................*/
  312. .ts-worp {
  313. width: 100%;
  314. padding: 0;
  315. margin: 0;
  316. margin-top: 100px;
  317. }
  318. .ts-box {
  319. overflow: hidden;
  320. /* margin-top: 50px; */
  321. position: relative;
  322. }
  323. .ts-minimg {
  324. width: 773px;
  325. height: 615px;
  326. position: absolute;
  327. top: -35px;
  328. right: 0;
  329. }
  330. .ts-mintext {
  331. position: absolute;
  332. top: 142px;
  333. right: 240px;
  334. color: white;
  335. }
  336. .ts-mintext p {
  337. font-size: 26px!important;
  338. text-align: left;
  339. margin-bottom: 24px;
  340. }
  341. .ts-textimg {
  342. width: 40px;
  343. margin-left: -40px;
  344. }
  345. .ts-lefttext {
  346. left: 40px;
  347. width: 560px;
  348. }
  349. .ts-textleftimg {
  350. width: 40px;
  351. margin-right: -40px;
  352. }
  353. .ts-lefttext p {
  354. text-align: right;
  355. }
  356. .ts-title {
  357. font-family: PingFangSC-Regular !important;
  358. color: #0D253E !important;
  359. font-size: 24px !important;
  360. margin-bottom: 14px;
  361. font-weight: 600;
  362. }
  363. .left {
  364. float: left;
  365. }
  366. .right {
  367. float: right;
  368. }
  369. .ts-img {
  370. width: 100%;
  371. }
  372. .right-text {
  373. text-align: right;
  374. }
  375. .left-text {
  376. text-align: left;
  377. }
  378. .ts-text {
  379. font-family: PingFangSC-Regular !important;
  380. color: #9EA8B2 !important;
  381. }
  382. /* 功能 .........................................*/
  383. .gn-beijing {
  384. width: 100%;
  385. position: absolute;
  386. top: 247px;
  387. }
  388. .gn-img {
  389. width: 100px;
  390. height: 100px;
  391. border-radius: 50%;
  392. background: #1E88F5;
  393. text-align: center;
  394. line-height: 100px;
  395. margin: 0 auto;
  396. position: relative;
  397. margin-top: 12px;
  398. }
  399. .gn-img img {
  400. width: 50%;
  401. }
  402. .gn-huise {
  403. background: #F4F8FC;
  404. }
  405. .gn-xiaoqiu {
  406. width: 30px;
  407. height: 30px;
  408. border-radius: 50%;
  409. background: #FFCC01;
  410. box-shadow: 0 0 15px 0 rgba(255,204,1,0.40);
  411. position: absolute;
  412. top: 0;
  413. right: 0;
  414. }
  415. .gn-left {
  416. left: 0;
  417. }
  418. .gn-hei>div {
  419. height: 245px;
  420. }
  421. .service-item {
  422. margin-bottom: 60px;
  423. padding:0 14px;
  424. text-align: center;
  425. }
  426. .gn-text {
  427. font-family: PingFangSC-Regular;
  428. font-size: 18px;
  429. color: #0D253E;
  430. font-weight: 600;
  431. margin-top: 12px;
  432. }
  433. .gn-color {
  434. color: #1E88F5;
  435. }
  436. /* 帮助 ........................................*/
  437. .bz-worp {
  438. background: white;
  439. width: 90%;
  440. margin: 0 auto;
  441. padding: 40px;
  442. }
  443. .bz-box {
  444. border: 1px solid #1E88F5;
  445. border-radius: 5px;
  446. border-right: 0;
  447. }
  448. .bz-sskuang {
  449. width: 90%;
  450. float: left;
  451. line-height: 38px;
  452. }
  453. .bz-sousuo {
  454. width: 94%;
  455. margin: 0 -5px;
  456. border: 0;
  457. outline: none;
  458. }
  459. .bz-sousuoimg {
  460. margin: -3px 10px 0 14px;
  461. }
  462. .bz-btn {
  463. background: #1E88F5;
  464. border-radius: 0 5px 5px 0;
  465. width: 10%;
  466. border: 0;
  467. color: white;
  468. height: 40px;
  469. }
  470. .bz-content {
  471. margin-top: 30px;
  472. border: 0;
  473. }
  474. .bz-left {
  475. width: 100%;
  476. overflow: hidden;
  477. }
  478. .bz-ul {
  479. border-bottom: 1px solid #D8D8D8;
  480. overflow: hidden;
  481. margin-left: -40px;
  482. }
  483. .bz-left li {
  484. float: left;
  485. width: 50%;
  486. list-style: none;
  487. text-align: center;
  488. height: 40px;
  489. cursor:pointer;
  490. }
  491. .active {
  492. border-bottom: 5px solid #FFCC01;
  493. }
  494. .bz-right {
  495. width: 100%;
  496. background: white;
  497. }
  498. .bz-yuandian {
  499. background: #FFCC01;
  500. width: 16px;
  501. height: 16px;
  502. border-radius: 50%;
  503. margin: 4px 8px 0 0;
  504. }
  505. .bz-right-conent div {
  506. display: none;
  507. }
  508. .bz-right-conent li {
  509. margin-bottom: 14px;
  510. list-style: none;
  511. overflow: hidden;
  512. margin-left: -40px;
  513. }
  514. .bz-right-conent {
  515. /* margin: 30px; */
  516. }
  517. /* 底部 ...................................*/
  518. /*footer*/
  519. .footer{
  520. width: 100%;
  521. background: #383838;
  522. }
  523. .db-text {
  524. background: white;
  525. color: #000;
  526. }
  527. .footer .container{
  528. margin: 0 auto;
  529. width: 80%;
  530. height: 260px;
  531. overflow: hidden;
  532. text-align: center;
  533. }
  534. .footer-section .link{
  535. overflow: hidden;
  536. float: left;
  537. margin-right: 100px;
  538. }
  539. .footer-section ul{
  540. float: left;
  541. margin-right: 70px;
  542. }
  543. .footer-section ul:last-child {
  544. margin-right: 0;
  545. }
  546. .footer-section ul>li{
  547. list-style: none;
  548. }
  549. .footer-section ul>li span {
  550. display: inline-block;
  551. margin-bottom: 28px;
  552. font-size: 16px;
  553. color: #fff;
  554. }
  555. .footer-section ul>li a{
  556. display: inline-block;
  557. margin-bottom: 10px;
  558. font-size: 12px;
  559. color: #fff;
  560. cursor: pointer;
  561. }
  562. .footer-section ul>li:hover a{
  563. text-decoration: underline ;
  564. color: #e41f2b;
  565. }
  566. .footer-section ul>li:hover a.no-link{
  567. text-decoration: none;
  568. color: #fff;
  569. cursor: default;
  570. }
  571. .footer-section .about{
  572. float: left;
  573. margin-right: 90px;
  574. width: 245px;
  575. text-align: left;
  576. }
  577. .footer-section .about .logo{
  578. margin-bottom: 32px;
  579. }
  580. .footer-section .about .logo img{
  581. width: 156px;
  582. height: 44px;
  583. }
  584. .footer-section .about .time{
  585. margin-bottom: 21px;
  586. font-size: 14px;
  587. color: #fff;
  588. }
  589. .footer-section .qr{
  590. overflow: hidden;
  591. text-align: right;
  592. float: right;
  593. }
  594. .footer-section .qr .qr-top{
  595. overflow: hidden;
  596. }
  597. .footer-section .qr .qr-code{
  598. width: 110px;
  599. font-size: 14px;
  600. color: #fff;
  601. text-align: center;
  602. }
  603. .footer-section .qr .qr-mall{
  604. margin-right: 21px;
  605. }
  606. .footer-section .qr .qr-code img{
  607. width: 100%;
  608. margin-bottom: 18px;
  609. }
  610. .footer-section .qr .qr-bottom{
  611. margin-top: 22px;
  612. line-height: 30px;
  613. text-align: right;
  614. font-size: 13px;
  615. color: #fff;
  616. }
  617. .footer .footer-list{
  618. margin: 55px auto 22px;
  619. }
  620. .friend-link{
  621. height: 100px;
  622. background: #000;
  623. width: 100%;
  624. line-height: 100px;
  625. }
  626. .friend-link ul{
  627. overflow: hidden;
  628. list-style: none ;
  629. width: 80%;
  630. margin: 0 auto;
  631. padding: 0 15px;
  632. }
  633. .friend-link ul li{
  634. float: left;
  635. }
  636. .friend-link ul li span{
  637. font-size: 14px;
  638. color: #FFFFFF;
  639. }
  640. .friend-link ul li a{
  641. display: inline-block;
  642. margin-right: 20px;
  643. font-size: 14px;
  644. color: #FFFFFF;
  645. }
  646. .friend-link ul li a:hover{
  647. text-decoration: underline ;
  648. color: #e41f2b;
  649. }
  650. /* Sweep To Right */
  651. .btn-effect {
  652. vertical-align: middle;
  653. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  654. position: relative;
  655. display: inline-block;
  656. -webkit-transform: translateZ(0);
  657. -moz-transform: translateZ(0);
  658. -ms-transform: translateZ(0);
  659. -o-transform: translateZ(0);
  660. transform: translateZ(0);
  661. -webkit-backface-visibility: hidden;
  662. -moz-backface-visibility: hidden;
  663. backface-visibility: hidden;
  664. -webkit-transition-property: color;
  665. -moz-transition-property: color;
  666. -ms-transition-property: color;
  667. transition-property: color;
  668. -webkit-transition-duration: 0.3s;
  669. -moz-transition-duration: 0.3s;
  670. -ms-transition-duration: 0.3s;
  671. transition-duration: 0.3s;
  672. -moz-osx-font-smoothing: grayscale;
  673. }
  674. .btn-effect:before {
  675. content: "";
  676. position: absolute;
  677. z-index: -1;
  678. top: 0;
  679. left: 0;
  680. right: 0;
  681. bottom: 0;
  682. background: #fff;
  683. -webkit-transform: scaleX(0);
  684. -moz-transform: scaleX(0);
  685. -ms-transform: scaleX(0);
  686. transform: scaleX(0);
  687. -webkit-transform-origin: 0 50%;
  688. -moz-transform-origin: 0 50%;
  689. -ms-transform-origin: 0 50%;
  690. transform-origin: 0 50%;
  691. -webkit-transition-property: transform;
  692. -moz-transition-property: transform;
  693. -ms-transition-property: transform;
  694. transition-property: transform;
  695. -webkit-transition-duration: 0.3s;
  696. -moz-transition-duration: 0.3s;
  697. -ms-transition-duration: 0.3s;
  698. transition-duration: 0.3s;
  699. -webkit-transition-timing-function: ease-out;
  700. -moz-transition-timing-function: ease-out;
  701. -ms-transition-timing-function: ease-out;
  702. transition-timing-function: ease-out;
  703. }
  704. .btn-effect:hover, .btn-effect:focus, .btn-effect:active {
  705. color: rgb(9, 157, 178);
  706. }
  707. .btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
  708. -webkit-transform: scaleX(1);
  709. -moz-transform: scaleX(1);
  710. -ms-transform: scaleX(1);
  711. transform: scaleX(1);
  712. }
  713. .section-title {
  714. /* margin-bottom: 80px; */
  715. }
  716. .section-title.white {
  717. color: #fff;
  718. }
  719. .section-title h2 {
  720. color: #0aa6bd;
  721. font-size: 24px;
  722. font-weight: 700;
  723. line-height: 20px;
  724. margin-bottom: 25px;
  725. padding-bottom: 20px;
  726. position: relative;
  727. text-transform: uppercase;
  728. }
  729. .section-title p {
  730. color: #444;
  731. /* font-style: italic; */
  732. font-size: 13px;
  733. }
  734. .section-title.white p {
  735. color: #fff;
  736. }
  737. .section-title.white h2 {
  738. color: #fff;
  739. }
  740. .section-title h2:after {
  741. position: absolute;
  742. left: 50%;
  743. bottom: 0;
  744. height: 2px;
  745. width: 72px;
  746. margin-left: -36px;
  747. background: #636363;
  748. content: "";
  749. }
  750. .section-title.white h2:after {
  751. background: #fff;
  752. }
  753. .parallax {
  754. background-attachment: fixed;
  755. background-position: center top;
  756. background-repeat: no-repeat;
  757. background-size: cover;
  758. }
  759. /**
  760. /* Preloader
  761. /* ==========================================*/
  762. #preloader {
  763. background-color: #fff;
  764. position: fixed;
  765. width: 100%;
  766. height: 100%;
  767. z-index: 9999;
  768. }
  769. /*Battery*/
  770. .loder-box {
  771. background-color: rgba(0, 0, 0, 0.02);
  772. border-radius: 1px;
  773. height: 100px;
  774. left: 50%;
  775. margin-left: -64px;
  776. margin-top: -50px;
  777. position: absolute;
  778. top: 50%;
  779. width: 128px;
  780. }
  781. .battery{
  782. width: 60px;
  783. height: 25px;
  784. top: 35%;
  785. border: 1px #2E2E2E solid;
  786. border-radius: 2px;
  787. position: relative;
  788. -webkit-animation: charge 5s linear infinite;
  789. -moz-animation: charge 5s linear infinite;
  790. animation: charge 5s linear infinite;
  791. margin: 0 auto;
  792. }
  793. .battery:after {
  794. background-color: #2E2E2E;
  795. border-radius: 0 1px 1px 0;
  796. content: "";
  797. height: 10px;
  798. position: absolute;
  799. right: -5px;
  800. top: 7px;
  801. width: 3px;
  802. }
  803. @-webkit-keyframes charge{
  804. 0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
  805. 100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
  806. }
  807. @-moz-keyframes charge{
  808. 0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
  809. 100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
  810. }
  811. @keyframes charge{
  812. 0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
  813. 100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
  814. }
  815. /**
  816. /* Header
  817. /* ==========================================*/
  818. #navigation {
  819. -webkit-transition: all 0.8s ease 0s;
  820. -moz-transition: all 0.8s ease 0s;
  821. -ms-transition: all 0.8s ease 0s;
  822. -o-transition: all 0.8s ease 0s;
  823. transition: all 0.8s ease 0s;
  824. background-color: rgba(0, 0, 0, 0.77);
  825. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  826. /* padding: 5px 0; */
  827. }
  828. #navigation.animated-header {
  829. padding: 10px 0;
  830. }
  831. h1.navbar-brand {
  832. font-size: 20px;
  833. font-weight: 700;
  834. margin-top: -12px;
  835. text-transform: uppercase;
  836. }
  837. .navbar-inverse .navbar-nav > li > a {
  838. color: #fff;
  839. font-size: 16px;
  840. text-transform: uppercase;
  841. /* font-weight: bold; */
  842. }
  843. .menu {
  844. }
  845. .menu li a {
  846. display: inline-block;
  847. }
  848. .menu li a span {
  849. }
  850. .menu li a span:before {
  851. content: "";
  852. position: absolute;
  853. width: 100%;
  854. height: 2px;
  855. bottom: 0;
  856. left: 0;
  857. background-color: #0aa6bd;
  858. visibility: hidden;
  859. -webkit-transform: scaleX(0);
  860. -moz-transform: scaleX(0);
  861. -ms-transform: scaleX(0);
  862. -o-transform: scaleX(0);
  863. transform: scaleX(0);
  864. -webkit-transition: all 0.3s ease-in-out 0s;
  865. -moz-transition: all 0.3s ease-in-out 0s;
  866. -ms-transition: all 0.3s ease-in-out 0s;
  867. -o-transition: all 0.3s ease-in-out 0s;
  868. transition: all 0.3s ease-in-out 0s;
  869. }
  870. .menu li a:hover span:before {
  871. visibility: visible;
  872. -webkit-transform: scaleX(1);
  873. -moz-transform: scaleX(1);
  874. -ms-transform: scaleX(1);
  875. -o-transform: scaleX(1);
  876. transform: scaleX(1);
  877. }
  878. /*=================================================================
  879. Home Slider
  880. ==================================================================*/
  881. #home-slider {
  882. position: relative;
  883. padding: 0;
  884. }
  885. .mask-overly {
  886. /* background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0; */
  887. bottom: 0;
  888. left: 0;
  889. position: absolute;
  890. right: 0;
  891. top: 0;
  892. /* z-index: 9; */
  893. }
  894. #slider #nav-arrows > a {
  895. font-size: 40px;
  896. line-height: 1.5;
  897. }
  898. .slider-1 img{
  899. width: 100%;
  900. /* height: 100%; */
  901. }
  902. .sl-slider-wrapper {
  903. width: 100%;
  904. margin: 0 auto;
  905. position: relative;
  906. overflow: hidden;
  907. }
  908. .sl-slider {
  909. position: absolute;
  910. top: 0;
  911. left: 0;
  912. right: 0;
  913. bottom: 0;
  914. }
  915. /* Slide wrapper and slides */
  916. .sl-slide,
  917. .sl-slides-wrapper,
  918. .sl-slide-inner {
  919. position: absolute;
  920. width: 100%;
  921. height: 100%;
  922. top: 0;
  923. left: 0;
  924. }
  925. .sl-slide {
  926. z-index: 1;
  927. }
  928. .slide-caption {
  929. color: #fff;
  930. display: table;
  931. height: 100%;
  932. left: 0;
  933. min-height: 100%;
  934. position: absolute;
  935. text-align: center;
  936. top: 0;
  937. width: 60%;
  938. z-index: 999999;
  939. left: 50%;
  940. transform: translateX(-50%);
  941. }
  942. .slide-caption .caption-content {
  943. vertical-align: middle;
  944. display: table-cell;
  945. }
  946. .caption-content h2 {
  947. color: #fff;
  948. font-size: 50px;
  949. font-weight: 900;
  950. margin-bottom: 25px;
  951. }
  952. .caption-content > p {
  953. display: block;
  954. font-size: 16px;
  955. margin-bottom: 45px;
  956. text-transform: capitalize;
  957. margin-bottom: 65px;
  958. font-weight: 200;
  959. }
  960. /*Slider Arrow Buttons*/
  961. #nav-arrows > a {
  962. border: 1px solid #fff;
  963. color: #fff;
  964. display: block;
  965. height: 60px;
  966. line-height: 76px;
  967. position: absolute;
  968. text-align: center;
  969. top: 50%;
  970. width: 60px;
  971. z-index: 20;
  972. margin-top: -30px;
  973. -webkit-transition: all 0.3s ease 0s;
  974. -moz-transition: all 0.3s ease 0s;
  975. -ms-transition: all 0.3s ease 0s;
  976. -o-transition: all 0.3s ease 0s;
  977. transition: all 0.3s ease 0s;
  978. }
  979. #nav-arrows > a.sl-prev {
  980. transform: translateX(-50px);
  981. opacity:0;
  982. }
  983. #slider:hover #nav-arrows > a.sl-prev {
  984. opacity: 1;
  985. transform: translateX(20px);
  986. }
  987. #nav-arrows > a.sl-next {
  988. right:0;
  989. transform: translateX(50px);
  990. opacity:0;
  991. }
  992. #slider:hover #nav-arrows > a.sl-next {
  993. opacity: 1;
  994. transform: translateX(-20px);
  995. }
  996. #nav-arrows > a.sl-next:hover ,#nav-arrows > a.sl-prev:hover {
  997. background-color: #0aa6bd;
  998. border-color: #0aa6bd;
  999. color: #fff;
  1000. }
  1001. /* The duplicate parts/slices */
  1002. .sl-content-slice {
  1003. overflow: hidden;
  1004. position: absolute;
  1005. -webkit-box-sizing: content-box;
  1006. -moz-box-sizing: content-box;
  1007. box-sizing: content-box;
  1008. background: #fff;
  1009. -webkit-backface-visibility: hidden;
  1010. -moz-backface-visibility: hidden;
  1011. -o-backface-visibility: hidden;
  1012. -ms-backface-visibility: hidden;
  1013. backface-visibility: hidden;
  1014. opacity : 1;
  1015. }
  1016. /* Horizontal slice */
  1017. .sl-slide-horizontal .sl-content-slice {
  1018. width: 100%;
  1019. height: 50%;
  1020. left: -200px;
  1021. -webkit-transform: translateY(0%) scale(1);
  1022. -moz-transform: translateY(0%) scale(1);
  1023. -o-transform: translateY(0%) scale(1);
  1024. -ms-transform: translateY(0%) scale(1);
  1025. transform: translateY(0%) scale(1);
  1026. }
  1027. .sl-slide-horizontal .sl-content-slice:first-child {
  1028. top: -200px;
  1029. padding: 200px 200px 0px 200px;
  1030. }
  1031. .sl-slide-horizontal .sl-content-slice:nth-child(2) {
  1032. top: 50%;
  1033. padding: 0px 200px 200px 200px;
  1034. }
  1035. /* Vertical slice */
  1036. .sl-slide-vertical .sl-content-slice {
  1037. width: 50%;
  1038. height: 100%;
  1039. top: -200px;
  1040. -webkit-transform: translateX(0%) scale(1);
  1041. -moz-transform: translateX(0%) scale(1);
  1042. -o-transform: translateX(0%) scale(1);
  1043. -ms-transform: translateX(0%) scale(1);
  1044. transform: translateX(0%) scale(1);
  1045. }
  1046. .sl-slide-vertical .sl-content-slice:first-child {
  1047. left: -200px;
  1048. padding: 200px 0px 200px 200px;
  1049. }
  1050. .sl-slide-vertical .sl-content-slice:nth-child(2) {
  1051. left: 50%;
  1052. padding: 200px 200px 200px 0px;
  1053. }
  1054. /* Content wrapper */
  1055. /* Width and height is set dynamically */
  1056. .sl-content-wrapper {
  1057. position: absolute;
  1058. }
  1059. .sl-content {
  1060. width: 100%;
  1061. height: 100%;
  1062. }
  1063. /* Project laughtbox setup */
  1064. .fancybox-item.fancybox-close {
  1065. background: url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
  1066. height: 50px;
  1067. right: 0;
  1068. top: 0;
  1069. width: 50px;
  1070. }
  1071. .fancybox-next span {
  1072. background: url("../img/right.png") no-repeat scroll center center #0aa6bd;
  1073. height: 50px;
  1074. width: 50px;
  1075. right: 0;
  1076. }
  1077. .fancybox-prev span {
  1078. background: url("../img/left.png") no-repeat scroll center center #0aa6bd;
  1079. height: 50px;
  1080. width: 50px;
  1081. left: 0;
  1082. }
  1083. /*=================================================================
  1084. Feature
  1085. ==================================================================*/
  1086. .list-nav {
  1087. padding:0;
  1088. margin-top: 20px;
  1089. }
  1090. .list-nav li {
  1091. list-style: none;
  1092. margin: 0;
  1093. padding: 0;
  1094. font-size: 16px;
  1095. padding-left: 30px;
  1096. margin-bottom: 10px;
  1097. position: relative;
  1098. }
  1099. .list-nav li i {
  1100. position: absolute;
  1101. left: 0;
  1102. top: 4px;
  1103. font-size: 28px;
  1104. color: #1fb5f6;
  1105. }
  1106. /*=================================================================
  1107. Prototype
  1108. ==================================================================*/
  1109. #prototype {
  1110. background: #f1f1f1;
  1111. }
  1112. #prototype img {
  1113. }
  1114. #prototype .block {
  1115. }
  1116. #prototype .block img {
  1117. width: 100%;
  1118. height: auto;
  1119. margin-bottom: 20px;
  1120. }
  1121. #prototype .block p {
  1122. margin-top: 10px;
  1123. }
  1124. #prototype .block .btn {
  1125. margin-top: 20px;
  1126. }
  1127. /*=================================================================
  1128. Services
  1129. ==================================================================*/
  1130. .service-icon {
  1131. border: 3px solid transparent;
  1132. display: inline-block;
  1133. line-height: 40px;
  1134. -webkit-transition: all 0.3s ease 0s;
  1135. -moz-transition: all 0.3s ease 0s;
  1136. -ms-transition: all 0.3s ease 0s;
  1137. -o-transition: all 0.3s ease 0s;
  1138. transition: all 0.3s ease 0s;
  1139. }
  1140. .service-icon i {
  1141. font-size: 60px;
  1142. color: #0aa6bd;
  1143. }
  1144. /*=================================================================
  1145. Video Section
  1146. ==================================================================*/
  1147. .video-bg {
  1148. background: transparent url("../img/video-bg.jpg") no-repeat scroll center center / cover ;
  1149. color: #fff;
  1150. position: relative;
  1151. text-align: center;
  1152. z-index: 1;
  1153. }
  1154. .modal-section {
  1155. }
  1156. .modal-dialog {
  1157. margin:100px auto;
  1158. }
  1159. .modal-header {
  1160. border:none;
  1161. }
  1162. .video-bg .section-title p {
  1163. color: #fff;
  1164. }
  1165. .video-bg .overlay {
  1166. background-color: rgba(0, 0, 0, 0.5);
  1167. position: absolute;
  1168. left: 0;
  1169. right: 0;
  1170. top: 0;
  1171. bottom: 0;
  1172. z-index: 0;
  1173. }
  1174. .video-popup-button {
  1175. background-color: #0aa6bd;
  1176. border-radius: 50%;
  1177. color: #fff;
  1178. display: inline-block;
  1179. font-size: 90px;
  1180. height: 150px;
  1181. line-height: 150px;
  1182. margin-bottom: 80px;
  1183. width: 150px;
  1184. position: relative;
  1185. }
  1186. .video-popup-button i {
  1187. margin-left: 15px;
  1188. }
  1189. .video-popup-button:hover,.video-popup-button:focus {
  1190. background-color: transparent;
  1191. color: #fff;
  1192. }
  1193. .video-popup-button:before {
  1194. border: 2px solid #fff;
  1195. border-radius: 50%;
  1196. bottom: 0;
  1197. content: "";
  1198. left: 0;
  1199. opacity: 0;
  1200. position: absolute;
  1201. right: 0;
  1202. top: 0;
  1203. transition: all 0.3s ease 0s;
  1204. }
  1205. .video-popup-button:hover:before {
  1206. opacity: 1;
  1207. }
  1208. /*=================================================================
  1209. Portfolio
  1210. ==================================================================*/
  1211. .project-wrapper {
  1212. margin: 0;
  1213. padding: 0;
  1214. list-style: none;
  1215. text-align: center;
  1216. }
  1217. .project-wrapper .row {
  1218. margin: 0;
  1219. }
  1220. .project-wrapper [class^="col-"] {
  1221. padding-left: 0;
  1222. padding-right: 0;
  1223. }
  1224. .portfolio-filter {
  1225. font-size: 0;
  1226. list-style: outside none none;
  1227. margin: 0 0 40px;
  1228. padding: 0;
  1229. }
  1230. .portfolio-filter li {
  1231. display: inline-block;
  1232. }
  1233. .portfolio-filter li a {
  1234. color: #777;
  1235. display: block;
  1236. font-size: 14px;
  1237. padding: 0 20px;
  1238. position: relative;
  1239. }
  1240. .portfolio-filter li a.active {
  1241. color: #0aa6bd;
  1242. }
  1243. .portfolio-filter li a::after {
  1244. bottom: auto;
  1245. content: "/";
  1246. position: absolute;
  1247. right: 0;
  1248. top: auto;
  1249. }
  1250. .portfolio-filter li:last-child a::after {
  1251. content: none;
  1252. }
  1253. .portfolio-item {
  1254. cursor: pointer;
  1255. overflow: hidden;
  1256. position: relative;
  1257. }
  1258. .portfolio-item img {
  1259. -webkit-transition: all 0.4s ease 0s;
  1260. -moz-transition: all 0.4s ease 0s;
  1261. -o-transition: all 0.4s ease 0s;
  1262. transition: all 0.4s ease 0s;
  1263. }
  1264. .portfolio-item:hover img {
  1265. -webkit-transform: translateY(-105px);
  1266. -ms-transform: translateY(-105px);
  1267. -o-transform: translateY(-105px);
  1268. transform: translateY(-105px);
  1269. }
  1270. figcaption.mask {
  1271. background-color: #f1f1f1;
  1272. bottom: 0;
  1273. color: #333;
  1274. padding: 25px;
  1275. position: absolute;
  1276. width: 100%;
  1277. text-align: left;
  1278. -webkit-transform: translateY(100%);
  1279. -ms-transform: translateY(100%);
  1280. -o-transform: translateY(100%);
  1281. transform: translateY(100%);
  1282. -webkit-transition: all 0.4s ease 0s;
  1283. -moz-transition: all 0.4s ease 0s;
  1284. -o-transition: all 0.4s ease 0s;
  1285. transition: all 0.4s ease 0s;
  1286. }
  1287. .portfolio-item:hover figcaption.mask {
  1288. -webkit-transform: translateY(0px);
  1289. -ms-transform: translateY(0px);
  1290. -o-transform: translateY(0px);
  1291. transform: translateY(0px);
  1292. }
  1293. figcaption.mask h3 {
  1294. margin-top: 0;
  1295. color: #333;
  1296. font-size: 18px;
  1297. margin-bottom:15px;
  1298. opacity: 0;
  1299. -webkit-transform: translateY(30px);
  1300. -ms-transform: translateY(30px);
  1301. -o-transform: translateY(30px);
  1302. transform: translateY(30px);
  1303. -webkit-transition: all 0.4s ease 0.1s;
  1304. -moz-transition: all 0.4s ease 0.1s;
  1305. -o-transition: all 0.4s ease 0.1s;
  1306. transition: all 0.4s ease 0.1s;
  1307. }
  1308. figcaption.mask p {
  1309. line-height: 1.3;
  1310. -webkit-transform: translateY(30px);
  1311. -ms-transform: translateY(30px);
  1312. -o-transform: translateY(30px);
  1313. transform: translateY(30px);
  1314. opacity: 0;
  1315. -webkit-transition: all 0.4s ease 0.3s;
  1316. -moz-transition: all 0.4s ease 0.3s;
  1317. -o-transition: all 0.4s ease 0.3s;
  1318. transition: all 0.4s ease 0.3s;
  1319. }
  1320. .portfolio-item:hover figcaption.mask h3,
  1321. .portfolio-item:hover figcaption.mask p {
  1322. opacity: 1;
  1323. -webkit-transform: translateY(0px);
  1324. -ms-transform: translateY(0px);
  1325. -o-transform: translateY(0px);
  1326. transform: translateY(0px);
  1327. }
  1328. ul.external {
  1329. list-style: outside none none;
  1330. margin: 0;
  1331. padding: 0;
  1332. position: absolute;
  1333. right: 0;
  1334. top: -47px;
  1335. -webkit-transition: all 0.4s ease 0s;
  1336. -moz-transition: all 0.4s ease 0s;
  1337. -ms-transition: all 0.4s ease 0s;
  1338. -o-transition: all 0.4s ease 0s;
  1339. transition: all 0.4s ease 0s;
  1340. }
  1341. ul.external li {
  1342. display: inline-block;
  1343. }
  1344. ul.external li a {
  1345. background-color: rgba(255, 255, 255, 0.9);
  1346. color: #818181;
  1347. display: block;
  1348. padding: 10px 18px 13px;
  1349. -webkit-transition: all 0.5s ease 0s;
  1350. -moz-transition: all 0.5s ease 0s;
  1351. -ms-transition: all 0.5s ease 0s;
  1352. -o-transition: all 0.5s ease 0s;
  1353. transition: all 0.5s ease 0s;
  1354. }
  1355. ul.external li a:hover {
  1356. background-color: #0aa6bd;
  1357. color: #fff;
  1358. }
  1359. .portfolio-item:hover ul.external {
  1360. top: 0;
  1361. }
  1362. .fancybox-skin {
  1363. border-radius: 0;
  1364. }
  1365. .fancybox-title.fancybox-title-inside-wrap {
  1366. padding: 15px;
  1367. }
  1368. .fancybox-title h3 {
  1369. margin: 0 0 15px;
  1370. }
  1371. .fancybox-title p {
  1372. color: #818181;
  1373. font-size: 16px;
  1374. line-height: 22px;
  1375. }
  1376. .fancybox-title-inside-wrap {
  1377. padding-top: 0;
  1378. }
  1379. /*=================================================================
  1380. Testimonials
  1381. ==================================================================*/
  1382. #testimonials {
  1383. background-image: url(../img/parallax/testimonial.jpg);
  1384. /*padding: 0;*/
  1385. color: #fff;
  1386. position: relative;
  1387. }
  1388. #testimonials:before {
  1389. background-color: rgba(10, 166, 189, 0.75);
  1390. padding: 70px 0 40px;
  1391. position: absolute;
  1392. top: 0;
  1393. right: 0;
  1394. left: 0;
  1395. bottom: 0;
  1396. content: '';
  1397. }
  1398. .testimonial-item {
  1399. margin: 0 auto;
  1400. padding-bottom: 50px;
  1401. width: 64%;
  1402. }
  1403. .testimonial-item img {
  1404. border: 3px solid #fff;
  1405. border-radius: 50%;
  1406. display: inline-block;
  1407. height: auto;
  1408. max-width: 100px;
  1409. }
  1410. .testimonial-item > div {
  1411. line-height: 30px;
  1412. position: relative;
  1413. }
  1414. .testimonial-item > div:before {
  1415. background-image: url("../img/icons/quotes.png");
  1416. background-repeat: no-repeat;
  1417. bottom: 127px;
  1418. height: 33px;
  1419. left: -35px;
  1420. position: absolute;
  1421. width: 45px;
  1422. }
  1423. .testimonial-item > div:after {
  1424. background-image: url("../img/icons/quotes.png");
  1425. background-position: -58px 0;
  1426. background-repeat: no-repeat;
  1427. bottom: -50px;
  1428. height: 33px;
  1429. position: absolute;
  1430. right: 0;
  1431. width: 45px;
  1432. }
  1433. .testimonial-item > div > span {
  1434. display: inline-block;
  1435. font-weight: 700;
  1436. margin: 40px 0 30px;
  1437. text-transform: uppercase;
  1438. }
  1439. #testimonials .owl-controls.clickable {
  1440. text-align: center;
  1441. }
  1442. #testimonials .owl-buttons {
  1443. border: 2px solid #fff;
  1444. float: inherit;
  1445. border: 2px solid #fff;
  1446. display: inline-block;
  1447. padding: 0px 0px 0px;
  1448. }
  1449. .owl-controls .owl-page, .owl-controls .owl-buttons div {
  1450. cursor: pointer;
  1451. display: inline-block;
  1452. margin: 0 8px;
  1453. padding: 10px;
  1454. }
  1455. #testimonials .owl-prev:hover,
  1456. #testimonials .owl-next:hover {
  1457. color: #fff;
  1458. }
  1459. .price-table {
  1460. border: 1px solid #e3e3e3;
  1461. }
  1462. .price-table.featured {
  1463. border-color: #e3e3e3;
  1464. border-style: solid;
  1465. border-width: 1px 1px 0 1px;
  1466. -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  1467. -moz-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  1468. box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  1469. }
  1470. .price-table > span {
  1471. color: #444;
  1472. display: block;
  1473. font-size: 24px;
  1474. padding: 30px 0;
  1475. text-transform: uppercase;
  1476. font-weight: bold;
  1477. letter-spacing: 2px;
  1478. }
  1479. .price-table .value {
  1480. background-color: #f8f8f8;
  1481. color: #727272;
  1482. padding: 20px 0;
  1483. -webkit-transition: all 0.7s ease 0s;
  1484. -moz-transition: all 0.7s ease 0s;
  1485. -ms-transition: all 0.7s ease 0s;
  1486. -o-transition: all 0.7s ease 0s;
  1487. transition: all 0.7s ease 0s;
  1488. }
  1489. .price-table.featured .value {
  1490. background-color: #0aa6bd;
  1491. color: #fff;
  1492. }
  1493. .price-table .value span {
  1494. display: inline-block;
  1495. }
  1496. .price-table .value span:first-child {
  1497. font-size: 32px;
  1498. line-height: 32px;
  1499. }
  1500. .price-table .value span:nth-child(2) {
  1501. font-size: 40px;
  1502. line-height: 40px;
  1503. margin-bottom: 10px;
  1504. }
  1505. .price-table .value span:last-child {
  1506. font-size: 16px;
  1507. }
  1508. .price-table ul {
  1509. margin: 0;
  1510. padding: 0;
  1511. list-style: none;
  1512. text-align: center;
  1513. }
  1514. .price-table ul li {
  1515. border-top: 1px solid #e3e3e3;
  1516. display: block;
  1517. padding: 15px 0;
  1518. -webkit-transition: all 0.7s ease 0s;
  1519. -moz-transition: all 0.7s ease 0s;
  1520. -ms-transition: all 0.7s ease 0s;
  1521. -o-transition: all 0.7s ease 0s;
  1522. transition: all 0.7s ease 0s;
  1523. }
  1524. .price-table ul li a {
  1525. display: block;
  1526. text-transform: uppercase;
  1527. }
  1528. .price-table.featured ul li:last-child,
  1529. .price-table ul li:last-child:hover {
  1530. background-color: #0aa6bd;
  1531. }
  1532. .price-table.featured ul li:last-child a,
  1533. .price-table ul li:last-child:hover a {
  1534. color: #fff;
  1535. }
  1536. /*=================================================================
  1537. Price
  1538. ==================================================================*/
  1539. #social .overlay {
  1540. background: url("../img/slide_bg.png") repeat scroll 0 0 transparent;
  1541. padding: 100px 0 120px;
  1542. }
  1543. .social-button {
  1544. margin: 0;
  1545. padding: 0;
  1546. list-style: none;
  1547. text-align: center;
  1548. }
  1549. .social-button li {
  1550. display: inline-block;
  1551. margin:0 20px;
  1552. }
  1553. .social-button li a {
  1554. border: 2px solid #fff;
  1555. border-radius: 50%;
  1556. color: #fff;
  1557. display: block;
  1558. height: 90px;
  1559. line-height: 96px;
  1560. width: 90px;
  1561. font-size: 40px;
  1562. line-height: 90px;
  1563. -webkit-transition: all 0.2s ease 0s;
  1564. -moz-transition: all 0.2s ease 0s;
  1565. -ms-transition: all 0.2s ease 0s;
  1566. -o-transition: all 0.2s ease 0s;
  1567. transition: all 0.2s ease 0s;
  1568. }
  1569. .social-button li a:hover {
  1570. border: 2px solid #0aa6bd;
  1571. background: #0aa6bd;
  1572. color: #fff;
  1573. }
  1574. /*=================================================================
  1575. Contact
  1576. ==================================================================*/
  1577. .input-field {
  1578. margin-bottom: 10px;
  1579. }
  1580. .form-control {
  1581. border: 1px solid #ececec;
  1582. border-radius: 0;
  1583. box-shadow: none;
  1584. color: #818181;
  1585. font-size: 14px;
  1586. height: 40px;
  1587. }
  1588. .form-control:focus {
  1589. box-shadow: none;
  1590. border-color: #0aa6bd;
  1591. }
  1592. textarea.form-control {
  1593. width: 100%;
  1594. height: 165px;
  1595. }
  1596. .input-field label.error {
  1597. color: red;
  1598. display: block;
  1599. font-size: 13px;
  1600. font-weight: 400;
  1601. }
  1602. #submit:hover {
  1603. color: #fff;
  1604. }
  1605. #submit:before {
  1606. background-color: rgba(10, 166, 189, 0.75);
  1607. }
  1608. #submit.btn-effect:after {
  1609. background: #2E2E2E;
  1610. }
  1611. .contact-details h3 {
  1612. border-bottom: 1px solid #dedede;
  1613. font-weight: 600;
  1614. margin-bottom: 15px;
  1615. padding-bottom: 15px;
  1616. text-transform: uppercase;
  1617. font-size: 16px;
  1618. margin-top: 0;
  1619. color: #666;
  1620. }
  1621. .contact-details p {
  1622. line-height: 30px;
  1623. }
  1624. .contact-details p i {
  1625. margin-right: 15px;
  1626. font-size: 25px;
  1627. color: #000;
  1628. }
  1629. .contact-details span {
  1630. display: block;
  1631. margin-left: 24px;
  1632. }
  1633. /*============================================================
  1634. Google Maps
  1635. ==============================================================*/
  1636. #google-map {
  1637. padding: 0;
  1638. }
  1639. #map-canvas {
  1640. width: 100%;
  1641. height: 300px;
  1642. }
  1643. /*============================================================
  1644. Footer
  1645. ==============================================================*/
  1646. #footer {
  1647. background-color: #2E2E2E;
  1648. padding: 70px 0;
  1649. color: #fff;
  1650. }
  1651. .footer-content {
  1652. width: 390px;
  1653. margin: 0 auto;
  1654. }
  1655. .footer-content > div {
  1656. margin-bottom: 40px;
  1657. }
  1658. .footer-content > div > p:first-child {
  1659. margin-bottom: 15px;
  1660. text-transform: uppercase;
  1661. }
  1662. .subscribe-form {
  1663. position: relative;
  1664. }
  1665. .subscribe.form-control {
  1666. background-color: transparent;
  1667. border: 1px solid #7f7f7f;
  1668. }
  1669. .subscribe.form-control:focus {
  1670. -webkit-box-shadow: none;
  1671. -moz-box-shadow: none;
  1672. box-shadow: none;
  1673. }
  1674. .submit-icon {
  1675. background-color: #7f7f7f;
  1676. border: 0 none;
  1677. border-radius: 0;
  1678. color: #c1c1c1;
  1679. padding: 8px 20px;
  1680. position: absolute;
  1681. overflow: hidden;
  1682. right: 0;
  1683. top: 0;
  1684. }
  1685. .submit-icon .fa-paper-plane {
  1686. position: relative;
  1687. top: 0;
  1688. -webkit-transform: translateX(0);
  1689. -moz-transform: translateX(0);
  1690. -ms-transform: translateX(0);
  1691. -o-transform: translateX(0);
  1692. transform: translateX(0);
  1693. -webkit-transition: all 0.3s ease 0.2s;
  1694. -moz-transition: all 0.3s ease 0.2s;
  1695. -ms-transition: all 0.3s ease 0.2s;
  1696. -o-transition: all 0.3s ease 0.2s;
  1697. transition: all 0.3s ease 0.2s;
  1698. }
  1699. .submit-icon:hover .fa-paper-plane {
  1700. position: relative;
  1701. top: -37px;
  1702. -webkit-transform: translateX(30px);
  1703. -moz-transform: translateX(30px);
  1704. -ms-transform: translateX(30px);
  1705. -o-transform: translateX(30px);
  1706. transform: translateX(30px);
  1707. }
  1708. .footer-content .footer-social {
  1709. margin: 40px 0 35px;
  1710. }
  1711. .footer-social ul {
  1712. list-style: outside none none;
  1713. margin: 0;
  1714. padding: 0;
  1715. text-align: center;
  1716. }
  1717. .footer-social ul li {
  1718. display: inline-block;
  1719. margin: 0 10px;
  1720. }
  1721. .footer-social ul li a {
  1722. color: #7f7f7f;
  1723. display: block;
  1724. -webkit-transition: all 0.2s ease 0s;
  1725. -moz-transition: all 0.2s ease 0s;
  1726. -ms-transition: all 0.2s ease 0s;
  1727. -o-transition: all 0.2s ease 0s;
  1728. transition: all 0.2s ease 0s;
  1729. }
  1730. .footer-social ul li a:hover {
  1731. color: #0aa6bd;
  1732. }
  1733. .footer-content > p {
  1734. color: #ababab;
  1735. font-size: 12px;
  1736. }
  1737. /*============================================================
  1738. Responsive Styles
  1739. ============================================================*/
  1740. /*============================================================
  1741. For Small Desktop
  1742. ==============================================================*/
  1743. @media (min-width: 980px) and (max-width: 1150px) {
  1744. /*about*/
  1745. #about .welcome-block img {
  1746. margin-bottom: 30px;
  1747. }
  1748. }
  1749. /*============================================================
  1750. Tablet (Portrait) Design for a width of 768px
  1751. ==============================================================*/
  1752. @media (min-width: 768px) and (max-width: 979px) {
  1753. /* home slider */
  1754. .caption-content h2 {
  1755. font-size: 40px;
  1756. }
  1757. .caption-content p {
  1758. font-size: 25px;
  1759. }
  1760. .caption-content strong {
  1761. font-size: 45px;
  1762. }
  1763. /* about */
  1764. .recent-works {
  1765. margin-bottom: 50px;
  1766. }
  1767. /* .service-item {
  1768. margin-bottom: 50px;
  1769. } */
  1770. /* testimonial */
  1771. .testimonial-item {
  1772. width: 100%;
  1773. }
  1774. .testimonial-item {
  1775. width: 80%;
  1776. }
  1777. .testimonial-item > div:after {
  1778. bottom: -35px;
  1779. }
  1780. /* price */
  1781. .price-table {
  1782. margin-bottom: 50px;
  1783. }
  1784. /* contact form */
  1785. .contact-form {
  1786. margin-bottom: 50px;
  1787. }
  1788. }
  1789. /*============================================================
  1790. Mobile (Portrait) Design for a width of 320px
  1791. ==============================================================*/
  1792. @media only screen and (max-width: 767px) {
  1793. body {
  1794. font-size: 14px;
  1795. }
  1796. .parallax {
  1797. background-position: centet tip !important;
  1798. }
  1799. .section-title h2 {
  1800. font-size: 25px;
  1801. }
  1802. .section-title h2:after {
  1803. left: 30%;
  1804. }
  1805. /*navigation*/
  1806. .navbar-inverse .navbar-toggle {
  1807. border-color: #fff;
  1808. }
  1809. .navbar-inverse .navbar-toggle:hover,
  1810. .navbar-inverse .navbar-toggle:focus {
  1811. background-color: transparent;
  1812. }
  1813. /* slider */
  1814. .caption-content h2 {
  1815. font-size: 18px;
  1816. }
  1817. .caption-content > span {
  1818. font-size: 16px;
  1819. margin-bottom: 20px;
  1820. }
  1821. .caption-content p {
  1822. font-size: 16px;
  1823. margin-bottom: 30px;
  1824. }
  1825. .caption-content strong {
  1826. font-size: 22px;
  1827. }
  1828. /* about */
  1829. .recent-works {
  1830. margin-bottom: 85px;
  1831. }
  1832. #about h3 {
  1833. font-size: 18px;
  1834. margin: 0 0 35px !important;
  1835. }
  1836. #about .owl-buttons {
  1837. margin-top: 20px;
  1838. }
  1839. #about .message-body {
  1840. margin-bottom: 45px;
  1841. }
  1842. #about .welcome-block img {
  1843. margin: 0 25px 15px 0;
  1844. }
  1845. /* service */
  1846. .service-item {
  1847. width: 100%;
  1848. }
  1849. /*portfolio*/
  1850. /* lightbox */
  1851. .fancybox-title h3 {
  1852. font-size: 20px;
  1853. }
  1854. .fancybox-title p {
  1855. font-size: 14px;
  1856. }
  1857. /* testimonial */
  1858. .testimonial-item {
  1859. width: 95%;
  1860. }
  1861. .testimonial-item > div:before,
  1862. .testimonial-item > div:after {
  1863. background-image: none;
  1864. }
  1865. .testimonial-item > div > span {
  1866. margin: 30px 0 20px;
  1867. }
  1868. /* price */
  1869. .price-table {
  1870. margin-bottom: 50px;
  1871. }
  1872. /* follow us */
  1873. .social-button li a {
  1874. height: 65px;
  1875. line-height: 71px;
  1876. width: 65px;
  1877. }
  1878. /* contact form */
  1879. .contact-form {
  1880. margin-bottom: 50px;
  1881. }
  1882. /* footer */
  1883. .footer-content {
  1884. width: 100%;
  1885. }
  1886. .footer-social ul li {
  1887. margin: 0 7px;
  1888. }
  1889. }
  1890. /*============================================================
  1891. Mobile (Landscape) Design for a width of 480px
  1892. ==============================================================*/
  1893. @media only screen and (min-width: 480px) and (max-width: 767px) {
  1894. .section-title h2:after {
  1895. left: 38%;
  1896. }
  1897. /* home slider */
  1898. .caption-content h2 {
  1899. font-size: 35px;
  1900. }
  1901. .caption-content p {
  1902. font-size: 25px;
  1903. }
  1904. .caption-content strong {
  1905. font-size: 35px;
  1906. }
  1907. /*about*/
  1908. #about .welcome-block h3 {
  1909. margin: 0 0 35px;
  1910. }
  1911. /* service */
  1912. .service-item {
  1913. margin: 0 auto 50px;
  1914. width: 55%;
  1915. }
  1916. /* portfolio */
  1917. .portfolio-item {
  1918. width: 48%;
  1919. }
  1920. figcaption.mask {
  1921. bottom: -132px;
  1922. }
  1923. /* testimonial */
  1924. .testimonial-item {
  1925. width: 80%;
  1926. }
  1927. .testimonial-item > div:before {
  1928. bottom: 160px;
  1929. }
  1930. /* social */
  1931. .social-button li a {
  1932. height: 90px;
  1933. line-height: 96px;
  1934. width: 90px;
  1935. }
  1936. /* price */
  1937. .price-table {
  1938. margin-bottom: 50px;
  1939. }
  1940. /* contact form */
  1941. .contact-form {
  1942. margin-bottom: 50px;
  1943. }
  1944. /* footer */
  1945. .footer-content {
  1946. width: 380px;
  1947. }
  1948. }
  1949. /*Bottom Footer*/
  1950. #footer p {
  1951. color: #6f6f6f;
  1952. }
  1953. #footer form {
  1954. margin-top: 20px;
  1955. }
  1956. #footer ul {
  1957. padding-left: 0;
  1958. }
  1959. #footer ul li {
  1960. list-style: none;
  1961. margin-bottom: 5px;
  1962. }
  1963. #footer ul li a {
  1964. color: #6f6f6f;
  1965. display: block;
  1966. }
  1967. #footer ul li a:hover {
  1968. color: rgb(9, 157, 178);
  1969. }
  1970. #footer h4 {
  1971. color: #fff;
  1972. text-transform: uppercase;
  1973. font-weight: 500;
  1974. margin-top: 0;
  1975. margin-bottom: 30px;
  1976. letter-spacing: 2px;
  1977. font-size: 16px;
  1978. }
  1979. #footer-bottom {
  1980. background:#2A2A2A;
  1981. padding:20px 0;
  1982. }
  1983. #footer-bottom p {
  1984. font-size: 13px;
  1985. }