style.css 24 KB

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