style.css 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411
  1. /* ########################################
  2. ########### davidwindham.com ##############
  3. ###########################################
  4. . . . . . .
  5. . . ...-..-| |-. .-. .-.-..-| .-.. ...-|
  6. ` ` '' '`-'-' '-`-`-' ' '`-'-`-`-` '`-'-
  7. 1 - Body
  8. 2 - Typography
  9. 3 - Header
  10. 4 - Navigation
  11. 5 - Layout
  12. 6 - Parts
  13. 7 - Footer
  14. 9 - Queries
  15. 10 - Fonts
  16. url - https://davidwindham.com
  17. git - https://github.com/windhamdavid/dw
  18. post - https://davidawindham.com/my-website
  19. /*########################################
  20. ################# BODY ###################
  21. #########################################*/
  22. body {
  23. position: relative;
  24. margin: 0;
  25. padding: 0;
  26. min-height: 100%;
  27. -webkit-font-smoothing: antialiased;
  28. font-kerning: auto;
  29. color: #000;
  30. background: :#363e48;
  31. transition: background-color 0.4s ease;
  32. font-family: sans-serif;
  33. }
  34. /****** viewports - waypoints ******/
  35. .viewport {
  36. position: fixed;
  37. height: 100%;
  38. width: 100%;
  39. top: 0;
  40. left: 0;
  41. right: 0;
  42. bottom: 0;
  43. overflow: hidden;
  44. }
  45. .viewport-above {
  46. opacity: 0;
  47. }
  48. .viewport-inside {
  49. opacity: 1;
  50. }
  51. .viewport-below {
  52. opacity: 0;
  53. }
  54. .viewport-below > * {
  55. transform: translateY(100px);
  56. }
  57. .page-view {
  58. padding: 7rem 0;
  59. transition: opacity 0.4s ease;
  60. opacity: 0;
  61. position: relative;
  62. background: transparent !important;
  63. scroll-snap-align: start;
  64. min-height: 100vh;
  65. }
  66. .page-view > * {
  67. transition: all 0.4s ease;
  68. }
  69. .page-view:after {
  70. content: '';
  71. }
  72. .no-js .page-view {
  73. opacity: 1;
  74. }
  75. .background-color {
  76. position: relative;
  77. }
  78. .background-color.white {
  79. background-color: #fff;
  80. }
  81. .background-color.black {
  82. background-color: #121212;
  83. z-index: 0;
  84. }
  85. .page-view {
  86. padding: 7rem 0;
  87. transition: opacity 0.4s ease;
  88. opacity: 0;
  89. position: relative;
  90. background: transparent !important;
  91. scroll-snap-align: start;
  92. min-height: 100vh;
  93. }
  94. .page-view > * {
  95. transition: all 0.4s ease;
  96. }
  97. .page-view:after {
  98. content: '';
  99. }
  100. .no-js .page-view {
  101. opacity: 1;
  102. }
  103. /*########################################
  104. ################# TYPE ###################
  105. #########################################*/
  106. h1 {
  107. font-family: 'Playfair Display', serif;
  108. font-weight: 900;
  109. font-size: 37px;
  110. letter-spacing: .01em;
  111. }
  112. .header h1 {
  113. color: #fff;
  114. }
  115. h2 {
  116. font-family: 'Playfair Display', serif;
  117. font-weight: 700;
  118. font-size: 27px;
  119. }
  120. h3 {
  121. font-family: 'Playfair Display', serif;
  122. font-weight: 500;
  123. font-size: 23px;
  124. }
  125. p {
  126. font-family: 'Montserrat', sans-serif;
  127. font-size: 17px;
  128. line-height: 1.2;
  129. }
  130. a {
  131. color: #376399;
  132. text-decoration:none !important;
  133. }
  134. .right {
  135. text-align:right;
  136. }
  137. .lead {
  138. font-size: 1.4rem;
  139. }
  140. .numbering {
  141. display: inline-block;
  142. margin-right: .5rem;
  143. font-size: 12px;
  144. vertical-align: super;
  145. }
  146. [bg=dark-bg] {
  147. color: #9c9ea5;
  148. }
  149. [bg=dark-bg] h1,
  150. [bg=dark-bg] h2,
  151. [bg=dark-bg] h4,
  152. [bg=dark-bg] h5,
  153. [bg=dark-bg] h6,
  154. [bg=dark-bg] a {
  155. color: #fff !important;
  156. }
  157. [bg=dark-bg] blockquote {
  158. color: #fff;
  159. }
  160. h5.modal-title {
  161. color: #333 !important;
  162. }
  163. h6.modal {
  164. color: #333 !important;
  165. }
  166. h1.who {
  167. font-weight: 800;
  168. margin: 0;
  169. }
  170. h2.who {
  171. margin: 0;
  172. color: #999 !important;
  173. font-size:20px;
  174. }
  175. h1.what {
  176. font-weight: 800;
  177. margin: 0;
  178. }
  179. h2.what {
  180. margin: 0;
  181. color: #fff !important;
  182. font-size:32px;
  183. }
  184. h1.when {
  185. font-weight: 800;
  186. margin: 0;
  187. }
  188. h2.when{
  189. margin: 0;
  190. color: #fff !important;
  191. font-size:28px;
  192. }
  193. h4.when{
  194. font-weight: 600;
  195. color: #333 !important;
  196. font-size:22px;
  197. }
  198. .fc-button-primary {
  199. color: #777;
  200. background-color: #fff;
  201. border-color: #777;
  202. }
  203. .fc-button-primary:disabled {
  204. color: #777;
  205. background-color: #fff;
  206. border-color: #777;
  207. }
  208. .fc-button-primary:not(:disabled):active,
  209. .fc-button-primary:not(:disabled).fc-button-active {
  210. color: #fff;
  211. background-color: #737373;
  212. border-color: #151e27;
  213. }
  214. .fc-toolbar h2 {
  215. font-size: 1.0em;
  216. margin: 0;
  217. text-align:right;
  218. }
  219. .fc-event {
  220. position: relative;
  221. display: block;
  222. font-size: 0.85em;
  223. line-height: 1.4;
  224. color: #fff !important;
  225. border-radius: 3px;
  226. border: 1px solid #999;
  227. }
  228. .fc-event, .fc-event-dot {
  229. background-color: #737373;
  230. }
  231. h1.why {
  232. font-weight: 800;
  233. margin: 0 0 40px 0;
  234. }
  235. h2.why {
  236. margin: 0;
  237. font-size:28px;
  238. }
  239. .why blockquote {
  240. }
  241. h1.how {
  242. font-weight: 800;
  243. color: #000 !important;
  244. margin: 0;
  245. }
  246. h2.how {
  247. margin: 0;
  248. color: #000 !important;
  249. font-size:28px;
  250. }
  251. h4.how {
  252. color: #000 !important;
  253. }
  254. h5.how {
  255. color: #000 !important;
  256. }
  257. .services .service .numbering, .approach .service .numbering {
  258. height: 2rem;
  259. width: 2rem;
  260. line-height: 2rem;
  261. color: #777;
  262. border-radius: 3px;
  263. text-align: center;
  264. position: absolute;
  265. left: 0;
  266. top: 0;
  267. background: #999;
  268. background: #9993;
  269. font-size: 70%;
  270. }
  271. /*########################################
  272. ################# HEAD ###################
  273. #########################################*/
  274. #header {
  275. position: fixed;
  276. z-index: 98;
  277. margin: 0;
  278. padding: 0;
  279. left: 0;
  280. top: 0;
  281. right: 0;
  282. pointer-events: none;
  283. }
  284. #header .header-ui {
  285. margin: 0;
  286. padding: 0;
  287. display: -ms-flexbox;
  288. display: flex;
  289. -ms-flex-wrap: wrap;
  290. flex-wrap: wrap;
  291. -ms-align-items: center;
  292. align-items: center;
  293. justify-content: space-between;
  294. }
  295. #header .header-ui .brand--nav {
  296. margin: 0 auto 0 0;
  297. padding: 1rem;
  298. flex: 0 0 100%;
  299. width: 100%;
  300. max-width: 100%;
  301. display: -ms-flexbox;
  302. display: flex;
  303. -ms-flex-wrap: wrap;
  304. flex-wrap: wrap;
  305. -ms-align-items: center;
  306. align-items: center;
  307. justify-content: space-between;
  308. pointer-events: auto;
  309. will-change: width, padding, flex;
  310. }
  311. #header .header-ui .brand--nav h1 {
  312. font-size: 27px;
  313. }
  314. @media (min-width: 576px) {
  315. #header .header-ui .brand--nav {
  316. flex: 0 0 50%;
  317. width: 50%;
  318. max-width: 50%;
  319. }
  320. #header .header-ui .brand--nav .brand {
  321. margin-right: 20px;
  322. }
  323. }
  324. @media (min-width: 768px) {
  325. #header {
  326. -webkit-transition: opacity .35s ease-in-out 0s;
  327. transition: opacity .35s ease-in-out 0s;
  328. }
  329. #header .header-ui .brand--nav,
  330. #header .header-ui .header--complementary {
  331. padding: 2rem;
  332. -webkit-transition: width .35s ease-in-out 0s, padding .35s ease-in-out 0s, flex .35s ease-in-out 0s, background .35s ease-in-out 0s;
  333. transition: width .35s ease-in-out 0s, padding .35s ease-in-out 0s, flex .35s ease-in-out 0s, background .35s ease-in-out 0s;
  334. }
  335. #header.shrink .header-ui .brand--nav,
  336. #header.shrink .header-ui .header--complementary {
  337. padding: 1rem;
  338. flex: 0 0 auto;
  339. }
  340. #header.on_menu .brand--nav {
  341. padding-right: 0;
  342. }
  343. #header.on_menu .brand--nav .hamburger {
  344. -webkit-transform: translateX(27px);
  345. transform: translateX(27px);
  346. }
  347. }
  348. @media (min-width: 992px) {
  349. #header .header-ui .brand--nav,
  350. #header.shrink .header-ui .brand--nav,
  351. #header.shrink .header-ui .header--complementary {
  352. padding: 1rem;
  353. flex: 0 0 auto;
  354. }
  355. #header.on_menu .brand--nav {
  356. padding-right: 0;
  357. }
  358. #header.on_menu .brand--nav .hamburger {
  359. -webkit-transform: translateX(27px);
  360. transform: translateX(27px);
  361. }
  362. }
  363. .dw-header {
  364. position: fixed;
  365. }
  366. .dw-header,
  367. .works-header {
  368. background: #121212;
  369. }
  370. .dw-header h2,
  371. .works-header h2 {
  372. letter-spacing: 0.01rem;
  373. font-weight: normal;
  374. text-align: left;
  375. margin: 0;
  376. }
  377. @media (min-width: 992px) {
  378. .dw-header h2,
  379. .works-header h2 {
  380. font-size: 2.4rem;
  381. }
  382. }
  383. .dw-header {
  384. min-height: 400px;
  385. }
  386. .dw-header h2 {
  387. max-width: 900px;
  388. }
  389. .dw-header .main {
  390. position: relative;
  391. z-index: 2;
  392. }
  393. #header {
  394. position: absolute;
  395. }
  396. #header .header-ui .brand--nav,
  397. #header .header-ui .header--complementary {
  398. padding: 1rem;
  399. background: transparent !important;
  400. }
  401. #header .header-ui .button.button-to-quote,
  402. #header .header-ui a {
  403. margin-left: 40px;
  404. }
  405. #header .header-ui a,
  406. #header .header-ui .button {
  407. position: relative;
  408. color: hsla(0, 0%, 100%, 0.5);
  409. border-color: hsla(0, 0%, 100%, 0.5);
  410. font-family: 'Inter', sans-serif;
  411. }
  412. #header .header-ui .brand img {
  413. width: 200px;
  414. }
  415. .header-small {
  416. width: 100%;
  417. position: fixed;
  418. display: flex;
  419. padding: 0.5rem 1rem 1rem 1rem;
  420. z-index: 999;
  421. opacity: 0;
  422. top: -200px;
  423. left: 0;
  424. transition: opacity 0.4s ease, background-color 0.4s ease;
  425. }
  426. .header-small .header-small-menu {
  427. background-color: #2b3444;
  428. position: absolute;
  429. box-shadow: 0 27px 53px 0 rgba(1, 93, 140, 0.24);
  430. z-index: 1;
  431. opacity: 0;
  432. visibility: hidden;
  433. padding: 20px 20px 40px 20px;
  434. top: 0;
  435. right: 0;
  436. }
  437. .header-small .header-small-menu h6 {
  438. font-weight: bold;
  439. color: #fff;
  440. margin: 40px 0 0 0;
  441. }
  442. .header-small .header-small-menu a,
  443. .header-small .header-small-menu h6 {
  444. padding: 6px 29px 8px 12px;
  445. }
  446. .header-small .header-small-menu a {
  447. font-size: 26px;
  448. line-height: 44px;
  449. letter-spacing: -0.43px;
  450. display: block;
  451. color: #fff;
  452. }
  453. .header-small .header-small-menu a:hover {
  454. opacity: 0.5;
  455. }
  456. .header-small .header-small-menu a.email {
  457. font-size: 1rem;
  458. line-height: 1.2;
  459. }
  460. .header-small.menu-open .header-small-menu {
  461. display: block;
  462. opacity: 1;
  463. visibility: visible;
  464. }
  465. .header-small.showing {
  466. opacity: 1;
  467. top: 0;
  468. }
  469. .header-small a {
  470. color: currentColor;
  471. }
  472. .header-small img {
  473. margin-left: 0px;
  474. width: 22px;
  475. transition: background-color 0.4s ease;
  476. }
  477. .header-small .light {
  478. display: none;
  479. border: 1px solid #fff;
  480. }
  481. .header-small .dark {
  482. display: inline-block;
  483. border: 1px solid #000;
  484. }
  485. [bg=dark-bg] .header-small .light {
  486. display: inline-block;
  487. }
  488. [bg=dark-bg] .header-small .dark {
  489. display: none;
  490. }
  491. [bg=dark-bg] .hamburger-inner,
  492. [bg=dark-bg] .hamburger-inner:before,
  493. [bg=dark-bg] .hamburger-inner:after {
  494. background-color: #fff !important;
  495. }
  496. /*########################################
  497. ################# NAVI ###################
  498. #########################################*/
  499. .hamburger {
  500. font: inherit;
  501. display: inline-block;
  502. overflow: visible;
  503. margin: 0;
  504. padding: 0;
  505. cursor: pointer;
  506. transition-timing-function: linear;
  507. transition-duration: 0.15s;
  508. transition-property: opacity, filter;
  509. text-transform: none;
  510. color: inherit;
  511. border: 0;
  512. background-color: transparent;
  513. align-self: flex-end;
  514. margin-left: auto;
  515. z-index: 6;
  516. }
  517. .hamburger:focus, .hamburger:active {
  518. outline-width: 0;
  519. }
  520. .hamburger.is-active {
  521. outline-width: 0;
  522. }
  523. .hamburger-box {
  524. width: 24px;
  525. height: 15px;
  526. display: inline-block;
  527. position: relative;
  528. }
  529. .hamburger-inner {
  530. display: block;
  531. top: 50%;
  532. margin-top: -0.5px;
  533. }
  534. .hamburger-inner,
  535. .hamburger-inner::before,
  536. .hamburger-inner::after {
  537. width: 24px;
  538. height: 2px;
  539. border-radius: 2px;
  540. position: absolute;
  541. transition-property: transform;
  542. transition-duration: 0.15s;
  543. transition-timing-function: ease;
  544. background-color: #000;
  545. }
  546. .hamburger-inner::before, .hamburger-inner::after {
  547. content: "";
  548. display: block;
  549. }
  550. .hamburger-inner::before {
  551. top: -7px;
  552. }
  553. .hamburger-inner::after {
  554. bottom: -7px;
  555. }
  556. .hamburger-inner:before {
  557. top: 5px;
  558. }
  559. .hamburger-inner:after {
  560. top: 10px;
  561. }
  562. .hamburger:hover {
  563. opacity: 0.7;
  564. }
  565. .hamburger:focus, .hamburger:active {
  566. outline-width: 0;
  567. }
  568. .hamburger.is-active {
  569. outline-width: 0;
  570. }
  571. .hamburger.is-active:hover {
  572. opacity: 0.7;
  573. }
  574. .hamburger.is-active .hamburger-inner,
  575. .hamburger.is-active .hamburger-inner::before,
  576. .hamburger.is-active .hamburger-inner::after {
  577. background-color: #afafaf;
  578. }
  579. .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  580. background-color: #afafaf;
  581. }
  582. .hamburger.is-active .hamburger-inner {
  583. transform: translate3d(0, 10px, 0) rotate(45deg);
  584. background-color: #fff;
  585. }
  586. .hamburger.is-active .hamburger-inner:before {
  587. transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  588. opacity: 0;
  589. }
  590. .hamburger.is-active .hamburger-inner:after {
  591. transform: translate3d(0, -10px, 0) rotate(-90deg);
  592. background-color: #fff;
  593. }
  594. .hamburger-box {
  595. position: relative;
  596. display: inline-block;
  597. width: 20px;
  598. height: 20px;
  599. }
  600. .hamburger-inner {
  601. top: 50%;
  602. display: block;
  603. margin-top: -2px;
  604. }
  605. /*########################################
  606. ################# LAYO ###################
  607. #########################################*/
  608. .lead {
  609. font-weight: 400;
  610. line-height: 1.6;
  611. }
  612. .hero,
  613. .page-header,
  614. .portfolio-header {
  615. background: #191A1B;
  616. position: relative;
  617. }
  618. .hero .container,
  619. .page-header .container,
  620. .portfolio-header .container {
  621. position: relative;
  622. }
  623. .hero h1,
  624. .page-header h1,
  625. .portfolio-header h1 {
  626. font-family: 'Inter', 'Source Sans Pro', sans-serif;
  627. line-height: 1.2;
  628. max-width: 900px;
  629. font-weight: 800;
  630. }
  631. .hero {
  632. height: 100vh;
  633. min-height: 620px;
  634. }
  635. .capabilities {
  636. padding: 6rem 0;
  637. }
  638. .capabilities .capabilities-types {
  639. padding-top: 3rem;
  640. }
  641. .capabilities ul {
  642. list-style: none;
  643. margin: 0 0 3rem 0 !important;
  644. }
  645. .capabilities li {
  646. margin: 0 !important;
  647. }
  648. .capabilities h5,
  649. .capabilities h6 {
  650. margin-bottom: 0.5rem;
  651. }
  652. .services,
  653. .approach {
  654. padding-bottom: 10rem;
  655. }
  656. .services .row,
  657. .approach .row {
  658. display: flex;
  659. }
  660. .services .numbering,
  661. .approach .numbering {
  662. color: #9c9ea5;
  663. }
  664. .services .service,
  665. .approach .service {
  666. padding-left: 4rem;
  667. padding-bottom: 1rem;
  668. border-radius: 4px;
  669. position: relative;
  670. transition: all 0.2s ease;
  671. cursor: pointer;
  672. }
  673. .services .service:hover,
  674. .approach .service:hover {
  675. transform: scale(1.1) translateX(1.6rem);
  676. }
  677. .services .service:hover .numbering,
  678. .approach .service:hover .numbering {
  679. background: #eee;
  680. color: #000;
  681. }
  682. .services .service p,
  683. .approach .service p {
  684. color: #8a8a8a;
  685. }
  686. .services .service .numbering,
  687. .approach .service .numbering {
  688. height: 2rem;
  689. width: 2rem;
  690. line-height: 2rem;
  691. color: #fff;
  692. border-radius: 3px;
  693. text-align: center;
  694. position: absolute;
  695. left: 0;
  696. top: 0;
  697. background: #eee;
  698. background: rgba(255, 255, 255, 0.2);
  699. font-size: 70%;
  700. }
  701. .services .service p,
  702. .approach .service p {
  703. margin-top: 0 !important;
  704. margin-bottom: 2rem;
  705. }
  706. .services .service h4,
  707. .approach .service h4 {
  708. margin: 0;
  709. font-weight: 400;
  710. }
  711. .services .service i,
  712. .approach .service i {
  713. display: block;
  714. position: relative;
  715. margin: 20px 0;
  716. width: 22px;
  717. height: 22px;
  718. border-radius: 50%;
  719. border: 2px solid white;
  720. transition: all 0.2s ease;
  721. display: none;
  722. }
  723. .services .service:nth-child(1) i,
  724. .approach .service:nth-child(1) i {
  725. border-color: #50E3C2;
  726. color: #50E3C2;
  727. }
  728. .services .service:nth-child(2) i,
  729. .approach .service:nth-child(2) i {
  730. border-color: #8755FF;
  731. color: #8755FF;
  732. }
  733. .services .service:nth-child(3) i,
  734. .approach .service:nth-child(3) i {
  735. border-color: #01D5FF;
  736. color: #01D5FF;
  737. }
  738. .services .service:nth-child(4) i,
  739. .approach .service:nth-child(4) i {
  740. border-color: #BD10E0;
  741. color: #BD10E0;
  742. }
  743. .numbering {
  744. margin-bottom: 1rem;
  745. margin-right: 1rem;
  746. font-size: 1rem;
  747. }
  748. .numbering {
  749. display: inline-block;
  750. margin-right: .5rem;
  751. font-size: 12px;
  752. vertical-align: super;
  753. }
  754. blockquote {
  755. padding-left: 70px;
  756. position: relative;
  757. }
  758. blockquote:before {
  759. content: "";
  760. position: absolute;
  761. left: 0;
  762. top: .85em;
  763. width: 50px;
  764. height: 1px;
  765. background-color: currentColor;
  766. }
  767. .br-testimonial figcaption {
  768. padding-left: 70px;
  769. font-size: 13px;
  770. letter-spacing: .025em;
  771. }
  772. .br-testimonial figcaption cite {
  773. display: block;
  774. font-style: normal;
  775. font-weight: bold;
  776. }
  777. .br-testimonial blockquote {
  778. margin: 0 0 20px 0;
  779. }
  780. .br-testimonial figcaption {
  781. padding: 0;
  782. font-size: 1rem;
  783. }
  784. .has-highlight {
  785. position: relative;
  786. }
  787. .has-highlight:after {
  788. content: '';
  789. position: absolute;
  790. bottom: 0px;
  791. height: 20px;
  792. width: 102%;
  793. background: #d6f0ff;
  794. left: -3px;
  795. z-index: -1;
  796. }
  797. .testimonials-section {
  798. background: #121212 !important;
  799. color: #9c9ea5;
  800. }
  801. .testimonials-section h1,
  802. .testimonials-section h2,
  803. .testimonials-section h4,
  804. .testimonials-section h5,
  805. .testimonials-section h6,
  806. .testimonials-section a {
  807. color: #fff !important;
  808. }
  809. .testimonials-section blockquote {
  810. color: #fff;
  811. }
  812. .testimonials-section .br-testimonial {
  813. opacity: 0;
  814. visibility: hidden;
  815. position: relative;
  816. transition: opacity 0.4s ease;
  817. position: fixed;
  818. left: -5000px;
  819. }
  820. .testimonials-section .br-testimonial.showing {
  821. opacity: 1;
  822. visibility: visible;
  823. top: 0;
  824. position: relative;
  825. left: 0;
  826. }
  827. .testimonials-section .next-wrapper {
  828. text-align: right;
  829. padding-top: 2rem;
  830. padding-right: 2rem;
  831. }
  832. .testimonials-section .next-testimonial {
  833. display: inline-block;
  834. cursor: pointer;
  835. }
  836. .testimonials-section .next-testimonial:hover svg {
  837. opacity: 1;
  838. }
  839. .testimonials-section .next-testimonial:hover span {
  840. opacity: 1;
  841. }
  842. .testimonials-section .next-testimonial svg {
  843. max-width: 40px;
  844. max-height: 40px;
  845. opacity: 0.5;
  846. transition: opacity 0.2s ease;
  847. }
  848. .testimonials-section .next-testimonial span {
  849. display: block;
  850. font-size: 56%;
  851. padding-top: 17px;
  852. width: 53px;
  853. text-align: center;
  854. opacity: 0;
  855. transition: opacity 0.2s ease;
  856. }
  857. .testimonials-section .next-testimonial path {
  858. fill: #fff;
  859. }
  860. .testimonials-section .indicators {
  861. text-align: right;
  862. }
  863. .testimonials-section .indicators span {
  864. height: 14px;
  865. width: 14px;
  866. border-radius: 50%;
  867. background: rgba(255, 255, 255, 0.2);
  868. margin: 5px;
  869. display: inline-block;
  870. cursor: pointer;
  871. }
  872. .testimonials-section .indicators span:hover,
  873. .testimonials-section .indicators span.current {
  874. background: rgba(255, 255, 255, 0.7);
  875. }
  876. @media (max-width: 768px) {
  877. .testimonials-section .next-testimonial {
  878. display: none;
  879. }
  880. .testimonials-section .indicators {
  881. text-align: center;
  882. }
  883. }
  884. /*########################################
  885. ################# PART ###################
  886. #########################################*/
  887. .fc-button-primary {
  888. color: #777;
  889. background-color: #fff;
  890. border-color: #777;
  891. }
  892. .fc-button-primary:disabled {
  893. color: #777;
  894. background-color: #fff;
  895. border-color: #777;
  896. }
  897. .fc-button-primary:not(:disabled):active,
  898. .fc-button-primary:not(:disabled).fc-button-active {
  899. color: #fff;
  900. background-color: #737373;
  901. border-color: #151e27;
  902. }
  903. .fc-toolbar h2 {
  904. font-size: 1.0em;
  905. margin: 0;
  906. text-align:right;
  907. }
  908. .fc-event {
  909. position: relative;
  910. display: block;
  911. font-size: 0.85em;
  912. line-height: 1.4;
  913. color: #fff !important;
  914. border-radius: 3px;
  915. border: 1px solid #999;
  916. }
  917. .fc-event, .fc-event-dot {
  918. background-color: #737373;
  919. }
  920. /*########################################
  921. ################# FOOT ###################
  922. #########################################*/
  923. .dw-footer h1 {
  924. font-weight: 800;
  925. margin: 0;
  926. }
  927. .dw-footer h4,
  928. .dw-footer h5 {
  929. font-weight: 800;
  930. line-height: 1.2;
  931. font-family: 'Playfair Display', serif;
  932. }
  933. .dw-footer .lead {
  934. margin-top: 0 !important;
  935. margin-bottom: 4rem;
  936. }
  937. .dw-footer .hello .lead {
  938. margin-bottom: 0;
  939. }
  940. .dw-footer .hello a {
  941. font-weight: 700;
  942. display: inline-block;
  943. padding: 0;
  944. position: relative;
  945. }
  946. .dw-footer .hello a:after {
  947. content: '';
  948. position: absolute;
  949. z-index: -2;
  950. bottom: -2px;
  951. right: 0;
  952. height: 1px;
  953. width: 100%;
  954. background: #ddd;
  955. }
  956. .dw-footer .hello a:after {
  957. background: #000;
  958. }
  959. .dw-footer .hello a:before {
  960. display: none;
  961. }
  962. .dw-footer .hello a:before {
  963. content: '';
  964. position: absolute;
  965. z-index: -1;
  966. bottom: 5px;
  967. right: 0;
  968. height: 8px;
  969. width: 0;
  970. background: #d6f0ff;
  971. -webkit-transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  972. transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  973. }
  974. #dw-footer {
  975. background-color: #b0b0b0;
  976. color: #111 !important;
  977. }
  978. #dw-footer a {
  979. color: #111;
  980. fill: #111;
  981. }
  982. #dw-footer a:hover {
  983. color: #111;
  984. fill: #111;
  985. }
  986. #dw-footer a:before {
  987. transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  988. }
  989. #dw-footer .br-widget img {
  990. width: 150px;
  991. }
  992. #dw-footer {
  993. margin: 0;
  994. padding: 4rem 0 4rem;
  995. }
  996. #dw-footer .br-widget {
  997. margin: 4rem 0 0;
  998. padding: 0 0 0;
  999. }
  1000. #dw-footer .br-widget:first-child {
  1001. margin-top: 0;
  1002. }
  1003. #dw-footer .br-widget ul.footer-links {
  1004. list-style-type: none;
  1005. margin: 0;
  1006. padding: 0;
  1007. }
  1008. #dw-footer .br-widget ul.footer-links li {
  1009. list-style-type: none;
  1010. margin: 0 0 .35rem;
  1011. padding: 0 0 .35rem;
  1012. }
  1013. #dw-footer .br-widget ul.footer-links li:last-child {
  1014. margin-bottom: 0;
  1015. }
  1016. #dw-footer a {
  1017. position: relative;
  1018. }
  1019. #dw-footer a:before {
  1020. content: '';
  1021. position: absolute;
  1022. bottom: 0;
  1023. right: 0;
  1024. height: 1px;
  1025. width: 0;
  1026. background: currentColor;
  1027. -webkit-transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  1028. transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  1029. }
  1030. #dw-footer a:hover:before {
  1031. left: 0;
  1032. right: initial;
  1033. width: 100%;
  1034. }
  1035. #dw-footer .footer-end {
  1036. margin: 4rem 0 0;
  1037. padding: 0;
  1038. font-size: 13px;
  1039. letter-spacing: .05em;
  1040. opacity: .75;
  1041. }
  1042. #dw-footer {
  1043. background-color: #333;
  1044. color: #fff !important;
  1045. }
  1046. #dw-footer {
  1047. background-color: #212121;
  1048. color: #dadada;
  1049. }
  1050. #dw-footer a {
  1051. color: #dadada;
  1052. fill: #dadada;
  1053. }
  1054. #dw-footer a:hover {
  1055. color: #ffffff;
  1056. fill: #ffffff;
  1057. }
  1058. #dw-footer {
  1059. margin: 0;
  1060. padding: 4rem 0 4rem;
  1061. }
  1062. #dw-footer .br-widget {
  1063. margin: 4rem 0 0;
  1064. padding: 0 0 0;
  1065. }
  1066. #dw-footer .br-widget:first-child {
  1067. margin-top: 0;
  1068. }
  1069. #dw-footer .br-widget ul.footer-links {
  1070. list-style-type: none;
  1071. margin: 0;
  1072. padding: 0;
  1073. }
  1074. #dw-footer .br-widget ul.footer-links li {
  1075. list-style-type: none;
  1076. margin: 0 0 .35rem;
  1077. padding: 0 0 .35rem;
  1078. }
  1079. #dw-footer .br-widget ul.footer-links li:last-child {
  1080. margin-bottom: 0;
  1081. }
  1082. #dw-footer a {
  1083. position: relative;
  1084. }
  1085. #dw-footer a:before {
  1086. content: '';
  1087. position: absolute;
  1088. bottom: 0;
  1089. right: 0;
  1090. height: 1px;
  1091. width: 0;
  1092. background: currentColor;
  1093. -webkit-transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  1094. transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  1095. }
  1096. #dw-footer a:hover:before {
  1097. left: 0;
  1098. right: initial;
  1099. width: 100%;
  1100. }
  1101. #dw-footer .footer-end {
  1102. margin: 4rem 0 0;
  1103. padding: 0;
  1104. font-size: 13px;
  1105. letter-spacing: .05em;
  1106. opacity: .75;
  1107. }
  1108. @media (min-width: 768px) {
  1109. #dw-footer {
  1110. padding: 5rem 0 5rem;
  1111. }
  1112. }
  1113. @media (min-width: 992px) {
  1114. #dw-footer {
  1115. padding: 6rem 0 6rem;
  1116. }
  1117. }
  1118. /*########################################
  1119. ################# QUER ###################
  1120. #########################################*/
  1121. @media (max-width: 639px) {
  1122. h1 {
  1123. font-size: 27px;
  1124. }
  1125. .container {
  1126. padding:10px 5px;
  1127. }
  1128. .main {
  1129. padding: 5px 15px;
  1130. }
  1131. }
  1132. @media (max-width: 767px) {}
  1133. @media (max-width: 1023px) {}
  1134. @media (max-width: 1279px) {}
  1135. /*########################################
  1136. ################# FONT ###################
  1137. #########################################*/
  1138. @font-face {
  1139. font-family: 'Inter';
  1140. font-style: normal;
  1141. font-weight: 400;
  1142. src: url("./_font/Inter-Regular.woff2") format("woff2"),
  1143. url("./_font/Inter-Regular.woff") format("woff");
  1144. }
  1145. @font-face {
  1146. font-family: 'Inter';
  1147. font-style: italic;
  1148. font-weight: 400;
  1149. src: url("./_font/Inter-Italic.woff2") format("woff2"),
  1150. url("./_font/Inter-Italic.woff") format("woff");
  1151. }
  1152. @font-face {
  1153. font-family: 'Inter';
  1154. font-style: normal;
  1155. font-weight: 500;
  1156. src: url("./_font/Inter-Medium.woff2") format("woff2"),
  1157. url("./_font/Inter-Medium.woff") format("woff");
  1158. }
  1159. @font-face {
  1160. font-family: 'Inter';
  1161. font-style: italic;
  1162. font-weight: 500;
  1163. src: url("./_font/Inter-MediumItalic.woff2") format("woff2"),
  1164. url("./_font/Inter-MediumItalic.woff") format("woff");
  1165. }
  1166. @font-face {
  1167. font-family: 'Inter';
  1168. font-style: normal;
  1169. font-weight: 600;
  1170. src: url("./_font/Inter-SemiBold.woff2") format("woff2"),
  1171. url("./_font/Inter-SemiBold.woff") format("woff");
  1172. }
  1173. @font-face {
  1174. font-family: 'Inter';
  1175. font-style: italic;
  1176. font-weight: 600;
  1177. src: url("./_font/Inter-SemiBoldItalic.woff2") format("woff2"),
  1178. url("./_font/Inter-SemiBoldItalic.woff") format("woff");
  1179. }
  1180. @font-face {
  1181. font-family: 'Inter';
  1182. font-style: normal;
  1183. font-weight: 700;
  1184. src: url("./_font/Inter-Bold.woff2") format("woff2"),
  1185. url("./_font/Inter-Bold.woff") format("woff");
  1186. }
  1187. @font-face {
  1188. font-family: 'Inter';
  1189. font-style: italic;
  1190. font-weight: 700;
  1191. src: url("./_font/Inter-BoldItalic.woff2") format("woff2"),
  1192. url("./_font/Inter-BoldItalic.woff") format("woff");
  1193. }
  1194. @font-face {
  1195. font-family: 'Inter';
  1196. font-style: normal;
  1197. font-weight: 800;
  1198. src: url("./_font/Inter-ExtraBold.woff2") format("woff2"),
  1199. url("./_font/Inter-ExtraBold.woff") format("woff");
  1200. }
  1201. @font-face {
  1202. font-family: 'Inter';
  1203. font-style: italic;
  1204. font-weight: 800;
  1205. src: url("./_font/Inter-ExtraBoldItalic.woff2") format("woff2"),
  1206. url("./_font/Inter-ExtraBoldItalic.woff") format("woff");
  1207. }
  1208. @font-face {
  1209. font-family: 'Inter';
  1210. font-style: normal;
  1211. font-weight: 900;
  1212. src: url("./_font/Inter-Black.woff2") format("woff2"),
  1213. url("./_font/Inter-Black.woff") format("woff");
  1214. }
  1215. @font-face {
  1216. font-family: 'Inter';
  1217. font-style: italic;
  1218. font-weight: 900;
  1219. src: url("./_font/Inter-BlackItalic.woff2") format("woff2"),
  1220. url("./_font/Inter-BlackItalic.woff") format("woff");
  1221. }
  1222. @font-face {
  1223. font-family: 'Montserrat';
  1224. font-style: italic;
  1225. font-weight: 400;
  1226. src: url('_font/montserrat-v14-latin-italic.eot'); /* IE9 Compat Modes */
  1227. src: local('Montserrat Italic'), local('Montserrat-Italic'),
  1228. url('_font/montserrat-v14-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1229. url('_font/montserrat-v14-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
  1230. url('_font/montserrat-v14-latin-italic.woff') format('woff'), /* Modern Browsers */
  1231. url('_font/montserrat-v14-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
  1232. url('_font/montserrat-v14-latin-italic.svg#Montserrat') format('svg'); /* Legacy iOS */
  1233. }
  1234. @font-face {
  1235. font-family: 'Montserrat';
  1236. font-style: normal;
  1237. font-weight: 400;
  1238. src: url('_font/montserrat-v14-latin-regular.eot'); /* IE9 Compat Modes */
  1239. src: local('Montserrat Regular'), local('Montserrat-Regular'),
  1240. url('_font/montserrat-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1241. url('_font/montserrat-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  1242. url('_font/montserrat-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
  1243. url('_font/montserrat-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  1244. url('_font/montserrat-v14-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
  1245. }
  1246. @font-face {
  1247. font-family: 'Montserrat';
  1248. font-style: normal;
  1249. font-weight: 500;
  1250. src: url('_font/montserrat-v14-latin-500.eot'); /* IE9 Compat Modes */
  1251. src: local('Montserrat Medium'), local('Montserrat-Medium'),
  1252. url('_font/montserrat-v14-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1253. url('_font/montserrat-v14-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
  1254. url('_font/montserrat-v14-latin-500.woff') format('woff'), /* Modern Browsers */
  1255. url('_font/montserrat-v14-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
  1256. url('_font/montserrat-v14-latin-500.svg#Montserrat') format('svg'); /* Legacy iOS */
  1257. }
  1258. @font-face {
  1259. font-family: 'Montserrat';
  1260. font-style: italic;
  1261. font-weight: 500;
  1262. src: url('_font/montserrat-v14-latin-500italic.eot'); /* IE9 Compat Modes */
  1263. src: local('Montserrat Medium Italic'), local('Montserrat-MediumItalic'),
  1264. url('_font/montserrat-v14-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1265. url('_font/montserrat-v14-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
  1266. url('_font/montserrat-v14-latin-500italic.woff') format('woff'), /* Modern Browsers */
  1267. url('_font/montserrat-v14-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
  1268. url('_font/montserrat-v14-latin-500italic.svg#Montserrat') format('svg'); /* Legacy iOS */
  1269. }
  1270. @font-face {
  1271. font-family: 'Montserrat';
  1272. font-style: normal;
  1273. font-weight: 900;
  1274. src: url('_font/montserrat-v14-latin-900.eot'); /* IE9 Compat Modes */
  1275. src: local('Montserrat Black'), local('Montserrat-Black'),
  1276. url('_font/montserrat-v14-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1277. url('_font/montserrat-v14-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
  1278. url('_font/montserrat-v14-latin-900.woff') format('woff'), /* Modern Browsers */
  1279. url('_font/montserrat-v14-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
  1280. url('_font/montserrat-v14-latin-900.svg#Montserrat') format('svg'); /* Legacy iOS */
  1281. }
  1282. @font-face {
  1283. font-family: 'Playfair Display';
  1284. font-style: normal;
  1285. font-weight: 400;
  1286. src: url('_font/playfair-display-v20-latin-regular.eot'); /* IE9 Compat Modes */
  1287. src: local(''),
  1288. url('_font/playfair-display-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1289. url('_font/playfair-display-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  1290. url('_font/playfair-display-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
  1291. url('_font/playfair-display-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  1292. url('_font/playfair-display-v20-latin-regular.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1293. }
  1294. @font-face {
  1295. font-family: 'Playfair Display';
  1296. font-style: normal;
  1297. font-weight: 700;
  1298. src: url('_font/playfair-display-v20-latin-700.eot'); /* IE9 Compat Modes */
  1299. src: local(''),
  1300. url('_font/playfair-display-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1301. url('_font/playfair-display-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
  1302. url('_font/playfair-display-v20-latin-700.woff') format('woff'), /* Modern Browsers */
  1303. url('_font/playfair-display-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
  1304. url('_font/playfair-display-v20-latin-700.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1305. }
  1306. @font-face {
  1307. font-family: 'Playfair Display';
  1308. font-style: normal;
  1309. font-weight: 900;
  1310. src: url('_font/playfair-display-v20-latin-900.eot'); /* IE9 Compat Modes */
  1311. src: local(''),
  1312. url('_font/playfair-display-v20-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1313. url('_font/playfair-display-v20-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
  1314. url('_font/playfair-display-v20-latin-900.woff') format('woff'), /* Modern Browsers */
  1315. url('_font/playfair-display-v20-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
  1316. url('_font/playfair-display-v20-latin-900.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1317. }
  1318. @font-face {
  1319. font-family: 'Playfair Display';
  1320. font-style: italic;
  1321. font-weight: 400;
  1322. src: url('_font/playfair-display-v20-latin-italic.eot'); /* IE9 Compat Modes */
  1323. src: local(''),
  1324. url('_font/playfair-display-v20-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1325. url('_font/playfair-display-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
  1326. url('_font/playfair-display-v20-latin-italic.woff') format('woff'), /* Modern Browsers */
  1327. url('_font/playfair-display-v20-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
  1328. url('_font/playfair-display-v20-latin-italic.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1329. }
  1330. @font-face {
  1331. font-family: 'Playfair Display';
  1332. font-style: italic;
  1333. font-weight: 700;
  1334. src: url('_font/playfair-display-v20-latin-700italic.eot'); /* IE9 Compat Modes */
  1335. src: local(''),
  1336. url('_font/playfair-display-v20-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1337. url('_font/playfair-display-v20-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
  1338. url('_font/playfair-display-v20-latin-700italic.woff') format('woff'), /* Modern Browsers */
  1339. url('_font/playfair-display-v20-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
  1340. url('_font/playfair-display-v20-latin-700italic.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1341. }
  1342. @font-face {
  1343. font-family: 'fontello';
  1344. src: url('_font/fontello.eot?84652176');
  1345. src: url('_font/fontello.eot?84652176#iefix') format('embedded-opentype'),
  1346. url('_font/fontello.woff?84652176') format('woff'),
  1347. url('_font/fontello.ttf?84652176') format('truetype'),
  1348. url('_font/fontello.svg?84652176#fontello') format('svg');
  1349. font-weight: normal;
  1350. font-style: normal;
  1351. }
  1352. .demo-icon {
  1353. font-family: "fontello";
  1354. font-style: normal;
  1355. font-weight: normal;
  1356. speak: none;
  1357. display: inline-block;
  1358. text-decoration: inherit;
  1359. width: 1em;
  1360. margin-right: .2em;
  1361. text-align: center;
  1362. font-variant: normal;
  1363. text-transform: none;
  1364. line-height: 1em;
  1365. margin-left: .2em;
  1366. -webkit-font-smoothing: antialiased;
  1367. -moz-osx-font-smoothing: grayscale;
  1368. /* opacity: .8; */
  1369. /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  1370. }