Advertisement
srikat

Untitled

May 19th, 2016
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 44.00 KB | None | 0 0
  1. /*
  2. Theme Name: Showcase Pro
  3. Theme URI: http://my.studiopress.com/themes/showcase/
  4. Description: Showcase your product or service in a clean, professional and elegant design.
  5. Author: JT Grauke
  6. Author URI: http://www.jtgrauke.com
  7.  
  8. Version: 1.0.2
  9.  
  10. Tags: product, showcase, blue, red, white, one-column, responsive-layout, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, accessibility-ready
  11.  
  12. Template: genesis
  13. Template Version: 2.2
  14.  
  15. License: GPL-2.0+
  16. License URI: http://www.opensource.org/licenses/gpl-license.php
  17.  
  18. */
  19.  
  20.  
  21. /* HTML 5 Reset
  22. * ========================================================================== */
  23.  
  24. /* Baseline Normalize - normalize.css v3.0.1 | MIT License | git.io/normalize */
  25.  
  26. html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
  27.  
  28.  
  29. /* Box Sizing
  30. * ========================================================================== */
  31.  
  32. *,
  33. input[type="search"] {
  34. -webkit-box-sizing: border-box;
  35. -moz-box-sizing: border-box;
  36. box-sizing: border-box;
  37. }
  38.  
  39. /* Float Clearing
  40. * ========================================================================== */
  41.  
  42. .author-box:before,
  43. .clearfix:before,
  44. .entry:before,
  45. .entry-content:before,
  46. .footer-widgets:before,
  47. .nav-primary:before,
  48. .nav-secondary:before,
  49. .pagination:before,
  50. .site-container:before,
  51. .site-footer:before,
  52. .site-header:before,
  53. .page-header:before,
  54. .site-inner:before,
  55. .widget:before,
  56. .wrap:before {
  57. content: " ";
  58. display: table;
  59. }
  60.  
  61. .author-box:after,
  62. .clearfix:after,
  63. .entry:after,
  64. .entry-content:after,
  65. .footer-widgets:after,
  66. .nav-primary:after,
  67. .nav-secondary:after,
  68. .pagination:after,
  69. .site-container:after,
  70. .site-footer:after,
  71. .site-header:after,
  72. .page-header:after,
  73. .site-inner:after,
  74. .widget:after,
  75. .wrap:after {
  76. clear: both;
  77. content: " ";
  78. display: table;
  79. }
  80.  
  81. /* Utility
  82. * ========================================================================== */
  83.  
  84. .mobile-hide {
  85. visibility: hidden;
  86. clip: rect(0px, 0px, 0px, 0px);
  87. position: absolute;
  88. display: none;
  89. }
  90.  
  91. .text-center {
  92. text-align: center;
  93. }
  94.  
  95. @media only screen and (min-width: 800px) {
  96. .mobile-hide {
  97. visibility: visible;
  98. position: relative;
  99. display: inherit;
  100. }
  101.  
  102. .mobile-show {
  103. visibility: hidden;
  104. clip: rect(0px, 0px, 0px, 0px);
  105. position: absolute;
  106. }
  107. }
  108.  
  109. /* Typography
  110. * ========================================================================== */
  111.  
  112. body {
  113. background-color: #fff;
  114. color: #333;
  115. font-family: "Hind", "Avenir", "Helvetica", arial;
  116. font-size: 16px;
  117. font-weight: 400;
  118. line-height: 1.612;
  119. -webkit-font-smoothing: antialiased;
  120. -moz-osx-font-smoothing: grayscale;
  121. }
  122.  
  123. ol,
  124. ul {
  125. margin: 0;
  126. padding: 0;
  127. }
  128.  
  129. li {
  130. list-style: none;
  131. }
  132.  
  133. h1,
  134. h2,
  135. h3,
  136. h4,
  137. h5,
  138. h6 {
  139. margin: 0 0 0.612em;
  140. line-height: 1.2;
  141. letter-spacing: -0.02em;
  142. }
  143.  
  144. h1,
  145. .page-header .author-box-title {
  146. font-size: 40px;
  147. font-weight: 700;
  148. }
  149.  
  150. h2,
  151. .entry-title {
  152. font-size: 32px;
  153. font-weight: 300;
  154. }
  155.  
  156. h3 {
  157. font-size: 28px;
  158. }
  159.  
  160. h4 {
  161. font-size: 24px;
  162. }
  163.  
  164. h5 {
  165. font-size: 18px;
  166. }
  167.  
  168. h6,
  169. .widgettitle {
  170. font-size: 14px;
  171. margin-top: 0;
  172. margin-bottom: 20px;
  173. opacity: .5;
  174. }
  175.  
  176. h6,
  177. .entry-meta,
  178. .nav-primary .genesis-nav-menu a,
  179. .comment-meta,
  180. .widgettitle {
  181. text-transform: uppercase;
  182. letter-spacing: 0.1em;
  183. font-weight: 500;
  184. }
  185.  
  186. p {
  187. margin: 0 0 1.625em;
  188. padding: 0;
  189. }
  190.  
  191. strong {
  192. font-weight: 700;
  193. }
  194.  
  195. blockquote {
  196. font-style: italic;
  197. font-size: 18px;
  198. font-weight: 400;
  199. margin: 2em 0;
  200. }
  201.  
  202. .entry-content blockquote {
  203. padding-left: 5%;
  204. }
  205.  
  206. blockquote p:last-of-type {
  207. margin: 0;
  208. }
  209.  
  210. code,
  211. pre {
  212. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  213. font-size: 12px;
  214. color: #333333;
  215. border: 1px solid #e1e1e8;
  216. background-color: #f7f7f9
  217. }
  218.  
  219. code {
  220. padding: 2px 4px;
  221. white-space: nowrap;
  222. }
  223.  
  224. pre {
  225. display: block;
  226. padding: 9.5px;
  227. margin: 0 0 10px;
  228. line-height: 18px;
  229. word-break: break-all;
  230. word-wrap: break-word;
  231. white-space: pre;
  232. white-space: pre-wrap;
  233. }
  234.  
  235. pre code {
  236. padding: 0;
  237. color: inherit;
  238. white-space: pre;
  239. white-space: pre-wrap;
  240. background-color: transparent;
  241. border: 0;
  242. }
  243.  
  244. cite {
  245. font-style: normal;
  246. }
  247.  
  248. hr,
  249. .clear-line {
  250. overflow: hidden;
  251. width: 100%;
  252. border: none;
  253. border-bottom: 1px solid #eee;
  254. margin: 0 0 40px;
  255. padding: 40px 0 0;
  256. }
  257.  
  258. @media only screen and (min-width: 1024px) {
  259.  
  260. body {
  261. font-size: 18px;
  262. }
  263.  
  264. h1,
  265. .page-header .author-box-title {
  266. font-size: 65px;
  267. }
  268.  
  269. h2,
  270. .entry-title {
  271. font-size: 50px;
  272. }
  273.  
  274. h3 {
  275. font-size: 36px;
  276. }
  277. }
  278.  
  279. /* Links
  280. * ========================================================================== */
  281.  
  282. a {
  283. color: #52c0cb;
  284. text-decoration: none;
  285. outline: 0;
  286. }
  287.  
  288. a:hover {
  289. border-color: transparent;
  290. text-decoration: underline;
  291. }
  292.  
  293. /* Transitions
  294. * ========================================================================== */
  295.  
  296. a,
  297. button,
  298. input:focus,
  299. input[type="button"],
  300. input[type="reset"],
  301. input[type="submit"],
  302. textarea:focus,
  303. .button,
  304. .button:after,
  305. .button:before,
  306. .genesis-nav-menu a,
  307. .team-grid .overlay {
  308. -webkit-transition: all .2s ease-in-out;
  309. -moz-transition: all .2s ease-in-out;
  310. -ms-transition: all .2s ease-in-out;
  311. -o-transition: all .2s ease-in-out;
  312. transition: all .2s ease-in-out;
  313. }
  314.  
  315. /* Selection
  316. * ========================================================================== */
  317.  
  318. ::-moz-selection {
  319. background-color: rgba(0,0,0,0.5);
  320. color: #fff;
  321. }
  322.  
  323. ::selection {
  324. background-color: rgba(0,0,0,0.5);
  325. color: #fff;
  326. }
  327.  
  328.  
  329. /* Objects
  330. * ========================================================================== */
  331.  
  332. embed,
  333. iframe,
  334. img,
  335. object,
  336. video,
  337. .wp-caption {
  338. max-width: 100%;
  339. }
  340.  
  341. img {
  342. height: auto;
  343. max-width: 100%;
  344. }
  345.  
  346. .full-width-content img.pull {
  347. margin-left: -70px;
  348. margin-right: -70px;
  349. max-width: 800px;
  350. }
  351.  
  352. /* Forms, Inputs & Buttons
  353. * ========================================================================== */
  354.  
  355. input,
  356. select,
  357. textarea {
  358. background-color: #fff;
  359. border-radius: 4px;
  360. border: 1px solid #dcdcdc;
  361. color: #333;
  362. font-size: 16px;
  363. padding: 14px 16px 12px;
  364. width: 100%;
  365. }
  366.  
  367. button,
  368. .button,
  369. textarea,
  370. input[type="button"],
  371. input[type="reset"],
  372. input[type="submit"],
  373. input[type="password"],
  374. input[type="url"],
  375. input[type="text"],
  376. input[type="search"],
  377. input[type="email"] {
  378. appearance: none;
  379. -webkit-appearance: none;
  380. -moz-appearance: none;
  381. }
  382.  
  383. input[type="checkbox"],
  384. input[type="radio"] {
  385. margin-right: 10px;
  386. width: auto;
  387. }
  388.  
  389. input:focus,
  390. textarea:focus {
  391. outline: none;
  392. border-color: #333333;
  393. }
  394.  
  395. .input-large {
  396. font-size: 24px;
  397. padding: 15px;
  398. }
  399.  
  400. select.input-large {
  401. height: 54px;
  402. line-height: 54px;
  403. padding-top: 12px;
  404. }
  405.  
  406. .input-small {
  407. font-size: 12px;
  408. padding: 5px 10px;
  409. }
  410.  
  411. ::-moz-placeholder {
  412. color: #d8d8d8;
  413. opacity: 1;
  414. }
  415.  
  416. ::-webkit-input-placeholder {
  417. color: #d8d8d8;
  418. }
  419.  
  420. input:focus::-webkit-input-placeholder,
  421. input:focus::-moz-placeholder,
  422. input:focus:-ms-input-placeholder,
  423. textarea:focus::-webkit-input-placeholder,
  424. textarea:focus::-moz-placeholder,
  425. textarea:focus:-ms-input-placeholder {
  426. color: transparent;
  427. }
  428.  
  429. /* Buttons
  430. * ========================================================================== */
  431.  
  432. button,
  433. input[type="button"],
  434. input[type="reset"],
  435. input[type="submit"],
  436. .button {
  437. background-color: #e6413e;
  438. border-radius: 4px;
  439. box-shadow: none;
  440. border: 0;
  441. color: #fff;
  442. cursor: pointer;
  443. font-size: 16px;
  444. font-weight: 600;
  445. line-height: 1.612;
  446. display: inline-block;
  447. outline: none;
  448. text-align: center;
  449. padding: 14px 20px 12px;
  450. text-decoration: none;
  451. width: auto;
  452. white-space: nowrap;
  453. }
  454.  
  455. button:hover,
  456. input:hover[type="button"],
  457. input:hover[type="reset"],
  458. input:hover[type="submit"],
  459. .button:hover {
  460. text-decoration: none;
  461. opacity: 1;
  462. box-shadow: inset 0 0 0 200px rgba(0,0,0,0.1);
  463. }
  464.  
  465. .button.small {
  466. font-size: 14px;
  467. padding: 8px 20px 5px;
  468. }
  469.  
  470. .button.secondary {
  471. background: #52c0cb;
  472. }
  473.  
  474. .button.light {
  475. background: #eee;
  476. color: #333;
  477. }
  478.  
  479. .bg-primary .button.light,
  480. .bg-secondary .button.light {
  481. background: rgba(255,255,255,0.2);
  482. color: #fff;
  483. }
  484.  
  485. .bg-primary .button.light:hover,
  486. .bg-secondary .button.light:hover {
  487. box-shadow: inset 0 0 0 200px rgba(255,255,255,0.2);
  488. }
  489.  
  490. .button.full-width {
  491. display: block;
  492. width: 100%;
  493. }
  494.  
  495. .button.minimal {
  496. background: transparent;
  497. color: #e6413e;
  498. padding-left: 0;
  499. padding-right: 0;
  500. }
  501.  
  502. .button.minimal:hover {
  503. box-shadow: none;
  504. }
  505.  
  506. .button.white {
  507. background: #fff;
  508. color: #e6413e;
  509. }
  510.  
  511. .button.arrow-left:before,
  512. .button.arrow-right:after {
  513. font-family: Ionicons;
  514. vertical-align: top;
  515. }
  516.  
  517. .button.arrow-right:after {
  518. content: "\f30f";
  519. margin-left: 8px;
  520. }
  521.  
  522. .button.arrow-right:hover:after {
  523. margin-left: 12px;
  524. margin-right: -4px;
  525. }
  526.  
  527. .button.arrow-left:before {
  528. content: "\f2ca";
  529. margin-right: 8px;
  530. }
  531.  
  532. .button.arrow-left:hover:before {
  533. margin-right: 12px;
  534. margin-left: -4px;
  535. }
  536.  
  537. input[type="search"]::-webkit-search-cancel-button,
  538. input[type="search"]::-webkit-search-results-button {
  539. display: none;
  540. }
  541.  
  542. /* Gallery
  543. * ========================================================================== */
  544.  
  545. .gallery {
  546. margin: 0 auto 40px;
  547. overflow: hidden;
  548. width: 100%;
  549. }
  550.  
  551. .gallery-item {
  552. float: left;
  553. margin: 10px 0 0;
  554. text-align: center;
  555. }
  556.  
  557. .gallery-columns-1 .gallery-item {
  558. width: 100%;
  559. }
  560.  
  561. .gallery-columns-2 .gallery-item {
  562. width: 50%;
  563. }
  564.  
  565. .gallery-columns-3 .gallery-item {
  566. width: 33%;
  567. }
  568.  
  569. .gallery-columns-4 .gallery-item {
  570. width: 25%;
  571. }
  572.  
  573. .gallery-columns-5 .gallery-item {
  574. width: 20%;
  575. }
  576.  
  577. .gallery-columns-6 .gallery-item {
  578. width: 16.6666%;
  579. }
  580.  
  581. .gallery-columns-7 .gallery-item {
  582. width: 14.2857%;
  583. }
  584.  
  585. .gallery-columns-8 .gallery-item {
  586. width: 12.5%;
  587. }
  588.  
  589. .gallery-columns-9 .gallery-item {
  590. width: 11.1111%;
  591. }
  592.  
  593. .gallery img {
  594. border: 1px solid #ddd;
  595. height: auto;
  596. padding: 4px;
  597. }
  598.  
  599. .gallery-caption {
  600. margin-left: 0;
  601. }
  602.  
  603.  
  604. /* Tables
  605. * ========================================================================== */
  606.  
  607. table {
  608. border-collapse: collapse;
  609. border-spacing: 0;
  610. line-height: 2;
  611. margin-bottom: 40px;
  612. width: 100%;
  613. }
  614.  
  615. tbody {
  616. border-bottom: 1px solid #ddd;
  617. }
  618.  
  619. td,
  620. th {
  621. text-align: left;
  622. }
  623.  
  624. td {
  625. border-top: 1px solid #ddd;
  626. padding: 6px 0;
  627. }
  628.  
  629. th {
  630. font-weight: 400;
  631. }
  632.  
  633. /* Accessibility
  634. * ========================================================================== */
  635.  
  636. .screen-reader-shortcut,
  637. .screen-reader-text,
  638. .screen-reader-text span {
  639. background-color: #fff;
  640. border: 0;
  641. clip: rect(0, 0, 0, 0);
  642. color: #232525;
  643. height: 1px;
  644. overflow: hidden;
  645. position: absolute !important;
  646. width: 1px;
  647. }
  648.  
  649. .genesis-nav-menu .search input[type="submit"]:focus,
  650. .screen-reader-shortcut:focus,
  651. .screen-reader-text:focus,
  652. .widget_search input[type="submit"]:focus {
  653. border: 1px solid #5b5e5e;
  654. clip: auto !important;
  655. display: block;
  656. font-size: 18px;
  657. font-size: 1.8rem;
  658. font-weight: 700;
  659. height: auto;
  660. padding: 20px;
  661. text-decoration: none;
  662. width: auto;
  663. z-index: 100000; /* Above WP toolbar. */
  664. }
  665.  
  666. .genesis-skip-link {
  667. margin: 0;
  668. }
  669.  
  670. .genesis-skip-link li {
  671. height: 0;
  672. width: 0;
  673. list-style: none;
  674. }
  675.  
  676. /* Display outline on focus */
  677. :focus {
  678. outline: 1px dotted rgba(0,0,0,0.2);
  679. }
  680.  
  681. /* Wordpress
  682. * ========================================================================== */
  683.  
  684. a.aligncenter img {
  685. display: block;
  686. margin: 0 auto;
  687. }
  688.  
  689. a.alignnone {
  690. display: inline-block;
  691. }
  692.  
  693. .alignleft {
  694. float: left;
  695. text-align: left;
  696. }
  697.  
  698. .alignright {
  699. float: right;
  700. text-align: right;
  701. }
  702.  
  703. img.centered,
  704. .aligncenter {
  705. display: block;
  706. margin: 0 auto 30px;
  707. }
  708.  
  709. img.alignnone,
  710. .alignnone {
  711. margin-bottom: 12px;
  712. }
  713.  
  714. a.alignleft,
  715. img.alignleft,
  716. .wp-caption.alignleft {
  717. margin: 0 60px 30px 0;
  718. }
  719.  
  720. a.alignright,
  721. img.alignright,
  722. .wp-caption.alignright {
  723. margin: 0 0 30px 60px;
  724. }
  725.  
  726. img.alignleft.entry-image,
  727. img.alignright.entry-image {
  728. margin-bottom: 0;
  729. }
  730.  
  731. .entry-content figure {
  732. margin: 60px 0 50px;
  733. }
  734.  
  735. .wp-caption-text {
  736. font-size: 16px;
  737. font-size: 1.6rem;
  738. font-weight: 700;
  739. text-align: center;
  740. }
  741.  
  742. .entry-content p.wp-caption-text {
  743. margin-bottom: 0;
  744. }
  745.  
  746. .gallery-caption,
  747. .entry-content .gallery-caption {
  748. margin: 0 0 10px;
  749. }
  750.  
  751. .wp-audio-shortcode,
  752. .wp-playlist,
  753. .wp-video {
  754. margin-bottom: 30px;
  755. }
  756.  
  757. a[rel~="attachment"],
  758. a[rel~="attachment"]:hover,
  759. .gallery-item a,
  760. .wp-audio-shortcode a,
  761. .wp-audio-shortcode a:hover,
  762. .wp-caption a,
  763. .wp-caption a:hover,
  764. .wp-playlist a,
  765. .wp-playlist a:hover,
  766. .wp-video a,
  767. .wp-video a:hover {
  768. border-width: 0 !important;
  769. }
  770.  
  771. img.stretch {
  772. max-width: 112%;
  773. margin-left: -6%;
  774. display: inline-block;
  775. margin-top: 20px;
  776. }
  777.  
  778. @media only screen and ( min-width: 1024px ) {
  779. img.stretch {
  780. max-width: 140%;
  781. margin-left: -20%;
  782. }
  783. }
  784.  
  785.  
  786. /* Site Containers
  787. * ========================================================================== */
  788.  
  789. .showcase-landing .site-container {
  790. margin: 0 auto;
  791. max-width: 800px;
  792. }
  793.  
  794. .wrap {
  795. margin: 0 auto;
  796. padding: 0 5%;
  797. }
  798.  
  799. .site-inner {
  800. clear: both;
  801. padding: 40px 0;
  802. overflow: hidden;
  803. }
  804.  
  805. .full-width-content .content {
  806. width: 100%;
  807. }
  808.  
  809. @media only screen and (min-width: 1024px) {
  810.  
  811. .content {
  812. float: right;
  813. width: 70%;
  814. }
  815.  
  816. .content-sidebar .content {
  817. float: left;
  818. }
  819.  
  820. .sidebar-primary {
  821. float: right;
  822. width: 25%;
  823. }
  824.  
  825. .sidebar-content .sidebar-primary {
  826. float: left;
  827. }
  828.  
  829. .wrap {
  830. max-width: 1280px;
  831. }
  832.  
  833. .site-inner {
  834. padding: 80px 0;
  835. }
  836. }
  837.  
  838. /* Grid
  839. * ========================================================================== */
  840.  
  841. @media only screen and (min-width: 800px) {
  842.  
  843. .grid,
  844. [class*="grid-"],
  845. .equal-heights > * {
  846. display: flex;
  847. flex-wrap: wrap;
  848. }
  849.  
  850. .grid > *,
  851. [class*="grid-"] > * {
  852. align-self: stretch;
  853. }
  854.  
  855. .equal-heights > * > * {
  856. align-self: stretch;
  857. flex-grow: 1;
  858. width: 100%;
  859. }
  860.  
  861. .five-sixths,
  862. .four-sixths,
  863. .four-fifths,
  864. .one-fifth,
  865. .one-fourth,
  866. .footer-widgets .widget-area,
  867. .one-half,
  868. .one-sixth,
  869. .one-third,
  870. .three-fourths,
  871. .three-fifths,
  872. .three-sixths,
  873. .two-fourths,
  874. .two-fifths,
  875. .two-sixths,
  876. .two-thirds {
  877. float: left;
  878. margin-left: 3.448275862069%;
  879. }
  880.  
  881. .one-half,
  882. .three-sixths,
  883. .two-fourths {
  884. width: 48.275862068966%;
  885. }
  886.  
  887. .one-third,
  888. .two-sixths {
  889. width: 31.034482758621%;
  890. }
  891.  
  892. .four-sixths,
  893. .two-thirds {
  894. width: 65.51724137931%;
  895. }
  896.  
  897. .one-fourth,
  898. .footer-widgets .widget-area {
  899. width: 22.413793103448%;
  900. }
  901.  
  902. .three-fourths {
  903. width: 74.137931034483%;
  904. }
  905.  
  906. .one-fifth {
  907. width: 17.241379310345%;
  908. }
  909.  
  910. .two-fifths {
  911. width: 37.931034482759%;
  912. }
  913.  
  914. .three-fifths {
  915. width: 58.620689655172%;
  916. }
  917.  
  918. .four-fifths {
  919. width: 79.310344827586%;
  920. }
  921.  
  922. .one-sixth {
  923. width: 13.793103448276%;
  924. }
  925.  
  926. .five-sixths {
  927. width: 82.758620689655%;
  928. }
  929.  
  930. .first,
  931. .footer-widgets .widget-area:first-child {
  932. clear: both;
  933. margin-left: 0;
  934. }
  935.  
  936. .only {
  937. float: none;
  938. margin: 0 auto;
  939. }
  940. }
  941.  
  942. /* Widgets
  943. * ========================================================================== */
  944.  
  945. .widget {
  946. word-wrap: break-word;
  947. }
  948.  
  949. .widget ol > li {
  950. list-style-position: inside;
  951. list-style-type: decimal;
  952. padding-left: 20px;
  953. text-indent: -20px;
  954. }
  955.  
  956. .widget li li {
  957. border: 0;
  958. margin: 0 0 0 30px;
  959. padding: 0;
  960. }
  961.  
  962. .widget_calendar table {
  963. width: 100%;
  964. }
  965.  
  966. .widget_calendar td,
  967. .widget_calendar th {
  968. text-align: center;
  969. }
  970.  
  971. /* Icons
  972. * ========================================================================== */
  973.  
  974. .icon {
  975. font-size: 60px;
  976. margin: 0 0 20px;
  977. color: #52c0cb;
  978. }
  979.  
  980.  
  981. /* Featured Content
  982. * ========================================================================== */
  983.  
  984. .featured-content.widget .entry {
  985. border-bottom-width: 0;
  986. margin-bottom: 0;
  987. padding-bottom: 0;
  988. }
  989.  
  990. .featured-content .entry-title {
  991. font-weight: 700;
  992. font-size: 18px;
  993. }
  994.  
  995. @media only screen and ( min-width: 1024px ) {
  996.  
  997. .featured-content .entry-title {
  998. font-size: 24px;
  999. }
  1000.  
  1001. }
  1002.  
  1003. /* Plugins
  1004. * ========================================================================== */
  1005.  
  1006. /* Genesis eNews Extended */
  1007.  
  1008. .enews-widget input {
  1009. margin-bottom: 10px;
  1010. }
  1011.  
  1012. .enews-widget p {
  1013. margin-bottom: 20px;
  1014. }
  1015.  
  1016. .enews form + p {
  1017. line-height: 1.5;
  1018. margin-top: 30px;
  1019. }
  1020.  
  1021. /* Genesis Simple Share */
  1022.  
  1023. .content .share-after {
  1024. margin-bottom: 20px;
  1025. }
  1026.  
  1027. .content a.count,
  1028. .content a.count:hover,
  1029. .content a.count:focus,
  1030. .content a.share,
  1031. .content a.share:hover,
  1032. .content a.share:focus {
  1033. border: none;
  1034. font-weight: 400;
  1035. }
  1036.  
  1037. .content .share-filled .share {
  1038. border-radius: 0;
  1039. }
  1040.  
  1041. .content .share-filled .count {
  1042. border-radius: 0;
  1043. }
  1044.  
  1045. .content .share-filled .facebook .count,
  1046. .content .share-filled .facebook .count:hover,
  1047. .content .share-filled .googlePlus .count,
  1048. .content .share-filled .googlePlus .count:hover,
  1049. .content .share-filled .linkedin .count,
  1050. .content .share-filled .linkedin .count:hover,
  1051. .content .share-filled .pinterest .count,
  1052. .content .share-filled .pinterest .count:hover,
  1053. .content .share-filled .stumbleupon .count,
  1054. .content .share-filled .stumbleupon .count:hover,
  1055. .content .share-filled .twitter .count,
  1056. .content .share-filled .twitter .count:hover {
  1057. color: #5b5e5e;
  1058. border: 1px solid #5b5e5e;
  1059. }
  1060.  
  1061. .content .share-filled .facebook .share,
  1062. .content .share-filled .facebook:hover .count,
  1063. .content .share-filled .googlePlus .share,
  1064. .content .share-filled .googlePlus:hover .count,
  1065. .content .share-filled .linkedin .share,
  1066. .content .share-filled .linkedin:hover .count,
  1067. .content .share-filled .pinterest .share,
  1068. .content .share-filled .pinterest:hover .count,
  1069. .content .share-filled .stumbleupon .share,
  1070. .content .share-filled .stumbleupon:hover .count,
  1071. .content .share-filled .twitter .share,
  1072. .content .share-filled .twitter:hover .count {
  1073. background: #5b5e5e !important;
  1074. }
  1075.  
  1076. .content .share-filled .facebook:hover .count,
  1077. .content .share-filled .googlePlus:hover .count,
  1078. .content .share-filled .linkedin:hover .count,
  1079. .content .share-filled .pinterest:hover .count,
  1080. .content .share-filled .stumbleupon:hover .count,
  1081. .content .share-filled .twitter:hover .count {
  1082. color: #fff;
  1083. }
  1084.  
  1085. /* Jetpack */
  1086.  
  1087. #wpstats {
  1088. display: none;
  1089. }
  1090.  
  1091. /* Search Form
  1092. * ========================================================================== */
  1093.  
  1094. .search-form {
  1095. position: relative;
  1096. width: 100%;
  1097. margin-bottom: 20px;
  1098. }
  1099.  
  1100. .search-form:after {
  1101. content: "\f4a4";
  1102. position: absolute;
  1103. right: 12px;
  1104. top: -2px;
  1105. font-family: ionicons;
  1106. font-size: 30px;
  1107. pointer-events: none;
  1108. color: #dcdcdc;
  1109. }
  1110.  
  1111. .search-form input[type="search"] {
  1112. width: 100%;
  1113. padding: 10px 38px 9px 12px;
  1114. font-size: 16px;
  1115. }
  1116.  
  1117. .search-form input[type="submit"] {
  1118. position: absolute;
  1119. right: 0;
  1120. bottom: 0;
  1121. top: 0;
  1122. text-indent: -9999px;
  1123. border-color: transparent;
  1124. background: transparent;
  1125. }
  1126.  
  1127. .search-form input[type="submit"]:hover {
  1128. box-shadow: none;
  1129. }
  1130.  
  1131. @media only screen and (min-width: 800px) {
  1132.  
  1133. .search-form {
  1134. width: auto;
  1135. margin-bottom: 40px;
  1136. }
  1137.  
  1138. }
  1139.  
  1140.  
  1141. /* Site Header
  1142. * ========================================================================== */
  1143.  
  1144. .site-header {
  1145. width: 100%;
  1146. z-index: 999;
  1147. padding: 20px 0;
  1148. background: #52c0cb;
  1149. position: relative;
  1150. }
  1151.  
  1152. .bg-primary .site-header {
  1153. background: transparent;
  1154. }
  1155.  
  1156. .title-area {
  1157. float: left;
  1158. margin-top: 10px;
  1159. }
  1160.  
  1161. .site-title {
  1162. font-size: 21px;
  1163. font-weight: 700;
  1164. line-height: 1.2;
  1165. margin: 0 auto;
  1166. }
  1167.  
  1168. .site-title a {
  1169. color: #fff;
  1170. text-decoration: none;
  1171. }
  1172.  
  1173. .header-image .nav-primary:not(button) {
  1174. margin-top: 22px;
  1175. }
  1176.  
  1177. .header-image .site-title {
  1178. display: block;
  1179. text-indent: -9999px;
  1180. }
  1181.  
  1182. .header-image .site-title > a {
  1183. background-position: center center !important;
  1184. background-size: contain !important;
  1185. float: left;
  1186. min-height: 75px;
  1187. width: 200px;
  1188. }
  1189.  
  1190. .header-image .title-area {
  1191. margin: 0;
  1192. width: 200px;
  1193. }
  1194.  
  1195. .site-description {
  1196. display: none;
  1197. }
  1198.  
  1199. @media only screen and (min-width: 800px) {
  1200.  
  1201. .site-header {
  1202. padding: 30px 0 25px;
  1203. }
  1204.  
  1205. .site-header .wrap {
  1206. max-width: none;
  1207. }
  1208.  
  1209. .bg-primary .site-header {
  1210. padding: 30px 0 0;
  1211. }
  1212.  
  1213. .title-area {
  1214. margin-top: 4px;
  1215. }
  1216.  
  1217. .site-title {
  1218. font-size: 32px;
  1219. }
  1220.  
  1221. .header-image .site-title {
  1222. margin-top: 5px;
  1223. }
  1224. }
  1225.  
  1226. /* Navigation
  1227. * ========================================================================== */
  1228.  
  1229. .genesis-nav-menu li {
  1230. display: inline-block;
  1231. list-style: none;
  1232. position: relative;
  1233. }
  1234.  
  1235. .genesis-nav-menu a {
  1236. border: none;
  1237. display: block;
  1238. margin: 0 16px 0;
  1239. position: relative;
  1240. color: #fff;
  1241. opacity: .7;
  1242. }
  1243.  
  1244. .genesis-nav-menu li a:hover,
  1245. .genesis-nav-menu .menu-item a:hover,
  1246. .genesis-nav-menu .current-menu-item > a,
  1247. .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
  1248. text-decoration: none;
  1249. opacity: 1;
  1250. }
  1251.  
  1252. @media only screen and (min-width: 800px) {
  1253.  
  1254. .genesis-nav-menu .menu-item.highlight a {
  1255. background: transparent;
  1256. border: 1px solid #fff;
  1257. border-radius: 3px;
  1258. color: #fff;
  1259. line-height: 1;
  1260. padding: 10px 20px 8px;
  1261. }
  1262.  
  1263. .genesis-nav-menu .sub-menu {
  1264. width: 180px;
  1265. z-index: 99;
  1266. background: #fff;
  1267. box-shadow: 0 5px 10px -5px rgba(0,0,0,0.2);
  1268. border-radius: 3px;
  1269. opacity: 0;
  1270. margin-top: -12px;
  1271. position: absolute;
  1272. left: -9999px;
  1273. text-align: left;
  1274. }
  1275.  
  1276. .genesis-nav-menu > li .sub-menu:before {
  1277. content: " ";
  1278. position: absolute;
  1279. top: -5px;
  1280. left: 16px;
  1281. width: 0;
  1282. height: 0;
  1283. border-left: 5px solid transparent;
  1284. border-right: 5px solid transparent;
  1285. border-bottom: 5px solid #fff;
  1286. }
  1287.  
  1288. .genesis-nav-menu .menu-item:hover > .sub-menu {
  1289. margin-top: 0;
  1290. opacity: 1;
  1291. left: 0;
  1292. }
  1293.  
  1294. .genesis-nav-menu > .menu-item:hover > .sub-menu {
  1295. left: 18px;
  1296. }
  1297.  
  1298. .genesis-nav-menu .sub-menu li a {
  1299. border-top: none;
  1300. padding: 8px 16px;
  1301. margin: 0;
  1302. color: #333;
  1303. width: 100%;
  1304. }
  1305.  
  1306. .genesis-nav-menu .sub-menu li {
  1307. width: 100%;
  1308. }
  1309.  
  1310. .genesis-nav-menu .sub-menu li:first-child > a {
  1311. padding-top: 16px;
  1312. }
  1313.  
  1314. .genesis-nav-menu .sub-menu li:last-child a {
  1315. padding-bottom: 12px;
  1316. }
  1317.  
  1318. .genesis-nav-menu .sub-menu .sub-menu {
  1319. margin: 0 0 0 178px;
  1320. top: 0;
  1321. }
  1322.  
  1323. .genesis-nav-menu .sub-menu .sub-menu:before {
  1324. display: none;
  1325. }
  1326. }
  1327.  
  1328. /* Responsive Menu */
  1329.  
  1330. .sub-menu-toggle,
  1331. .menu-toggle {
  1332. display: none;
  1333. visibility: hidden;
  1334. }
  1335.  
  1336. @media only screen and (max-width: 800px) {
  1337.  
  1338. .sub-menu-toggle,
  1339. .menu-toggle {
  1340. display: block;
  1341. visibility: visible;
  1342. }
  1343.  
  1344. .nav-primary,
  1345. .nav-primary .sub-menu {
  1346. width: 100%;
  1347. display: none;
  1348. }
  1349.  
  1350. .menu-toggle {
  1351. display: block;
  1352. float: right;
  1353. background: none;
  1354. padding: 6px 2px 0;
  1355. text-indent: 9999px;
  1356. color: transparent;
  1357. overflow: hidden;
  1358. width: 50px;
  1359. height: 50px;
  1360. margin-right: -12px;
  1361. margin-top: -5px;
  1362. position: relative;
  1363. }
  1364.  
  1365. .header-image .menu-toggle {
  1366. margin-top: 12px;
  1367. }
  1368.  
  1369. .menu-toggle:before {
  1370. position: absolute;
  1371. color: #fff;
  1372. top: 3px;
  1373. right: 13px;
  1374. content: "\f394";
  1375. display: inline-block;
  1376. font: normal 30px/1.5 'ionicons';
  1377. margin: 0 auto;
  1378. padding: 0;
  1379. }
  1380.  
  1381. .menu-toggle.activated::before {
  1382. content: "\f2d7";
  1383. right: 16px;
  1384. }
  1385.  
  1386. .sub-menu-toggle {
  1387. position: absolute;
  1388. right: 0;
  1389. top: 10px;
  1390. background: transparent;
  1391. padding: 6px 2px 0;
  1392. }
  1393.  
  1394. .sub-menu-toggle:before {
  1395. content: "\f123";
  1396. color: #fff;
  1397. font: normal 16px/1 'ionicons';
  1398. padding: 14px 5px 14px;
  1399. cursor: pointer;
  1400. }
  1401.  
  1402. .nav-primary .genesis-nav-menu li {
  1403. width: 100%;
  1404. }
  1405.  
  1406. .nav-primary .genesis-nav-menu > li:first-child {
  1407. margin-top: 20px;
  1408. }
  1409.  
  1410. .nav-primary .genesis-nav-menu li .sub-menu {
  1411. margin: 0 0 0 24px;
  1412. width: calc( 100% - 24px );
  1413. }
  1414.  
  1415. .nav-primary .genesis-nav-menu a {
  1416. font-size: 18px;
  1417. margin: 0;
  1418. padding: 10px 0;
  1419. }
  1420.  
  1421. }
  1422.  
  1423. @media only screen and (min-width: 800px) {
  1424.  
  1425. .nav-primary .genesis-nav-menu a {
  1426. font-size: 12px;
  1427. }
  1428.  
  1429. .nav-primary {
  1430. text-align: right;
  1431. }
  1432.  
  1433. .bg-primary .nav-primary {
  1434. padding-bottom: 22px;
  1435. border-bottom: 1px solid rgba(255,255,255,0.3);
  1436. }
  1437.  
  1438. .nav-primary .genesis-nav-menu > li > a {
  1439. margin: 0 0 0 24px;
  1440. padding: 15px 0;
  1441. }
  1442.  
  1443. .nav-primary .genesis-nav-menu > li.left {
  1444. float: left;
  1445. }
  1446.  
  1447. .nav-primary .genesis-nav-menu > li.menu-item-has-children > a:after {
  1448. top: 18px;
  1449. }
  1450. }
  1451.  
  1452. @media only screen and (min-width: 1024px) {
  1453.  
  1454. .nav-primary .genesis-nav-menu > li > a {
  1455. margin: -2px 0 0 36px;
  1456. font-size: 14px;
  1457. }
  1458. }
  1459.  
  1460. /* Sub Nav
  1461. * ========================================================================== */
  1462.  
  1463. .nav-secondary {
  1464. margin: 20px 0 -40px;
  1465. text-align: center;
  1466. overflow: hidden;
  1467. width: 100%;
  1468. padding: 0;
  1469. }
  1470.  
  1471. .nav-secondary .wrap {
  1472. padding: 0;
  1473. }
  1474.  
  1475. .nav-secondary .genesis-nav-menu {
  1476. padding: 12px 0;
  1477. margin-bottom: -16px;
  1478. overflow-x: scroll;
  1479. overflow-y: hidden;
  1480. white-space: nowrap;
  1481. -webkit-overflow-scrolling: touch;
  1482. }
  1483.  
  1484. .win .nav-secondary .genesis-nav-menu {
  1485. margin-bottom: -24px;
  1486. }
  1487.  
  1488. .nav-secondary .genesis-nav-menu li {
  1489. list-style-type: none;
  1490. display: inline-block;
  1491. margin: 0 8px;
  1492. padding: 4px;
  1493. }
  1494.  
  1495. .nav-secondary ul li:first-child {
  1496. margin-left: 5%;
  1497. padding-left: 0;
  1498. }
  1499.  
  1500. .nav-secondary ul li:last-child {
  1501. margin-right: 5%;
  1502. padding-right: 0;
  1503. }
  1504.  
  1505. .nav-secondary .genesis-nav-menu li a {
  1506. font-weight: 700;
  1507. opacity: .5;
  1508. padding: 20px 0;
  1509. margin: 0;
  1510. }
  1511.  
  1512. .nav-secondary .genesis-nav-menu li.current-menu-item a {
  1513. opacity: 1;
  1514. }
  1515.  
  1516. .nav-secondary .genesis-nav-menu li.current-menu-item a:after {
  1517. content: " ";
  1518. border-bottom: 5px solid #333;
  1519. width: 100%;
  1520. position: absolute;
  1521. bottom: 0;
  1522. left: 0;
  1523. right: 0;
  1524. }
  1525.  
  1526. @media only screen and (min-width: 800px) {
  1527. .nav-secondary {
  1528. margin: 5% 0 -10%;
  1529. width: 100%;
  1530. }
  1531. }
  1532.  
  1533. @media only screen and (min-width: 1023px) {
  1534.  
  1535. .nav-secondary .genesis-nav-menu li {
  1536. margin: 0 12px;
  1537. }
  1538.  
  1539. .nav-secondary .genesis-nav-menu li a {
  1540. font-size: 16px;
  1541. }
  1542.  
  1543. .nav-secondary ul li:first-child {
  1544. margin-left: 0;
  1545. }
  1546.  
  1547. .nav-secondary ul li:last-child {
  1548. margin-right: 0;
  1549. }
  1550.  
  1551. }
  1552.  
  1553. /* White Header
  1554. * ========================================================================== */
  1555.  
  1556. .white-header .site-header {
  1557. background: #fff;
  1558. }
  1559.  
  1560. .white-header .site-header a {
  1561. color: #333;
  1562. }
  1563.  
  1564. @media only screen and (max-width: 800px) {
  1565. .white-header .menu-toggle:before,
  1566. .white-header .sub-menu-toggle:before {
  1567. color: #333;
  1568. }
  1569. }
  1570.  
  1571. @media only screen and (min-width: 800px) {
  1572.  
  1573. .white-header .genesis-nav-menu .menu-item.highlight a {
  1574. border: 1px solid #333;
  1575. color: #333;
  1576. }
  1577.  
  1578. .white-header .genesis-nav-menu .menu-item.highlight a:hover,
  1579. .white-header .genesis-nav-menu .menu-item.highlight.current-menu-item a {
  1580. }
  1581. }
  1582.  
  1583. /* Entry Navigation */
  1584.  
  1585. .pagination {
  1586. margin-top: 40px;
  1587. text-align: center;
  1588. }
  1589.  
  1590. .pagination ul {
  1591. display: inline-block;
  1592. overflow: hidden;
  1593. }
  1594.  
  1595. .pagination li {
  1596. border-radius: 3px;
  1597. margin: 2px;
  1598. list-style-type: none;
  1599. display: block;
  1600. float: left;
  1601. overflow: hidden;
  1602. }
  1603.  
  1604. .pagination .pagination-omission {
  1605. border: 0;
  1606. }
  1607.  
  1608. .pagination li a {
  1609. display: block;
  1610. padding: 8px 16px;
  1611. text-decoration: none;
  1612. }
  1613.  
  1614. .pagination li a:hover,
  1615. .pagination li.active a {
  1616. background: #52c0cb;
  1617. color: #fff;
  1618. border-bottom: 0;
  1619. }
  1620.  
  1621. /* Background Images and Colors
  1622. * ========================================================================== */
  1623.  
  1624. .with-background-image {
  1625. background-size: cover;
  1626. background-position: center;
  1627. background-repeat: no-repeat;
  1628. }
  1629.  
  1630. .with-background-image:after {
  1631. -ms-filter: "alpha(Opacity=90)";
  1632. filter: alpha(opacity=90);
  1633. opacity: 0.90;
  1634. }
  1635.  
  1636. .bg-primary,
  1637. .bg-secondary,
  1638. .bg-primary a,
  1639. .bg-secondary a {
  1640. color: #fff;
  1641. }
  1642.  
  1643. [class*="bg-"],
  1644. [class*="bg-"] .wrap {
  1645. position: relative;
  1646. z-index: 2;
  1647. }
  1648.  
  1649. .bg-primary:after,
  1650. .bg-secondary:after,
  1651. .bg-light-gray:after,
  1652. .bg-dark-gray:after {
  1653. content: " ";
  1654. display: block;
  1655. position: absolute;
  1656. top: 0;
  1657. right: 0;
  1658. bottom: 0;
  1659. left: 0;
  1660. z-index: 0;
  1661. }
  1662.  
  1663. .bg-primary:after {
  1664. background: #52c0cb;
  1665. }
  1666.  
  1667. .bg-secondary:after {
  1668. background: #e6413e;
  1669. }
  1670.  
  1671. .bg-light-gray:after {
  1672. background: #f2f2f2;
  1673. }
  1674.  
  1675. .bg-dark-gray:after {
  1676. background: #333333;
  1677. }
  1678.  
  1679. /* Page Header
  1680. * ========================================================================== */
  1681.  
  1682. .page-header {
  1683. padding: 40px 0;
  1684. position: relative;
  1685. text-align: center;
  1686. color: #fff;
  1687. }
  1688.  
  1689. .page-header h1,
  1690. .page-header .author-box-title {
  1691. line-height: 1.2;
  1692. font-size: 40px;
  1693. margin-bottom: 0.25em;
  1694. display: inline-block;
  1695. }
  1696.  
  1697. .page-header p {
  1698. font-size: 24px;
  1699. max-width: 740px;
  1700. margin-left: auto;
  1701. margin-right: auto;
  1702. }
  1703.  
  1704. .page-header p:last-child {
  1705. margin-bottom: 0;
  1706. }
  1707.  
  1708. .page-header a:not(.button) {
  1709. opacity: .5;
  1710. }
  1711.  
  1712. .page-header a:hover:not(.button) {
  1713. opacity: 1;
  1714. }
  1715.  
  1716. .page-header .entry-meta {
  1717. font-size: 14px;
  1718. }
  1719.  
  1720. @media only screen and (min-width: 800px) {
  1721.  
  1722. .page-header {
  1723. padding: 10% 0;
  1724. }
  1725.  
  1726. .page-header h1,
  1727. .page-header .author-box-title {
  1728. font-size: 60px;
  1729. }
  1730.  
  1731. .page-header .entry-meta {
  1732. font-size: 16px;
  1733. }
  1734.  
  1735. }
  1736.  
  1737. /* Pricing Table
  1738. * ========================================================================== */
  1739.  
  1740. .pricing-table,
  1741. .pricing-table > * {
  1742. display: flex;
  1743. flex-wrap: wrap;
  1744. }
  1745.  
  1746. .pricing-table > * {
  1747. align-self: stretch;
  1748. }
  1749.  
  1750. .pricing-table > * > * {
  1751. align-self: stretch;
  1752. flex-grow: 1;
  1753. width: 100%;
  1754. }
  1755.  
  1756. .pricing-table .plan {
  1757. box-shadow: inset 0 0 0 2px #f0f0f0;
  1758. text-align: center;
  1759. padding: 40px 20px 20px;
  1760. margin: 0 0 40px;
  1761. width: 100%;
  1762. position: relative;
  1763. transition: all .2s ease-out;
  1764. font-size: 14px;
  1765. margin-bottom: 40px;
  1766. }
  1767.  
  1768. .pricing-table .plan em {
  1769. opacity: .5;
  1770. margin-bottom: 20px;
  1771. display: block;
  1772. }
  1773.  
  1774. .pricing-table .plan h3 {
  1775. color: #52c0cb;
  1776. }
  1777.  
  1778. .pricing-table .plan h3 span {
  1779. font-size: .66em;
  1780. }
  1781.  
  1782. .pricing-table .plan ul {
  1783. margin: 0 0 40px;
  1784. line-height: 2;
  1785. }
  1786.  
  1787. .pricing-table .plan ul li {
  1788. list-style: none;
  1789. }
  1790.  
  1791. .pricing-table .plan p {
  1792. padding-left: 20px;
  1793. padding-right: 20px;
  1794. z-index: 3;
  1795. align-self: flex-end;
  1796. }
  1797.  
  1798. .pricing-table .plan ul.small {
  1799. text-transform: uppercase;
  1800. font-weight: 500;
  1801. font-size: 10px;
  1802. letter-spacing: 0.07em;
  1803. margin-bottom: 20px;
  1804. opacity: .7;
  1805. }
  1806.  
  1807.  
  1808. .pricing-table .plan.featured {
  1809. background: #fff;
  1810. box-shadow: 0 0 0 4px #999999;
  1811. z-index: 2;
  1812. border-radius: 4px;
  1813. }
  1814.  
  1815. @media only screen and (min-width: 800px) {
  1816.  
  1817. .pricing-info {
  1818. padding-top: 80px;
  1819. }
  1820.  
  1821. .pricing-table .plan {
  1822. margin-bottom: 40px !important;
  1823. }
  1824.  
  1825. .pricing-table .plan.one-fourth {
  1826. width: 50%;
  1827. margin: -2px 0 0 -2px;
  1828. }
  1829.  
  1830. .pricing-table .plan.one-fourth:first-child,
  1831. .pricing-table .plan.one-fourth:nth-child(3) {
  1832. margin-left: 0;
  1833. }
  1834.  
  1835. .pricing-table .plan.one-third {
  1836. width: 33%;
  1837. margin: 0 0 0 -2px;
  1838. }
  1839.  
  1840. .pricing-table .plan.one-third:first-child {
  1841. margin-left: 0;
  1842. }
  1843. }
  1844.  
  1845. @media only screen and (min-width: 1024px) {
  1846.  
  1847. .pricing-table .plan.one-fourth {
  1848. width: 25%;
  1849. margin: 0 0 0 -2px;
  1850. }
  1851.  
  1852. .pricing-table .plan.one-fourth:first-child {
  1853. margin-left: 0;
  1854. }
  1855.  
  1856. .pricing-table .plan.one-fourth:nth-child(3) {
  1857. margin-left: -2px;
  1858. }
  1859. }
  1860.  
  1861.  
  1862. /* Entries
  1863. * ========================================================================== */
  1864.  
  1865. .entry {
  1866. margin-bottom: 1em;
  1867. }
  1868.  
  1869. .entry.page {
  1870. margin: 0;
  1871. display: inline-block;
  1872. width: 100%;
  1873. }
  1874.  
  1875. .page-template-page_blog .entry,
  1876. .blog .entry,
  1877. .archive .entry,
  1878. .single-post .entry {
  1879. margin-bottom: 40px;
  1880. padding: 40px 0;
  1881. border-bottom: 1px solid #f2f2f2;
  1882. position: relative;
  1883. }
  1884.  
  1885. .page-template-page_blog .entry:last-child,
  1886. .blog .entry:last-child,
  1887. .archive .entry:last-child {
  1888. border-bottom-width: 0px;
  1889. }
  1890.  
  1891. .single-post .entry:first-child {
  1892. padding-top: 0;
  1893. }
  1894.  
  1895. .full-width-content .content-sidebar-wrap {
  1896. max-width: 740px;
  1897. margin: 0 auto;
  1898. }
  1899.  
  1900. .full-width .content-sidebar-wrap {
  1901. max-width: 100%;
  1902. }
  1903.  
  1904. .blog .entry-header,
  1905. .page-template-page_blog .entry-header,
  1906. .archive .entry-header {
  1907. text-align: center;
  1908. }
  1909.  
  1910. .page-template-page_blog .blog-template-description {
  1911. display: none;
  1912. }
  1913.  
  1914. .entry-title a {
  1915. color: #333;
  1916. }
  1917.  
  1918. .entry-content ol,
  1919. .entry p,
  1920. .entry-content p,
  1921. .author-box p,
  1922. .entry-content ul,
  1923. .entry ul,
  1924. .entry ol,
  1925. .entry-content .wp-video,
  1926. .entry-content .wp-audio-shortcode,
  1927. .entry-content .video-player,
  1928. .quote-caption {
  1929. margin-bottom: 2em;
  1930. line-height: 2;
  1931. }
  1932.  
  1933. .entry-content ol,
  1934. .entry ol,
  1935. .entry-content ul,
  1936. .entry ul {
  1937. margin-left: 40px;
  1938. }
  1939.  
  1940. .single .entry-content p.intro,
  1941. .page:not(.page-template-page_blog) .entry-content p.intro {
  1942. display: block;
  1943. font-size: 24px;
  1944. font-weight: 300;
  1945. }
  1946.  
  1947. .single .entry-content p.intro:after,
  1948. .page .entry-content p.intro:after {
  1949. content: " ";
  1950. border-bottom: 1px solid #f2f2f2;
  1951. margin: 40px auto;
  1952. display: block;
  1953. }
  1954.  
  1955. .post-image.entry-image {
  1956. margin-bottom: 40px;
  1957. }
  1958.  
  1959. .entry-content .gform_wrapper ul.gform_fields {
  1960. margin: 0 0 30px;
  1961. }
  1962.  
  1963. .entry-content ol li,
  1964. .entry ol li {
  1965. list-style-type: decimal;
  1966. }
  1967.  
  1968. .entry-content ul li,
  1969. .entry ul li {
  1970. list-style-type: disc;
  1971. }
  1972.  
  1973. .entry-content ol ol,
  1974. .entry ol ol,
  1975. .entry-content ul ul,
  1976. .entry ul ul {
  1977. margin-bottom: 0;
  1978. }
  1979.  
  1980. .entry-content ul.list-unstyled,
  1981. .entry-content ol.list-unstyled {
  1982. margin-left: 20px;
  1983. }
  1984.  
  1985. .entry-content ul.list-unstyled > li,
  1986. .entry-content ol.list-unstyled > li,
  1987. .entry-content .gform_wrapper ul li {
  1988. list-style: none;
  1989. }
  1990.  
  1991. .entry-meta {
  1992. font-size: 14px;
  1993. }
  1994.  
  1995. @media only screen and (min-width: 1024px) {
  1996.  
  1997. .full-width-content .post-image.entry-image {
  1998. margin: 0 -10% 40px;
  1999. max-width: 120%;
  2000. width: 120%;
  2001.  
  2002. }
  2003. }
  2004.  
  2005. /* Author Box
  2006. * ========================================================================== */
  2007.  
  2008. .single .author-box {
  2009. border-bottom: 1px solid #f2f2f2;
  2010. padding: 40px 0;
  2011. margin-bottom: 40px;
  2012. text-align: center;
  2013. }
  2014.  
  2015. .author-box .avatar {
  2016. max-width: 80px;
  2017. height: 80px;
  2018. width: 80px;
  2019. border-radius: 40px;
  2020. margin-bottom: 20px;
  2021. }
  2022.  
  2023. .page-header .author-box-title {
  2024. display: block;
  2025. }
  2026.  
  2027. /* Team
  2028. * ========================================================================== */
  2029.  
  2030. .showcase-team-widget {
  2031. text-align: center;
  2032. }
  2033.  
  2034. .showcase-team-widget .team-grid {
  2035. overflow: hidden;
  2036. margin-bottom: 20px;
  2037. }
  2038.  
  2039. .team-grid .entry {
  2040. overflow: hidden;
  2041. margin-top: 20px;
  2042. margin-bottom: 20px;
  2043. padding: 0;
  2044. position: relative;
  2045. text-align: center;
  2046. }
  2047.  
  2048. .team-grid .entry a {
  2049. border: 0;
  2050. overflow: hidden;
  2051. color: #fff;
  2052. }
  2053.  
  2054. .team-grid .entry img {
  2055. display: block;
  2056. }
  2057.  
  2058. .overlay {
  2059. display: block;
  2060. position: absolute;
  2061. top: 0;
  2062. right: 0;
  2063. bottom: 0;
  2064. left: 0;
  2065. background: #333;
  2066. -ms-filter: "alpha(Opacity=0)";
  2067. filter: alpha(opacity=0);
  2068. opacity: 0;
  2069. z-index: 0;
  2070. }
  2071.  
  2072. .overlay:hover {
  2073. -ms-filter: "alpha(Opacity=96)";
  2074. filter: alpha(opacity=96);
  2075. opacity: .96;
  2076. }
  2077.  
  2078. .overlay-inner {
  2079. width: 100%;
  2080. height: 100%;
  2081. display: table;
  2082. overflow: hidden;
  2083. }
  2084.  
  2085. .overlay-details {
  2086. display: table-cell;
  2087. padding: 16px;
  2088. vertical-align: middle;
  2089. position: relative;
  2090. z-index: 3;
  2091. }
  2092.  
  2093. @media only screen and (max-width: 800px) {
  2094.  
  2095. .team-grid {
  2096. margin-left: -10px;
  2097. margin-right: -10px;
  2098. width: calc( 100% + 20px );
  2099. }
  2100.  
  2101. .team-grid .entry {
  2102. width: calc( 50% - 20px );
  2103. float: left;
  2104. margin: 10px;
  2105. }
  2106. }
  2107.  
  2108.  
  2109. /* Comments
  2110. * ========================================================================== */
  2111.  
  2112. .entry-comments,
  2113. .entry-pings {
  2114. padding: 40px 0 0;
  2115. }
  2116.  
  2117. p.comment-meta,
  2118. .entry-comments .comment,
  2119. .entry-comments .comment-reply {
  2120. margin-bottom: 40px;
  2121. }
  2122.  
  2123. .entry-comments .comment {
  2124. padding: 20px 0;
  2125. border-bottom: 1px solid #f2f2f2;
  2126. }
  2127.  
  2128. .entry-comments .comment:last-child {
  2129. margin-bottom: 0;
  2130. border: 0;
  2131. }
  2132.  
  2133. .comment-list .comment-respond {
  2134. padding-left: 0;
  2135. }
  2136.  
  2137. .comment-header {
  2138. line-height: 1;
  2139. }
  2140.  
  2141. .comment-author {
  2142. margin: 6px 0 2px;
  2143. }
  2144.  
  2145. .comment-author span:first-of-type {
  2146. font-weight: 700;
  2147. }
  2148.  
  2149. .comment-author .avatar {
  2150. float: left;
  2151. margin-right: 16px;
  2152. margin-bottom: 16px;
  2153. border-radius: 24px;
  2154. margin-top: -6px;
  2155. }
  2156.  
  2157. .comment-autor, .comment-meta a {
  2158. text-transform: uppercase;
  2159. }
  2160.  
  2161. .comment-meta a {
  2162. font-size: 12px;
  2163. }
  2164.  
  2165. .comment-edit-link {
  2166. margin-bottom: 20px;
  2167. display: inline-block;
  2168. }
  2169.  
  2170. .comment-notes,
  2171. .entry-pings .reply {
  2172. display: none;
  2173. }
  2174.  
  2175. p.comment-form-comment {
  2176. margin-bottom: 20px;
  2177. }
  2178.  
  2179. .comment-list li {
  2180. list-style-type: none;
  2181. }
  2182.  
  2183. .comment-reply-title small {
  2184. font-size: 18px;
  2185. font-weight: 400;
  2186. }
  2187.  
  2188. .entry-comments ul.children {
  2189. margin-left: 40px;
  2190. }
  2191.  
  2192. .ping-list .reply {
  2193. display: none;
  2194. }
  2195.  
  2196. /* Widget Areas
  2197. * ========================================================================== */
  2198.  
  2199. .sidebar .widget {
  2200. border-bottom: 1px solid #f2f2f2;
  2201. margin-bottom: 40px;
  2202. padding-bottom: 40px;
  2203. }
  2204.  
  2205. .sidebar .widget:last-child {
  2206. border-bottom: 0;
  2207. }
  2208.  
  2209. .widget-area ul li {
  2210. list-style-type: none;
  2211. margin-bottom: 16px;
  2212. }
  2213.  
  2214. /* Before Footer Widget Area
  2215. * ========================================================================== */
  2216.  
  2217. .before-footer {
  2218. background: #f2f2f2;
  2219. padding: 60px 0;
  2220. }
  2221.  
  2222. @media only screen and ( min-width: 800px ) {
  2223.  
  2224. .before-footer {
  2225. padding: 100px 0;
  2226. }
  2227.  
  2228. .before-footer .enews form {
  2229. margin-left: -10px;
  2230. margin-right: -10px;
  2231. width: calc( 100% + 20px );
  2232. }
  2233.  
  2234. .before-footer .enews form input {
  2235. margin: 0 10px;
  2236. width: calc( 25% - 20px );
  2237. float: left;
  2238. }
  2239. }
  2240.  
  2241.  
  2242. /* Footer Widgets
  2243. * ========================================================================== */
  2244.  
  2245. .footer-widgets {
  2246. padding: 60px 0 0;
  2247. background: #333;
  2248. color: #fff;
  2249. }
  2250.  
  2251. .footer-widgets .widget-area {
  2252. margin-bottom: 40px;
  2253. }
  2254.  
  2255. .footer-widgets a:not(.button) {
  2256. color: #fff;
  2257. opacity: .5;
  2258. }
  2259.  
  2260. .footer-widgets a:not(.button):hover {
  2261. opacity: 1;
  2262. }
  2263.  
  2264. .footer-widgets .widgettitle {
  2265. opacity: 1;
  2266. text-transform: none;
  2267. letter-spacing: 0;
  2268. font-weight: 600;
  2269. font-size: 18px;
  2270. margin-bottom: 30px;
  2271. }
  2272.  
  2273. .footer-widgets .simple-social-icons ul {
  2274. margin-top: 10px !important;
  2275. }
  2276.  
  2277. .footer-widgets .simple-social-icons ul li {
  2278. margin: 0px 24px 12px 0 !important;
  2279. }
  2280.  
  2281. .footer-widgets .simple-social-icons ul li a {
  2282. padding: 0px !important;
  2283. border: 0px !important;
  2284. }
  2285.  
  2286. @media only screen and (min-width: 800px) {
  2287.  
  2288. .footer-widgets {
  2289. padding: 100px 0 0;
  2290. }
  2291.  
  2292. .footer-widgets .widgettitle {
  2293. margin-bottom: 60px;
  2294. }
  2295. }
  2296.  
  2297.  
  2298. /* Site Footer
  2299. * ========================================================================== */
  2300.  
  2301. .site-footer {
  2302. padding: 40px 0;
  2303. background: #333;
  2304. font-size: 14px;
  2305. text-align: center;
  2306. color: #fff;
  2307. }
  2308.  
  2309. .site-footer a {
  2310. color: #fff;
  2311. opacity: .5;
  2312. }
  2313.  
  2314. .site-footer a:hover {
  2315. opacity: 1;
  2316. }
  2317.  
  2318. .site-footer p {
  2319. margin-bottom: 0;
  2320. }
  2321.  
  2322. /* Custom styles by Sridhar */
  2323.  
  2324. /* Slide toggle Gravity Forms form by clicking a link/button in Primary Navigation in Genesis
  2325. ---------------------------------------------------------------------------------------------------- */
  2326.  
  2327. .genesis-nav-menu .nav-form-dropdown {
  2328. position: relative;
  2329. padding: 0;
  2330. min-width: 300px;
  2331. color: #000;
  2332. }
  2333.  
  2334. #nav-form-holder {
  2335. display: none;
  2336. position: absolute;
  2337. top: 72px;
  2338. left: 0;
  2339. right: 0;
  2340. width: 100%;
  2341. padding: 20px;
  2342. background: #e8e8e8;
  2343. border: 1px solid #ddd;
  2344. }
  2345.  
  2346. a#nav-form-toggle {
  2347. color: #fff;
  2348. text-transform: uppercase;
  2349. padding: 15px 0;
  2350. display: block;
  2351. }
  2352.  
  2353. a#nav-form-toggle:hover,
  2354. a#nav-form-toggle.open {
  2355. text-decoration: none;
  2356. }
  2357.  
  2358. a#nav-form-toggle:focus {
  2359. text-decoration: none;
  2360. outline: none;
  2361. }
  2362.  
  2363. a#nav-form-toggle .fa {
  2364. margin-left: 40px;
  2365. font-size: 19px;
  2366. transition: all .4s ease;
  2367. position: relative;
  2368. float: right;
  2369. margin-right: 20px;
  2370. }
  2371.  
  2372. a#nav-form-toggle .fa:before {
  2373. position: absolute;
  2374. }
  2375.  
  2376. .genesis-nav-menu a.gform_anchor {
  2377. padding: 0;
  2378. }
  2379.  
  2380. #nav-form-holder .gform_wrapper {
  2381. max-width: none;
  2382. margin: 0;
  2383. }
  2384.  
  2385. #nav-form-holder .gform_wrapper .gform_heading {
  2386. width: 100%;
  2387. line-height: 1.3;
  2388. margin-bottom: 0;
  2389. }
  2390.  
  2391. body #nav-form-holder .gform_wrapper label.gfield_label+div.ginput_container {
  2392. margin-top: 0;
  2393. }
  2394.  
  2395. #nav-form-holder .gform_wrapper .ginput_complex input[type=text],
  2396. #nav-form-holder .gform_wrapper .hidden_label input.large {
  2397. width: 100%;
  2398. font-size: 12px;
  2399. padding: 5px 3px;
  2400. }
  2401.  
  2402. #nav-form-holder .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
  2403. margin-bottom: 0;
  2404. }
  2405.  
  2406. #nav-form-holder .gform_wrapper li.hidden_label input {
  2407. margin-top: 15px;
  2408. }
  2409.  
  2410. #nav-form-holder .gform_wrapper .top_label .gfield_label {
  2411. text-transform: uppercase;
  2412. margin-top: 16px;
  2413. font-size: 13px;
  2414. margin-bottom: 10px;
  2415. }
  2416.  
  2417. .services-check-boxes ul {
  2418. -moz-column-count: 2;
  2419. -moz-column-gap: 10px;
  2420. -webkit-column-count: 2;
  2421. -webkit-column-gap: 10px;
  2422. column-count: 2;
  2423. column-gap: 10px;
  2424. }
  2425.  
  2426. #nav-form-holder .gform_wrapper .gfield_checkbox li label {
  2427. font-size: 14px;
  2428. line-height: 1.3;
  2429. margin-left: 20px;
  2430. }
  2431.  
  2432. #nav-form-holder .gform_wrapper.gf_browser_chrome .gfield_checkbox li input, .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox] {
  2433. margin-top: 2px;
  2434. }
  2435.  
  2436. #nav-form-holder .gform_wrapper textarea.small {
  2437. width: 100%;
  2438. font-size: 13px;
  2439. padding: 7px;
  2440. }
  2441.  
  2442. #nav-form-holder .gform_wrapper .gform_footer {
  2443. padding: 0;
  2444. }
  2445.  
  2446. #nav-form-holder .gform_footer input.button {
  2447. width: 100%;
  2448. letter-spacing: 0.05em;
  2449. font-weight: bold;
  2450. font-size: 13px;
  2451. }
  2452.  
  2453. #nav-form-holder input:hover[type="submit"] {
  2454. background-color: #ffa500;
  2455. }
  2456.  
  2457. /* Clear placeholder text on focus */
  2458. input:focus::-webkit-input-placeholder { color:transparent; }
  2459. input:focus:-moz-placeholder { color:transparent; } /* Firefox 18- */
  2460. input:focus::-moz-placeholder { color:transparent; } /* Firefox 19+ */
  2461. input:focus:-ms-input-placeholder { color:transparent; } /* oldIE ;) */
  2462.  
  2463. #nav-form-holder .gform_confirmation_message {
  2464. line-height: 1.3;
  2465. }
  2466.  
  2467. #nav-form-holder .gform_wrapper div.validation_error {
  2468. padding: 5px 0;
  2469. font-size: 16px;
  2470. line-height: 1.3;
  2471. margin: 20px 0;
  2472. }
  2473.  
  2474. #nav-form-holder .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  2475. max-width: 95.5%;
  2476. }
  2477.  
  2478. #nav-form-holder .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  2479. margin-bottom: 0 !important;
  2480. }
  2481.  
  2482. @media only screen and (max-width: 960px) {
  2483.  
  2484. .genesis-nav-menu li.nav-form-dropdown.right {
  2485. display: table;
  2486. margin: 0 auto;
  2487. float: none;
  2488. }
  2489.  
  2490. a#nav-form-toggle .fa {
  2491. float: none;
  2492. margin-right: 0;
  2493. }
  2494.  
  2495. a#nav-form-toggle .fa::before {
  2496. position: static;
  2497. }
  2498.  
  2499. a#nav-form-toggle {
  2500. padding: 20px 16px;
  2501. }
  2502.  
  2503. #nav-form-holder {
  2504. top: 66px;
  2505. }
  2506.  
  2507. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement