style.css 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282
  1. /* ================================= CSS Structure =================================
  2. 1. GLOBAL STYLES
  3. - Fonts
  4. - Main Styles
  5. - Extra Classes
  6. - Z Indexes
  7. - Social Icon Hover Styles
  8. - Title and Desc Styles
  9. - Pointer Arrow Common Styles
  10. - Button Styles
  11. 2. HEADER SECTION
  12. - Triangle Background
  13. - Logo & Menu
  14. - Navigation
  15. - Top Social Icon Styles
  16. 3. BANNER SECTION
  17. - Left Banner Styles
  18. - Right Banner Styles
  19. 4. FEATURES SECTION
  20. 5. REVIEWS SECTION
  21. 6. SERVICES SECTION
  22. 7. SCREENSHOT SECTION
  23. 8. PRICING SECTION
  24. 9. DEMO SECTION
  25. 10. DOWNLOAD SECTION
  26. 11. CONTACT US SECTION
  27. 12. FOOTER SECTION
  28. =========================================================================== */
  29. /* =========================== GLOBAL STYLES ============================== */
  30. /* ------------- Fonts ------------- */
  31. @font-face {
  32. font-family: "Flaticon";
  33. src: url("../fonts/flaticon.eot");
  34. src: url("../fonts/flaticon.eot#iefix") format("embedded-opentype"),
  35. url("../fonts/flaticon.woff") format("woff"),
  36. url("../fonts/flaticon.ttf") format("truetype"),
  37. url("../fonts/flaticon.svg") format("svg");
  38. font-weight: normal;
  39. font-style: normal;
  40. }
  41. @font-face {
  42. font-family: 'latohairline';
  43. src: url('../fonts/lato-hai-webfont.eot');
  44. src: url('../fonts/lato-hai-webfont.eot?#iefix') format('embedded-opentype'),
  45. url('../fonts/lato-hai-webfont.woff') format('woff'),
  46. url('../fonts/lato-hai-webfont.ttf') format('truetype'),
  47. url('../fonts/lato-hai-webfont.svg#latohairline') format('svg');
  48. font-weight: normal;
  49. font-style: normal;
  50. }
  51. [class^="flaticon-"]:before,
  52. [class*=" flaticon-"]:before,
  53. [class^="flaticon-"]:after,
  54. [class*=" flaticon-"]:after {
  55. font-family: Flaticon;
  56. font-size: 20px;
  57. font-style: normal;
  58. }
  59. .flaticon-arrow351:before {
  60. content: "\e000";
  61. }
  62. .flaticon-big44:before {
  63. content: "\e001";
  64. }
  65. .flaticon-check13:before {
  66. content: "\e002";
  67. }
  68. .flaticon-checkmark17:before {
  69. content: "\e003";
  70. }
  71. .flaticon-open7:before {
  72. content: "\e004";
  73. }
  74. .flaticon-phone71:before {
  75. content: "\e005";
  76. }
  77. .flaticon-yield:before {
  78. content: "\e006";
  79. }
  80. .glyph-item {
  81. line-height: 1;
  82. display: inline-block;
  83. }
  84. /* ------------- Main Styles ------------- */
  85. body {
  86. color: #bdc3c7;
  87. font-size: 12px;
  88. padding: 0;
  89. font-family: 'Open Sans', sans-serif;
  90. -webkit-font-smoothing: antialiased !important;
  91. background: url(../images/bg.png) top left repeat #fff;
  92. overflow-x: hidden;
  93. margin: 0 auto;
  94. }
  95. a,
  96. a:hover,
  97. a:focus,
  98. .btn:focus {
  99. text-decoration: none;
  100. outline: none;
  101. }
  102. img,
  103. img.responsive {
  104. max-width: 100%;
  105. width: auto \9 !important;
  106. }
  107. .relative {
  108. position: relative;
  109. }
  110. .absolute {
  111. position: absolute;
  112. }
  113. .static {
  114. position: static;
  115. }
  116. .container {
  117. max-width: 1200px;
  118. width: 100%;
  119. }
  120. .no-padding {
  121. padding: 0;
  122. }
  123. .uppercase {
  124. text-transform: uppercase;
  125. }
  126. .capitalize {
  127. text-transform: capitalize;
  128. }
  129. .animated {
  130. visibility: hidden;
  131. animation-fill-mode: none;
  132. -webkit-animation-fill-mode: none;
  133. -moz-animation-fill-mode: none;
  134. -o-animation-fill-mode: none;
  135. -ms-animation-fill-mode: none;
  136. }
  137. .visible {
  138. visibility: visible;
  139. }
  140. .btn:hover,
  141. .btn:focus {
  142. background: #333;
  143. color: #fff;
  144. }
  145. .btn {
  146. display: inline-block;
  147. -webkit-transition: all 500ms linear;
  148. -moz-transition: all 500ms linear;
  149. -o-transition: all 500ms linear;
  150. -ms-transition: all 500ms linear;
  151. transition: all 500ms linear;
  152. }
  153. /* ------------- Extra Classes ------------- */
  154. .text-extrabold {
  155. font-weight: 800;
  156. }
  157. .text-bold {
  158. font-weight: 700;
  159. }
  160. .light-italic {
  161. font-family: 'Open Sans', sans-serif;
  162. font-weight: 300;
  163. font-style: italic;
  164. }
  165. .extrabold-italic {
  166. font-family: 'Open Sans', sans-serif;
  167. font-weight: 800;
  168. font-style: italic;
  169. }
  170. .bold-italic {
  171. font-family: 'Open Sans', sans-serif;
  172. font-weight: 700;
  173. font-style: italic;
  174. }
  175. .color-greenalt {
  176. color: #CCC81E;
  177. }
  178. .color-grey {
  179. color: #7f8c8d;
  180. }
  181. .color-white {
  182. color: #FFFFFF;
  183. }
  184. .color-blue {
  185. color: #18549C;
  186. }
  187. .pageloader {
  188. background: url(../images/loader.gif) center center no-repeat #fff;
  189. height: 100%;
  190. position: fixed;
  191. top: 0;
  192. width: 100%;
  193. z-index: 99999;
  194. }
  195. /* ------------- Section Background ------------- */
  196. .header-section {
  197. background-color: #669bbc;
  198. }
  199. .features-section {
  200. background-color: #fdf0d5;
  201. }
  202. .reviews-section {
  203. background-color: #a5b4cf;
  204. }
  205. .app-services-section {
  206. background-color: #780000;
  207. }
  208. .app-screen-section {
  209. background-color: #a5b4cf;
  210. }
  211. .pricing-section {
  212. background-color: #365388;
  213. }
  214. /*.video-section {
  215. background-color: #2c3e50;
  216. }
  217. .download-section {
  218. background-color: #ecf0f1;
  219. }*/
  220. .contact-section {
  221. background-color: #669bbc;
  222. }
  223. .section-padding {
  224. padding: 100px 0;
  225. }
  226. /* ------- Social Icon Hover Styles ------- */
  227. .gk-facebook:hover,
  228. .gk-facebook:focus,
  229. .gk-facebook:active {
  230. background: #3B5999;
  231. color: #fff;
  232. }
  233. .gk-twitter:hover,
  234. .gk-twitter:focus,
  235. .gk-twitter:active {
  236. background: #00ACEE;
  237. color: #fff;
  238. }
  239. /* ------- Title and Desc Styles ------- */
  240. .section-title {
  241. font-family: 'Open Sans', sans-serif;
  242. font-size: 61px;
  243. text-align: center;
  244. text-transform: uppercase;
  245. margin-bottom: 20px;
  246. font-weight: 300;
  247. }
  248. .after-2000 .section-title,
  249. .after-2600 .section-title,
  250. .after-3000 .section-title {
  251. font-size: 60px;
  252. }
  253. .section-msg {
  254. font-family: 'Open Sans', sans-serif;
  255. font-weight: 300;
  256. font-size: 32px;
  257. line-height: 1.4;
  258. margin-top: 15px;
  259. }
  260. .section-msg1 {
  261. font-family: 'Open Sans', sans-serif;
  262. font-weight: 300;
  263. font-size: 42px;
  264. }
  265. .gk-triangle-medium:before,
  266. .gk-triangle-medium:after {
  267. font-size: 30px;
  268. }
  269. /* ------- Pointer Arrow Common Styles ------- */
  270. .gk-pointer-features {
  271. position: absolute;
  272. }
  273. .gk-pointer-features.animated {
  274. visibility: hidden;
  275. }
  276. .gk-pointer-features.visible {
  277. visibility: visible;
  278. }
  279. /* ------------- Button Styles ------------- */
  280. .gk-btn {
  281. font-family: 'Open Sans', sans-serif;
  282. font-weight: 700;
  283. font-size: 13px;
  284. text-transform: uppercase;
  285. padding: 13px 12px;
  286. width: 159px;
  287. }
  288. .gk-btn .fa {
  289. padding-right: 8px;
  290. }
  291. .gk-btn-margin {
  292. margin-right: 30px;
  293. }
  294. .greenalt-btn {
  295. border-color: #CCC81E;
  296. color: #CCC81E;
  297. }
  298. .greenalt-btn:hover,
  299. .greenalt-btn:active,
  300. .greenalt-btn:focus {
  301. background: #CCC81E;
  302. color: #FFFFFF;
  303. }
  304. .red-btn {
  305. border-color: #E36A01;
  306. color: #E36A01;
  307. }
  308. .red-btn:hover,
  309. .red-btn:active,
  310. .red-btn:focus {
  311. background: #E36A01;
  312. color: #FFFFFF;
  313. }
  314. .white-btn {
  315. border-color: #FFFFFF;
  316. color: #FFFFFF;
  317. }
  318. .white-btn:hover,
  319. .white-btn:active,
  320. .white-btn:focus {
  321. background: #FFFFFF;
  322. color: #CCC81E;
  323. }
  324. /* =========================== HEADER SECTION ============================== */
  325. /* ------------- Triangle Background ------------- */
  326. .banner-bg {
  327. min-height: 480px;
  328. position: relative;
  329. top: -70px;
  330. margin: 0 auto;
  331. }
  332. .banner-bg .section-padding {
  333. margin-left: auto;
  334. padding-left: 15px;
  335. padding-right: 15px;
  336. }
  337. /* ------------- Logo & Menu ------------- */
  338. .logo-container {
  339. background: #003049;
  340. color: #fff;
  341. padding: 16px 0 13px;
  342. }
  343. .sticky-navigation {
  344. width: 100%;
  345. z-index: 9999;
  346. position: relative;
  347. }
  348. /* -------- Navigation --------- */
  349. .top-navbar {
  350. margin: 0;
  351. min-height: inherit;
  352. }
  353. .top-navbar ul.nav a {
  354. font-size: 13px;
  355. font-weight: 800;
  356. color: #CCC81E;
  357. }
  358. .top-navbar ul.nav a:hover,
  359. .top-navbar ul.nav a:focus,
  360. .top-navbar ul.nav a:active,
  361. .top-navbar ul.nav li.active a {
  362. background: none !important;
  363. color: #fff;
  364. }
  365. .navbar-toggle {
  366. background-color: #CCC81E;
  367. margin-top: -40px;
  368. margin-right: 0px;
  369. }
  370. .navbar-toggle .icon-bar {
  371. background-color: #FFFFFF;
  372. }
  373. .navbar-nav {
  374. margin: 0;
  375. }
  376. .navbar-nav li {
  377. margin-right: 20px;
  378. }
  379. .after-2000 .navbar-nav li,
  380. .after-2600 .navbar-nav li {
  381. margin-right: 12px;
  382. }
  383. .navbar-nav li a {
  384. padding-bottom: 7px;
  385. padding-top: 7px;
  386. }
  387. .top-navbar .dropdown a {
  388. background: none !important;
  389. }
  390. /* ------------- Top Social Icon Styles ------------- */
  391. .top-social-icon {
  392. margin: 0;
  393. padding: 0;
  394. list-style: none;
  395. float: right;
  396. }
  397. .top-social-icon li {
  398. float: left;
  399. }
  400. .top-social-icon li a {
  401. background: #fff;
  402. border-radius: 100%;
  403. font-size: 12px;
  404. display: block;
  405. width: 18px;
  406. height: 18px;
  407. color: #1F5BA4;
  408. margin: 7px 26px 0 0;
  409. }
  410. .top-social-icon li .fa {
  411. width: 18px;
  412. height: 18px;
  413. display: block;
  414. line-height: 18px;
  415. text-align: center;
  416. }
  417. .top-social-icon li:last-child a {
  418. margin-right: 0;
  419. }
  420. /* =========================== BANNER SECTION ============================== */
  421. /* ------------- Left Banner Styles ------------- */
  422. .left-banner-text {
  423. margin-top: 60px;
  424. padding-top: 50px;
  425. color: #FFFFFF;
  426. }
  427. .after-1500 .left-banner-text {
  428. margin-top: 30px;
  429. }
  430. .after-1500 .right-banner-image {
  431. margin-top: 20px;
  432. }
  433. .left-banner-text h1 {
  434. font-size: 53px;
  435. margin-bottom: 30px;
  436. font-weight: 300;
  437. font-family: 'Open Sans', sans-serif;
  438. }
  439. .banner-text {
  440. font-family: 'Open Sans', sans-serif;
  441. font-weight: 300;
  442. font-size: 23px;
  443. padding: 0 30px 0 0;
  444. text-align: left;
  445. color: #FFFFFF;
  446. }
  447. .banner-button {
  448. padding: 32px 45px 0 0;
  449. }
  450. .triangle-shape {
  451. padding: 45px 0 0;
  452. }
  453. .flaticon.gk-triangle-bigsharp:before,
  454. .flaticon.gk-triangle-bigsharp:after {
  455. font-size: 36px;
  456. font-weight: bold;
  457. }
  458. .banner-section {
  459. padding-top: 70px;
  460. position: relative;
  461. z-index: 10;
  462. }
  463. .banner-triangle:hover,
  464. .banner-triangle:active,
  465. .banner-triangle:focus {
  466. color: #FFFFFF;
  467. }
  468. .banner-triangle:hover {
  469. opacity: 0.6;
  470. transition: all 0.4s ease-in 0s;
  471. -moz-transition: all 0.4s ease-in 0s;
  472. -webkit-transition: all 0.4s ease-in 0s;
  473. -o-transition: all 0.4s ease-in 0s;
  474. -ms-transition: all 0.4s ease-in 0s;
  475. }
  476. .banner-left-margin {
  477. margin-left: 45px;
  478. margin-bottom: 12px;
  479. }
  480. /* ------------- Right Banner Styles ------------- */
  481. .right-banner-image {
  482. padding-top: 10px;
  483. margin-top: 50px;
  484. }
  485. .banner-image-info {
  486. margin-top: 410px;
  487. }
  488. .banner-info {
  489. font-family: 'Open Sans', sans-serif;
  490. font-weight: 300;
  491. font-size: 12px;
  492. color: #FFF;
  493. padding-right: 5px;
  494. }
  495. .banner-info .text-bold {
  496. font-size: 32px;
  497. display: block;
  498. color: #FFF;
  499. }
  500. .close-brackets {
  501. font-family: 'latohairline';
  502. color: #FFF;
  503. font-size: 86px;
  504. }
  505. .banner-image-info .fa {
  506. font-size: 32px;
  507. vertical-align: top;
  508. line-height: 80px;
  509. margin-top: 20px;
  510. padding-left: 15px;
  511. width: 40px;
  512. }
  513. .banner-info-right {
  514. margin-top: -30px;
  515. }
  516. .about {
  517. margin-left: 300px;
  518. margin-top: 60px;
  519. }
  520. /* =========================== FEATURES SECTION ============================== */
  521. .features-left-info {
  522. padding: 120px 0 0 15px;
  523. }
  524. .gk-list {
  525. display: inline-block;
  526. width: 100%;
  527. padding-top: 5px;
  528. }
  529. .gk-list li {
  530. font-size: 17px;
  531. clear: both;
  532. float: left;
  533. display: inline-block;
  534. border-bottom: 1px solid #8ab3cf;
  535. padding: 5px 12px 5px 0;
  536. }
  537. .gk-list li .fa {
  538. display: inline;
  539. font-size: 15px;
  540. }
  541. .gk-list li .simple-icon {
  542. font-size: 14px;
  543. padding-right: 4px;
  544. text-shadow: 0 0 0;
  545. }
  546. .gk-list li.no-border {
  547. border: none;
  548. }
  549. .features-right-grid {
  550. padding-top: 30px;
  551. padding-left: 40px;
  552. }
  553. .text-right .features-grid {
  554. padding: 0 30px 10px 30px;
  555. }
  556. .features-grid {
  557. padding: 0 40px 10px 0;
  558. }
  559. .features-grid .fa,
  560. .features-grid .simple-icon {
  561. font-size: 26px;
  562. padding-bottom: 10px;
  563. }
  564. .grid-title {
  565. font-size: 21px;
  566. }
  567. .features-line {
  568. border-color: #8ab3cf;
  569. width: 78%;
  570. }
  571. .features-right-grid .text-right .features-line {
  572. margin-left: 20px;
  573. margin-right: 20px;
  574. float: right;
  575. }
  576. .features-right-grid .features-line {
  577. margin-right: 20px;
  578. margin-left: -10px;
  579. float: left;
  580. }
  581. .gk-divider {
  582. border-right: 1px solid #8ab3cf;
  583. }
  584. .ipad-shot-wrapper {
  585. margin-top: -130px;
  586. margin-left: -25px;
  587. }
  588. .features-right-info {
  589. position: static;
  590. padding-left: 120px;
  591. }
  592. .gk-pointer-features.gk-right-arrow {
  593. left: 15%;
  594. top: 6%;
  595. }
  596. .title-for-features {
  597. color: #8ab3cf;
  598. font-weight: bold;
  599. }
  600. /* =========================== REVIEWS SECTION ============================== */
  601. .gk-pointer-features.gk-left-arrow {
  602. right: 25%;
  603. top: 10%;
  604. }
  605. .reviews-slider-section {
  606. padding: 90px 0 0;
  607. }
  608. .reviews-info {
  609. text-align: center;
  610. padding: 0 70px 0 30px;
  611. }
  612. .reviews-msg {
  613. font-size: 17px;
  614. margin-bottom: 40px;
  615. line-height: 1.6;
  616. }
  617. .reviews-msg:before {
  618. content: "\e004";
  619. font-family: Flaticon;
  620. color: #CCC81E;
  621. font-size: 26px;
  622. }
  623. .reviews-image img {
  624. float: right;
  625. max-width: 310px;
  626. margin: 30px 30px 0 0;
  627. }
  628. .reviews-author:before {
  629. content: "";
  630. width: 100%;
  631. height: 100%;
  632. border: 1px solid #7f8c8d;
  633. border-radius: 50%;
  634. padding: 0 7px;
  635. font-size: 10px;
  636. }
  637. .reviews-author {
  638. font-size: 21px;
  639. }
  640. .reviews-author .author-sub {
  641. font-size: 17px;
  642. }
  643. .author-margin {
  644. margin: 45px 0 0;
  645. }
  646. .info-margin {
  647. margin: 35px 0 0;
  648. }
  649. .reviews-indicators {
  650. position: absolute;
  651. bottom: 0;
  652. right: 14%;
  653. }
  654. .reviews-indicators .fa {
  655. font-size: 26px;
  656. }
  657. .reviews-indicators .fa:hover {
  658. opacity: 0.7;
  659. }
  660. .main-reviews-image {
  661. padding-bottom: 90px;
  662. }
  663. .gk-slide-left,
  664. .gk-slide-right {
  665. padding: 0 10px;
  666. }
  667. /* =========================== SERVICES SECTION ============================== */
  668. .awesome-container {
  669. padding-top: 100px;
  670. max-width: 1320px;
  671. }
  672. .awesome-services {
  673. background: none repeat scroll 0 0 #fff;
  674. border: 1px solid #397ed1;
  675. border-radius: 12px;
  676. max-width: 312px;
  677. margin: 0 auto;
  678. padding: 40px 35px;
  679. }
  680. .awesome-services .simple-icon {
  681. font-size: 32px;
  682. padding-bottom: 30px;
  683. display: block;
  684. }
  685. .awesome-services h3 {
  686. font-size: 21px;
  687. margin-top: 0;
  688. margin-bottom: 25px;
  689. }
  690. .awesome-services .big-text {
  691. font-size: 17px;
  692. line-height: 27px;
  693. margin-bottom: 18px;
  694. }
  695. .gk-app-left-down-arrow {
  696. left: 31%;
  697. top: 84%;
  698. }
  699. /* =========================== SCREENSHOT SECTION ============================== */
  700. .app-left-info {
  701. padding-top: 70px;
  702. }
  703. .owl-controls {
  704. text-align: right;
  705. padding: 20px 20px 0 0;
  706. max-width: 1200px;
  707. margin: 0 auto;
  708. }
  709. .owl-controls .owl-buttons div {
  710. display: inline-block;
  711. }
  712. .owl-controls .owl-buttons .fa {
  713. padding: 0 10px;
  714. font-size: 26px;
  715. }
  716. .owl-controls .owl-buttons .fa:hover {
  717. opacity: 0.7;
  718. }
  719. .owl-controls .owl-buttons .owl-prev {
  720. left: 0;
  721. position: absolute;
  722. top: 50%;
  723. }
  724. .owl-controls .owl-buttons .owl-next {
  725. position: absolute;
  726. right: 0;
  727. top: 50%;
  728. }
  729. .app-carousel-slider {
  730. padding: 15px 0 0;
  731. }
  732. .screen-item img {
  733. border-radius: 12px;
  734. -moz-border-radius: 12px;
  735. -webkit-border-radius: 12px;
  736. -o-border-radius: 12px;
  737. -ms-border-radius: 12px;
  738. margin: 0 auto;
  739. }
  740. .app-container {
  741. max-width: 1320px;
  742. }
  743. .title-for-portfolio {
  744. color: #fff;
  745. }
  746. /* =========================== PRICING SECTION =========================== */
  747. .pricing-container {
  748. max-width: 1320px;
  749. padding-top: 90px;
  750. }
  751. .pricing-box {
  752. max-width: 315px;
  753. margin: 0 auto;
  754. }
  755. .pricing-title {
  756. background: none repeat scroll 0 0 #1a2836;
  757. border-radius: 10px 10px 10px 10px;
  758. padding: 20px 0;
  759. }
  760. .pricing-title h3 {
  761. font-size: 21px;
  762. }
  763. .pricing-box .symbol {
  764. font-size: 21px;
  765. vertical-align: top;
  766. line-height: 50px;
  767. padding-right: 8px;
  768. }
  769. .pricing-box .price h6 {
  770. font-size: 90px;
  771. line-height: 90px;
  772. padding-left: 20px;
  773. margin-top: 15px;
  774. margin-bottom: 20px;
  775. }
  776. .price .per-month {
  777. font-size: 17px;
  778. line-height: 20px;
  779. }
  780. .pricing-box ul {
  781. background: none repeat scroll 0 0 #fff;
  782. border: 1px solid #8ea8c1;
  783. border-radius: 0 0 10px 10px;
  784. padding: 40px;
  785. width: 100%;
  786. }
  787. .pricing-box ul li {
  788. line-height: 24px;
  789. }
  790. .Sale-in {
  791. color: #d31c1c;
  792. font-size: 35px;
  793. }
  794. .Price {
  795. text-decoration: line-through;
  796. color: #3a425d;
  797. font-size: 32px;
  798. }
  799. .titles-for-all-blocks {
  800. color: #a5b4cf;
  801. }
  802. /* =========================== DEMO SECTION ============================== */
  803. .video-bg {
  804. background: url(../images/video-bg.png) center center no-repeat;
  805. background-size: cover;
  806. padding-top: 60px;
  807. padding-bottom: 60px;
  808. position: relative;
  809. height: 510px;
  810. margin-top: 70px;
  811. border: 2px solid rgba(0, 0, 0, 0.5);
  812. border-radius: 6px;
  813. -moz-border-radius: 6px;
  814. -webkit-border-radius: 6px;
  815. -o-border-radius: 6px;
  816. -ms-border-radius: 6px;
  817. }
  818. #video_container {
  819. height: 510px;
  820. }
  821. .mb_YTVPBar .ytpicon {
  822. border-width: 12px;
  823. border-radius: 50%;
  824. -moz-border-radius: 50%;
  825. -webkit-border-radius: 50%;
  826. -o-border-radius: 50%;
  827. -ms-border-radius: 50%;
  828. font-size: 90px;
  829. line-height: 105px;
  830. }
  831. .mb_YTVPBar span {
  832. height: 128px;
  833. width: 128px;
  834. }
  835. .gk-pointer-features.gk-down-arrow {
  836. top: 64%;
  837. right: 20%;
  838. }
  839. /* =========================== DOWNLOAD SECTION ============================== */
  840. .download-right-info {
  841. padding: 0 0 30px;
  842. }
  843. .download-button {
  844. margin: 25% 0 15%;
  845. padding-top: 30px;
  846. text-align: center;
  847. }
  848. .gk-download-btn {
  849. font-family: 'Open Sans', sans-serif;
  850. font-size: 13px;
  851. font-weight: 700;
  852. padding: 12px 16px;
  853. text-transform: uppercase;
  854. width: auto;
  855. }
  856. .gk-download-btn .fa {
  857. padding-right: 10px;
  858. font-size: 17px;
  859. }
  860. .gk-download-pointer.gk-up-right-arrow {
  861. top: 100%;
  862. left: 50%;
  863. }
  864. .download-section .gk-input-submit.submit {
  865. padding-top: 20px;
  866. }
  867. .subscribe-form {
  868. padding-top: 20px;
  869. }
  870. .subscribe-form .form-group.gk-email {
  871. max-width: 415px;
  872. margin: 0 auto;
  873. }
  874. .has-error .help-block {
  875. margin: 0;
  876. }
  877. .download-section .gk-contact-form .form-control {
  878. border-bottom: 1px solid #7f8c8d;
  879. color: #7f8c8d;
  880. }
  881. .download-section .gk-contact-form .form-control::-moz-placeholder {
  882. color: #7f8c8d;
  883. }
  884. .download-section .gk-contact-form .form-control:-ms-input-placeholder {
  885. color: #7f8c8d;
  886. }
  887. .download-section .gk-contact-form .form-control::-webkit-input-placeholder {
  888. color: #7f8c8d;
  889. }
  890. .download-section .gk-submit {
  891. border: 1px solid #7f8c8d;
  892. color: #7f8c8d;
  893. }
  894. .download-section .gk-submit:hover {
  895. color: #fff;
  896. background: #7f8c8d;
  897. }
  898. /* =========================== CONTACT US SECTION ============================== */
  899. .gk-contact-form {
  900. padding-top: 40px;
  901. }
  902. .gk-contact-form .form-control {
  903. background: none;
  904. box-shadow: none;
  905. -moz-box-shadow: none;
  906. -webkit-box-shadow: none;
  907. -o-box-shadow: none;
  908. -ms-box-shadow: none;
  909. resize: none;
  910. border: none;
  911. border-bottom: 1px solid #fff;
  912. border-radius: 0px;
  913. -moz-border-radius: 0px;
  914. -webkit-border-radius: 0px;
  915. -o-border-radius: 0px;
  916. -ms-border-radius: 0px;
  917. color: #fff;
  918. text-transform: uppercase;
  919. font-family: 'Open Sans', sans-serif;
  920. font-weight: 700;
  921. font-size: 17px;
  922. padding-left: 0;
  923. }
  924. .gk-contact-form .form-control::-moz-placeholder {
  925. color: #fff;
  926. text-transform: uppercase;
  927. }
  928. .gk-contact-form .form-control:-ms-input-placeholder {
  929. color: #fff;
  930. text-transform: uppercase;
  931. }
  932. .gk-contact-form .form-control::-webkit-input-placeholder {
  933. color: #fff;
  934. text-transform: uppercase;
  935. }
  936. .gk-contact-form .form-group {
  937. margin-bottom: 30px;
  938. }
  939. .gk-textarea-message .form-control {
  940. background-image: -webkit-linear-gradient(left, transparent 10px, transparent 10px), -webkit-linear-gradient(right, transparent 10px, transparent 10px), -webkit-linear-gradient(transparent 60px, #fff 60px, #fff 61px, transparent 61px);
  941. background-image: -moz-linear-gradient(left, transparent 10px, transparent 10px), -moz-linear-gradient(right, transparent 10px, transparent 10px), -moz-linear-gradient(transparent 60px, #fff 60px, #fff 61px, transparent 61px);
  942. background-image: -ms-linear-gradient(left, transparent 10px, transparent 10px), -ms-linear-gradient(right, transparent 10px, transparent 10px), -ms-linear-gradient(transparent 60px, #fff 60px, #fff 61px, transparent 61px);
  943. background-image: -o-linear-gradient(left, transparent 10px, transparent 10px), -o-linear-gradient(right, transparent 10px, transparent 10px), -o-linear-gradient(transparent 60px, #fff 60px, #fff 61px, transparent 61px);
  944. background-image: linear-gradient(left, transparent 10px, transparent 10px), linear-gradient(right, transparent 10px, transparent 10px), linear-gradient(transparent 60px, #fff 60px, #fff 61px, transparent 61px);
  945. background-size: 100% 100%, 100% 100%, 100% 61px;
  946. line-height: 61px;
  947. border: none;
  948. }
  949. .gk-submit {
  950. background: none;
  951. border: 1px solid #fff;
  952. font-family: 'Open Sans', sans-serif;
  953. font-weight: 700;
  954. font-size: 13px;
  955. text-transform: uppercase;
  956. color: #fff;
  957. padding: 12px 40px;
  958. }
  959. .contact-section .gk-submit:hover {
  960. background-color: #fff;
  961. color: #CDC81E;
  962. }
  963. .gk-contact-form .has-error .form-control {
  964. border-color: #a94442;
  965. }
  966. .gk-contact-form .has-error .form-control:focus,
  967. .gk-contact-form .has-success .form-control:focus {
  968. box-shadow: none;
  969. -moz-box-shadow: none;
  970. -webkit-box-shadow: none;
  971. -o-box-shadow: none;
  972. -ms-box-shadow: none;
  973. }
  974. .gk-contact-form .has-success .form-control:focus {
  975. border-color: #fff;
  976. }
  977. .gk-textarea-message .form-control-feedback {
  978. line-height: 61px;
  979. height: 61px;
  980. }
  981. .has-error .gk-textarea-message .form-control {
  982. background-image: -webkit-linear-gradient(left, transparent 10px, transparent 10px), -webkit-linear-gradient(right, transparent 10px, transparent 10px), -webkit-linear-gradient(transparent 60px, #a94442 60px, #a94442 61px, transparent 61px);
  983. background-image: -moz-linear-gradient(left, transparent 10px, transparent 10px), -moz-linear-gradient(right, transparent 10px, transparent 10px), -moz-linear-gradient(transparent 60px, #a94442 60px, #a94442 61px, transparent 61px);
  984. background-image: -ms-linear-gradient(left, transparent 10px, transparent 10px), -ms-linear-gradient(right, transparent 10px, transparent 10px), -ms-linear-gradient(transparent 60px, #a94442 60px, #a94442 61px, transparent 61px);
  985. background-image: -o-linear-gradient(left, transparent 10px, transparent 10px), -o-linear-gradient(right, transparent 10px, transparent 10px), -o-linear-gradient(transparent 60px, #a94442 60px, #a94442 61px, transparent 61px);
  986. background-image: linear-gradient(left, transparent 10px, transparent 10px), linear-gradient(right, transparent 10px, transparent 10px), linear-gradient(transparent 60px, #a94442 60px, #a94442 61px, transparent 61px);
  987. }
  988. .gk-form-message {
  989. text-align: center;
  990. color: #FFFFFF;
  991. font-size: 15px;
  992. font-weight: 700;
  993. padding-top: 10px;
  994. display: none;
  995. }
  996. .gk-form-message-subscribe {
  997. color: #fff;
  998. }
  999. .gk-form-message .glyphicon {
  1000. padding-right: 8px;
  1001. }
  1002. .gk-contact-pointer {
  1003. padding: 170px 0 0;
  1004. margin-left: -70px;
  1005. }
  1006. .gk-contact-pointer img {
  1007. margin: 0 auto;
  1008. }
  1009. .gk-contact-form {
  1010. padding-top: 120px;
  1011. }
  1012. .contact-info {
  1013. padding-top: 140px;
  1014. font-size: 17px;
  1015. }
  1016. .contact-row {
  1017. margin-bottom: 15px;
  1018. }
  1019. .contact-row p {
  1020. margin-bottom: 5px;
  1021. }
  1022. .contact-info .simple-icon {
  1023. font-size: 20px;
  1024. text-shadow: 0 0 0;
  1025. }
  1026. /* =========================== FOOTER SECTION ============================== */
  1027. .footer-bg {
  1028. background: #141414;
  1029. color: #7f8c8d;
  1030. padding: 10px 0;
  1031. }
  1032. .footer-bg p {
  1033. margin: 0;
  1034. }
  1035. .footer-social-icon {
  1036. display: inline-block;
  1037. margin: 0 0 0 20px;
  1038. }
  1039. .footer-social-icon a {
  1040. background: #CCC81E;
  1041. color: #121413;
  1042. border-radius: 100%;
  1043. font-size: 12px;
  1044. display: inline-block;
  1045. width: 18px;
  1046. height: 18px;
  1047. margin: 0 3px;
  1048. }
  1049. .footer-social-icon .fa {
  1050. width: 18px;
  1051. height: 18px;
  1052. display: block;
  1053. line-height: 18px;
  1054. }
  1055. .name-logo {
  1056. display: flex;
  1057. padding: 0;
  1058. margin: 0;
  1059. font-weight: bold;
  1060. color: #00ACEE;
  1061. }