Diligent web site
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

style.css 52KB

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