style.css 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630
  1. html,
  2. body {
  3. font-family: 'Raleway', sans-serif;
  4. font-size: 100%;
  5. overflow-x: hidden;
  6. background: #fff;
  7. }
  8. body a {
  9. transition: 0.5s all ease;
  10. -webkit-transition: 0.5s all ease;
  11. -moz-transition: 0.5s all ease;
  12. -o-transition: 0.5s all ease;
  13. -ms-transition: 0.5s all ease;
  14. text-decoration: none;
  15. }
  16. h1,
  17. h2,
  18. h3,
  19. h4,
  20. h5,
  21. h6 {
  22. margin: 0;
  23. font-family: 'Raleway', sans-serif;
  24. }
  25. p {
  26. line-height: 1.8;
  27. font-size: 1em;
  28. color: #333;
  29. }
  30. ul {
  31. margin: 0;
  32. padding: 0;
  33. }
  34. li {
  35. list-style-type: none;
  36. }
  37. body a:hover {
  38. text-decoration: none;
  39. }
  40. /* banner */
  41. /* header */
  42. header h1 {
  43. line-height: 0;
  44. }
  45. a.navbar-brand i {
  46. font-size: 2.5em;
  47. color: #48bf91;
  48. }
  49. .tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
  50. header h1 a span {
  51. color: #fff;
  52. display: block;
  53. font-size: 12px;
  54. letter-spacing: 5px;
  55. word-spacing: 5px;
  56. }
  57. .navbar-light .navbar-nav .nav-link {
  58. font-weight: 600;
  59. text-transform: capitalize;
  60. color: #fff;
  61. font-size: 12px;
  62. letter-spacing: 1px;
  63. }
  64. .navbar-light .navbar-nav .nav-link:hover,
  65. .navbar-light .navbar-nav .nav-link:focus,
  66. .navbar-light .navbar-nav .show>.nav-link,
  67. .navbar-light .navbar-nav .active>.nav-link,
  68. .navbar-light .navbar-nav .nav-link.show,
  69. .navbar-light .navbar-nav .nav-link.active {
  70. color: #0076BE;
  71. background: #fff;
  72. border-radius: 5px;
  73. }
  74. .w3ls-btn {
  75. letter-spacing: 1px;
  76. font-weight: 600;
  77. }
  78. /*-- //header --*/
  79. /* banner */
  80. .banner {
  81. background: url(../images/banner.png)no-repeat;
  82. -webkit-background-size: cover;
  83. -moz-background-size: cover;
  84. -o-background-size: cover;
  85. -ms-background-size: cover;
  86. background-size: cover;
  87. height: 40vw;
  88. }
  89. .banner-text {
  90. padding: 14vw 0 0;
  91. max-width: 900px;
  92. margin: 0 auto;
  93. }
  94. .banner-text-new {
  95. padding: 10vw 0 0;
  96. margin: 0 auto;
  97. }
  98. /*-- text Slider --*/
  99. #slider {
  100. box-shadow: none;
  101. -moz-box-shadow: none;
  102. -webkit-box-shadow: none;
  103. margin: 0 auto;
  104. }
  105. .rslides_tabs {
  106. list-style: none;
  107. padding: 0;
  108. background: rgba(0, 0, 0, .25);
  109. box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
  110. -moz-box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
  111. -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
  112. font-size: 18px;
  113. list-style: none;
  114. margin: 0 auto 50px;
  115. max-width: 540px;
  116. padding: 10px 0;
  117. text-align: center;
  118. width: 100%;
  119. }
  120. .rslides_tabs li {
  121. display: inline;
  122. float: none;
  123. margin-right: 1px;
  124. }
  125. .rslides_tabs a {
  126. width: auto;
  127. line-height: 20px;
  128. padding: 9px 20px;
  129. height: auto;
  130. background: transparent;
  131. display: inline;
  132. }
  133. .rslides_tabs li:first-child {
  134. margin-left: 0;
  135. }
  136. .rslides_tabs .rslides_here a {
  137. background: rgba(255, 255, 255, .1);
  138. color: #fff;
  139. font-weight: bold;
  140. }
  141. .events {
  142. list-style: none;
  143. }
  144. .callbacks_container {
  145. position: relative;
  146. }
  147. ul.callbacks_tabs {
  148. position: absolute;
  149. z-index: 9;
  150. left: 45%;
  151. bottom: -50px;
  152. }
  153. .callbacks_tabs a {
  154. visibility: hidden;
  155. }
  156. .callbacks_tabs a:after {
  157. content: "\f111";
  158. font-size: 0;
  159. visibility: visible;
  160. display: inline-block;
  161. height: 10px;
  162. width: 10px;
  163. background: #48bf91;
  164. }
  165. .callbacks_here a:after {
  166. background: #fff;
  167. height: 10px;
  168. width: 10px;
  169. }
  170. /*
  171. .callbacks_nav {
  172. position: absolute;
  173. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  174. top: 78%;
  175. opacity: 0.7;
  176. z-index: 3;
  177. text-indent: -9999px;
  178. overflow: hidden;
  179. text-decoration: none;
  180. height: 34px;
  181. width: 34px;
  182. background: url("../images/left.png") no-repeat 0px 0px;
  183. }
  184. .callbacks_nav.prev {
  185. left: auto;
  186. background: url("../images/back.png") no-repeat 0px 0px;
  187. left: 18em;
  188. }
  189. .callbacks_nav.next {
  190. left: auto;
  191. background: url("../images/next.png") no-repeat 0px 0px;
  192. right: 18em;
  193. }
  194. .callbacks_nav:active {
  195. opacity: 1.0;
  196. }
  197. .callbacks2_nav:active {
  198. opacity: 1.0;
  199. }*/
  200. #slider-pager a {
  201. display: inline-block;
  202. }
  203. #slider-pager span {
  204. float: left;
  205. }
  206. #slider-pager span {
  207. width: 100px;
  208. height: 15px;
  209. background: #fff;
  210. display: inline-block;
  211. border-radius: 30em;
  212. opacity: 0.6;
  213. }
  214. #slider-pager .rslides_here a {
  215. background: #FFF;
  216. border-radius: 30em;
  217. opacity: 1;
  218. }
  219. #slider-pager a {
  220. padding: 0;
  221. }
  222. #slider-pager li {
  223. display: inline-block;
  224. }
  225. .rslides {
  226. position: relative;
  227. list-style: none;
  228. overflow: hidden;
  229. padding: 0;
  230. margin: 0;
  231. width: 100%;
  232. }
  233. .rslides li {
  234. -webkit-backface-visibility: hidden;
  235. position: absolute;
  236. display: none;
  237. left: 0%;
  238. top: 0;
  239. width: 100%;
  240. }
  241. .rslides li {
  242. position: relative;
  243. display: block;
  244. float: none;
  245. }
  246. .rslides img {
  247. height: auto;
  248. border: 0;
  249. }
  250. .callbacks_tabs li {
  251. display: inline-block;
  252. margin: 0 10px 0 0;
  253. }
  254. .callbacks_tabs a {
  255. visibility: hidden;
  256. width: 20px;
  257. line-height: 19px;
  258. height: 20px;
  259. text-align: center;
  260. color: #000;
  261. font-weight: 600;
  262. display: block;
  263. background: #fff;
  264. border-radius: 50%;
  265. }
  266. .callbacks_tabs a:hover {
  267. background: #1165f3;
  268. color: #fff;
  269. }
  270. p.sub-para {
  271. font-size: 18px;
  272. color: #fff;
  273. letter-spacing: 2px;
  274. font-weight: 300;
  275. }
  276. .slider-info img {
  277. width: 100px;
  278. margin: 0 auto;
  279. }
  280. .slider-top span {
  281. font-weight: 600;
  282. }
  283. .slider-info h3 {
  284. font-size: 4vw;
  285. color: #ffffff;
  286. letter-spacing: 2px;
  287. font-weight: 400;
  288. line-height: 1.15em;
  289. text-shadow: 4px 1px 1px #48bf91;
  290. }
  291. .slider-info p {
  292. color: #e8e8e8;
  293. font-size: 16px;
  294. letter-spacing: 3px;
  295. margin-top: 1em;
  296. text-transform: capitalize;
  297. }
  298. .slider-info a {
  299. color: #fff;
  300. font-size: 16px;
  301. font-weight: 600;
  302. letter-spacing: 1px;
  303. }
  304. .slider-info a:hover {
  305. color: #fff;
  306. background: #007bff;
  307. }
  308. .counter-our-number {
  309. border-radius: 50%;
  310. background-color: rgba(190,14,41,0.8);
  311. font-size: 40px;
  312. color: #fff;
  313. height: 230px;
  314. font-family: MFLiHei_Noncommercial-Regular;
  315. display: flex;
  316. align-items: center;
  317. justify-content: center;
  318. font-weight: 800;
  319. }
  320. /* //text slider */
  321. /* //banner */
  322. /* about */
  323. .about-w3ls {
  324. margin-top: -5em;
  325. background: url(../images/w1.jpg) no-repeat right;
  326. }
  327. div#services {
  328. /*background: url(../images/w.jpg) no-repeat left top;*/
  329. }
  330. section#pricing {
  331. /*background: url(../images/w.jpg) no-repeat right top;*/
  332. }
  333. .about-w3ls .jumbotron {
  334. background: transparent;
  335. }
  336. h1.ab-title {
  337. font-size: 2.5em;
  338. color: #48BF91;
  339. }
  340. .lead {
  341. line-height: 2;
  342. }
  343. h3.w3ls-title {
  344. font-size: 3em;
  345. color: #48BF91;
  346. }
  347. h4.w3ls-title {
  348. font-size: 2em;
  349. color: #000;
  350. }
  351. /* //about */
  352. /*-- services --*/
  353. div#agileits-services {
  354. background: url(../images/s2.jpg) no-repeat center;
  355. background-size: cover;
  356. background-attachment: fixed;
  357. }
  358. .agileits-services-grids {
  359. text-align: center;
  360. }
  361. .agileits-services-grids h4 {
  362. font-size: 1.5em;
  363. color: #000;
  364. line-height: 1.5em;
  365. font-weight: 600;
  366. }
  367. .agileits-services-grids h6 {
  368. padding: 1px;
  369. background: #2954a2;
  370. width: 33%;
  371. margin: 2em auto 0;
  372. -webkit-transition: .5s all;
  373. -moz-transition: .5s all;
  374. transition: .5s all;
  375. }
  376. .agileits-services-grids:hover h6 {
  377. width: 55%;
  378. background: #2954a2;
  379. }
  380. /*-- Effect 1--*/
  381. .agileits-services-grids span {
  382. font-size: 5em;
  383. color: #0076BE;
  384. }
  385. /*-- //services --*/
  386. /* about */
  387. h3.agile-title {
  388. color: #000;
  389. font-size: 3em;
  390. line-height: 36px;
  391. font-weight: 400;
  392. letter-spacing: 4.7px;
  393. }
  394. .card-title {
  395. text-transform: uppercase;
  396. font-size: 1.5em;
  397. color: #000000;
  398. letter-spacing: 6px;
  399. word-spacing: 4px;
  400. }
  401. .card-body a.btn {
  402. background: #eb5c74;
  403. border: none;
  404. color: #fff;
  405. }
  406. h3.stat-title {
  407. color: #fff;
  408. letter-spacing: 4.5px;
  409. font-size: 2.8em;
  410. line-height: 25px;
  411. }
  412. .counter i {
  413. color: #bed0e9;
  414. }
  415. p.count-text {
  416. color: #fff;
  417. }
  418. .timer {
  419. font-size: 2em;
  420. color: #fff;
  421. }
  422. .w3l-thead {
  423. background: #007bff;
  424. }
  425. .counter {
  426. background: rgba(16, 16, 16, 0.3);
  427. }
  428. /*-- about--*/
  429. /* about bottom */
  430. .abbot-main {
  431. background: #edf5fd;
  432. }
  433. .abbot-grid2 {
  434. background: #fdeef1;
  435. }
  436. .abbot-right .card {
  437. background: transparent;
  438. border: none;
  439. }
  440. .abt_card_btn {
  441. font-family: 'Raleway', sans-serif;
  442. font-size: 1.2em;
  443. letter-spacing: 4px;
  444. color: #333 !important;
  445. }
  446. /* slide */
  447. .slide-bg {
  448. background: url(../images/slide.jpg) no-repeat;
  449. background-size: cover;
  450. min-height: 35vw;
  451. background-attachment: fixed;
  452. }
  453. h5.agile-title {
  454. color: #fff;
  455. font-size: 2.7em;
  456. font-weight: 600;
  457. letter-spacing: 2px;
  458. word-spacing: 4px;
  459. font-family: 'Raleway', sans-serif;
  460. max-width: 750px;
  461. }
  462. .slide-bg p {
  463. max-width: 750px;
  464. letter-spacing: 1px;
  465. }
  466. /* //slide */
  467. /* pricing */
  468. .bg-price h4 {
  469. color: #000;
  470. font-size: 2em;
  471. letter-spacing: 2px;
  472. }
  473. .bg-price span {
  474. display: block;
  475. background: #17a2b8;
  476. width: 15px;
  477. height: 5px;
  478. border-radius: 10px;
  479. }
  480. .agile-pricegrid h5 {
  481. font-size: 3em;
  482. color: #0076BE;
  483. }
  484. .agile-pricegrid h5 span {
  485. display: inline;
  486. }
  487. .list-group-item {
  488. color: #777;
  489. }
  490. .btn-info {
  491. color: #fff;
  492. background-color: #48BF91;
  493. border-color: #48BF91;
  494. }
  495. /* //pricing */
  496. /* portfolio */
  497. ul.portfolio-area li figure {
  498. margin: 0;
  499. cursor: zoom-in;
  500. }
  501. .portfolio-categ li {
  502. color: #333;
  503. cursor: pointer;
  504. display: inline-block;
  505. padding: 10px 20px;
  506. font-size: 1.1em;
  507. margin: 0 0.4em;
  508. letter-spacing: 1px;
  509. text-transform: capitalize;
  510. background: #eee;
  511. }
  512. .portfolio-categ li a {
  513. color: #333;
  514. }
  515. .image-block {
  516. display: block;
  517. position: relative;
  518. }
  519. .portfolio-area li {
  520. float: left;
  521. list-style-type: none;
  522. overflow: hidden;
  523. width: 388px;
  524. }
  525. .home-portfolio-text {
  526. margin-top: 10px;
  527. }
  528. .portfolio-categ li.active {
  529. background: #EB5C74;
  530. color: #fff;
  531. }
  532. .portfolio-categ li.active a {
  533. color: #fff;
  534. }
  535. /* //portfolio */
  536. /* team */
  537. /* stats */
  538. .agile_stats {
  539. background: url(../images/stat.png) no-repeat;
  540. background-size: cover;
  541. min-height: 500px;
  542. background-attachment: fixed;
  543. }
  544. /* //stats */
  545. .footerv2-w3ls h4 {
  546. color: #0076BE;
  547. font-size: 1.3em;
  548. }
  549. .team-effect {
  550. display: block;
  551. overflow: hidden;
  552. position: relative;
  553. -webkit-transition: all 0.5s;
  554. -moz-transition: all 0.5s;
  555. -ms-transition: all 0.5s;
  556. -o-transition: all 0.5s;
  557. transition: all 0.5s;
  558. opacity: 1;
  559. filter: alpha(opacity=100);
  560. }
  561. .footerv2-w3ls p {
  562. margin: 5px 0;
  563. }
  564. .team-text {
  565. -webkit-transition: all 0.5s;
  566. -moz-transition: all 0.5s;
  567. -ms-transition: all 0.5s;
  568. -o-transition: all 0.5s;
  569. transition: all 0.5s;
  570. }
  571. .team-effect img {
  572. height: 100%;
  573. width: 100%;
  574. -webkit-transition: all 0.5s;
  575. -moz-transition: all 0.5s;
  576. -ms-transition: all 0.5s;
  577. -o-transition: all 0.5s;
  578. transition: all 0.5s;
  579. }
  580. .team-effect img:before {
  581. content: '';
  582. background-color: rgba(0, 0, 0, 0);
  583. left: 0;
  584. top: 0;
  585. right: 0;
  586. bottom: 0;
  587. position: absolute;
  588. -webkit-transition: all 0.5s;
  589. -moz-transition: all 0.5s;
  590. -ms-transition: all 0.5s;
  591. -o-transition: all 0.5s;
  592. transition: all 0.5s;
  593. }
  594. .team-effect img:hover {
  595. background-color: rgba(0, 0, 0, 0.8);
  596. }
  597. .team-grids:hover .team-text {
  598. background-color: #e01414;
  599. }
  600. .team-grids:hover .team-text p {
  601. color: #fff;
  602. }
  603. .team-grids:hover .social-icon {
  604. bottom: 0%;
  605. height: 100%;
  606. padding-top: 18em;
  607. position: absolute;
  608. visibility: visible;
  609. background-color: rgba(0, 0, 0, 0.8);
  610. -webkit-transform: scale(1);
  611. -moz-transform: scale(1);
  612. -o-transform: scale(1);
  613. -ms-transform: scale(1);
  614. transform: scale(1);
  615. -webkit-transition: all 0.9s;
  616. -moz-transition: all 0.9s;
  617. -ms-transition: all 0.9s;
  618. -o-transition: all 0.9s;
  619. transition: all 0.9s;
  620. }
  621. .team-effect:hover .social-icon a {
  622. -webkit-animation-name: translate-transition;
  623. -webkit-animation-duration: 0.8s;
  624. -webkit-animation-timing-function: linear;
  625. -webkit-animation-iteration-count: 1;
  626. animation-name: translate-transition;
  627. animation-duration: 0.8s;
  628. animation-timing-function: linear;
  629. animation-iteration-count: 1;
  630. }
  631. .team-text {
  632. background-color: #dedada;
  633. padding: 20px;
  634. width: 100%;
  635. text-align: center;
  636. }
  637. .team-text h4 {
  638. color: #000;
  639. font-size: 2em;
  640. }
  641. .team-text p {
  642. margin-top: 0.3em;
  643. text-transform: capitalize;
  644. }
  645. .team-effect .social-icon {
  646. bottom: 0;
  647. padding: 10px;
  648. left: 0;
  649. position: absolute;
  650. right: 0;
  651. text-align: center;
  652. overflow: hidden;
  653. z-index: 9;
  654. -webkit-transform: scale(0);
  655. -moz-transform: scale(0);
  656. -o-transform: scale(0);
  657. -ms-transform: scale(0);
  658. transform: scale(0);
  659. -webkit-transition: all 0.5s;
  660. -moz-transition: all 0.5s;
  661. -ms-transition: all 0.5s;
  662. -o-transition: all 0.5s;
  663. transition: all 0.5s;
  664. visibility: hidden;
  665. }
  666. .social-button {
  667. display: inline-block;
  668. background-color: #fff;
  669. width: 40px;
  670. height: 40px;
  671. margin: 0 3px;
  672. text-align: center;
  673. position: relative;
  674. overflow: hidden;
  675. opacity: .99;
  676. -webkit-border-radius: 20%;
  677. -moz-border-radius: 20%;
  678. border-radius: 20%;
  679. }
  680. .social-button:before {
  681. content: '';
  682. background-color: #000;
  683. width: 120%;
  684. height: 120%;
  685. position: absolute;
  686. top: 102%;
  687. left: -118%;
  688. -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  689. -moz-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  690. transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  691. }
  692. .social-button .fa {
  693. font-size: 2em;
  694. line-height: 1.5;
  695. -webkit-transform: scale(0.8);
  696. -moz-transform: scale(0.8);
  697. -o-transform: scale(0.8);
  698. -ms-transform: scale(0.8);
  699. transform: scale(0.8);
  700. -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  701. -moz-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  702. transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  703. }
  704. .social-button.facebook:before {
  705. background-color: #3B5998;
  706. }
  707. .social-button.facebook .fa {
  708. color: #3B5998;
  709. }
  710. .social-button.twitter:before {
  711. background-color: #3CF;
  712. }
  713. .social-button.twitter .fa {
  714. color: #3CF;
  715. }
  716. .social-button.google:before {
  717. background-color: #DC4A38;
  718. }
  719. .social-button.google .fa {
  720. color: #DC4A38;
  721. }
  722. .social-button.dribbble:before {
  723. background-color: #F26798;
  724. }
  725. .social-button.dribbble .fa {
  726. color: #F26798;
  727. }
  728. .social-button.skype:before {
  729. background-color: #00AFF0;
  730. }
  731. .social-button.skype .fa {
  732. color: #00AFF0;
  733. }
  734. .social-button:focus:before,
  735. .social-button:hover:before {
  736. top: -10%;
  737. left: -10%;
  738. }
  739. .social-button:focus .fa,
  740. .social-button:hover .fa {
  741. color: #fff;
  742. -webkit-transform: scale(1);
  743. -o-transform: scale(1);
  744. -moz-transform: scale(1);
  745. -ms-transform: scale(1);
  746. transform: scale(1);
  747. }
  748. /*-- //team --*/
  749. /*-- team --*/
  750. .team.agileits-w3layouts {
  751. background: #fff;
  752. }
  753. .team-grid.w3_agileits img {
  754. margin: 1em 0 0;
  755. }
  756. .team-grid.w3_agileits ul {
  757. margin: 1em 0 0;
  758. }
  759. .team-grid.w3_agileits {
  760. padding: 2em;
  761. -webkit-box-shadow: 5px 10px 10px 0px rgba(216, 216, 216, 0.78);
  762. -moz-box-shadow: 5px 10px 10px 0px rgba(216, 216, 216, 0.78);
  763. box-shadow: 5px 10px 10px 0px rgba(216, 216, 216, 0.78);
  764. }
  765. .testi-grids img {
  766. display: inline-block;
  767. -webkit-border-radius: 50%;
  768. border-radius: 50%;
  769. -moz-border-radius: 50%;
  770. text-decoration: none;
  771. z-index: 1;
  772. -webkit-transition: .5s all;
  773. -moz-transition: .5s all;
  774. transition: .5s all;
  775. }
  776. .team-grid .social-icons {
  777. margin-top: 1em;
  778. }
  779. /*-- testimonials--*/
  780. .testi-agile {
  781. background: url(../images/testi.jpg) no-repeat center;
  782. background-size: cover;
  783. background-attachment: fixed;
  784. }
  785. .test-review p {
  786. max-width: 550px;
  787. letter-spacing: 1px;
  788. }
  789. .test-review p {
  790. max-width: 500px;
  791. }
  792. .img-agile i {
  793. font-size: 3em;
  794. color: #0076be;
  795. }
  796. .carousel-control.left,
  797. .carousel-control.right {
  798. background: none;
  799. width: 25px;
  800. }
  801. .carousel-control.left {
  802. left: -25px;
  803. }
  804. .carousel-control.right {
  805. right: -25px;
  806. }
  807. .broun-block {
  808. padding-bottom: 34px;
  809. }
  810. .block-text {
  811. background-color: #fff;
  812. border-radius: 5px;
  813. box-shadow: 0 3px 0 #2c2222;
  814. color: #000;
  815. margin-top: 27px;
  816. padding: 15px 18px;
  817. }
  818. .block-text span {
  819. color: #eb5c74;
  820. }
  821. .block-text h6 {
  822. color: #000000;
  823. font-size: 20px;
  824. font-weight: bold;
  825. text-transform: capitalize;
  826. line-height: 21px;
  827. font-family: 'Raleway', sans-serif;
  828. }
  829. .mark {
  830. background: none;
  831. }
  832. .block-text p {
  833. color: #585858;
  834. font-style: italic;
  835. }
  836. .block {
  837. display: block;
  838. }
  839. .zmin {
  840. z-index: 1;
  841. }
  842. .ab {
  843. position: absolute;
  844. }
  845. .person-text {
  846. padding: 10px 0 0;
  847. text-align: center;
  848. z-index: 2;
  849. }
  850. .person-text h5 {
  851. color: #eb5c74;
  852. display: block;
  853. font-size: 1.2em;
  854. margin: 10px 0 5px;
  855. font-family: 'Raleway', sans-serif;
  856. }
  857. .person-text i {
  858. color: #000;
  859. }
  860. .rel {
  861. position: relative;
  862. background: #eaeaea;
  863. padding: 2em;
  864. }
  865. .person-text.rel {
  866. background: transparent;
  867. }
  868. /*-- testimonials--*/
  869. /*-- img-hover-effect --*/
  870. .adipoli-wrapper {
  871. margin: auto;
  872. position: relative;
  873. display: inline-block;
  874. }
  875. .adipoli-wrapper>img {
  876. position: absolute;
  877. z-index: 1;
  878. }
  879. .adipoli-before {
  880. position: absolute;
  881. z-index: 5;
  882. }
  883. .adipoli-after {
  884. position: absolute;
  885. z-index: 10;
  886. }
  887. .adipoli-slice {
  888. display: block;
  889. position: absolute;
  890. z-index: 15;
  891. height: 100%;
  892. background-size: cover !important;
  893. }
  894. .gal-w3l img {
  895. width: 100% !important;
  896. }
  897. .gal-w3l {
  898. padding-left: 5px !important;
  899. padding-right: 5px !important;
  900. margin-bottom: 4px;
  901. }
  902. .gallery {
  903. background: #f0f9f6;
  904. }
  905. /*-- //img-hover-effect --*/
  906. /*--contact--*/
  907. .map iframe {
  908. width: 100%;
  909. border: 1px solid #17a2b8;
  910. }
  911. .address h5 {
  912. color: #000;
  913. text-transform: capitalize;
  914. font-size: 1.1em;
  915. }
  916. .address p a,
  917. p.c-txt {
  918. color: #777;
  919. font-size: 1em;
  920. }
  921. .address p a:hover {
  922. color: #000;
  923. }
  924. .contact-top1 .form-group label,
  925. form.f-color .form-control {
  926. color: #000;
  927. font-weight: 600;
  928. letter-spacing: 1px;
  929. }
  930. .contact-top1 h5 {
  931. font-size: 2em;
  932. }
  933. .address h5 {
  934. font-size: 1.5em;
  935. }
  936. /*--//contact--*/
  937. /* footer */
  938. footer {
  939. background: #fff;
  940. }
  941. /* footer grids */
  942. .footerv3-top h3 {
  943. font-size: 1.3em;
  944. color: #fff;
  945. text-transform: uppercase;
  946. margin-bottom: 1.5em;
  947. }
  948. .footv3-left h4 a {
  949. font-size: 1.3em;
  950. letter-spacing: 0.5px;
  951. color: #fff !important;
  952. padding: 14px 0 0;
  953. position: relative;
  954. text-transform: capitalize;
  955. }
  956. .footerv3-top p {
  957. font-size: 1em;
  958. color: #a3b1bf;
  959. margin: 1em 0;
  960. line-height: 1.5em;
  961. }
  962. .footer p a {
  963. color: #777;
  964. }
  965. .footer p a:hover {
  966. color: #ED4F2E;
  967. }
  968. .fv3-contact span {
  969. color: #17a2b8;
  970. font-size: 1.2em;
  971. display: inline-block;
  972. vertical-align: middle;
  973. }
  974. .fv3-contact p {
  975. display: inline-block;
  976. color: #333;
  977. }
  978. .footer-top p {
  979. max-width: 400px;
  980. }
  981. .fv3-contact p a:hover {
  982. color: #000;
  983. }
  984. .list-agileits li a {
  985. color: #333;
  986. font-size: 1em;
  987. }
  988. h3.w3f_title {
  989. font-size: 1.5em;
  990. letter-spacing: 2px;
  991. color: #000;
  992. }
  993. .cpy-right p a {
  994. color: #333;
  995. font-size: 1em;
  996. }
  997. /* footer grids */
  998. footer-top p {
  999. max-width: 500px;
  1000. }
  1001. .footerv2-w3ls ul.social-iconsv2 li {
  1002. display: inline-block;
  1003. margin-right: 6px;
  1004. border-radius: 50%;
  1005. }
  1006. .footerv2-w3ls ul.social-iconsv2 li a {
  1007. text-decoration: none;
  1008. font-size: 16px;
  1009. color: #fff;
  1010. }
  1011. .footerv2-w3ls ul.social-iconsv2 li a i.fab {
  1012. font-size: 18px;
  1013. line-height: 38px;
  1014. width: 37px;
  1015. height: 37px;
  1016. border-radius: 50%;
  1017. text-align: center;
  1018. background-color: transparent;
  1019. transition: all 0.5s ease-in-out;
  1020. -webkit-transition: all 0.5s ease-in-out;
  1021. -moz-transition: all 0.5s ease-in-out;
  1022. -o-transition: all 0.5s ease-in-out;
  1023. -ms-transition: all 0.5s ease-in-out;
  1024. }
  1025. .footerv2-w3ls ul.social-iconsv2 li:first-child {
  1026. background: #3b5998;
  1027. color: #fff;
  1028. }
  1029. .footerv2-w3ls ul.social-iconsv2 li:last-child {
  1030. background: #287bbc;
  1031. color: #000;
  1032. }
  1033. .footerv2-w3ls ul.social-iconsv2 li:nth-child(3) {
  1034. background: #dd4b39;
  1035. color: #000;
  1036. }
  1037. .footerv2-w3ls ul.social-iconsv2 li a i.fab:hover {
  1038. background-color: #fff;
  1039. color: #000;
  1040. }
  1041. .footerv2-w3ls ul.social-iconsv2 li:nth-child(2) {
  1042. background: #1da1f2;
  1043. color: #000;
  1044. }
  1045. .footerv2-w3ls ul.social-iconsv2 li a:hover {
  1046. color: #fff;
  1047. }
  1048. /* //footer */
  1049. /* login and register modal */
  1050. .modal-content {
  1051. font-family: 'Raleway', sans-serif;
  1052. }
  1053. .form-control {
  1054. font-family: 'Raleway', sans-serif;
  1055. }
  1056. .right-w3l input[type="submit"] {
  1057. background: #020202;
  1058. border: none;
  1059. color: #fff;
  1060. font-size: 1em;
  1061. text-transform: uppercase;
  1062. letter-spacing: 1px;
  1063. font-family: 'Raleway', sans-serif;
  1064. cursor: pointer;
  1065. }
  1066. .col-form-label {
  1067. text-transform: uppercase;
  1068. font-weight: 600;
  1069. color: #000;
  1070. font-size: 13px;
  1071. letter-spacing: 1px;
  1072. }
  1073. .modal-header {
  1074. background: #0076BE;
  1075. color: #fff;
  1076. border: none;
  1077. }
  1078. .modal-body {
  1079. position: relative;
  1080. -webkit-box-flex: 1;
  1081. -ms-flex: 1 1 auto;
  1082. flex: 1 1 auto;
  1083. padding: 1rem;
  1084. background: #fff;
  1085. }
  1086. h5.modal-title {
  1087. letter-spacing: 1px;
  1088. font-size: 1.6em;
  1089. }
  1090. /* //modal */
  1091. /*-- bottom-to-top --*/
  1092. #toTop {
  1093. display: none;
  1094. text-decoration: none;
  1095. position: fixed;
  1096. bottom: 24px;
  1097. right: 3%;
  1098. overflow: hidden;
  1099. z-index: 999;
  1100. width: 32px;
  1101. height: 32px;
  1102. border: none;
  1103. text-indent: 100%;
  1104. background: url(../images/move-top.png) no-repeat 0px 0px;
  1105. }
  1106. #toTopHover {
  1107. width: 32px;
  1108. height: 32px;
  1109. display: block;
  1110. overflow: hidden;
  1111. float: right;
  1112. opacity: 0;
  1113. -moz-opacity: 0;
  1114. filter: alpha(opacity=0);
  1115. }
  1116. /*-- //bottom-to-top --*/
  1117. /* -- Responsive code -- */
  1118. @media screen and (max-width: 1080px) {
  1119. .agileits-services-grids h4 {
  1120. font-size: 1.3em;
  1121. }
  1122. .agileits-services-grids span {
  1123. font-size: 4em;
  1124. }
  1125. h3.stat-title {
  1126. letter-spacing: 2.5px;
  1127. font-size: 2.6em;
  1128. }
  1129. .agile-pricegrid h5 {
  1130. font-size: 2.5em;
  1131. }
  1132. h5.agile-title {
  1133. font-size: 2.5em;
  1134. }
  1135. }
  1136. @media screen and (max-width: 991px) {
  1137. .btn-info {
  1138. margin: 10px auto;
  1139. display: block;
  1140. }
  1141. .banner {
  1142. height: 47vw;
  1143. }
  1144. .slider-info h3 {
  1145. font-size: 4.5vw;
  1146. }
  1147. h1.ab-title {
  1148. font-size: 2.3em;
  1149. }
  1150. .timer {
  1151. font-size: 1.8em;
  1152. }
  1153. h5.agile-title {
  1154. font-size: 2.3em;
  1155. }
  1156. .navbar-nav .dropdown-menu{
  1157. text-align:center;
  1158. }
  1159. }
  1160. @media screen and (max-width: 900px) {
  1161. h3.agile-title {
  1162. font-size: 2.8em;
  1163. letter-spacing: 1px;
  1164. }
  1165. }
  1166. @media screen and (max-width: 800px) {
  1167. .slider-info h3 {
  1168. font-size: 2.8em;
  1169. }
  1170. .banner {
  1171. height: 54vw;
  1172. }
  1173. h3.stat-title {
  1174. letter-spacing: 2px;
  1175. font-size: 2.4em;
  1176. }
  1177. }
  1178. @media screen and (max-width: 768px) {}
  1179. @media screen and (max-width: 767px) {}
  1180. @media screen and (max-width: 736px) {
  1181. .slider-info h3 {
  1182. line-height: 1.3;
  1183. }
  1184. .lead {
  1185. font-size: 1.1rem;
  1186. }
  1187. .callbacks_tabs li {
  1188. margin: 0;
  1189. }
  1190. .slider-info h3 {
  1191. font-size: 2.5em;
  1192. }
  1193. ul.callbacks_tabs {
  1194. bottom: -40px;
  1195. }
  1196. h1.ab-title {
  1197. font-size: 2em;
  1198. }
  1199. h3.w3ls-title {
  1200. font-size: 2.5em;
  1201. }
  1202. h5.agile-title {
  1203. font-size: 1.8em;
  1204. }
  1205. }
  1206. @media screen and (max-width: 667px) {
  1207. .banner {
  1208. height: 425px;
  1209. }
  1210. .footerv2-w3ls ul.social-iconsv2 li a i.fab {
  1211. font-size: 17px;
  1212. line-height: 33px;
  1213. width: 32px;
  1214. height: 32px;
  1215. }
  1216. h3.agile-title {
  1217. font-size: 2.3em;
  1218. }
  1219. }
  1220. @media screen and (max-width: 640px) {
  1221. .about-w3ls .jumbotron {
  1222. padding-left: 0;
  1223. padding-right: 0;
  1224. }
  1225. .slider-info h3 {
  1226. font-size: 2.3em;
  1227. }
  1228. .agile-pricegrid h5 {
  1229. font-size: 2.3em;
  1230. }
  1231. h3.stat-title {
  1232. letter-spacing: 2px;
  1233. font-size: 2.2em;
  1234. }
  1235. h3.w3ls-title {
  1236. font-size: 2.2em;
  1237. }
  1238. .bg-price h4 {
  1239. font-size: 1.8em;
  1240. }
  1241. .agile-pricegrid h5 {
  1242. font-size: 2.1em;
  1243. }
  1244. }
  1245. @media screen and (max-width: 600px) {
  1246. h3.agile-title {
  1247. font-size: 2.1em;
  1248. }
  1249. h5.agile-title {
  1250. font-size: 1.6em;
  1251. }
  1252. h1.ab-title {
  1253. font-size: 1.8em;
  1254. }
  1255. }
  1256. @media screen and (max-width: 568px) {
  1257. .slider-info h3 {
  1258. font-size: 2.3em;
  1259. }
  1260. h3.stat-title {
  1261. letter-spacing: 1.5px;
  1262. font-size: 2.2em;
  1263. }
  1264. h3.agile-title {
  1265. font-size: 1.8em;
  1266. }
  1267. a.serv_link {
  1268. font-size: 0.85em;
  1269. }
  1270. h3.stat-title {
  1271. letter-spacing: 1px;
  1272. font-size: 1.9em;
  1273. }
  1274. h5.agile-title {
  1275. font-size: 1.5em;
  1276. }
  1277. h5.modal-title {
  1278. font-size: 1.3em;
  1279. }
  1280. }
  1281. @media screen and (max-width: 480px) {
  1282. ul.callbacks_tabs {
  1283. left: 43%;
  1284. }
  1285. .banner {
  1286. height: 380px;
  1287. }
  1288. .slider-info h3 {
  1289. font-size: 2.1em;
  1290. }
  1291. section#pricing {
  1292. background: transparent;
  1293. }
  1294. h5.agile-title {
  1295. font-size: 1.5em;
  1296. }
  1297. .cpy-right p {
  1298. font-size: 0.9em;
  1299. }
  1300. }
  1301. @media screen and (max-width: 414px) {
  1302. h1.ab-title {
  1303. font-size: 1.6em;
  1304. }
  1305. .lead {
  1306. font-size: 1rem;
  1307. }
  1308. h3.w3ls-title {
  1309. font-size: 2.1em;
  1310. }
  1311. .slider-info h3 {
  1312. font-size: 1.8em;
  1313. }
  1314. div#services {
  1315. background: transparent;
  1316. }
  1317. h3.stat-title {
  1318. line-height: 1.3;
  1319. font-size: 2em;
  1320. letter-spacing: 0.5px;
  1321. }
  1322. .bg-price h4 {
  1323. font-size: 1.8em;
  1324. }
  1325. h5.agile-title {
  1326. font-size: 1.3em;
  1327. }
  1328. .slide-bg p {
  1329. letter-spacing: 0.5px;
  1330. font-size: 0.9em;
  1331. }
  1332. .agileits-services-grids span {
  1333. font-size: 3.5em;
  1334. }
  1335. }
  1336. @media screen and (max-width: 384px) {
  1337. h3.stat-title {
  1338. font-size: 1.8em;
  1339. }
  1340. h5.agile-title {
  1341. letter-spacing: 1px;
  1342. }
  1343. .col-4.gal-w3l {
  1344. max-width: 100%;
  1345. flex: 100%;
  1346. }
  1347. }
  1348. @media screen and (max-width: 375px) {
  1349. h5.agile-title {
  1350. font-size: 1.2em;
  1351. }
  1352. h3.stat-title {
  1353. font-size: 1.7em;
  1354. }
  1355. }
  1356. @media screen and (max-width: 320px) {
  1357. h3.w3ls-title {
  1358. font-size: 2.3em;
  1359. }
  1360. h3.stat-title {
  1361. font-size: 1.4em;
  1362. }
  1363. h3.agile-title {
  1364. font-size: 1.8em;
  1365. }
  1366. h5.agile-title {
  1367. font-size: 1.02em;
  1368. }
  1369. .contact-top1 .form-group label, form.f-color .form-control {
  1370. font-size: 0.9em;
  1371. }
  1372. }
  1373. /* -- //Responsive code -- */
  1374. /* -- Responsive code -- */