style.css 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193
  1. @import url("https://use.typekit.net/eqx0vrw.css");
  2. .trajan {
  3. font-family: trajan-pro-3, serif;
  4. font-style: normal;
  5. font-weight: 400;
  6. }
  7. .trajan-small {
  8. font-variant: small-caps;
  9. }
  10. .trajan-semibold {
  11. font-family: trajan-pro-3, serif;
  12. font-style: normal;
  13. font-weight: 600;
  14. }
  15. img.drop {
  16. padding:10px;
  17. margin: 0 0 10px;
  18. background:#eee;
  19. }
  20. img.wrap-left {
  21. padding:10px;
  22. margin: 0 10px 10px 0;
  23. background:#eee;
  24. }
  25. .section {
  26. margin: 0 0 150px;
  27. }
  28. .section-small {
  29. margin: 0 0 50px;
  30. }
  31. p.footer {
  32. line-height:18px;
  33. font-size:14px;
  34. }
  35. span.larger-font {
  36. font-size:32px;
  37. }
  38. .logo img {
  39. padding: 0 0 10px;
  40. }
  41. /* =========== RESET =========== */
  42. img,
  43. legend {
  44. border: 0;
  45. }
  46. legend,
  47. td,
  48. th {
  49. padding: 0;
  50. }
  51. html {
  52. font-family: sans-serif;
  53. -ms-text-size-adjust: 100%;
  54. -webkit-text-size-adjust: 100%;
  55. }
  56. article,
  57. aside,
  58. details,
  59. figcaption,
  60. figure,
  61. footer,
  62. header,
  63. hgroup,
  64. main,
  65. menu,
  66. nav,
  67. section,
  68. summary {
  69. display: block;
  70. }
  71. audio,
  72. canvas,
  73. progress,
  74. video {
  75. display: inline-block;
  76. vertical-align: baseline;
  77. }
  78. audio:not([controls]) {
  79. display: none;
  80. height: 0;
  81. }
  82. [hidden],
  83. template {
  84. display: none;
  85. }
  86. a {
  87. color: #ababab;
  88. background-color: transparent;
  89. }
  90. a:hover,
  91. a:active {
  92. outline: 0;
  93. }
  94. abbr[title] {
  95. border-bottom: 1px dotted;
  96. }
  97. b,
  98. optgroup,
  99. strong {
  100. font-weight: 700;
  101. }
  102. dfn {
  103. font-style: italic;
  104. }
  105. h1 {
  106. font-size: 2em;
  107. margin: .67em 0;
  108. }
  109. mark {
  110. background: #ffffff;
  111. color: #333333;
  112. }
  113. small {
  114. font-size: 80%;
  115. }
  116. sub,
  117. sup {
  118. font-size: 75%;
  119. line-height: 0;
  120. position: relative;
  121. vertical-align: baseline;
  122. }
  123. sup {
  124. top: -0.5em;
  125. }
  126. sub {
  127. bottom: -0.25em;
  128. }
  129. svg:not(:root) {
  130. overflow: hidden;
  131. }
  132. figure {
  133. margin: 1em 40px;
  134. }
  135. hr {
  136. -moz-box-sizing: content-box;
  137. box-sizing: content-box;
  138. height: 0;
  139. }
  140. pre,
  141. textarea {
  142. overflow: auto;
  143. }
  144. code,
  145. kbd,
  146. pre,
  147. samp {
  148. font-family: monospace, monospace;
  149. font-size: 1em;
  150. }
  151. button,
  152. input,
  153. optgroup,
  154. select,
  155. textarea {
  156. color: inherit;
  157. font: inherit;
  158. margin: 0;
  159. }
  160. button {
  161. overflow: visible;
  162. }
  163. button,
  164. select {
  165. text-transform: none;
  166. }
  167. button,
  168. html input[type=button],
  169. input[type=reset],
  170. input[type=submit] {
  171. -webkit-appearance: button;
  172. cursor: pointer;
  173. }
  174. button[disabled],
  175. html input[disabled] {
  176. cursor: default;
  177. }
  178. button::-moz-focus-inner,
  179. input::-moz-focus-inner {
  180. border: 0;
  181. padding: 0;
  182. }
  183. input {
  184. border-radius: 0;
  185. line-height: normal;
  186. }
  187. input[type=checkbox],
  188. input[type=radio] {
  189. box-sizing: border-box;
  190. padding: 0;
  191. }
  192. input[type=number]::-webkit-inner-spin-button,
  193. input[type=number]::-webkit-outer-spin-button {
  194. height: auto;
  195. }
  196. input[type=search] {
  197. -webkit-appearance: textfield;
  198. -moz-box-sizing: content-box;
  199. -webkit-box-sizing: content-box;
  200. box-sizing: content-box;
  201. }
  202. input[type=search]::-webkit-search-cancel-button,
  203. input[type=search]::-webkit-search-decoration {
  204. -webkit-appearance: none;
  205. }
  206. fieldset {
  207. border: 1px solid #333333;
  208. margin: 0 2px;
  209. padding: .35em .625em .75em;
  210. }
  211. table {
  212. border-collapse: collapse;
  213. border-spacing: 0;
  214. }
  215. a,
  216. input,
  217. textarea,
  218. button,
  219. select {
  220. outline: none;
  221. }
  222. a:hover,
  223. a:focus,
  224. input:focus,
  225. textarea:focus,
  226. button:focus,
  227. select:focus {
  228. outline: none !important;
  229. text-decoration: none;
  230. }
  231. * {
  232. -webkit-box-sizing: border-box;
  233. -moz-box-sizing: border-box;
  234. box-sizing: border-box;
  235. }
  236. :after,
  237. :before {
  238. -webkit-box-sizing: border-box;
  239. -moz-box-sizing: border-box;
  240. box-sizing: border-box;
  241. }
  242. input::-webkit-input-placeholder,
  243. textarea::-webkit-input-placeholder {
  244. color: #ababab;
  245. }
  246. input:-moz-placeholder,
  247. textarea:-moz-placeholder {
  248. color: #ababab;
  249. }
  250. /* =========== TYPE =========== */
  251. h1,
  252. .h1,
  253. h2,
  254. .h2,
  255. h3,
  256. .h3,
  257. h4,
  258. .h4,
  259. h5,
  260. .h5,
  261. h6,
  262. .h6 {
  263. font-family: Helvetica, Sans-Serif;
  264. color: #777;
  265. font-weight: 400;
  266. line-height: 1.2em;
  267. margin-bottom: 20px;
  268. margin-top: 0;
  269. }
  270. h1 > a,
  271. .h1 > a,
  272. h2 > a,
  273. .h2 > a,
  274. h3 > a,
  275. .h3 > a,
  276. h4 > a,
  277. .h4 > a,
  278. h5 > a,
  279. .h5 > a,
  280. h6 > a,
  281. .h6 > a {
  282. color: inherit;
  283. }
  284. h1,
  285. .h1 {
  286. font-size: 36px;
  287. }
  288. h2,
  289. .h2 {
  290. font-size: 30px;
  291. }
  292. h3,
  293. .h3 {
  294. font-size: 26px;
  295. }
  296. h4,
  297. .h4 {
  298. font-size: 22px;
  299. }
  300. h5,
  301. .h5 {
  302. font-size: 18px;
  303. }
  304. h6,
  305. .h6 {
  306. font-size: 14px;
  307. }
  308. a {
  309. color: #ababab;
  310. text-decoration: none;
  311. -webkit-transition: all 0.3s ease;
  312. -moz-transition: all 0.3s ease;
  313. -ms-transition: all 0.3s ease;
  314. -o-transition: all 0.3s ease;
  315. transition: all 0.3s ease;
  316. }
  317. a:hover {
  318. color: #000000 !important;
  319. }
  320. .quicklinks a:hover,
  321. .quicklinks a:active,
  322. .quicklinks a:focus {
  323. color: #00b9eb !important;
  324. }
  325. p {
  326. margin-top: 0;
  327. margin-bottom: 10px;
  328. }
  329. code,
  330. kbd,
  331. pre,
  332. samp {
  333. font-family: 'Lato', serif;
  334. -webkit-border-radius: 0;
  335. -moz-border-radius: 0;
  336. -ms-border-radius: 0;
  337. -o-border-radius: 0;
  338. border-radius: 0;
  339. }
  340. code {
  341. background-color: #eee;
  342. letter-spacing: 0.015em;
  343. }
  344. abbr {
  345. background-color: #A1D71A;
  346. color: #111;
  347. border-width: 2px;
  348. }
  349. mark,
  350. .mark {
  351. color: #ffffff;
  352. background-color: #a4b4c4;
  353. }
  354. dfn {
  355. border-bottom: 1px dashed;
  356. }
  357. cite {
  358. font-style: normal;
  359. }
  360. blockquote {
  361. position: relative;
  362. border: 0;
  363. padding: 0 0 0 40px;
  364. margin: 20px 0;
  365. font-style: italic;
  366. overflow: hidden;
  367. font-size: 13px;
  368. }
  369. blockquote p:last-child {
  370. margin-bottom: 0;
  371. }
  372. blockquote:before {
  373. position: absolute;
  374. left: 0;
  375. top: 0;
  376. content: '\f10d';
  377. font-family: 'FontAwesome';
  378. display: inline-block;
  379. color: #ababab;
  380. font-size: 24px;
  381. }
  382. blockquote footer,
  383. blockquote cite {
  384. font-size: 12px;
  385. color: #333333;
  386. font-weight: 700;
  387. }
  388. blockquote footer:before,
  389. blockquote cite:before {
  390. content: '- ';
  391. color: #333333;
  392. }
  393. blockquote footer:after,
  394. blockquote cite:after {
  395. content: ' ';
  396. color: #333333;
  397. }
  398. pre {
  399. line-height: 1.8em;
  400. padding: 15px;
  401. border: 1px solid #E4E4E4;
  402. font-style: italic;
  403. overflow: auto;
  404. white-space: pre-wrap;
  405. background-color: #f7f7f7;
  406. word-wrap: break-word;
  407. max-width: 100%;
  408. }
  409. img {
  410. max-width: 100%;
  411. height: auto;
  412. vertical-align: middle;
  413. border: 0;
  414. }
  415. input[type="search"],
  416. input[type="text"],
  417. input[type="url"],
  418. input[type="number"],
  419. input[type="password"],
  420. input[type="email"],
  421. input[type="file"],
  422. select,
  423. textarea {
  424. width: 100%;
  425. border: 1px solid #ababab;
  426. -webkit-transition: all 0.3s ease;
  427. -moz-transition: all 0.3s ease;
  428. -ms-transition: all 0.3s ease;
  429. -o-transition: all 0.3s ease;
  430. transition: all 0.3s ease;
  431. -webkit-box-sizing: border-box;
  432. -moz-box-sizing: border-box;
  433. box-sizing: border-box;
  434. -webkit-appearance: none;
  435. }
  436. ::-moz-selection {
  437. color: #f7f7f7;
  438. background-color: #222222;
  439. }
  440. ::selection {
  441. color: #f7f7f7;
  442. background-color: #222222;
  443. }
  444. iframe {
  445. border: 0;
  446. max-width: 100%;
  447. }
  448. /* =========== BODY =========== */
  449. body {
  450. margin: 0;
  451. padding: 100px 0 0;
  452. font-family: Helvetica, Sans-Serif;
  453. font-size: 15px;
  454. background: #fff;
  455. color: #777;
  456. overflow-x: hidden;
  457. line-height: 24px;
  458. word-spacing: 1px;
  459. }
  460. .container {
  461. max-width: 1000px;
  462. }
  463. .mobile {
  464. display: none;
  465. margin-bottom: 60px;
  466. }
  467. .mobile .menu-mobile {
  468. width: 60px;
  469. height: 60px;
  470. display: inline-block;
  471. position: fixed;
  472. z-index: 999;
  473. }
  474. .mobile .menu-mobile .item {
  475. display: block;
  476. width: 22px;
  477. height: 2px;
  478. background-color: #000000;
  479. position: relative;
  480. }
  481. .mobile .menu-mobile .item-1 {
  482. top: 23px;
  483. }
  484. .mobile .menu-mobile .item-2 {
  485. top: 29px;
  486. }
  487. .mobile .menu-mobile .item-3 {
  488. top: 35px;
  489. }
  490. .mobile .logo {
  491. padding-bottom: 0;
  492. padding-top: 10px;
  493. text-align: center;
  494. }
  495. .hide-menu {
  496. position: fixed;
  497. top: 0;
  498. left: 0;
  499. right: 0;
  500. bottom: 0;
  501. z-index: 998;
  502. background-color: rgba(0, 0, 0, 0.7);
  503. visibility: hidden;
  504. opacity: 0;
  505. -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
  506. -moz-transition: visibility 0.3s ease, opacity 0.3s ease;
  507. -ms-transition: visibility 0.3s ease, opacity 0.3s ease;
  508. -o-transition: visibility 0.3s ease, opacity 0.3s ease;
  509. transition: visibility 0.3s ease, opacity 0.3s ease;
  510. }
  511. /* =========== HEADER MENU =========== */
  512. .header {
  513. width: 220px;
  514. top: 100px;
  515. text-align: right;
  516. z-index: 9;
  517. position:absolute;
  518. }
  519. .header-text {
  520. margin-bottom: 50px;
  521. }
  522. .header-text blockquote {
  523. font-size: 16px;
  524. padding-left: 50px;
  525. }
  526. .header-text blockquote:before {
  527. font-size: 30px;
  528. }
  529. .menu-left .header {
  530. text-align: left;
  531. }
  532. .menu-left .main-menu .sub-menu {
  533. padding-left: 0;
  534. padding-right: 20px;
  535. right: 100%;
  536. left: auto;
  537. text-align: right;
  538. }
  539. .main-menu {
  540. font-family: Helvetica, Sans-Serif;
  541. letter-spacing: 1px;
  542. font-size: 18px;
  543. line-height: 24px;
  544. padding: 0 0 40px;
  545. }
  546. .main-menu ul,
  547. .main-menu li {
  548. list-style: none;
  549. padding: 0;
  550. margin: 0;
  551. }
  552. .main-menu .menu-list > li > a {
  553. padding-top: 3px;
  554. padding-bottom: 3px;
  555. display: block;
  556. }
  557. .main-menu .active a {
  558. color: #000000;
  559. }
  560. .main-menu li {
  561. position: relative;
  562. }
  563. .main-menu li:hover > .sub-menu {
  564. opacity: 1;
  565. visibility: visible;
  566. }
  567. .main-menu .sub-menu {
  568. position: absolute;
  569. width: 200px;
  570. top: 0;
  571. left: 100%;
  572. font-size: 14px;
  573. text-align: left;
  574. visibility: hidden;
  575. padding-left: 20px;
  576. opacity: 0;
  577. }
  578. .main-menu .sub-menu li {
  579. padding-left: 20px;
  580. padding-right: 20px;
  581. background-color: #ababab;
  582. }
  583. .main-menu .sub-menu li:first-child {
  584. padding-top: 10px;
  585. }
  586. .main-menu .sub-menu li:last-child {
  587. padding-bottom: 10px;
  588. }
  589. .main-menu .sub-menu a {
  590. color: #000000 !important;
  591. }
  592. .logo {
  593. font-size: 40px;
  594. color: #000000;
  595. text-transform: uppercase;
  596. padding-bottom: 10px;
  597. letter-spacing: 2px;
  598. line-height: 40px;
  599. }
  600. .logo a {
  601. color: inherit;
  602. }
  603. .socials {
  604. padding-top: 50px;
  605. }
  606. .socials a {
  607. margin-right: 8px;
  608. font-size: 14px;
  609. }
  610. .socials .fa-search {
  611. color: #000000;
  612. }
  613. .box-search {
  614. position: fixed;
  615. top: 0;
  616. left: 0;
  617. width: 100%;
  618. height: 100%;
  619. z-index: 999;
  620. background-color: #ffffff;
  621. opacity: 0;
  622. visibility: hidden;
  623. -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  624. -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
  625. -ms-transition: opacity 0.3s ease, visibility 0.3s ease;
  626. -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  627. transition: opacity 0.3s ease, visibility 0.3s ease;
  628. }
  629. .box-search input[type="search"] {
  630. height: 50px;
  631. font-size: 24px;
  632. padding-top: 0;
  633. border: none;
  634. border-bottom: 1px solid #000000;
  635. }
  636. .box-search.active {
  637. opacity: 1;
  638. visibility: visible;
  639. }
  640. .search-form {
  641. margin-left: auto;
  642. margin-right: auto;
  643. max-width: 600px;
  644. position: relative;
  645. padding-bottom: 200px;
  646. padding-top: 100px;
  647. }
  648. .kd-close {
  649. position: absolute;
  650. width: 50px;
  651. height: 50px;
  652. display: inline-block;
  653. top: 0;
  654. right: 0;
  655. cursor: pointer;
  656. font-size: 24px;
  657. color: #000000;
  658. background-color: #ffffff;
  659. line-height: 48px;
  660. text-align: center;
  661. -webkit-border-radius: 50%;
  662. -moz-border-radius: 50%;
  663. border-radius: 50%;
  664. }
  665. .kd-close:before {
  666. content: '';
  667. width: 30px;
  668. height: 2px;
  669. background-color: #000000;
  670. display: block;
  671. -webkit-transform: rotate(44deg) translate(26px, 10px);
  672. -moz-transform: rotate(44deg) translate(26px, 10px);
  673. transform: rotate(44deg) translate(26px, 10px);
  674. }
  675. .kd-close:after {
  676. content: '';
  677. width: 30px;
  678. height: 2px;
  679. background-color: #000000;
  680. display: block;
  681. -webkit-transform: rotate(-46deg) translate(-10px, 24px);
  682. -moz-transform: rotate(-46deg) translate(-10px, 24px);
  683. transform: rotate(-46deg) translate(-10px, 24px);
  684. }
  685. .copyright {
  686. font-size: 12px;
  687. color: #ababab;
  688. }
  689. /* =========== 5. Projects =========== */
  690. .projects {
  691. padding-left: 80px;
  692. padding-right: 50px;
  693. }
  694. .project-item {
  695. position: relative;
  696. margin-bottom: 40px;
  697. }
  698. .project-item:last-child {
  699. margin-bottom: 0;
  700. }
  701. .project-item .title {
  702. position: absolute;
  703. top: 20px;
  704. left: 20px;
  705. opacity: 0;
  706. visibility: hidden;
  707. }
  708. .project-item .title a {
  709. background-color: #000000;
  710. color: #ffffff;
  711. font-size: 14px;
  712. display: inline-block;
  713. line-height: 24px;
  714. padding-left: 10px;
  715. padding-right: 10px;
  716. opacity: 1;
  717. letter-spacing: 1px;
  718. }
  719. .project-item .title a:hover {
  720. color: #ffffff !important;
  721. opacity: 0.7;
  722. }
  723. .project-item:hover .title {
  724. opacity: 1;
  725. visibility: visible;
  726. -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  727. -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  728. -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  729. -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  730. transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  731. }
  732. .pagination-wrap {
  733. margin-top: 60px;
  734. font-family: 'Roboto', serif;
  735. }
  736. .pagination-wrap ul {
  737. list-style: none;
  738. margin: 0;
  739. padding: 0;
  740. text-align: center;
  741. }
  742. .pagination-wrap ul:after {
  743. content: '';
  744. display: block;
  745. clear: both;
  746. }
  747. .pagination-wrap ul span {
  748. display: block;
  749. }
  750. .pagination-wrap ul li {
  751. display: inline-block;
  752. overflow: hidden;
  753. font-size: 18px;
  754. padding-left: 5px;
  755. padding-right: 5px;
  756. }
  757. .pagination-wrap ul li .current {
  758. color: #000000;
  759. }
  760. .navigation-wrap {
  761. margin-top: 50px;
  762. text-align: center;
  763. }
  764. .navigation-wrap:after {
  765. content: '';
  766. clear: both;
  767. display: block;
  768. }
  769. .navigation-wrap a {
  770. display: inline-block;
  771. width: 50px;
  772. height: 40px;
  773. line-height: 40px;
  774. margin-right: 10px;
  775. background-color: #cccccc;
  776. opacity: 1;
  777. -webkit-transition: opacity 0.3s ease;
  778. -moz-transition: opacity 0.3s ease;
  779. -ms-transition: opacity 0.3s ease;
  780. -o-transition: opacity 0.3s ease;
  781. transition: opacity 0.3s ease;
  782. }
  783. .navigation-wrap a:last-child {
  784. margin-right: 0;
  785. }
  786. .navigation-wrap a:hover {
  787. opacity: 0.8;
  788. }
  789. .project .detail-content {
  790. padding: 50px;
  791. background-color: #eeeeee;
  792. }
  793. .project .title {
  794. color: #000000;
  795. margin-bottom: 30px;
  796. }
  797. .project a {
  798. color: #000000 !important;
  799. font-weight: 700;
  800. }
  801. .project .project-attributes {
  802. margin-top: 20px;
  803. font-size: 12px;
  804. }
  805. .project .project-attributes .socials {
  806. padding-top: 0;
  807. }
  808. .project table {
  809. width: 100%;
  810. }
  811. .project .name {
  812. font-weight: 700;
  813. width: 30%;
  814. text-align: left;
  815. padding-bottom: 10px;
  816. }
  817. .project .value {
  818. font-style: italic;
  819. width: 70%;
  820. padding-bottom: 10px;
  821. }
  822. .project .images-project {
  823. margin-top: 50px;
  824. }
  825. .project .popup img {
  826. margin-bottom: 30px;
  827. }
  828. .project .popup:last-child img {
  829. margin-bottom: 0;
  830. }
  831. /* =========== 6. Posts =========== */
  832. .post {
  833. margin-bottom: 40px;
  834. }
  835. .post:last-child {
  836. margin-bottom: 0;
  837. }
  838. .post .post-content {
  839. background-color: #eeeeee;
  840. padding: 50px 50px 40px;
  841. }
  842. .title {
  843. margin-top: 0;
  844. margin-bottom: 5px;
  845. line-height: 24px;
  846. color: #000000;
  847. font-size: 24px;
  848. letter-spacing: 1px;
  849. }
  850. .post-details {
  851. font-style: italic;
  852. font-size: 12px;
  853. }
  854. .post-details a {
  855. display: inline-block;
  856. }
  857. .post-details a:after {
  858. content: '//';
  859. margin-left: 5px;
  860. margin-right: 5px;
  861. }
  862. .post-details a:last-child:after {
  863. content: normal;
  864. }
  865. .the-content {
  866. margin-top: 20px;
  867. }
  868. .the-content p:last-child {
  869. margin-bottom: 0;
  870. }
  871. .the-content ul,
  872. .the-content ol {
  873. font-size: 13px;
  874. font-style: italic;
  875. padding-left: 20px;
  876. }
  877. .the-content ul li,
  878. .the-content ol li {
  879. margin-bottom: 5px;
  880. }
  881. .the-content ul > li:last-child,
  882. .the-content ol > li:last-child {
  883. margin-bottom: 0;
  884. }
  885. .post-footer {
  886. margin-top: 30px;
  887. }
  888. .cat strong {
  889. margin-right: 5px;
  890. }
  891. .cat a {
  892. color: #000000;
  893. }
  894. .cat a:after {
  895. content: ',';
  896. margin-right: 5px;
  897. }
  898. .cat a:last-child:after {
  899. content: normal;
  900. }
  901. .post-tags a {
  902. opacity: 1;
  903. display: inline-block;
  904. color: #000000;
  905. }
  906. .post-tags a:before {
  907. margin-left: 5px;
  908. content: '#';
  909. }
  910. .post-tags a:first-child:before {
  911. margin-left: 0;
  912. }
  913. .post-tags a:hover {
  914. opacity: 0.8;
  915. }
  916. .post-share {
  917. text-align: center;
  918. padding-top: 10px;
  919. margin-bottom: 30px;
  920. }
  921. .post-share a {
  922. color: #000000;
  923. margin-left: 5px;
  924. margin-right: 5px;
  925. }
  926. .the-excerpt {
  927. margin-top: 20px;
  928. }
  929. .contact-item {
  930. margin-bottom: 20px;
  931. }
  932. .contact-item:last-child {
  933. margin-bottom: 0;
  934. }
  935. .contact-item textarea {
  936. padding-top: 5px;
  937. height: 100px;
  938. resize: vertical;
  939. }
  940. .contact-item .submit {
  941. display: inline-block;
  942. min-width: 100px;
  943. padding-left: 20px;
  944. padding-right: 20px;
  945. background-color: #000000;
  946. color: #ffffff;
  947. border: none;
  948. height: 36px;
  949. text-transform: uppercase;
  950. font-size: 12px;
  951. letter-spacing: 1px;
  952. }
  953. .post_404_not_found {
  954. margin-top: 20px;
  955. }
  956. .go-to-home {
  957. min-width: 100px;
  958. padding: 5px 15px;
  959. display: inline-block;
  960. background-color: #000000;
  961. color: #ffffff;
  962. margin-top: 10px;
  963. }
  964. .go-to-home a {
  965. color: inherit;
  966. opacity: 1;
  967. }
  968. .go-to-home a:hover {
  969. color: inherit !important;
  970. opacity: 0.8;
  971. }
  972. /* =========== FOOTER =========== */
  973. .footer-inner {
  974. margin-top: 80px;
  975. border-top: 1px solid #ababab;
  976. padding-top: 40px;
  977. padding-bottom: 40px;
  978. margin-left: 80px;
  979. margin-right: 50px;
  980. font-size: 12px;
  981. }
  982. .footer-inner .title {
  983. font-size: 14px;
  984. font-weight: 700;
  985. }
  986. .footer-inner ul {
  987. list-style: none;
  988. font-size: 12px;
  989. margin: 0;
  990. padding: 0;
  991. }
  992. /* =========== LOADER =========== */
  993. #preload {
  994. top: 0;
  995. left: 0;
  996. bottom: 0;
  997. right: 0;
  998. margin: auto;
  999. position: fixed;
  1000. width: 100%;
  1001. height: 100%;
  1002. background-color: #fff;
  1003. z-index: 9999999;
  1004. display: flex;
  1005. align-items: center;
  1006. justify-content: center;
  1007. overflow: hidden;
  1008. }
  1009. #preload .kd-bounce {
  1010. width: 40px;
  1011. height: 40px;
  1012. position: relative;
  1013. margin: 40px auto;
  1014. }
  1015. #preload .kd-bounce:before,
  1016. #preload .kd-bounce:after {
  1017. content: '';
  1018. display: block;
  1019. width: 100%;
  1020. height: 100%;
  1021. border-radius: 50%;
  1022. background-color: #242424;
  1023. opacity: 0.4;
  1024. position: absolute;
  1025. top: 0;
  1026. left: 0;
  1027. animation: kd-bounce 2.4s infinite ease-in-out;
  1028. }
  1029. #preload .kd-bounce:after {
  1030. animation-delay: -1.2s;
  1031. }
  1032. @keyframes kd-bounce {
  1033. 0%,
  1034. 100% {
  1035. transform: scale(0);
  1036. }
  1037. 50% {
  1038. transform: scale(1);
  1039. }
  1040. }
  1041. /* =========== MOBILE =========== */
  1042. @media screen and (max-width: 991px) {
  1043. .preload {
  1044. display: none;
  1045. }
  1046. .mobile {
  1047. display: block;
  1048. }
  1049. .mobile .logo {
  1050. font-size: 30px;
  1051. padding-left: 20px;
  1052. }
  1053. body {
  1054. padding-top: 50px;
  1055. }
  1056. .header,
  1057. .menu-left .header {
  1058. top:0;
  1059. bottom:0;
  1060. left:0;
  1061. padding:30px;
  1062. width: 260px;
  1063. z-index: 9999;
  1064. background-color: #fff;
  1065. text-align: center;
  1066. -webkit-transform: translateX(-101%);
  1067. -moz-transform: translateX(-101%);
  1068. transform: translateX(-101%);
  1069. -webkit-transition: transform 0.3s ease;
  1070. -moz-transition: transform 0.3s ease;
  1071. -ms-transition: transform 0.3s ease;
  1072. -o-transition: transform 0.3s ease;
  1073. transition: transform 0.3s ease;
  1074. }
  1075. .header .logo,
  1076. .menu-left .header .logo {
  1077. color: #ffffff;
  1078. }
  1079. .header.active,
  1080. .menu-left .header.active {
  1081. -webkit-transform: translateX(0);
  1082. -moz-transform: translateX(0);
  1083. transform: translateX(0);
  1084. }
  1085. .main-menu,
  1086. .menu-left .main-menu {
  1087. max-height: 45%;
  1088. overflow-y: auto;
  1089. overflow-x: hidden;
  1090. }
  1091. .main-menu a:hover,
  1092. .menu-left .main-menu a:hover {
  1093. color: #ffffff !important;
  1094. }
  1095. .main-menu .active a,
  1096. .menu-left .main-menu .active a {
  1097. color: #ffffff;
  1098. }
  1099. .main-menu .sub-menu,
  1100. .menu-left .main-menu .sub-menu {
  1101. display: none;
  1102. position: relative;
  1103. width: 100%;
  1104. left: 0;
  1105. visibility: visible;
  1106. opacity: 1;
  1107. padding-left: 0;
  1108. text-align: center;
  1109. }
  1110. .main-menu .sub-menu li,
  1111. .menu-left .main-menu .sub-menu li,
  1112. .main-menu .sub-menu li:first-child,
  1113. .menu-left .main-menu .sub-menu li:first-child,
  1114. .main-menu .sub-menu li:last-child,
  1115. .menu-left .main-menu .sub-menu li:last-child {
  1116. padding-top: 5px;
  1117. padding-bottom: 5px;
  1118. }
  1119. .projects {
  1120. padding-left: 50px;
  1121. padding-right: 50px;
  1122. }
  1123. .footer-inner {
  1124. margin-left: 50px;
  1125. margin-right: 50px;
  1126. }
  1127. .socials a {
  1128. margin-right: 10px;
  1129. }
  1130. .socials .fa-search {
  1131. color: #ffffff;
  1132. }
  1133. .hide-menu.active {
  1134. visibility: visible;
  1135. opacity: 1;
  1136. }
  1137. }
  1138. @media screen and (max-width: 768px) {
  1139. body {
  1140. padding-top: 30px;
  1141. }
  1142. }
  1143. @media screen and (max-width: 600px) {
  1144. .mobile .logo {
  1145. font-size: 27px;
  1146. padding-left: 20px;
  1147. }
  1148. }
  1149. @media screen and (max-width: 480px) {
  1150. .projects {
  1151. padding-left: 0;
  1152. padding-right: 0;
  1153. }
  1154. .footer-inner {
  1155. margin-left: 0;
  1156. margin-right: 0;
  1157. }
  1158. .mobile {
  1159. margin-bottom: 50px;
  1160. }
  1161. .mobile .logo {
  1162. font-size: 25px;
  1163. padding-left: 30px;
  1164. }
  1165. .navigation-wrap {
  1166. margin-top: 30px;
  1167. }
  1168. .footer-inner {
  1169. margin-top: 50px;
  1170. }
  1171. }