Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

style.css 36KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280
  1. /*
  2. Template Name: Meghna Responsive HTML5/CSS3 Business Template
  3. Author: Themefisher
  4. Author URI: www.Themefisher.com
  5. Description: Meghna Responsive HTML5/CSS3 Portfolio Template
  6. Version: 1.3
  7. Tags: one-page, single-page, portfolio, custom-colors, post-formats, responsive, html5, css3
  8. */
  9. /*=== MEDIA QUERY ===*/
  10. html {
  11. background-color: #353b43;
  12. color: #737f8a;
  13. }
  14. body {
  15. background-color: #353b43;
  16. font-family: "Anaheim", sans-serif;
  17. color: #737f8a;
  18. -webkit-font-smoothing: antialiased;
  19. }
  20. h1,
  21. h2,
  22. h3,
  23. h4,
  24. h5,
  25. h6 {
  26. font-weight: 400;
  27. font-family: "Quattrocento Sans", sans-serif;
  28. color: #afbac4;
  29. }
  30. p {
  31. font-family: "Quattrocento Sans", sans-serif;
  32. }
  33. [scroll-behavior=smooth] {
  34. scroll-behavior: smooth;
  35. }
  36. pre {
  37. color: #afbac4;
  38. }
  39. /*=================================================================
  40. Basic Setup
  41. ==================================================================*/
  42. ::-moz-selection {
  43. /* Code for Firefox */
  44. color: #fff;
  45. background: #57cbcc;
  46. }
  47. ::selection {
  48. color: #fff;
  49. background: #57cbcc;
  50. }
  51. hr {
  52. border-top: 1px solid rgba(255, 255, 255, .1);
  53. }
  54. figure {
  55. margin: 0;
  56. }
  57. a {
  58. color: #fff;
  59. transition: all .3s ease-in 0s;
  60. }
  61. iframe {
  62. border: 0;
  63. }
  64. a,
  65. a:focus,
  66. a:hover {
  67. text-decoration: none;
  68. outline: 0;
  69. }
  70. a:focus,
  71. a:hover {
  72. color: #6CB670;
  73. }
  74. .kill-margin-bottom {
  75. margin-bottom: 0 !important;
  76. }
  77. .padding-0 {
  78. padding: 0 !important;
  79. }
  80. .mb-50 {
  81. margin-bottom: 50px;
  82. }
  83. .btn {
  84. background-color: transparent;
  85. color: #fff;
  86. padding: 10px 30px;
  87. border-radius: 0;
  88. transition: all .3s ease-in 0s;
  89. }
  90. .btn:focus {
  91. color: #ddd;
  92. }
  93. .btn-transparent {
  94. border: 1px solid #4e595f;
  95. }
  96. .btn-transparent:hover,
  97. .btn-transparent:focus {
  98. background-color: #57cbcc;
  99. border: 1px solid transparent;
  100. color: #fff;
  101. }
  102. .border-meghna {
  103. border-top: 2px solid rgba(236, 239, 241, 0.07);
  104. height: 1px;
  105. margin: 15px auto 0;
  106. position: relative;
  107. width: 30%;
  108. }
  109. .border-meghna:before {
  110. background-color: #fff;
  111. content: '';
  112. height: 6px;
  113. left: 50%;
  114. margin-left: -20px;
  115. position: absolute;
  116. top: -4px;
  117. width: 50px;
  118. background-color: #57cbcc;
  119. }
  120. .color {
  121. color: #6CB670;
  122. }
  123. .sub-title {
  124. padding: 0 0 50px;
  125. }
  126. .sub-title>h3 {
  127. border-left: 3px solid #ddd;
  128. border-right: 3px solid #ddd;
  129. display: inline-block;
  130. padding: 5px 25px;
  131. text-transform: uppercase;
  132. }
  133. .btn.active:focus,
  134. .btn:active:focus,
  135. .btn:focus {
  136. outline: 0;
  137. }
  138. .bg-one {
  139. background-color: #353b43;
  140. }
  141. .bg-dark {
  142. background: #242930;
  143. }
  144. .parallax-section {
  145. background-attachment: fixed !important;
  146. background-position: center center;
  147. background-repeat: no-repeat;
  148. background-size: cover;
  149. }
  150. .no-padding {
  151. padding: 0 !important;
  152. }
  153. .inline-block {
  154. display: inline-block;
  155. }
  156. .btn {
  157. cursor: pointer;
  158. }
  159. .btn.focus,
  160. .btn:focus {
  161. box-shadow: none;
  162. }
  163. figure {
  164. margin: 0;
  165. }
  166. a {
  167. transition: all .2s ease-in 0s;
  168. }
  169. iframe {
  170. border: 0;
  171. }
  172. a,
  173. a:focus,
  174. a:hover {
  175. text-decoration: none;
  176. outline: 0;
  177. }
  178. a:focus,
  179. a:hover {
  180. color: #57cbcc;
  181. }
  182. .btn-main {
  183. background: #57cbcc;
  184. color: #fff;
  185. display: inline-block;
  186. font-size: 14px;
  187. letter-spacing: 1px;
  188. padding: 10px 35px;
  189. text-transform: uppercase;
  190. }
  191. .btn-main:hover {
  192. background: #2c9091;
  193. color: #fff;
  194. }
  195. .mt-20 {
  196. margin-top: 20px;
  197. }
  198. .section {
  199. padding: 100px 0;
  200. }
  201. @media (max-width: 480px) {
  202. .section {
  203. padding: 50px 0;
  204. }
  205. }
  206. @media (max-width: 768px) {
  207. .section {
  208. padding: 80px 0;
  209. }
  210. }
  211. .section-sm {
  212. padding: 70px 0;
  213. }
  214. .section-xs {
  215. padding: 50px 0;
  216. }
  217. .btn:focus {
  218. color: #ddd;
  219. }
  220. #home {
  221. position: relative;
  222. }
  223. .btn.active:focus,
  224. .btn:active:focus,
  225. .btn:focus {
  226. outline: 0;
  227. }
  228. .parallax-section {
  229. background-attachment: fixed;
  230. background-position: center center;
  231. background-repeat: no-repeat;
  232. background-size: cover;
  233. }
  234. .preloader {
  235. position: fixed;
  236. top: 0;
  237. left: 0;
  238. right: 0;
  239. bottom: 0;
  240. background-color: #2c2f36;
  241. z-index: 9999;
  242. display: flex;
  243. align-items: center;
  244. justify-content: center;
  245. }
  246. .title {
  247. padding-bottom: 60px;
  248. }
  249. .title h2 {
  250. text-transform: capitalize;
  251. font-weight: 700;
  252. font-size: 38px;
  253. color: #fff;
  254. }
  255. .title h2 span {
  256. color: #57cbcc;
  257. }
  258. .title p {
  259. color: #666;
  260. }
  261. .title.title-white h2 {
  262. color: #fff;
  263. }
  264. .bg-gray {
  265. background: #f9f9f9;
  266. }
  267. .section-bg {
  268. background: #292F36;
  269. }
  270. .overly {
  271. position: relative;
  272. }
  273. .overly:before {
  274. content: '';
  275. background: rgba(0, 0, 0, 0.096);
  276. position: absolute;
  277. top: 0;
  278. right: 0;
  279. bottom: 0;
  280. left: 0;
  281. }
  282. .header-bradcrumb {
  283. background: transparent;
  284. }
  285. .header-bradcrumb a,
  286. .header-bradcrumb .active {
  287. color: #cfcfcf;
  288. font-weight: 200;
  289. font-family: "Quattrocento Sans", sans-serif;
  290. }
  291. .header-bradcrumb a:hover {
  292. color: #57cbcc;
  293. }
  294. .slick-slide {
  295. outline: none;
  296. }
  297. /* CSS mfp-with-zoom class */
  298. .mfp-with-zoom .mfp-container,
  299. .mfp-with-zoom.mfp-bg {
  300. opacity: 0;
  301. transition: all 0.3s ease-out;
  302. }
  303. .mfp-with-zoom.mfp-ready .mfp-container {
  304. opacity: 1;
  305. }
  306. .mfp-with-zoom.mfp-ready.mfp-bg {
  307. opacity: 0.8;
  308. }
  309. .mfp-with-zoom.mfp-removing .mfp-container,
  310. .mfp-with-zoom.mfp-removing.mfp-bg {
  311. opacity: 0;
  312. }
  313. .logo {
  314. margin-top: 10px;
  315. display: inline-block;
  316. }
  317. .single-page-header {
  318. background-image: url("../images/about/about-header.jpg");
  319. background-size: cover;
  320. padding: 140px 0 70px;
  321. text-align: center;
  322. color: #fff;
  323. position: relative;
  324. }
  325. .single-page-header:before {
  326. background: rgba(0, 0, 0, 0.5);
  327. position: absolute;
  328. content: '';
  329. top: 0;
  330. right: 0;
  331. left: 0;
  332. bottom: 0;
  333. }
  334. /*=================================================================
  335. Navigation
  336. ==================================================================*/
  337. .navigation {
  338. background-color: #1d2024;
  339. width: 100%;
  340. margin-bottom: 0;
  341. }
  342. .navbar-dark .navbar-nav .active>.nav-link,
  343. .navbar-dark .navbar-nav .nav-link.active,
  344. .navbar-dark .navbar-nav .nav-link.show,
  345. .navbar-dark .navbar-nav .show>.nav-link {
  346. color: #57cbcc;
  347. }
  348. .navbar-toggler:focus {
  349. outline: 0;
  350. }
  351. .bg-1 {
  352. background-repeat: no-repeat;
  353. background-size: cover;
  354. }
  355. .bg-2 {
  356. background-repeat: no-repeat;
  357. background-size: cover;
  358. background-attachment: fixed;
  359. }
  360. .hero-area {
  361. background-size: cover;
  362. height: 100vh;
  363. position: relative;
  364. display: flex;
  365. justify-content: center;
  366. align-items: center;
  367. }
  368. .hero-area:before {
  369. content: '';
  370. background: rgba(0, 0, 0, 0.63);
  371. position: absolute;
  372. top: 0;
  373. right: 0;
  374. bottom: 0;
  375. left: 0;
  376. }
  377. .hero-area .block {
  378. text-align: center;
  379. z-index: 99;
  380. }
  381. .hero-area .block .video-button {
  382. background: #fff;
  383. color: #57cbcc;
  384. display: inline-block;
  385. height: 60px;
  386. width: 60px;
  387. border-radius: 50px;
  388. }
  389. .hero-area .block .video-button i {
  390. line-height: 60px;
  391. font-size: 20px;
  392. margin-left: 3px;
  393. }
  394. .hero-area .block h1 {
  395. font-size: 90px;
  396. color: #fff;
  397. text-transform: capitalize;
  398. font-weight: 700;
  399. margin-bottom: 20px;
  400. }
  401. @media (max-width: 480px) {
  402. .hero-area .block h1 {
  403. font-size: 60px;
  404. }
  405. }
  406. .hero-area .block p {
  407. color: #fff;
  408. font-size: 20px;
  409. width: 70%;
  410. margin: 0 auto;
  411. }
  412. .hero-area .block .btn-transparent {
  413. margin-top: 40px;
  414. border-color: #fff;
  415. padding: 14px 50px;
  416. font-size: 18px;
  417. font-size: 16px;
  418. font-weight: bold;
  419. letter-spacing: 1px;
  420. }
  421. .hero-area-video {
  422. height: 100vh;
  423. position: inherit !important;
  424. display: flex;
  425. justify-content: center;
  426. align-items: center;
  427. }
  428. .hero-area-video .block {
  429. color: #fff;
  430. text-align: center;
  431. }
  432. .hero-area-video .block h1 {
  433. font-size: 60px;
  434. font-weight: 700;
  435. margin-bottom: 20px;
  436. }
  437. .hero-area-video .block p {
  438. color: #fff;
  439. text-transform: uppercase;
  440. font-size: 12px;
  441. letter-spacing: 3px;
  442. margin-bottom: 20px;
  443. }
  444. .hero-area-video .block .btn-main {
  445. margin-top: 20px;
  446. }
  447. .dark-bg {
  448. background: rgba(0, 0, 0, 0.7);
  449. height: 100%;
  450. width: 100%;
  451. position: absolute;
  452. z-index: -1;
  453. }
  454. /*=================================================================
  455. About us section
  456. ==================================================================*/
  457. .about .block {
  458. background: #242930;
  459. padding: 30px;
  460. border-bottom: 2px solid transparent;
  461. transition: .5s all;
  462. margin-bottom: 20px;
  463. }
  464. .about .block:hover {
  465. border-bottom: 2px solid #57cbcc;
  466. }
  467. .about .block:hover .icon-box {
  468. -webkit-transform: translateY(-10px);
  469. transform: translateY(-10px);
  470. }
  471. .about .block .icon-box {
  472. position: relative;
  473. width: 160px;
  474. height: 92.38px;
  475. background-color: transparent;
  476. margin: 46.19px auto 60px;
  477. padding: 20px 0;
  478. border-left: 2px solid rgba(236, 239, 241, 0.07);
  479. border-right: 2px solid rgba(236, 239, 241, 0.07);
  480. font-size: 50px;
  481. -webkit-transform: translateZ(0px);
  482. transform: translateZ(0px);
  483. transition-duration: 0.3s;
  484. transition-property: -webkit-transform;
  485. transition-property: transform;
  486. transition-property: transform, -webkit-transform;
  487. }
  488. .about .block .icon-box:after,
  489. .about .block .icon-box:before {
  490. content: "";
  491. position: absolute;
  492. z-index: 1;
  493. width: 113.14px;
  494. height: 113.14px;
  495. background-color: inherit;
  496. left: 20.4315px;
  497. -webkit-transform: scaleY(0.5774) rotate(-45deg);
  498. transform: scaleY(0.5774) rotate(-45deg);
  499. }
  500. .about .block .icon-box:before {
  501. top: -56.5685px;
  502. border-top: 2px solid rgba(236, 239, 241, 0.07);
  503. border-right: 2px solid rgba(236, 239, 241, 0.07);
  504. }
  505. .about .block .icon-box:after {
  506. bottom: -56.5685px;
  507. border-bottom: 2px solid rgba(236, 239, 241, 0.07);
  508. border-left: 2px solid rgba(236, 239, 241, 0.07);
  509. }
  510. .about .block .icon-box h3 {
  511. color: #afbac4;
  512. }
  513. /*=================================================================
  514. About us 2 section
  515. ==================================================================*/
  516. .about-2 .content-block {
  517. padding: 40px;
  518. }
  519. .about-2 .content-block .media {
  520. margin-top: 25px;
  521. }
  522. .about-2 .content-block .media .pull-left {
  523. padding-right: 15px;
  524. }
  525. .about-2 .content-block .media i {
  526. font-size: 30px;
  527. color: #57cbcc;
  528. }
  529. .about-2 .content-block .media h4 {
  530. font-size: 16px;
  531. font-weight: 600;
  532. }
  533. /*=================================================================
  534. Call To Action 1
  535. ==================================================================*/
  536. .call-to-action {
  537. background-attachment: fixed;
  538. }
  539. .call-to-action h2 {
  540. font-weight: 700;
  541. color: #444;
  542. }
  543. .call-to-action p {
  544. font-size: 16px;
  545. color: #666;
  546. }
  547. .call-to-action .btn-main {
  548. margin-top: 20px;
  549. }
  550. /*=================================================================
  551. Call To Action 2
  552. ==================================================================*/
  553. .call-to-action-2 {
  554. padding: 100px 0;
  555. background-image: url("../images/call-to-action/call-to-action-bg.jpg");
  556. background-size: cover;
  557. color: #fff;
  558. }
  559. .call-to-action-2 h2 {
  560. line-height: 1.5;
  561. }
  562. .call-to-action-2 p {
  563. color: #fff;
  564. }
  565. .call-to-action-2 .btn-main {
  566. margin-top: 20px;
  567. }
  568. .contact-us {
  569. padding-top: 50px;
  570. }
  571. @media (max-width: 768px) {
  572. .contact-us {
  573. padding-top: 80px;
  574. }
  575. }
  576. .contact-form {
  577. margin-bottom: 60px;
  578. }
  579. .form-meghna .form-control {
  580. background-color: transparent;
  581. border-radius: 0;
  582. padding: 5px 10px;
  583. color: #ddd;
  584. border: 1px solid rgba(236, 239, 241, 0.07);
  585. }
  586. .form-meghna .form-control:focus {
  587. border-color: none;
  588. box-shadow: none;
  589. }
  590. .form-meghna input:hover,
  591. .form-meghna textarea:hover,
  592. #contact-submit:hover {
  593. border-color: #57cbcc;
  594. }
  595. .form-meghna ::placeholder {
  596. color: #ddd !important;
  597. }
  598. #contact-submit {
  599. border: 1px solid rgba(236, 239, 241, 0.07);
  600. background: #57cbcc;
  601. padding: 12px 0;
  602. width: 100%;
  603. margin: 0;
  604. }
  605. .google-map #map-canvas {
  606. height: 400px;
  607. }
  608. .contact-info p {
  609. margin-bottom: 25px;
  610. }
  611. .con-info {
  612. margin-bottom: 20px;
  613. }
  614. .con-info i,
  615. .con-info span {
  616. padding-right: 5px;
  617. }
  618. .error {
  619. display: none;
  620. padding: 10px;
  621. color: #D8000C;
  622. border-radius: 4px;
  623. font-size: 13px;
  624. background-color: #FFBABA;
  625. }
  626. .success {
  627. background-color: #6cb670;
  628. border-radius: 4px;
  629. color: #fff;
  630. display: none;
  631. font-size: 13px;
  632. padding: 10px;
  633. }
  634. #map {
  635. height: 370px;
  636. width: 100%;
  637. }
  638. /*=================================================================
  639. Item counter section
  640. ==================================================================*/
  641. .counters-item {
  642. padding: 25px 0;
  643. margin-bottom: 10px;
  644. background: #292F36;
  645. }
  646. .counters-item i {
  647. margin-bottom: 10px;
  648. font-size: 40px;
  649. display: inline-block;
  650. }
  651. .counters-item span {
  652. display: block;
  653. font-weight: bold;
  654. font-size: 35px;
  655. line-height: 50px;
  656. }
  657. .counters-item h3 {
  658. font-size: 20px;
  659. margin: 0;
  660. }
  661. /*=================================================================
  662. Pricing section
  663. ==================================================================*/
  664. .price-item {
  665. border: 1px solid rgba(236, 239, 241, 0.07);
  666. padding-bottom: 30px;
  667. margin-bottom: 15px;
  668. }
  669. .price-title {
  670. background-color: #292F36;
  671. padding: 30px 0 20px;
  672. }
  673. .price-title h3 {
  674. color: #57cbcc;
  675. margin: 0 0 10px;
  676. text-transform: uppercase;
  677. }
  678. .price-title p {
  679. font-size: 18px;
  680. font-weight: 400;
  681. }
  682. .price-title .value {
  683. color: #57cbcc;
  684. font-size: 30px;
  685. }
  686. .pricing ul,
  687. .skill-bar {
  688. list-style-type: none;
  689. margin: 0;
  690. padding: 0;
  691. }
  692. .pricing li {
  693. padding: 10px 0;
  694. }
  695. .pricing li:last-child {
  696. border-bottom: 1px solid rgba(236, 239, 241, 0.07);
  697. margin-bottom: 20px;
  698. }
  699. .pricing li:nth-child(2n) {
  700. background-color: #292F36;
  701. }
  702. .pricing li .btn {
  703. text-transform: uppercase;
  704. margin: 20px 0;
  705. }
  706. /*=================================================================
  707. Portfolio section
  708. ==================================================================*/
  709. .portfolio-filter {
  710. margin-bottom: 40px;
  711. text-align: center;
  712. }
  713. .portfolio-filter .btn {
  714. outline: 0;
  715. border: 1px solid rgba(236, 239, 241, 0.07);
  716. background: transparent;
  717. display: inline-block;
  718. font-size: 16px;
  719. padding: 6px 20px;
  720. font-weight: 700;
  721. color: #737f8a;
  722. transition: .3s all;
  723. }
  724. .portfolio-filter .btn.active {
  725. border-color: #57cbcc;
  726. }
  727. .portfolio-block {
  728. position: relative;
  729. }
  730. .portfolio-block:before {
  731. transition: all 0.3s ease-in-out;
  732. background: white;
  733. opacity: 0;
  734. top: 20px;
  735. right: 20px;
  736. bottom: 20px;
  737. left: 20px;
  738. position: absolute;
  739. content: '';
  740. }
  741. .portfolio-block img {
  742. width: 100%;
  743. height: auto;
  744. }
  745. .portfolio-block:hover:before {
  746. opacity: 1;
  747. }
  748. .portfolio-block:hover .caption h4 {
  749. top: 45%;
  750. }
  751. .portfolio-block:hover .caption {
  752. opacity: 1;
  753. top: 55%;
  754. }
  755. .portfolio-block .caption {
  756. position: absolute;
  757. top: 50%;
  758. left: 50%;
  759. opacity: 0;
  760. -webkit-transform: translate(-50%, -50%);
  761. transform: translate(-50%, -50%);
  762. z-index: 9;
  763. transition: all 0.2s ease-in-out;
  764. text-align: center;
  765. }
  766. .portfolio-block .caption h4 {
  767. font-size: 16px;
  768. font-weight: 600;
  769. }
  770. .portfolio-block .caption h4 a {
  771. color: #555;
  772. }
  773. .portfolio-block .caption .search-icon {
  774. background: #57cbcc;
  775. width: 50px;
  776. height: 50px;
  777. color: #fff;
  778. display: inline-block;
  779. font-size: 20px;
  780. border-radius: 30px;
  781. }
  782. .portfolio-block .caption .search-icon i {
  783. line-height: 50px;
  784. }
  785. /*=================================================================
  786. Services section
  787. ==================================================================*/
  788. .service-block {
  789. padding: 60px 20px;
  790. border-left: 1px solid rgba(236, 239, 241, 0.07);
  791. border-top: 1px solid rgba(236, 239, 241, 0.07);
  792. margin-bottom: 40px;
  793. box-shadow: 2px 2px 5px rgba(44, 44, 44, 0.3), 13px 13px 0 rgba(255, 255, 255, 0.7);
  794. }
  795. .service-block .service-icon {
  796. margin-bottom: 10px;
  797. font-size: 50px;
  798. }
  799. /*=================================================================
  800. Services section 2
  801. ==================================================================*/
  802. .service-2 .service-item {
  803. border: 1px solid #eee;
  804. margin-bottom: 30px;
  805. padding: 50px 20px;
  806. transition: all 0.3s ease 0s;
  807. }
  808. .service-2 .service-item:hover {
  809. box-shadow: 0 5px 65px 0 rgba(0, 0, 0, 0.15);
  810. -webkit-box-shadow: 0 5px 65px 0 rgba(0, 0, 0, 0.15);
  811. }
  812. .service-2 .service-item:hover i {
  813. background: #fff;
  814. color: #57cbcc;
  815. }
  816. .service-2 .service-item i {
  817. font-size: 30px;
  818. display: inline-block;
  819. background: #57cbcc none repeat scroll 0 0;
  820. border-radius: 30px;
  821. box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
  822. color: #fff;
  823. height: 55px;
  824. line-height: 55px;
  825. margin-bottom: 20px;
  826. width: 55px;
  827. transition: all 0.3s ease 0s;
  828. }
  829. /*=================================================================
  830. Our skills
  831. ==================================================================*/
  832. .skill-bar p {
  833. font-size: 18px;
  834. margin-bottom: 0;
  835. }
  836. .skill-bar p span {
  837. font-style: italic;
  838. font-size: 30px;
  839. color: rgba(187, 187, 187, 0.34);
  840. display: inline-block;
  841. vertical-align: middle;
  842. }
  843. .skill-bar .progress {
  844. height: 6px;
  845. border-radius: 0;
  846. }
  847. .skill-bar .progress .progress-bar {
  848. background: #57cbcc;
  849. }
  850. /*=================================================================
  851. Our Team
  852. ==================================================================*/
  853. .team-member {
  854. background-color: #292F36;
  855. margin-bottom: 10px;
  856. }
  857. .team-member:hover .mask {
  858. cursor: pointer;
  859. opacity: 1;
  860. filter: alpha(opacity=100);
  861. -webkit-transform: rotateY(0deg) scale(1, 1);
  862. transform: rotateY(0deg) scale(1, 1);
  863. }
  864. .member-photo {
  865. overflow: hidden;
  866. position: relative;
  867. }
  868. @media (max-width: 768px) {
  869. .member-photo {
  870. text-align: center;
  871. }
  872. }
  873. .member-photo:hover img {
  874. -webkit-transform: scale(1.2);
  875. transform: scale(1.2);
  876. }
  877. .member-photo img {
  878. transition: all 0.4s ease 0s;
  879. }
  880. @media (max-width: 768px) {
  881. .member-photo img {
  882. display: inline-block;
  883. }
  884. }
  885. .member-photo .mask {
  886. background-color: rgba(87, 203, 204, 0.7);
  887. position: absolute;
  888. text-align: center;
  889. height: 100%;
  890. width: 100%;
  891. left: 0;
  892. top: 0;
  893. opacity: 0;
  894. filter: alpha(opacity=0);
  895. transition: all .5s ease-out 0s;
  896. -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
  897. transform: rotateY(180deg) scale(0.5, 0.5);
  898. }
  899. .member-photo .mask ul {
  900. text-align: center;
  901. position: relative;
  902. top: 125px;
  903. }
  904. .member-photo .mask ul li a {
  905. border: 1px solid #fff;
  906. color: #fff;
  907. display: block;
  908. font-size: 20px;
  909. height: 35px;
  910. line-height: 35px;
  911. text-align: center;
  912. width: 35px;
  913. }
  914. .member-photo .mask ul li a:hover {
  915. background-color: #fff;
  916. color: #57cbcc;
  917. border: 1px solid transparent;
  918. }
  919. .member-meta {
  920. padding: 15px;
  921. }
  922. .member-meta h4 {
  923. margin: 0 0 5px;
  924. }
  925. .member-meta span {
  926. font-size: 12px;
  927. }
  928. /*=================================================================
  929. Testimonial section
  930. ==================================================================*/
  931. .testimonial:before {
  932. background: rgba(42, 48, 55, 0.7);
  933. }
  934. .client-info {
  935. margin: 0 auto;
  936. width: 45%;
  937. }
  938. @media (max-width: 768px) {
  939. .client-info {
  940. width: 90%;
  941. }
  942. }
  943. .client-comment p {
  944. color: #afbac4;
  945. font-size: 18px;
  946. }
  947. .client-thumb img {
  948. border-radius: 50%;
  949. margin: 0 auto;
  950. max-width: 115px;
  951. width: 100%;
  952. }
  953. .client-meta {
  954. margin: 0 0 10px;
  955. }
  956. .client-meta h3 {
  957. margin: 15px 0 5px .0;
  958. }
  959. .client-meta span {
  960. font-size: 12px;
  961. }
  962. .owl-pagination,
  963. .owl-buttons {
  964. text-align: center;
  965. }
  966. .owl-controls .owl-page {
  967. display: inline-block;
  968. }
  969. .owl-controls .owl-page span {
  970. background-color: transparent;
  971. border: 2px solid #fff;
  972. border-radius: 50px;
  973. display: block;
  974. height: 13px;
  975. margin: 0 4px;
  976. width: 13px;
  977. opacity: 1;
  978. filter: alpha(opacity=100);
  979. }
  980. .owl-controls .owl-page.active span,
  981. .owl-controls .owl-page:hover span {
  982. background-color: #57cbcc;
  983. border: 2px solid transparent;
  984. }
  985. .our-clients {
  986. margin: 30px 0 0;
  987. }
  988. #our-clietns .item img {
  989. max-width: 150px;
  990. width: 100%;
  991. }
  992. #our-clietns .owl-next,
  993. #our-clietns .owl-prev {
  994. border: 1px solid #ddd;
  995. border-radius: 50px;
  996. display: inline-block;
  997. margin: 45px 0 0;
  998. padding: 3px 15px;
  999. position: relative;
  1000. text-align: center;
  1001. }
  1002. #our-clietns .owl-next i,
  1003. #our-clietns .owl-prev i {
  1004. line-height: 34px;
  1005. }
  1006. #our-clietns .owl-prev {
  1007. margin-right: 15px;
  1008. }
  1009. #our-clients .item {
  1010. margin: 10px;
  1011. }
  1012. /*=================================================================
  1013. Latest Posts
  1014. ==================================================================*/
  1015. .note {
  1016. background-color: #292F36;
  1017. border: 1px solid #4e595f;
  1018. }
  1019. .post-block {
  1020. background-color: #292F36;
  1021. margin-bottom: 10px;
  1022. }
  1023. .post-block .content {
  1024. padding: 20px;
  1025. }
  1026. .post-block .content h3 {
  1027. margin: 0 0 6px;
  1028. font-size: 20px;
  1029. line-height: 1.5;
  1030. text-transform: capitalize;
  1031. }
  1032. .note .media-wrapper {
  1033. border-bottom: 1px solid #4e595f;
  1034. }
  1035. .note .excerpt h3 {
  1036. font-size: 20px;
  1037. line-height: 1.5;
  1038. text-transform: capitalize;
  1039. }
  1040. .all-post {
  1041. margin-top: 50px;
  1042. }
  1043. /*=================================================================
  1044. Single Blog Page
  1045. ==================================================================*/
  1046. #blog-banner {
  1047. padding-bottom: 100px;
  1048. padding-top: 150px;
  1049. }
  1050. #blog-page {
  1051. margin: 0 0 40px;
  1052. }
  1053. .post-meta {
  1054. font-size: 13px;
  1055. margin: 20px 0 0;
  1056. padding: 0 20px 10px;
  1057. }
  1058. .post-meta a {
  1059. color: #57cbcc;
  1060. }
  1061. .post-meta>span {
  1062. color: #666;
  1063. border-right: 1px solid #dedede;
  1064. display: inline-block;
  1065. font-size: 13px;
  1066. margin: 10px 10px 0 0;
  1067. padding-right: 10px;
  1068. }
  1069. .post-meta>span:last-child {
  1070. border-right: 0;
  1071. }
  1072. .post-meta>span i {
  1073. margin-right: 5px;
  1074. }
  1075. .post-excerpt {
  1076. padding: 0 20px;
  1077. margin-bottom: 60px;
  1078. }
  1079. .post-excerpt h3 a {
  1080. color: #000;
  1081. }
  1082. .post-excerpt blockquote {
  1083. line-height: 22px;
  1084. margin: 20px 0;
  1085. font-size: 16px;
  1086. }
  1087. .single-blog {
  1088. background-color: #fff;
  1089. margin-bottom: 50px;
  1090. padding: 20px;
  1091. }
  1092. .blog-subtitle {
  1093. font-size: 15px;
  1094. padding-bottom: 10px;
  1095. border-bottom: 1px solid #dedede;
  1096. margin-bottom: 25px;
  1097. text-transform: uppercase;
  1098. }
  1099. .next-prev {
  1100. border-bottom: 1px solid #dedede;
  1101. border-top: 1px solid #dedede;
  1102. margin: 20px 0;
  1103. padding: 25px 0;
  1104. }
  1105. .next-prev a {
  1106. color: #000;
  1107. }
  1108. .next-prev a:hover {
  1109. color: #57cbcc;
  1110. }
  1111. .next-prev .prev-post i {
  1112. margin-right: 10px;
  1113. }
  1114. .next-prev .next-post i {
  1115. margin-left: 10px;
  1116. }
  1117. .social-profile ul li {
  1118. margin: 0 10px 0 0;
  1119. display: inline-block;
  1120. }
  1121. .social-profile ul li a {
  1122. color: #4e595f;
  1123. display: block;
  1124. font-size: 16px;
  1125. }
  1126. .social-profile ul li a i:hover {
  1127. color: #57cbcc;
  1128. }
  1129. .comments-section {
  1130. margin-top: 35px;
  1131. }
  1132. .author-about {
  1133. margin-top: 40px;
  1134. }
  1135. .post-author {
  1136. margin-right: 20px;
  1137. }
  1138. .post-author>img {
  1139. border: 1px solid #dedede;
  1140. max-width: 120px;
  1141. padding: 5px;
  1142. width: 100%;
  1143. }
  1144. .comment-list ul {
  1145. margin-top: 20px;
  1146. }
  1147. .comment-list ul li {
  1148. margin-bottom: 20px;
  1149. }
  1150. .comment-wrap {
  1151. border: 1px solid #dedede;
  1152. border-radius: 1px;
  1153. margin-left: 20px;
  1154. padding: 10px;
  1155. position: relative;
  1156. }
  1157. .comment-wrap .author-avatar {
  1158. margin-right: 10px;
  1159. }
  1160. .comment-wrap .media .media-heading {
  1161. font-size: 14px;
  1162. margin-bottom: 8px;
  1163. }
  1164. .comment-wrap .media .media-heading a {
  1165. color: #57cbcc;
  1166. font-size: 13px;
  1167. }
  1168. .comment-wrap .media .comment-meta {
  1169. font-size: 12px;
  1170. color: #888;
  1171. }
  1172. .comment-wrap .media p {
  1173. margin-top: 15px;
  1174. }
  1175. .comment-reply-form {
  1176. margin-top: 80px;
  1177. }
  1178. .comment-reply-form input,
  1179. .comment-reply-form textarea {
  1180. height: 35px;
  1181. border-radius: 0;
  1182. box-shadow: none;
  1183. }
  1184. .comment-reply-form input:focus,
  1185. .comment-reply-form textarea:focus {
  1186. box-shadow: none;
  1187. border: 1px solid #57cbcc;
  1188. }
  1189. .comment-reply-form textarea,
  1190. .comment-reply-form .btn-main {
  1191. height: auto;
  1192. }
  1193. /* Staticman Comments */
  1194. #staticman-form:before {
  1195. display: block;
  1196. height: 90px;
  1197. margin-top: -90px;
  1198. visibility: hidden;
  1199. content: "";
  1200. }
  1201. @media (max-width: 768px) {
  1202. #staticman-form:before {
  1203. display: block;
  1204. height: 80px;
  1205. margin-top: -80px;
  1206. visibility: hidden;
  1207. content: "";
  1208. }
  1209. }
  1210. .post-comment {
  1211. background-color: #292f36;
  1212. ;
  1213. padding: 20px;
  1214. margin-top: 20px;
  1215. margin-bottom: 20px;
  1216. }
  1217. .post-comment-header {
  1218. margin-bottom: 20px;
  1219. }
  1220. .post-comment-avatar {
  1221. display: inline-block;
  1222. vertical-align: middle;
  1223. border-radius: 50%;
  1224. }
  1225. .post-comment-info {
  1226. display: inline-block;
  1227. margin-left: 20px;
  1228. margin-bottom: 0;
  1229. vertical-align: middle;
  1230. }
  1231. .post-comment-field {
  1232. display: block;
  1233. font: inherit;
  1234. padding: 10px;
  1235. margin-top: 20px;
  1236. outline-color: #F76C5E;
  1237. width: 100%;
  1238. }
  1239. .post-comment-name {
  1240. color: #afbac4;
  1241. font-weight: 500;
  1242. font-size: 18px;
  1243. }
  1244. .post-time {
  1245. color: #737f8a;
  1246. }
  1247. input#e-mail,
  1248. #hidden_iframe {
  1249. display: none;
  1250. }
  1251. /*=================================================================
  1252. Footer section
  1253. ==================================================================*/
  1254. .social-icon {
  1255. padding: 60px 0 35px;
  1256. }
  1257. .social-icon ul {
  1258. text-align: center;
  1259. }
  1260. .social-icon ul li {
  1261. margin-bottom: 4px;
  1262. }
  1263. .social-icon ul li a {
  1264. background-color: #26292e;
  1265. border: 1px solid transparent;
  1266. display: block;
  1267. height: 70px;
  1268. width: 70px;
  1269. transition: all 400ms ease-out 0s;
  1270. }
  1271. .social-icon ul li a:hover {
  1272. background: #57cbcc;
  1273. }
  1274. .social-icon ul li a:hover i {
  1275. color: #fff;
  1276. opacity: 1;
  1277. }
  1278. .social-icon ul li a i {
  1279. color: #55606a;
  1280. display: inline-block;
  1281. font-size: 32px;
  1282. line-height: 70px;
  1283. margin: 0;
  1284. opacity: 0.3;
  1285. transition: all 400ms ease-out 0s;
  1286. }
  1287. .copyright {
  1288. padding: 20px 0;
  1289. color: #fff;
  1290. }
  1291. .copyright img {
  1292. margin-bottom: 15px;
  1293. }
  1294. .copyright p {
  1295. margin-top: 10px;
  1296. }
  1297. #scrollUp {
  1298. border: 1px solid #4e595f;
  1299. bottom: 15px;
  1300. color: #fff;
  1301. display: none;
  1302. padding: 8px 12px;
  1303. position: fixed;
  1304. right: 20px;
  1305. z-index: 600;
  1306. }
  1307. #scrollUp:hover {
  1308. background-color: #57cbcc;
  1309. border: 1px solid #57cbcc;
  1310. }
  1311. /*=================================================================
  1312. Twitter Feed
  1313. ==================================================================*/
  1314. .twitter-bird span {
  1315. border: 2px solid #6cb670;
  1316. border-radius: 50px;
  1317. color: #6cb670;
  1318. display: inline-block;
  1319. margin-bottom: 50px;
  1320. height: 90px;
  1321. width: 90px;
  1322. }
  1323. .twitter-bird span i {
  1324. line-height: 90px;
  1325. }
  1326. .tweet {
  1327. margin-bottom: 10px;
  1328. }
  1329. .tweet a {
  1330. color: #6cb670;
  1331. }
  1332. /*=================================================================
  1333. Blog Page
  1334. ==================================================================*/
  1335. #blog-banner {
  1336. padding-bottom: 100px;
  1337. padding-top: 150px;
  1338. }
  1339. .blog-icon {
  1340. border: 1px solid #6CB670;
  1341. border-radius: 50%;
  1342. color: #6CB670;
  1343. display: inline-block;
  1344. padding: 16px 20px;
  1345. }
  1346. .blog-title h1 {
  1347. text-transform: uppercase;
  1348. }
  1349. #blog-page {
  1350. margin: 0 0 40px;
  1351. }
  1352. .post-item .entry {
  1353. border: 1px solid #4e595f;
  1354. margin-bottom: 30px;
  1355. }
  1356. .entry .post-excerpt {
  1357. padding: 0 20px;
  1358. }
  1359. #gallery-post .owl-prev,
  1360. #post-thumb .owl-prev,
  1361. #gallery-post .owl-next,
  1362. #post-thumb .owl-next {
  1363. padding: 5px 17px;
  1364. position: absolute;
  1365. top: 45%;
  1366. transition: all .5s ease-in 0s;
  1367. }
  1368. #gallery-post .owl-prev,
  1369. #post-thumb .owl-prev {
  1370. left: -45px;
  1371. }
  1372. #gallery-post .owl-next,
  1373. #post-thumb .owl-next {
  1374. right: -45px;
  1375. }
  1376. #gallery-post:hover .owl-prev,
  1377. #post-thumb:hover .owl-prev {
  1378. left: 0;
  1379. }
  1380. #gallery-post:hover .owl-next,
  1381. #post-thumb:hover .owl-next {
  1382. right: 0;
  1383. }
  1384. #gallery-post,
  1385. #post-thumb {
  1386. overflow-x: hidden;
  1387. }
  1388. #post-thumb .owl-buttons {
  1389. color: #fff;
  1390. }
  1391. .post-meta {
  1392. background-color: #3d444a;
  1393. border-top: 1px solid #4e595f;
  1394. font-size: 13px;
  1395. margin: 20px 0 0;
  1396. padding: 0 20px 10px;
  1397. }
  1398. .post-meta>span {
  1399. border-right: 1px solid #4e595f;
  1400. display: inline-block;
  1401. font-size: 12px;
  1402. margin: 10px 10px 0 0;
  1403. padding-right: 10px;
  1404. }
  1405. .post-meta>span:last-child {
  1406. border-right: 0;
  1407. }
  1408. .post-meta>span>i {
  1409. margin-right: 5px;
  1410. }
  1411. .post-meta a:hover {
  1412. color: #6CB670;
  1413. }
  1414. .post-excerpt .more {
  1415. margin-top: 20px;
  1416. }
  1417. .post-excerpt .more a {
  1418. display: inline-block;
  1419. font-size: 13px;
  1420. padding: 10px 25px;
  1421. }
  1422. .post-excerpt .more a:hover {
  1423. background-color: #6CB670;
  1424. color: #fff;
  1425. }
  1426. aside.widget {
  1427. margin-bottom: 25px;
  1428. }
  1429. .widget-title>h3 {
  1430. color: #fff;
  1431. margin-bottom: 15px;
  1432. margin-top: 0;
  1433. position: relative;
  1434. }
  1435. #search-form {
  1436. position: relative;
  1437. }
  1438. #search-submit {
  1439. background: none;
  1440. border: 0;
  1441. color: #C8C8CA;
  1442. display: block;
  1443. font-size: 16px;
  1444. height: 32px;
  1445. outline: 0;
  1446. position: absolute;
  1447. right: 0;
  1448. text-align: center;
  1449. top: 0;
  1450. width: 32px;
  1451. }
  1452. .widget-content .tab-content {
  1453. background-color: #2f383d;
  1454. padding: 20px;
  1455. }
  1456. .tab-post-nav {
  1457. background-color: #4A535A;
  1458. }
  1459. .tab-post-nav li {
  1460. float: left;
  1461. }
  1462. .tab-post-nav li.active a {
  1463. border-top: 3px solid #6cb670;
  1464. background-color: #2F383D;
  1465. color: #6CB670;
  1466. }
  1467. .tab-pane.active .clearfix:first-child {
  1468. margin-bottom: 25px;
  1469. }
  1470. .tab-excerpt>span {
  1471. display: block;
  1472. font-size: 12px;
  1473. margin-bottom: 10px;
  1474. }
  1475. .tab-excerpt h4 a {
  1476. color: #fff;
  1477. }
  1478. .tab-excerpt h4 a:hover {
  1479. color: #6cb670;
  1480. }
  1481. .tab-post-nav li a {
  1482. border-top: 3px solid transparent;
  1483. color: #fff;
  1484. display: block;
  1485. padding: 13px 18px;
  1486. text-align: center;
  1487. }
  1488. .categories li {
  1489. margin-bottom: 10px;
  1490. transition: all .5s ease-in 0s;
  1491. }
  1492. .categories>li:hover a {
  1493. padding-left: 10px;
  1494. color: #6CB670;
  1495. }
  1496. .categories>li:last-child {
  1497. border-bottom: 0;
  1498. }
  1499. .categories li a {
  1500. padding-left: 5px;
  1501. }
  1502. .widget-content .tag {
  1503. background-color: #2F383D;
  1504. color: #fff;
  1505. display: inline-block;
  1506. margin-bottom: 10px;
  1507. margin-right: 5px;
  1508. padding: 5px 13px;
  1509. }
  1510. .widget-content .tag:hover {
  1511. background-color: #6CB670;
  1512. color: #fff;
  1513. }
  1514. .post-pagination {
  1515. display: inline-block;
  1516. margin-bottom: 20px;
  1517. }
  1518. .post-pagination ul li {
  1519. margin-right: 5px;
  1520. float: left;
  1521. }
  1522. .post-pagination ul li:last-child {
  1523. margin-right: 0;
  1524. }
  1525. .post-pagination ul li.disabled a {
  1526. cursor: not-allowed;
  1527. }
  1528. .post-pagination ul li.disabled a:hover {
  1529. background-color: #2E373C;
  1530. color: #9aa8b3;
  1531. }
  1532. .post-pagination ul li a {
  1533. background-color: #30393e;
  1534. color: #9aa8b3;
  1535. display: block;
  1536. padding: 8px 18px;
  1537. }
  1538. .post-pagination ul li a:hover,
  1539. .post-pagination ul li.active a {
  1540. background-color: #6CB670;
  1541. color: #fff;
  1542. }
  1543. /*=================================================================
  1544. Single Blog Page
  1545. ==================================================================*/
  1546. .single-blog {
  1547. background-color: #fff;
  1548. margin-bottom: 50px;
  1549. padding: 20px;
  1550. }
  1551. blockquote {
  1552. border-left: 5px solid #6cb670;
  1553. font-style: italic;
  1554. line-height: 22px;
  1555. padding: 20px 20px 10px 20px;
  1556. margin: 20px 0;
  1557. }
  1558. .next-prev {
  1559. border-bottom: 1px solid #4e595f;
  1560. border-top: 1px solid #4e595f;
  1561. margin: 20px 0;
  1562. padding: 15px 0 10px;
  1563. }
  1564. .next-prev a:hover {
  1565. color: #6CB670;
  1566. }
  1567. .prev-post i {
  1568. float: left;
  1569. margin-right: 10px;
  1570. margin-top: -4px;
  1571. }
  1572. .next-post i {
  1573. float: right;
  1574. margin-left: 10px;
  1575. margin-top: -3px;
  1576. }
  1577. .post-author {
  1578. margin-right: 20px;
  1579. }
  1580. .post-author>img {
  1581. border: 1px solid #4e595f;
  1582. max-width: 120px;
  1583. padding: 5px;
  1584. width: 100%;
  1585. }
  1586. .comment-reply-form>h3,
  1587. .author-about>h4,
  1588. .comments>h4 {
  1589. border-bottom: 1px solid #4e595f;
  1590. margin-bottom: 15px;
  1591. margin-top: 0;
  1592. padding-bottom: 10px;
  1593. position: relative;
  1594. }
  1595. .author-bio h5 {
  1596. display: inline-block;
  1597. }
  1598. .post-item .comments-section {
  1599. margin-top: 35px;
  1600. }
  1601. .comment-list ul {
  1602. margin-top: 20px;
  1603. }
  1604. .comment-list li {
  1605. margin-bottom: 20px;
  1606. }
  1607. .comment-wrap {
  1608. border: 1px solid #4e595f;
  1609. border-radius: 1px;
  1610. margin-left: 20px;
  1611. padding: 10px;
  1612. position: relative;
  1613. }
  1614. .comment-wrap .author-avatar {
  1615. margin-left: -25px;
  1616. margin-right: 20px;
  1617. }
  1618. .author-comment {
  1619. margin-bottom: 15px;
  1620. overflow: hidden;
  1621. }
  1622. .author-comment cite a:hover,
  1623. .replay:hover {
  1624. color: #6CB670;
  1625. text-decoration: underline;
  1626. }
  1627. .author-comment cite {
  1628. margin-bottom: 2px;
  1629. padding-top: 4px;
  1630. }
  1631. .comment-content {
  1632. margin-left: 45px;
  1633. }
  1634. .comment-list ul li {
  1635. padding-left: 25px;
  1636. }
  1637. .comment-reply-form {
  1638. margin-top: 80px;
  1639. }
  1640. #comment-form {
  1641. margin-top: 35px;
  1642. }
  1643. #comment-form .form-control:hover {
  1644. border-color: #6CB670;
  1645. }
  1646. .form-group:last-child,
  1647. .form-group:last-child input {
  1648. margin: 0;
  1649. }
  1650. .form-control-meghna .form-control {
  1651. background-color: transparent;
  1652. padding: 5px 10px;
  1653. color: #ddd;
  1654. border: 1px solid rgba(236, 239, 241, 0.07);
  1655. }
  1656. .form-control-meghna .form-control:focus {
  1657. border-color: #57cbcc;
  1658. box-shadow: 0 0 0 0.2rem rgba(0, 174, 255, 0.432);
  1659. }
  1660. figure img {
  1661. display: block;
  1662. margin: 0 auto 5px;
  1663. }
  1664. figcaption {
  1665. text-align: center;
  1666. }
  1667. /*! Social sharing buttons from Sharingbuttons.io */
  1668. .resp-sharing-button__link,
  1669. .resp-sharing-button__icon {
  1670. display: inline-block
  1671. }
  1672. .resp-sharing-button__link {
  1673. text-decoration: none;
  1674. color: #fff;
  1675. margin: 0.5em
  1676. }
  1677. .resp-sharing-button {
  1678. border-radius: 0;
  1679. transition: 25ms ease-out;
  1680. padding: 0.5em 0.75em;
  1681. font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  1682. }
  1683. .resp-sharing-button__icon svg {
  1684. width: 1em;
  1685. height: 1em;
  1686. margin-right: 0.4em;
  1687. vertical-align: top
  1688. }
  1689. .resp-sharing-button--small svg {
  1690. margin: 0;
  1691. vertical-align: middle
  1692. }
  1693. /* Non solid icons get a stroke */
  1694. .resp-sharing-button__icon {
  1695. stroke: #fff;
  1696. fill: none
  1697. }
  1698. /* Solid icons get a fill */
  1699. .resp-sharing-button__icon--solid,
  1700. .resp-sharing-button__icon--solidcircle {
  1701. fill: #fff;
  1702. stroke: none
  1703. }
  1704. .resp-sharing-button--twitter {
  1705. background-color: #55acee
  1706. }
  1707. .resp-sharing-button--twitter:hover {
  1708. background-color: #2795e9
  1709. }
  1710. .resp-sharing-button--pinterest {
  1711. background-color: #bd081c
  1712. }
  1713. .resp-sharing-button--pinterest:hover {
  1714. background-color: #8c0615
  1715. }
  1716. .resp-sharing-button--facebook {
  1717. background-color: #3b5998
  1718. }
  1719. .resp-sharing-button--facebook:hover {
  1720. background-color: #2d4373
  1721. }
  1722. .resp-sharing-button--tumblr {
  1723. background-color: #35465C
  1724. }
  1725. .resp-sharing-button--tumblr:hover {
  1726. background-color: #222d3c
  1727. }
  1728. .resp-sharing-button--reddit {
  1729. background-color: #5f99cf
  1730. }
  1731. .resp-sharing-button--reddit:hover {
  1732. background-color: #3a80c1
  1733. }
  1734. .resp-sharing-button--google {
  1735. background-color: #dd4b39
  1736. }
  1737. .resp-sharing-button--google:hover {
  1738. background-color: #c23321
  1739. }
  1740. .resp-sharing-button--linkedin {
  1741. background-color: #0077b5
  1742. }
  1743. .resp-sharing-button--linkedin:hover {
  1744. background-color: #046293
  1745. }
  1746. .resp-sharing-button--email {
  1747. background-color: #777
  1748. }
  1749. .resp-sharing-button--email:hover {
  1750. background-color: #5e5e5e
  1751. }
  1752. .resp-sharing-button--xing {
  1753. background-color: #1a7576
  1754. }
  1755. .resp-sharing-button--xing:hover {
  1756. background-color: #114c4c
  1757. }
  1758. .resp-sharing-button--whatsapp {
  1759. background-color: #25D366
  1760. }
  1761. .resp-sharing-button--whatsapp:hover {
  1762. background-color: #1da851
  1763. }
  1764. .resp-sharing-button--hackernews {
  1765. background-color: #FF6600
  1766. }
  1767. .resp-sharing-button--hackernews:hover,
  1768. .resp-sharing-button--hackernews:focus {
  1769. background-color: #FB6200
  1770. }
  1771. .resp-sharing-button--vk {
  1772. background-color: #507299
  1773. }
  1774. .resp-sharing-button--vk:hover {
  1775. background-color: #43648c
  1776. }
  1777. .resp-sharing-button--facebook {
  1778. background-color: #3b5998;
  1779. border-color: #3b5998;
  1780. }
  1781. .resp-sharing-button--facebook:hover,
  1782. .resp-sharing-button--facebook:active {
  1783. background-color: #2d4373;
  1784. border-color: #2d4373;
  1785. }
  1786. .resp-sharing-button--twitter {
  1787. background-color: #55acee;
  1788. border-color: #55acee;
  1789. }
  1790. .resp-sharing-button--twitter:hover,
  1791. .resp-sharing-button--twitter:active {
  1792. background-color: #2795e9;
  1793. border-color: #2795e9;
  1794. }
  1795. .resp-sharing-button--google {
  1796. background-color: #dd4b39;
  1797. border-color: #dd4b39;
  1798. }
  1799. .resp-sharing-button--google:hover,
  1800. .resp-sharing-button--google:active {
  1801. background-color: #c23321;
  1802. border-color: #c23321;
  1803. }
  1804. .resp-sharing-button--email {
  1805. background-color: #777777;
  1806. border-color: #777777;
  1807. }
  1808. .resp-sharing-button--email:hover,
  1809. .resp-sharing-button--email:active {
  1810. background-color: #5e5e5e;
  1811. border-color: #5e5e5e;
  1812. }
  1813. .resp-sharing-button--reddit {
  1814. background-color: #5f99cf;
  1815. border-color: #5f99cf;
  1816. }
  1817. .resp-sharing-button--reddit:hover,
  1818. .resp-sharing-button--reddit:active {
  1819. background-color: #3a80c1;
  1820. border-color: #3a80c1;
  1821. }
  1822. .resp-sharing-button--whatsapp {
  1823. background-color: #25D366;
  1824. border-color: #25D366;
  1825. }
  1826. .resp-sharing-button--whatsapp:hover,
  1827. .resp-sharing-button--whatsapp:active {
  1828. background-color: #1DA851;
  1829. border-color: #1DA851;
  1830. }
  1831. .resp-sharing-button--telegram {
  1832. background-color: #54A9EB;
  1833. }
  1834. .resp-sharing-button--telegram:hover {
  1835. background-color: #4B97D1;
  1836. }
  1837. .pagination {
  1838. text-align: center;
  1839. display: block;
  1840. margin-top: 20px;
  1841. }
  1842. .pagination>li {
  1843. display: inline-block;
  1844. }
  1845. .pagination .page-item .page-link {
  1846. display: inline-block;
  1847. width: 40px;
  1848. height: 40px;
  1849. border-radius: 0;
  1850. background-color: #26292e;
  1851. border: 1px solid #26292e;
  1852. text-align: center;
  1853. margin-right: 6px;
  1854. font-weight: 700;
  1855. color: #55606a;
  1856. }
  1857. .pagination .page-item .page-link:hover {
  1858. background: #57cbcc;
  1859. border-color: #57cbcc;
  1860. color: #fff
  1861. }
  1862. .pagination .page-item:first-child .page-link,
  1863. .pagination .page-item:last-child .page-link {
  1864. border-radius: 0;
  1865. }
  1866. .pagination .page-item.active .page-link {
  1867. background: #57cbcc;
  1868. color: #fff;
  1869. border-color: #57cbcc;
  1870. }
  1871. #select-language {
  1872. background: #353b43;
  1873. color: #ffffff;
  1874. border: 0;
  1875. }
  1876. .simple-icon {
  1877. color: #6c7b8a;
  1878. padding: 10px;
  1879. display: block;
  1880. }
  1881. /*# sourceMappingURL=maps/style.css.map */