style.css 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702
  1. body {
  2. background: #fff;
  3. color: #444;
  4. font-family: "Open Sans", sans-serif;
  5. }
  6. a {
  7. color: #00b1e4;
  8. transition: 0.5s;
  9. }
  10. a:hover, a:active, a:focus {
  11. color: #51d8af;
  12. outline: none;
  13. text-decoration: none;
  14. }
  15. p {
  16. padding: 0;
  17. margin: 0 0 30px 0;
  18. }
  19. h1, h2, h3, h4, h5, h6 {
  20. font-family: "Montserrat", sans-serif;
  21. font-weight: 400;
  22. margin: 0 0 20px 0;
  23. padding: 0;
  24. }
  25. /* Back to top button */
  26. .back-to-top {
  27. position: fixed;
  28. display: none;
  29. background: #00b1e4;
  30. color: #fff;
  31. padding: 6px 12px 9px 12px;
  32. font-size: 16px;
  33. border-radius: 2px;
  34. right: 15px;
  35. bottom: 15px;
  36. transition: background 0.5s;
  37. }
  38. @media (max-width: 768px) {
  39. .back-to-top {
  40. bottom: 15px;
  41. }
  42. }
  43. .back-to-top:focus {
  44. background: #00b1e4;
  45. color: #fff;
  46. outline: none;
  47. }
  48. .back-to-top:hover {
  49. background: #0c2e8a;
  50. color: #fff;
  51. }
  52. /*--------------------------------------------------------------
  53. # Top Bar
  54. --------------------------------------------------------------*/
  55. #topbar {
  56. padding: 10px 0;
  57. border-bottom: 1px solid #eee;
  58. font-size: 14px;
  59. background: #071e33;
  60. }
  61. #topbar .contact-info a {
  62. line-height: 1;
  63. color: #acacac;
  64. }
  65. #topbar .contact-info a:hover {
  66. color: #00b1e4;
  67. }
  68. #topbar .contact-info i {
  69. color: #00b1e4;
  70. padding: 4px 4px 0 0;
  71. }
  72. .contact-info.float-left {
  73. color: #acacac;
  74. }
  75. #topbar .contact-info .fa-phone {
  76. padding-left: 20px;
  77. margin-left: 20px;
  78. border-left: 1px solid #e9e9e947;
  79. }
  80. #topbar .social-links a {
  81. color: #00b1e4;
  82. padding: 4px 12px;
  83. display: inline-block;
  84. line-height: 1px;
  85. border-left: 1px solid #e9e9e924;
  86. }
  87. #topbar .social-links a:hover {
  88. color: #fff;
  89. }
  90. #topbar .social-links a:first-child {
  91. border-left: 0;
  92. }
  93. /*--------------------------------------------------------------
  94. # Header
  95. --------------------------------------------------------------*/
  96. #header {
  97. padding: 20px 0;
  98. height: 84px;
  99. transition: all 0.5s;
  100. z-index: 997;
  101. background: #fff;
  102. box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  103. }
  104. #header #logo h1 {
  105. font-size: 28px;
  106. margin: 6px 0 0 0;
  107. padding: 0;
  108. line-height: 1;
  109. font-family: "Montserrat", sans-serif;
  110. font-weight: 700;
  111. }
  112. #header #logo h1 a {
  113. color: #071e33;
  114. line-height: 1;
  115. display: inline-block;
  116. color: #00b1e4;
  117. }
  118. #header #logo h1 a span {
  119. color: #071e33;
  120. }
  121. #header #logo img {
  122. padding: 0;
  123. margin: 0;
  124. }
  125. @media (max-width: 768px) {
  126. #header {
  127. padding: 20px 0;
  128. height: 74px;
  129. }
  130. #header #logo h1 {
  131. font-size: 34px;
  132. }
  133. #header #logo img {
  134. max-height: 40px;
  135. }
  136. }
  137. /*--------------------------------------------------------------
  138. # Intro Section
  139. --------------------------------------------------------------*/
  140. #intro {
  141. width: 100%;
  142. height: 70vh;
  143. position: relative;
  144. background-size: cover;
  145. }
  146. #intro .intro-content {
  147. position: absolute;
  148. bottom: 0;
  149. top: 0;
  150. left: 14%;
  151. right: 0;
  152. z-index: 10;
  153. display: flex;
  154. justify-content: center;
  155. flex-direction: column;
  156. text-align: left;
  157. }
  158. #intro .intro-content h2 {
  159. color: #3a3a3a;
  160. margin-bottom: 30px;
  161. font-size: 24px;
  162. font-weight: normal;
  163. text-align: left;
  164. }
  165. #intro .intro-content h2 span {
  166. color: #071e33;
  167. text-align: right;
  168. font-size: 66px;
  169. text-transform: uppercase;
  170. font-weight: 700;
  171. }
  172. @media (max-width: 767px) {
  173. #intro .intro-content h2 {
  174. font-size: 22px;
  175. background: #ffffffa3;
  176. padding: 15px;
  177. }
  178. }
  179. #intro .intro-content .btn-get-started, #intro .intro-content .btn-projects {
  180. font-family: "Raleway", sans-serif;
  181. font-size: 15px;
  182. font-weight: bold;
  183. letter-spacing: 1px;
  184. display: inline-block;
  185. padding: 10px 32px;
  186. border-radius: 2px;
  187. transition: 0.5s;
  188. margin: 0;
  189. color: #fff;
  190. }
  191. #intro .intro-content .btn-get-started {
  192. background: #00b1e4;
  193. border: 2px solid #00b1e4;
  194. }
  195. #intro .intro-content .btn-get-started:hover {
  196. background: none;
  197. color: #00b1e4;
  198. }
  199. #intro .intro-content .btn-projects {
  200. background: #00b1e4;
  201. border: 2px solid #00b1e4;
  202. }
  203. #intro .intro-content .btn-projects:hover {
  204. background: none;
  205. color: #00b1e4;
  206. }
  207. #intro #intro-carousel {
  208. z-index: 8;
  209. }
  210. #intro #intro-carousel::before {
  211. content: '';
  212. background-color: rgba(255, 255, 255, 0.7);
  213. position: absolute;
  214. height: 100%;
  215. width: 100%;
  216. top: 0;
  217. right: 0;
  218. left: 0;
  219. bottom: 0;
  220. z-index: 7;
  221. }
  222. #intro #intro-carousel .item {
  223. width: 100%;
  224. height: 60vh;
  225. background-size: cover;
  226. background-position: center;
  227. -webkit-transition-property: opacity;
  228. transition-property: opacity;
  229. }
  230. /*--------------------------------------------------------------
  231. # Navigation Menu
  232. --------------------------------------------------------------*/
  233. /* Nav Menu Essentials */
  234. .nav-menu, .nav-menu * {
  235. margin: 0;
  236. padding: 0;
  237. list-style: none;
  238. }
  239. .nav-menu ul {
  240. position: absolute;
  241. display: none;
  242. top: 100%;
  243. left: 0;
  244. z-index: 99;
  245. }
  246. .nav-menu li {
  247. position: relative;
  248. white-space: nowrap;
  249. }
  250. .nav-menu > li {
  251. float: left;
  252. }
  253. .nav-menu li:hover > ul,
  254. .nav-menu li.sfHover > ul {
  255. display: block;
  256. }
  257. .nav-menu ul ul {
  258. top: 0;
  259. left: 100%;
  260. }
  261. .nav-menu ul li {
  262. min-width: 180px;
  263. }
  264. /* Nav Menu Arrows */
  265. .sf-arrows .sf-with-ul {
  266. padding-right: 22px;
  267. }
  268. .sf-arrows .sf-with-ul:after {
  269. content: "\f107";
  270. position: absolute;
  271. right: 8px;
  272. font-family: FontAwesome;
  273. font-style: normal;
  274. font-weight: normal;
  275. }
  276. .sf-arrows ul .sf-with-ul:after {
  277. content: "\f105";
  278. }
  279. /* Nav Meu Container */
  280. #nav-menu-container {
  281. float: right;
  282. margin: 0;
  283. }
  284. @media (max-width: 768px) {
  285. #nav-menu-container {
  286. display: none;
  287. }
  288. }
  289. /* Nav Meu Styling */
  290. .nav-menu a {
  291. padding: 10px 8px;
  292. text-decoration: none;
  293. display: inline-block;
  294. color: #555;
  295. font-family: "Raleway", sans-serif;
  296. font-weight: 700;
  297. font-size: 14px;
  298. outline: none;
  299. }
  300. .nav-menu li:hover > a, .nav-menu > .menu-active > a {
  301. color: #00b1e4;
  302. }
  303. .nav-menu > li {
  304. margin-left: 10px;
  305. }
  306. .nav-menu ul {
  307. margin: 4px 0 0 0;
  308. padding: 10px;
  309. box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  310. background: #fff;
  311. }
  312. .nav-menu ul li {
  313. transition: 0.3s;
  314. }
  315. .nav-menu ul li a {
  316. padding: 10px;
  317. color: #333;
  318. transition: 0.3s;
  319. display: block;
  320. font-size: 13px;
  321. text-transform: none;
  322. }
  323. .nav-menu ul li:hover > a {
  324. color: #00b1e4;
  325. }
  326. .nav-menu ul ul {
  327. margin: 0;
  328. }
  329. /* Mobile Nav Toggle */
  330. #mobile-nav-toggle {
  331. position: fixed;
  332. right: 0;
  333. top: 0;
  334. z-index: 999;
  335. margin: 20px 20px 0 0;
  336. border: 0;
  337. background: none;
  338. font-size: 24px;
  339. display: none;
  340. transition: all 0.4s;
  341. outline: none;
  342. cursor: pointer;
  343. }
  344. #mobile-nav-toggle i {
  345. color: #555;
  346. }
  347. @media (max-width: 768px) {
  348. #mobile-nav-toggle {
  349. display: inline;
  350. }
  351. }
  352. /* Mobile Nav Styling */
  353. #mobile-nav {
  354. position: fixed;
  355. top: 0;
  356. padding-top: 18px;
  357. bottom: 0;
  358. z-index: 998;
  359. left: -260px;
  360. width: 260px;
  361. overflow-y: auto;
  362. transition: 0.4s;
  363. background: #00b1e4;
  364. }
  365. #mobile-nav ul {
  366. padding: 0;
  367. margin: 0;
  368. list-style: none;
  369. }
  370. #mobile-nav ul li {
  371. position: relative;
  372. }
  373. #mobile-nav ul li a {
  374. color: #fffc;
  375. font-size: 16px;
  376. overflow: hidden;
  377. padding: 10px 22px 10px 15px;
  378. position: relative;
  379. text-decoration: none;
  380. width: 100%;
  381. display: block;
  382. outline: none;
  383. }
  384. #mobile-nav ul li a:hover {
  385. color: #fff;
  386. }
  387. #mobile-nav ul li li {
  388. padding-left: 30px;
  389. }
  390. #mobile-nav ul .menu-has-children i {
  391. position: absolute;
  392. right: 0;
  393. z-index: 99;
  394. padding: 15px;
  395. cursor: pointer;
  396. color: #fff;
  397. }
  398. #mobile-nav ul .menu-has-children i.fa-chevron-up {
  399. color: #00b1e4;
  400. }
  401. #mobile-nav ul .menu-item-active {
  402. color: #00b1e4;
  403. }
  404. #mobile-body-overly {
  405. width: 100%;
  406. height: 100%;
  407. z-index: 997;
  408. top: 0;
  409. left: 0;
  410. position: fixed;
  411. background: rgba(13, 13, 13, 0.9);
  412. display: none;
  413. }
  414. /* Mobile Nav body classes */
  415. body.mobile-nav-active {
  416. overflow: hidden;
  417. }
  418. body.mobile-nav-active #mobile-nav {
  419. left: 0;
  420. }
  421. body.mobile-nav-active #mobile-nav-toggle {
  422. color: #fff;
  423. }
  424. /*-------------------------------------------------
  425. Inner Banner
  426. ---------------------------------------------------*/
  427. #innerBanner {
  428. background: linear-gradient(45deg, #00b1e4 -132%, #0c2e8a 100%);
  429. padding: 40px 0;
  430. text-align: center;
  431. background: #00b1e4;
  432. }
  433. #innerBanner h2 {
  434. color: #fff;
  435. text-align: center;
  436. font-weight: normal;
  437. font-size: 18px;
  438. margin: 0px;
  439. }
  440. #innerBanner h2 span {
  441. color: #fff;
  442. font-weight: bold;
  443. font-size: 38px;
  444. text-align: center;
  445. }
  446. .svgImg {
  447. }
  448. .svgImg img {
  449. width: 120px;
  450. }
  451. /*--------------------------------------------------------------
  452. # Sections
  453. --------------------------------------------------------------*/
  454. /* Sections Header
  455. --------------------------------*/
  456. .section-header {
  457. margin-bottom: 30px;
  458. }
  459. .section-header h2 {
  460. font-size: 32px;
  461. color: #071e33;
  462. text-transform: uppercase;
  463. font-weight: 700;
  464. position: relative;
  465. padding-bottom: 20px;
  466. /* display: inline-block; */
  467. text-align: center;
  468. }
  469. .section-header h2::before {
  470. content: '';
  471. position: absolute;
  472. display: block;
  473. width: 62px;
  474. height: 3px;
  475. bottom: 0;
  476. left: 0;
  477. border-top: #00b1e4 solid 2px;
  478. right: 0;
  479. text-align: center;
  480. margin: 0 auto;
  481. }
  482. .section-header p {
  483. padding: 0;
  484. margin: 0;
  485. text-align: center;
  486. color: #333;
  487. }
  488. /* About Section
  489. --------------------------------*/
  490. #about {
  491. padding: 60px 0 60px 0;
  492. }
  493. #about .about-img {
  494. overflow: hidden;
  495. }
  496. #about .about-img img {
  497. margin-left: -15px;
  498. max-width: 100%;
  499. }
  500. @media (max-width: 768px) {
  501. #about .about-img {
  502. height: auto;
  503. }
  504. #about .about-img img {
  505. margin-left: 0;
  506. padding-bottom: 30px;
  507. }
  508. }
  509. #about .content h2 {
  510. color: #000000;
  511. font-weight: 700;
  512. font-size: 18px;
  513. font-family: "Raleway", sans-serif;
  514. }
  515. #about .content h3 {
  516. color: #555;
  517. font-weight: 300;
  518. font-size: 18px;
  519. line-height: 26px;
  520. font-style: italic;
  521. }
  522. #about .content p {
  523. line-height: 26px;
  524. }
  525. #about .content p:last-child {
  526. margin-bottom: 0;
  527. }
  528. #about .content i {
  529. font-size: 20px;
  530. padding-right: 4px;
  531. color: #00b1e4;
  532. }
  533. #about .content ul {
  534. list-style: none;
  535. padding: 0;
  536. }
  537. #about .content ul li {
  538. padding-bottom: 10px;
  539. }
  540. /* Services Section
  541. --------------------------------*/
  542. #services {
  543. padding: 60px 0 0 0;
  544. }
  545. #services .box {
  546. padding: 40px;
  547. margin-bottom: 40px;
  548. background: #fff;
  549. transition: 0.4s;
  550. border: 1px solid #dedede;
  551. }
  552. #services .box:hover {
  553. box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  554. transform: translateY(-10px);
  555. -webkit-transform: translateY(-10px);
  556. -moz-transform: translateY(-10px);
  557. }
  558. #services .box .icon {
  559. display: block;
  560. width: 100%;
  561. text-align: center;
  562. padding: 15px;
  563. }
  564. #services .box .icon i {
  565. color: #444;
  566. font-size: 44px;
  567. transition: 0.5s;
  568. line-height: 0;
  569. margin-top: 0px;
  570. }
  571. #services .box .icon i:before {
  572. background: #00b1e4;
  573. background-clip: border-box;
  574. -webkit-background-clip: text;
  575. -webkit-text-fill-color: transparent;
  576. }
  577. #services .box h4 {
  578. margin-left: 100px;
  579. font-weight: 700;
  580. margin-bottom: 24px;
  581. font-size: 22px;
  582. display: block;
  583. width: 100%;
  584. text-align: center;
  585. float: left;
  586. margin: 0;
  587. }
  588. #services .box h4 a {
  589. color: #444;
  590. }
  591. #services .box p {
  592. font-size: 14px;
  593. line-height: 24px;
  594. text-align: center;
  595. display: block;
  596. margin: 0;
  597. padding-top: 15px;
  598. }
  599. @media (max-width: 767px) {
  600. #services .box .box {
  601. margin-bottom: 20px;
  602. }
  603. #services .box .icon {
  604. float: none;
  605. text-align: center;
  606. padding-bottom: 15px;
  607. }
  608. #services .box h4, #services .box p {
  609. margin-left: 0;
  610. text-align: center;
  611. }
  612. }
  613. /* product Section
  614. --------------------------------*/
  615. #product {
  616. padding: 60px 0 0 0;
  617. }
  618. #product .box {
  619. padding: 40px;
  620. margin-bottom: 40px;
  621. background: #fff;
  622. transition: 0.4s;
  623. border: 1px solid #dedede;
  624. }
  625. #product .box:hover {
  626. box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  627. transform: translateY(-10px);
  628. -webkit-transform: translateY(-10px);
  629. -moz-transform: translateY(-10px);
  630. }
  631. #product .box .icon {
  632. display: block;
  633. width: 100%;
  634. text-align: center;
  635. padding: 15px;
  636. }
  637. #product .box .icon i {
  638. color: #444;
  639. font-size: 44px;
  640. transition: 0.5s;
  641. line-height: 0;
  642. margin-top: 0px;
  643. }
  644. #product .box .icon i:before {
  645. background: #00b1e4;
  646. background-clip: border-box;
  647. -webkit-background-clip: text;
  648. -webkit-text-fill-color: transparent;
  649. }
  650. #product .box h4 {
  651. margin-left: 100px;
  652. font-weight: 700;
  653. margin-bottom: 24px;
  654. font-size: 22px;
  655. display: block;
  656. width: 100%;
  657. text-align: center;
  658. float: left;
  659. margin: 0;
  660. }
  661. #product .box h4 a {
  662. color: #444;
  663. }
  664. #product .box p {
  665. font-size: 14px;
  666. line-height: 24px;
  667. text-align: center;
  668. display: block;
  669. margin: 0;
  670. padding-top: 15px;
  671. }
  672. @media (max-width: 767px) {
  673. #product .box .box {
  674. margin-bottom: 20px;
  675. }
  676. #product .box .icon {
  677. float: none;
  678. text-align: center;
  679. padding-bottom: 15px;
  680. }
  681. #product .box h4, #product .box p {
  682. margin-left: 0;
  683. text-align: center;
  684. }
  685. }
  686. /* Clients Section
  687. --------------------------------*/
  688. #clients {
  689. padding: 60px 0;
  690. }
  691. #clients img {
  692. max-width: 100%;
  693. opacity: 0.5;
  694. transition: 0.3s;
  695. padding: 15px 0;
  696. }
  697. #clients img:hover {
  698. opacity: 1;
  699. }
  700. #clients .owl-nav, #clients .owl-dots {
  701. margin-top: 5px;
  702. text-align: center;
  703. }
  704. #clients .owl-dot {
  705. display: inline-block;
  706. margin: 0 5px;
  707. width: 12px;
  708. height: 12px;
  709. border-radius: 50%;
  710. background-color: #ddd;
  711. }
  712. #clients .owl-dot.active {
  713. background-color: #00b1e4;
  714. }
  715. /* Our Portfolio Section
  716. --------------------------------*/
  717. #portfolio {
  718. padding: 90px 50px;
  719. color: #ffffff9c;
  720. background: #fff;
  721. }
  722. #portfolio .portfolio-overlay {
  723. position: absolute;
  724. top: 0;
  725. right: 0;
  726. bottom: 0;
  727. left: 0;
  728. width: 100%;
  729. height: 100%;
  730. opacity: 1;
  731. -webkit-transition: all ease-in-out 0.4s;
  732. transition: all ease-in-out 0.4s;
  733. }
  734. #portfolio .portfolio-item {
  735. overflow: hidden;
  736. position: relative;
  737. padding: 0;
  738. vertical-align: middle;
  739. text-align: center;
  740. }
  741. #portfolio .portfolio-item h2 {
  742. color: #ffffff;
  743. font-size: 16px;
  744. margin: 0;
  745. text-transform: capitalize;
  746. font-weight: 700;
  747. background: #00000085;
  748. border: 1px solid #fff;
  749. padding: 25px;
  750. /* background: linear-gradient(45deg, #00b1e457 0%, #405ece91 100%); */
  751. }
  752. #portfolio .portfolio-item h2 {
  753. opacity: 0;
  754. }
  755. #portfolio .portfolio-item:hover h2 {
  756. opacity: 1;
  757. }
  758. #portfolio .portfolio-item img {
  759. -webkit-transition: all ease-in-out 0.4s;
  760. transition: all ease-in-out 0.4s;
  761. width: 100%;
  762. }
  763. #portfolio .portfolio-item:hover img {
  764. -webkit-transform: scale(1.1);
  765. transform: scale(1.1);
  766. }
  767. #portfolio .portfolio-item:hover .portfolio-overlay {
  768. opacity: 1;
  769. background: rgba(0, 0, 0, 0.7);
  770. }
  771. #portfolio .portfolio-info {
  772. position: absolute;
  773. top: 50%;
  774. left: 50%;
  775. -webkit-transform: translate(-50%, -50%);
  776. transform: translate(-50%, -50%);
  777. }
  778. /* Testimonials Section
  779. --------------------------------*/
  780. #testimonials {
  781. padding: 60px 0;
  782. }
  783. #testimonials .testimonial-item {
  784. box-sizing: content-box;
  785. padding: 30px 30px 0 30px;
  786. margin: 30px 15px;
  787. text-align: center;
  788. min-height: 250px;
  789. /* box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08); */
  790. }
  791. @media (max-width: 767px) {
  792. #testimonials .testimonial-item {
  793. margin: 30px 10px;
  794. }
  795. }
  796. #testimonials .testimonial-item .testimonial-img {
  797. width: 90px;
  798. border-radius: 50%;
  799. border: 4px solid #fff;
  800. margin: 0 auto;
  801. }
  802. #testimonials .testimonial-item h3 {
  803. font-size: 18px;
  804. font-weight: bold;
  805. margin: 10px 0 5px 0;
  806. color: #111;
  807. }
  808. #testimonials .testimonial-item h4 {
  809. font-size: 14px;
  810. color: #999;
  811. margin: 0;
  812. }
  813. #testimonials .testimonial-item .quote-sign-left {
  814. margin-top: -15px;
  815. padding-right: 10px;
  816. display: inline-block;
  817. width: 37px;
  818. }
  819. #testimonials .testimonial-item .quote-sign-right {
  820. margin-bottom: -15px;
  821. padding-left: 10px;
  822. display: inline-block;
  823. max-width: 100%;
  824. width: 37px;
  825. }
  826. #testimonials .testimonial-item p {
  827. font-style: italic;
  828. margin: 0 auto 15px auto;
  829. background: #f1f1f1;
  830. width: 100%;
  831. border: 1px solid #dcdcdc;
  832. border-radius: 15px 15px 0 15px;
  833. padding: 22px 15px;
  834. font-size: 15px;
  835. color: #686868;
  836. }
  837. #testimonials .owl-nav, #testimonials .owl-dots {
  838. margin-top: 5px;
  839. text-align: center;
  840. }
  841. #testimonials .owl-dot {
  842. display: inline-block;
  843. margin: 0 5px;
  844. width: 12px;
  845. height: 12px;
  846. border-radius: 50%;
  847. background-color: #ddd;
  848. }
  849. #testimonials .owl-dot.active {
  850. background-color: #00b1e4;
  851. }
  852. .map {
  853. margin: 80px auto 40px;
  854. }
  855. p.help-block,
  856. p.help-block ul {
  857. float: left;
  858. margin: 0;
  859. padding: 0;
  860. }
  861. p.help-block li {
  862. float: left;
  863. margin: 10px 0 0 0;
  864. padding: 0;
  865. list-style: none;
  866. color: red;
  867. }
  868. /* Call To Action Section
  869. --------------------------------*/
  870. #call-to-action {
  871. background: #00b1e4;
  872. background-size: cover;
  873. padding: 40px 0;
  874. }
  875. #call-to-action .cta-title {
  876. color: #fff;
  877. font-size: 28px;
  878. font-weight: 700;
  879. }
  880. #call-to-action .cta-text {
  881. color: #fff;
  882. }
  883. @media (min-width: 769px) {
  884. #call-to-action .cta-btn-container {
  885. display: flex;
  886. align-items: center;
  887. justify-content: flex-end;
  888. }
  889. }
  890. #call-to-action .cta-btn {
  891. font-family: "Montserrat", sans-serif;
  892. font-weight: 700;
  893. font-size: 16px;
  894. letter-spacing: 1px;
  895. display: inline-block;
  896. padding: 8px 26px;
  897. border-radius: 3px;
  898. transition: 0.5s;
  899. margin: 10px;
  900. border: 3px solid #fff;
  901. color: #fff;
  902. }
  903. #call-to-action .cta-btn:hover {
  904. background: #ffffff;
  905. border: 3px solid #ffffff;
  906. color: #00a3d1;
  907. }
  908. /* Our Team Section
  909. --------------------------------*/
  910. #team {
  911. background: #fff;
  912. padding: 60px 0 0 0;
  913. }
  914. #team .member {
  915. text-align: center;
  916. margin-bottom: 20px;
  917. }
  918. #team .member .pic {
  919. overflow: hidden;
  920. text-align: center;
  921. }
  922. #team .member .pic img {
  923. max-width: 100%;
  924. padding: 20px 20px 0;
  925. }
  926. #team .member .details {
  927. background: #fff;
  928. color: #071e33;
  929. padding: 15px 0;
  930. border-radius: 0 0 3px 3px;
  931. }
  932. #team .member h4 {
  933. font-weight: 700;
  934. margin-bottom: 2px;
  935. font-size: 18px;
  936. }
  937. #team .member span {
  938. font-style: italic;
  939. display: block;
  940. font-size: 13px;
  941. }
  942. #team .member .social {
  943. margin-top: 5px;
  944. padding: 6px;
  945. text-align: center;
  946. }
  947. #team .member .social a {
  948. color: #00b1e4;
  949. margin: 2px 6px;
  950. /* border: 1px solid #00b1e4; */
  951. width: 42px;
  952. display: inline-block;
  953. /* opacity: .4; */
  954. background: #eaeaea;
  955. padding: 4px;
  956. }
  957. #team .member .social a:hover {
  958. color: #081e5b;
  959. margin: 2px 6px;
  960. border: 1px solid #081e5b;
  961. opacity: 1;
  962. }
  963. #team .member .social i {
  964. font-size: 16px;
  965. margin: 0 2px;
  966. }
  967. /* Contact Section
  968. --------------------------------*/
  969. #contact {
  970. padding: 60px 0;
  971. }
  972. #contact .contact-info {
  973. margin-bottom: 20px;
  974. text-align: center;
  975. }
  976. #contact .contact-info i {
  977. font-size: 24px;
  978. display: inline-block;
  979. margin-bottom: 0;
  980. color: #00b1e4;
  981. float: left;
  982. }
  983. #contact .contact-info address, #contact .contact-info p {
  984. margin-bottom: 0;
  985. color: #000;
  986. display: block;
  987. float: left;
  988. width: 100%;
  989. margin-bottom: 15px;
  990. padding: 0;
  991. margin-top: 0;
  992. margin-left: 27px;
  993. font-size: 14px;
  994. }
  995. #contact .contact-info h3 {
  996. font-size: 16px;
  997. margin-bottom: 15px;
  998. font-weight: bold;
  999. text-transform: uppercase;
  1000. color: #1c4450;
  1001. float: left;
  1002. margin: 8px 15px;
  1003. }
  1004. #contact .contact-info a {
  1005. color: #000;
  1006. }
  1007. #contact .contact-info a:hover {
  1008. color: #00b1e4;
  1009. }
  1010. #contact .contact-address, #contact .contact-phone, #contact .contact-email {
  1011. margin-bottom: 20px;
  1012. }
  1013. @media (min-width: 768px) {
  1014. #contact .contact-address, #contact .contact-phone, #contact .contact-email {
  1015. padding: 0;
  1016. text-align: left;
  1017. }
  1018. }
  1019. @media (min-width: 768px) {
  1020. #contact .contact-phone {
  1021. }
  1022. }
  1023. #contact #google-map {
  1024. height: 290px;
  1025. margin-bottom: 20px;
  1026. }
  1027. @media (max-width: 576px) {
  1028. #contact #google-map {
  1029. margin-top: 20px;
  1030. }
  1031. }
  1032. #contact .form #sendmessage {
  1033. color: #00b1e4;
  1034. border: 1px solid #00b1e4;
  1035. display: none;
  1036. text-align: center;
  1037. padding: 15px;
  1038. font-weight: 600;
  1039. margin-bottom: 15px;
  1040. }
  1041. #contact .form #errormessage {
  1042. color: red;
  1043. display: none;
  1044. border: 1px solid red;
  1045. text-align: center;
  1046. padding: 15px;
  1047. font-weight: 600;
  1048. margin-bottom: 15px;
  1049. }
  1050. #contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  1051. display: block;
  1052. }
  1053. #contact .form .validation {
  1054. color: red;
  1055. display: none;
  1056. margin: 0 0 20px;
  1057. font-weight: 400;
  1058. font-size: 13px;
  1059. }
  1060. #contact .form input, #contact .form textarea {
  1061. padding: 10px 14px;
  1062. border-radius: 0;
  1063. box-shadow: none;
  1064. font-size: 15px;
  1065. }
  1066. #contact .form button[type="submit"] {
  1067. background: #00b1e4;
  1068. border: 0;
  1069. border-radius: 3px;
  1070. padding: 10px 30px;
  1071. color: #fff;
  1072. transition: 0.4s;
  1073. cursor: pointer;
  1074. }
  1075. #contact .form button[type="submit"]:hover {
  1076. background: #0299c4;
  1077. }
  1078. /*--------------------------------------------------------------
  1079. # Footer
  1080. --------------------------------------------------------------*/
  1081. #footer {
  1082. background: #071e33;
  1083. padding: 0 0 30px 0;
  1084. font-size: 14px;
  1085. color: #fff;
  1086. }
  1087. #footer .copyright {
  1088. text-align: center;
  1089. padding-top: 30px;
  1090. color: #ffffffad;
  1091. }
  1092. #footer .credits {
  1093. text-align: center;
  1094. font-size: 13px;
  1095. color: #ffffff85;
  1096. margin-top: 8px;
  1097. }
  1098. #footer .credits a {
  1099. color: #00b1e4;
  1100. }
  1101. .owl-carousel .owl-item img {
  1102. display: block;
  1103. width: auto;
  1104. height: 70px;
  1105. margin: 0 auto;
  1106. }
  1107. #carousel-img-height {
  1108. height: 400px;
  1109. object-fit: cover; /* 保持图片宽高比并填充容器 */
  1110. }
  1111. .carousel-container {
  1112. position: relative; /* 使得绝对定位的子元素参照此元素定位 */
  1113. }
  1114. .float-buttons {
  1115. display: flex; /* 使用Flexbox布局 */
  1116. justify-content: center; /* 水平居中 */
  1117. position: absolute;
  1118. top: 260px; /* 调整此值以改变按钮距离顶部的距离 */
  1119. width: 100%; /* 让按钮栏宽度与轮播图一致 */
  1120. z-index: 10; /* 确保按钮在轮播图之上 */
  1121. }
  1122. .float-button {
  1123. margin: 0 5px; /* 左右间隔 */
  1124. }
  1125. .float-button:not(:last-child) {
  1126. margin-right: 10px; /* 仅在非最后一个按钮右侧添加间隔 */
  1127. }
  1128. /*--------------------------------------------------------------
  1129. # Features
  1130. --------------------------------------------------------------*/
  1131. .features .icon-box h4 {
  1132. font-size: 20px;
  1133. font-weight: 700;
  1134. margin: 5px 0 10px 60px;
  1135. }
  1136. .features .icon-box i {
  1137. font-size: 48px;
  1138. float: left;
  1139. color: #5846f9;
  1140. }
  1141. .features .icon-box p {
  1142. font-size: 15px;
  1143. color: #848484;
  1144. margin-left: 60px;
  1145. }
  1146. .features .image {
  1147. background-position: center center;
  1148. background-repeat: no-repeat;
  1149. background-size: cover;
  1150. min-height: 400px;
  1151. }
  1152. .parent {
  1153. display: grid;
  1154. grid-template-columns: repeat(2, 1fr);
  1155. grid-template-rows: repeat(5, 1fr);
  1156. grid-column-gap: 0px;
  1157. grid-row-gap: 0px;
  1158. }
  1159. .div1 {
  1160. grid-area: 2 / 1 / 3 / 2;
  1161. }
  1162. .div2 {
  1163. grid-area: 2 / 2 / 3 / 3;
  1164. }
  1165. .btn-group {
  1166. display: flex;
  1167. justify-content: center;
  1168. }
  1169. @media (min-width: 768px) {
  1170. .btn-group {
  1171. display: flex;
  1172. justify-content: center;
  1173. }
  1174. }
  1175. .card-with-image {
  1176. position: relative;
  1177. overflow: hidden;
  1178. min-height: 200px; /* 根据需要调整高度 */
  1179. }
  1180. .count-up .count-item .count-icon i {
  1181. font-size: 2.5rem;
  1182. color: #6e45e2;
  1183. }
  1184. .count-up .count-item .count-content {
  1185. margin: 10px 0;
  1186. }
  1187. .count-up .count-item .count-content .count-number {
  1188. font-size: 4rem;
  1189. font-weight: bold;
  1190. color: #ff9624;
  1191. }
  1192. .count-up .count-item p {
  1193. font-size: 1.25rem;
  1194. font-weight: 700;
  1195. }
  1196. .feature-data .count-up {
  1197. color: #333;
  1198. font-size: 70px;
  1199. }
  1200. .feature-data .text-muted {
  1201. color: #666;
  1202. font-size: 90px;
  1203. }
  1204. .layui-card {
  1205. text-align: center;
  1206. }
  1207. .layui-col-md12 {
  1208. text-align: center;
  1209. }
  1210. .layui-carousel {
  1211. margin-top: 10px;
  1212. background-color: transparent !important;
  1213. }
  1214. .parent {
  1215. display: grid;
  1216. place-items: center; /* 同时设置水平和垂直居中 */
  1217. }
  1218. .layui-card-header {
  1219. border-bottom: 1px solid #1e9fff;
  1220. font-size: 20px;
  1221. background-color: rgba(49, 189, 236, 0.1);
  1222. }
  1223. .layui-count-num {
  1224. font-size: 20px;
  1225. }
  1226. .layui-carousel-title {
  1227. font-size: 30px;
  1228. color: #31bdec;
  1229. }
  1230. .layui-card-custom1 {
  1231. background-color: #01205c;
  1232. }
  1233. #logo {
  1234. position: relative; /* 为logo的容器添加相对定位,以便内部元素可以进行绝对定位 */
  1235. }
  1236. .logo-image {
  1237. position: absolute; /* 使用绝对定位 */
  1238. top: 50%; /* 根据需要调整垂直位置,这里假设将其居中对齐 */
  1239. left: -60px; /* 调整水平距离,负值使其向左移动,具体数值根据logo大小和所需位置调整 */
  1240. transform: translateY(-50%); /* 如果图片需要垂直居中,使用此行代码进行微调 */
  1241. height: 50px; /* 设置图片高度,根据实际logo尺寸调整 */
  1242. width: auto; /* 保持图片宽高比 */
  1243. }
  1244. .logo-text {
  1245. display: inline-block; /* 确保文字周围有空间放置logo */
  1246. margin-right: 5px; /* 可根据需要调整与后面文字的间距 */
  1247. }
  1248. /* 移除导航栏背景色 */
  1249. #nav-menu-container .layui-nav {
  1250. background-color: transparent !important; /* 将背景色设置为透明,使用!important确保覆盖默认样式 */
  1251. }
  1252. /* 改变鼠标悬停时的指示颜色 */
  1253. #nav-menu-container .layui-nav .layui-nav-item a:hover,
  1254. #nav-menu-container .layui-nav .layui-nav-bar {
  1255. background-color: rgba(30, 153, 255, 0.5) !important; /* 将指示颜色设置为蓝色 */
  1256. }
  1257. /* 如果需要也可以调整展开子菜单时的背景色 */
  1258. #nav-menu-container .layui-nav-child dd.layui-this a,
  1259. #nav-menu-container .layui-nav-child dd.layui-this {
  1260. background-color: rgba(30, 153, 255, 0.5) !important; /* 子菜单选中项的背景色也改为蓝色 */
  1261. }
  1262. #phone-number {
  1263. color: #333; /* 根据需要调整颜色 */
  1264. margin-top: 12px; /* 调整上边距以对齐 */
  1265. font-size: 20px; /* 调整字体大小 */
  1266. }
  1267. /* 如果需要图标,确保引入Font Awesome或其他图标库,并调整图标样式 */
  1268. .fa-phone-square {
  1269. margin-right: 5px; /* 图标与文字之间的间隔 */
  1270. }
  1271. #innerBanner {
  1272. position: relative;
  1273. overflow: hidden;
  1274. background-color: #01205c;
  1275. width: 100%;
  1276. height: auto;
  1277. }
  1278. .serverbg::before {
  1279. width: 300px;
  1280. height: auto;
  1281. }
  1282. #innerBanner::before {
  1283. content: "";
  1284. position: absolute;
  1285. top: 0;
  1286. right: -100%; /* 初始位置完全在左侧 */
  1287. width: 33.33%;
  1288. height: 100%;
  1289. background-image: url('/image/bef781d2-5ae6-48ea-82fc-08365f78234e.png');
  1290. background-size: cover;
  1291. background-repeat: no-repeat;
  1292. animation: slideIn 2s forwards;
  1293. }
  1294. @keyframes slideIn {
  1295. 0% {
  1296. right: -100%;
  1297. }
  1298. 100% {
  1299. right: 0; /* 移动到Banner宽度的三分之一位置 */
  1300. }
  1301. }
  1302. .fixed-size-image {
  1303. width: 530px;
  1304. height: auto;
  1305. margin: 10px;
  1306. vertical-align: middle; /* 避免与其他元素底部对齐的问题 */
  1307. }
  1308. .image-container {
  1309. display: flex;
  1310. align-content: center;
  1311. }
  1312. /* 添加到你的CSS文件或<style>标签内 */
  1313. .card {
  1314. border-radius: 10px;
  1315. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  1316. }
  1317. .card-body {
  1318. background: linear-gradient(to right, #00BFFF, #0077B3);
  1319. color: white;
  1320. padding: 20px;
  1321. border-radius: inherit;
  1322. transition: transform 0.3s ease; /* 添加过渡效果以便平滑浮动 */
  1323. }
  1324. .count-up {
  1325. display: inline-block;
  1326. font-size: 2rem;
  1327. font-weight: bold;
  1328. position: relative;
  1329. }
  1330. /* 鼠标悬停时的浮动效果 */
  1331. .card:hover .card-body {
  1332. transform: translateY(-10px); /* 向上浮动10像素 */
  1333. box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* 可选:增加阴影来增强浮动效果 */
  1334. }
  1335. /* 翻转数字动画的基础样式 */
  1336. .flip-card-front, .flip-card-back {
  1337. position: absolute;
  1338. width: 100%;
  1339. height: 100%;
  1340. backface-visibility: hidden;
  1341. }
  1342. .flip-card-front {
  1343. transform: rotateY(0deg);
  1344. animation: flipIn 1s ease-in-out both;
  1345. }
  1346. .flip-card-back {
  1347. transform: rotateY(180deg);
  1348. }
  1349. @keyframes flipIn {
  1350. from {
  1351. transform: rotateY(180deg);
  1352. }
  1353. to {
  1354. transform: rotateY(0deg);
  1355. }
  1356. }
  1357. #custom-unaffected-card-body {
  1358. color: white; /* 或指定你需要的颜色,如果需要的话 */
  1359. font-size: 16px; /* 保持或调整为你希望的字体大小 */
  1360. }
  1361. .features {
  1362. background-color: #f9f9f9;
  1363. padding: 80px 0;
  1364. }
  1365. .container {
  1366. max-width: 1200px;
  1367. margin: 0 auto;
  1368. }
  1369. .section-header h2 {
  1370. margin-bottom: 1rem;
  1371. }
  1372. .section-header p {
  1373. max-width: 32rem;
  1374. margin: 0 auto;
  1375. font-size: 1.1rem;
  1376. }
  1377. .service-description {
  1378. display: grid;
  1379. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  1380. grid-gap: 20px;
  1381. justify-content: center;
  1382. }
  1383. .service-item {
  1384. position: relative;
  1385. background-color: #ffffff;
  1386. border-radius: 16px;
  1387. padding: 30px;
  1388. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  1389. transition: transform 0.3s ease, box-shadow 0.3s ease;
  1390. display: flex;
  1391. flex-direction: column;
  1392. }
  1393. .service-item:hover {
  1394. transform: translateY(-5px);
  1395. box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  1396. }
  1397. .service-item::before {
  1398. content: "";
  1399. position: absolute;
  1400. top: 0;
  1401. left: 0;
  1402. right: 0;
  1403. bottom: 0;
  1404. background-size: cover;
  1405. background-position: center;
  1406. opacity: 0.15;
  1407. border-radius: inherit;
  1408. z-index: -1;
  1409. }
  1410. .service-item h4,
  1411. .service-item p {
  1412. margin: 0;
  1413. text-align: center;
  1414. }
  1415. .service-item h4 {
  1416. font-size: 1.5rem;
  1417. color: #343a40;
  1418. }
  1419. .service-item p {
  1420. font-size: 1rem;
  1421. color: #6c757d;
  1422. margin-top: 1rem;
  1423. }
  1424. .service-item a {
  1425. color: #007bff;
  1426. transition: color 0.3s ease;
  1427. }
  1428. .service-item a:hover {
  1429. color: #0056b3;
  1430. }
  1431. .btn-primary {
  1432. background-color: #007bff;
  1433. border-color: #007bff;
  1434. font-weight: 600;
  1435. transition: all 0.3s ease;
  1436. }
  1437. .btn-primary:hover {
  1438. background-color: #0056b3;
  1439. border-color: #0056b3;
  1440. }
  1441. .footer-links {
  1442. background-color: #f9f9f9;
  1443. padding: 2rem;
  1444. border-radius: 8px;
  1445. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  1446. margin-bottom: 4rem;
  1447. }
  1448. .footer-links h3 {
  1449. color: #333;
  1450. margin-bottom: 1rem;
  1451. text-transform: uppercase;
  1452. letter-spacing: 1px;
  1453. font-size: 1.2rem;
  1454. }
  1455. .link-list {
  1456. list-style: none;
  1457. padding: 0;
  1458. display: flex;
  1459. flex-wrap: wrap;
  1460. justify-content: space-between;
  1461. }
  1462. .link-list li {
  1463. margin-bottom: 1rem;
  1464. }
  1465. .link-list a {
  1466. color: #333;
  1467. text-decoration: none;
  1468. transition: color 0.3s ease;
  1469. }
  1470. .link-list a:hover,
  1471. .link-list a:focus {
  1472. color: #007bff; /* 或选择适合您网站风格的主题色 */
  1473. }
  1474. @media (max-width: 768px) {
  1475. .link-list {
  1476. justify-content: flex-start;
  1477. }
  1478. .link-list li {
  1479. margin-bottom: 0.5rem;
  1480. width: 50%; /* 在小屏幕上每行两个链接 */
  1481. }
  1482. }
  1483. @media (max-width: 480px) {
  1484. .link-list li {
  1485. width: 100%; /* 在更小的屏幕上每行一个链接 */
  1486. }
  1487. }