Diligent web site
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 52KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610
  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. height: 100vh;
  680. -webkit-background-size: cover;
  681. -moz-background-size: cover;
  682. -o-background-size: cover;
  683. background-size: cover;
  684. overflow: hidden;
  685. }
  686. #intro {
  687. height: 560px;
  688. position: relative;
  689. }
  690. #hexagon-overlay {
  691. background: url(images/hexagon_pat.png) repeat;
  692. width: 100%;
  693. height: 100vh;
  694. position: absolute;
  695. left: 0;
  696. top: 0;
  697. opacity: .5;
  698. }
  699. .welcome-box {
  700. margin: 0 auto;
  701. padding-top: 221px;
  702. text-align: center;
  703. }
  704. .welcome-box .outer-hex {
  705. width: 246px;
  706. height: 282px;
  707. }
  708. .welcome-box .inner-hex {
  709. width: 220px;
  710. height: 254px;
  711. }
  712. .welcome-box .outer-hex {
  713. background-color: #00000082 !important;
  714. }
  715. .welcome-box .welcometext,
  716. .welcome-box .sitename {
  717. font-family: 'bebas_neue', Helvetica, Arial, sans-serif;
  718. font-weight: normal;
  719. color: #fff;
  720. padding: 0;
  721. }
  722. .welcome-box h2.welcometext {
  723. font-size: 18px;
  724. padding-top: 90px;
  725. margin-bottom: -13px;
  726. }
  727. .welcome-box h3.sitename {
  728. font-size: 50px;
  729. margin-bottom: -7px;
  730. }
  731. .welcome-box p.info {
  732. font-size: 12px;
  733. font-weight: bold;
  734. }
  735. .welcome-box .hex-area {
  736. background-image: url('images/diligent.png');
  737. background-size:255px;
  738. background-position-x: -15px;
  739. }
  740. .chosen-item-1 .outer-hex,
  741. .chosen-item-2 .outer-hex,
  742. .chosen-item-3 .outer-hex,
  743. .note-1 .outer-hex {
  744. width: 124px;
  745. height: 140px;
  746. }
  747. .chosen-item-1 .inner-hex,
  748. .chosen-item-2 .inner-hex,
  749. .chosen-item-3 .inner-hex,
  750. .note-1 .inner-hex {
  751. width: 98px;
  752. height: 112px;
  753. }
  754. .chosen-item-1 {
  755. position: absolute;
  756. bottom: 129px;
  757. right: 47px;
  758. }
  759. .chosen-item-2 {
  760. position: absolute;
  761. bottom: 37px;
  762. right: -5px;
  763. }
  764. .chosen-item-3 {
  765. position: absolute;
  766. bottom: 37px;
  767. right: 100px;
  768. }
  769. .note-1 {
  770. position: absolute;
  771. top: 110px;
  772. left: 33px;
  773. z-index: 2;
  774. }
  775. .note-1 .note-tooltip1 {
  776. position: inherit;
  777. font-size: 24px;
  778. color: #e5e5e5;
  779. font-weight: normal;
  780. font-family: 'bebas_neue', Helvetica, Arial, sans-serif;
  781. top: 50px;
  782. left: 125px;
  783. width: 100px;
  784. }
  785. .note-1 .note-tooltip2 {
  786. position: inherit;
  787. font-size: 18px;
  788. color: #959595;
  789. font-weight: normal;
  790. font-family: 'bebas_neue', Helvetica, Arial, sans-serif;
  791. top: 75px;
  792. left: 125px;
  793. width: 100px;
  794. }
  795. /* 6. About
  796. /*-----------------------------------------------------------------------------------*/
  797. #about-wrap,
  798. #contact-wrap {
  799. overflow: hidden;
  800. }
  801. .about-item,
  802. .serevices-item {
  803. text-align: center;
  804. padding: 180px 0;
  805. }
  806. .about-item .outer-hex,
  807. .services-item .outer-hex {
  808. width: 104px;
  809. height: 120px;
  810. }
  811. .about-item .inner-hex,
  812. .services-item .inner-hex {
  813. width: 78px;
  814. height: 92px;
  815. }
  816. .important-info {
  817. position: absolute;
  818. bottom: 60px;
  819. left: 50%;
  820. margin-left: -280px;
  821. height: 55px;
  822. width: 560px;
  823. background-color: #1d1d1d;
  824. z-index: 8;
  825. text-align: center;
  826. }
  827. .important-info p {
  828. font-size: 14px;
  829. padding-top: 18px;
  830. color: #eee;
  831. }
  832. .important-box .outer-hex {
  833. width: 49px;
  834. height: 69px;
  835. }
  836. .important-box .inner-hex {
  837. width: 35px;
  838. height: 42px;
  839. }
  840. .about-item .hex-area,
  841. .important-box .hex-area,
  842. .services-item .hex-area {
  843. background-color: #1d1d1d;
  844. display: table;
  845. }
  846. .about-item i,
  847. .important-box i,
  848. .services-item i {
  849. color: #fff;
  850. font-size: 40px;
  851. text-align: center;
  852. display: table-cell;
  853. vertical-align: middle;
  854. }
  855. .important-box i {
  856. font-size: 20px;
  857. }
  858. .important-box {
  859. position: inherit;
  860. top: -7px;
  861. }
  862. .important-box.fl {
  863. left: -24px;
  864. }
  865. .important-box.fr {
  866. right: -24px;
  867. }
  868. .about-item h3 {
  869. font-size: 24px;
  870. padding: 10px 0;
  871. }
  872. .about-item p {
  873. font-size: 12px;
  874. }
  875. .about-item.highlight {
  876. background-color: #fff;
  877. }
  878. /* 7. Team
  879. /*-----------------------------------------------------------------------------------*/
  880. .team-members {
  881. padding-top: 155px;
  882. }
  883. .team-item {
  884. margin: 0 auto;
  885. text-align: center;
  886. padding-bottom: 85px;
  887. }
  888. .team-item h3 {
  889. font-size: 30px;
  890. font-weight: bold;
  891. padding: 20px 0 0;
  892. }
  893. .team-item h6 {
  894. font-size: 12px;
  895. font-weight: bold;
  896. padding: 0;
  897. color: #fff;
  898. }
  899. .team-item p {
  900. padding: 15px 0 20px;
  901. width: 200px;
  902. margin: 0 auto;
  903. }
  904. .team-item .outer-hex {
  905. width: 288px;
  906. height: 332px;
  907. }
  908. .team-item .inner-hex {
  909. width: 264px;
  910. height: 304px;
  911. }
  912. .team-item .outer-hex {
  913. background-color: #000;
  914. transition: background-color 0.8s ease;
  915. }
  916. .team-item .socials {
  917. padding-top: 122px;
  918. display: none;
  919. }
  920. .team-item .skills .skill {
  921. padding: 5px 0;
  922. }
  923. .team-item .skill-degree {
  924. width: 12px;
  925. height: 7px;
  926. background: #595959;
  927. }
  928. .team-item .skill-degree:before {
  929. top: -3px;
  930. border-left: 6px solid transparent;
  931. border-right: 6px solid transparent;
  932. border-bottom: 3px solid #595959;
  933. }
  934. .team-item .skill-degree:after {
  935. bottom: -3px;
  936. border-left: 6px solid transparent;
  937. border-right: 6px solid transparent;
  938. border-top: 3px solid #595959;
  939. }
  940. .team-item .skill-name,
  941. .team-item .skill-degree {
  942. display: inline-block;
  943. }
  944. .team-item .skill-name {
  945. padding-right: 10px;
  946. font-weight: bold;
  947. color: #fff;
  948. }
  949. .team-item .skill-degree {
  950. margin-right: 2px;
  951. }
  952. .team-item .member-face {
  953. background-position: 50% 50%;
  954. }
  955. /* 8. Services
  956. /*-----------------------------------------------------------------------------------*/
  957. .services-intro {
  958. padding-bottom: 100px;
  959. }
  960. .services-item .hive {
  961. float: left;
  962. width: 25%;
  963. }
  964. .services-item {
  965. padding-bottom: 35px;
  966. }
  967. .services-item .services-info {
  968. float: right;
  969. width: 75%;
  970. padding-left: 20px;
  971. }
  972. .services-item .services-info h3 {
  973. padding: 27px 0 0;
  974. font-size: 24px;
  975. font-weight: bold;
  976. }
  977. /* 9. Gallery
  978. /*-----------------------------------------------------------------------------------*/
  979. .gallery-item {
  980. width: 181px;
  981. float: left;
  982. margin-right: 4px;
  983. }
  984. .gallery-item .gallery-info {
  985. display: block;
  986. position: relative;
  987. top: -999px;
  988. }
  989. .gallery-box .gallery-item:nth-child(n+5) {
  990. margin-top: -81px;
  991. }
  992. .gallery-box .gallery-4s-first {
  993. margin-left: 92px;
  994. }
  995. .gallery-box {
  996. text-align: center;
  997. }
  998. .gallery-item .outer-hex {
  999. width: 206px;
  1000. height: 242px;
  1001. }
  1002. .gallery-item .inner-hex {
  1003. width: 180px;
  1004. height: 214px;
  1005. }
  1006. .gallery-item-overlay .outer-hex {
  1007. width: 181px;
  1008. height: 214px;
  1009. }
  1010. .gallery-item-overlay .inner-hex {
  1011. width: 150px;
  1012. height: 185px;
  1013. }
  1014. .gallery-item-overlay .hex-area {
  1015. background-color: rgba(0,0,0,0.1);
  1016. }
  1017. .gallery-item-overlay .outer-hex {
  1018. background-color: transparent;
  1019. }
  1020. .gallery-item .socials {
  1021. padding-top: 60px;
  1022. }
  1023. .gallery-item .socials li {
  1024. padding: 0 2px;
  1025. }
  1026. .gallery-item .socials .social .outer-hex {
  1027. width: 24px;
  1028. height: 46px;
  1029. }
  1030. .gallery-item .socials .social .inner-hex {
  1031. width: 17px;
  1032. height: 21px;
  1033. }
  1034. .gallery-item .socials .social i {
  1035. font-size: 13px;
  1036. color: #1d1d1d;
  1037. }
  1038. .gallery-item-overlay h5 {
  1039. font-size: 11px;
  1040. color: #fff;
  1041. font-weight: bold;
  1042. padding: 0;
  1043. }
  1044. .gallery-item-overlay h6 {
  1045. font-size: 10px;
  1046. color: #8b8b8b;
  1047. font-weight: lighter;
  1048. }
  1049. .gallery-item-overlay:hover .hex-area {
  1050. background-color: rgba(0,0,0,0.8);
  1051. }
  1052. .gallery-item-overlay:hover .outer-hex {
  1053. background-color: rgba(243,178,2,0.5);
  1054. }
  1055. #gallery .flex-control-nav {
  1056. bottom: -80px;
  1057. }
  1058. /* 10. Events
  1059. /*-----------------------------------------------------------------------------------*/
  1060. #calendar {
  1061. width: 45%;
  1062. }
  1063. #calendar table {
  1064. width: 287px;
  1065. height: 287px;
  1066. font-size: 14px;
  1067. font-weight: bold;
  1068. text-align: center;
  1069. color: #fff;
  1070. margin: 0 auto;
  1071. border-bottom-width: 5px;
  1072. border-bottom-style: solid;
  1073. }
  1074. #calendar td {
  1075. border: 1px solid #2e2e2e;
  1076. background-color: #232323;
  1077. padding: 3px;
  1078. }
  1079. #calendar th {
  1080. background-color: #232323;
  1081. font-size: 11px;
  1082. font-weight: bold;
  1083. padding: 3px;
  1084. text-align: center;
  1085. color: #232323;
  1086. }
  1087. #calendar tr.days {
  1088. border-width: 1px;
  1089. border-style: solid;
  1090. }
  1091. #calendar th#month-name {
  1092. font-size: 14px;
  1093. color: #fff;
  1094. border: 1px solid #2e2e2e;
  1095. }
  1096. #calendar th#prev,
  1097. #calendar th#next {
  1098. font-size: 18px;
  1099. border: 1px solid #2e2e2e;
  1100. }
  1101. #calendar a:link,
  1102. #calendar a:visited{
  1103. color: #fff;
  1104. }
  1105. #calendar .cur-day {
  1106. width: 24px;
  1107. height: 12px;
  1108. left: 8px;
  1109. display: table;
  1110. }
  1111. #calendar .cur-day:before {
  1112. top: -5px;
  1113. border-left: 12px solid transparent;
  1114. border-right: 12px solid transparent;
  1115. border-bottom-width: 5px;
  1116. border-bottom-style: solid;
  1117. }
  1118. #calendar .cur-day:after {
  1119. bottom: -5px;
  1120. border-left: 12px solid transparent;
  1121. border-right: 12px solid transparent;
  1122. border-top-width: 5px;
  1123. border-top-style: solid;
  1124. }
  1125. #calendar .cur-day span {
  1126. display: table-cell;
  1127. vertical-align: middle;
  1128. color: #1d1d1d;
  1129. }
  1130. .current-events {
  1131. border-right: 13px solid #1d1d1d;
  1132. width: 51%;
  1133. padding: 80px 60px 60px 0;
  1134. position: relative;
  1135. margin-top: -70px;
  1136. }
  1137. .current-events .outer-hex {
  1138. width: 70px;
  1139. height: 96px;
  1140. }
  1141. .current-events .inner-hex {
  1142. width: 50px;
  1143. height: 69px;
  1144. }
  1145. .current-events .top-event .outer-hex,
  1146. .current-events .bottom-event .outer-hex {
  1147. width: 35px;
  1148. height: 62px;
  1149. }
  1150. .current-events .top-event .inner-hex,
  1151. .current-events .bottom-event .inner-hex {
  1152. width: 25px;
  1153. height: 34.5px;
  1154. }
  1155. .current-events .event {
  1156. position: inherit;
  1157. margin-bottom: 30px;
  1158. }
  1159. .current-events .event .hive {
  1160. position: absolute;
  1161. top: 0;
  1162. right: -102px;
  1163. }
  1164. .current-events .event .hex-area,
  1165. .current-events .top-event .hex-area,
  1166. .current-events .bottom-event .hex-area {
  1167. background-color: #1d1d1d;
  1168. display: table;
  1169. }
  1170. .current-events .event span {
  1171. color: #fff;
  1172. font-size: 24px;
  1173. font-weight: bold;
  1174. text-align: center;
  1175. display: table-cell;
  1176. vertical-align: middle;
  1177. }
  1178. .current-events .event h3 {
  1179. font-size: 24px;
  1180. font-weight: bold;
  1181. color: #5e5e5e;
  1182. padding: 0;
  1183. }
  1184. .current-events .event h5 {
  1185. font-size: 12px;
  1186. font-weight: bold;
  1187. color: #5e5e5e;
  1188. padding: 0 0 15px;
  1189. }
  1190. .current-events .event p {
  1191. width: 350px;
  1192. }
  1193. .current-events .top-event {
  1194. position: absolute;
  1195. top: -15px;
  1196. right: -24px;
  1197. }
  1198. .current-events .bottom-event {
  1199. position: absolute;
  1200. bottom: -15px;
  1201. right: -24px;
  1202. }
  1203. /* 11. Stats
  1204. /*-----------------------------------------------------------------------------------*/
  1205. .bar-graph {
  1206. width: 700px;
  1207. height: 400px;
  1208. color: #eee;
  1209. position: relative;
  1210. margin: 50px auto 70px;
  1211. font-weight: bold;
  1212. }
  1213. .bar-graph ul.y {
  1214. width: 60px;
  1215. position: absolute;
  1216. bottom: -42px;
  1217. left: -70px;
  1218. text-align: right;
  1219. }
  1220. .bar-graph ul.y li {
  1221. width: 100%;
  1222. height: 50px;
  1223. float: left;
  1224. position: relative;
  1225. }
  1226. .bar-graph ul.x {
  1227. width: 100%;
  1228. height: 50px;
  1229. position: absolute;
  1230. bottom: -70px;
  1231. left: 0;
  1232. text-align: center;
  1233. }
  1234. .bar-graph ul.x li {
  1235. width: 40px;
  1236. float: left;
  1237. margin-right: 17px;
  1238. }
  1239. .bar-graph .graph {
  1240. width: 100%;
  1241. height: 100%;
  1242. border: 2px solid #020300;
  1243. background: url(images/stats_pat.png) repeat;
  1244. position: relative;
  1245. }
  1246. .bar-graph .graph li.bar {
  1247. width: 40px;
  1248. float: left;
  1249. position: absolute;
  1250. bottom: 0;
  1251. }
  1252. .bar-graph .graph li.bar-1 {
  1253. left: 17px;
  1254. }
  1255. .bar-graph .graph li.bar-2 {
  1256. left: 74px;
  1257. }
  1258. .bar-graph .graph li.bar-3 {
  1259. left: 131px;
  1260. }
  1261. .bar-graph .graph li.bar-4 {
  1262. left: 188px;
  1263. }
  1264. .bar-graph .graph li.bar-5 {
  1265. left: 245px;
  1266. }
  1267. .bar-graph .graph li.bar-6 {
  1268. left: 302px;
  1269. }
  1270. .bar-graph .graph li.bar-7 {
  1271. left: 359px;
  1272. }
  1273. .bar-graph .graph li.bar-8 {
  1274. left: 416px;
  1275. }
  1276. .bar-graph .graph li.bar-9 {
  1277. left: 473px;
  1278. }
  1279. .bar-graph .graph li.bar-10 {
  1280. left: 530px;
  1281. }
  1282. .bar-graph .graph li.bar-11 {
  1283. left: 587px;
  1284. }
  1285. .bar-graph .graph li.bar-12 {
  1286. left: 644px;
  1287. }
  1288. .bar-graph .bar-month {
  1289. width: 40px;
  1290. height: 20px;
  1291. top: 5px;
  1292. left: 18px;
  1293. display: table;
  1294. }
  1295. .bar-graph .bar-month:before {
  1296. top: -9px;
  1297. border-left: 20px solid transparent;
  1298. border-right: 20px solid transparent;
  1299. border-bottom-width: 9px;
  1300. border-bottom-style: solid;
  1301. }
  1302. .bar-graph .bar-month:after {
  1303. bottom: -9px;
  1304. border-left: 20px solid transparent;
  1305. border-right: 20px solid transparent;
  1306. border-top-width: 9px;
  1307. border-top-style: solid;
  1308. }
  1309. .bar-graph .bar-month span {
  1310. display: table-cell;
  1311. vertical-align: middle;
  1312. color: #1d1d1d;
  1313. }
  1314. h5.bar-gragh-caption {
  1315. font-size: 14px;
  1316. position: absolute;
  1317. top: -35px;
  1318. left: -20px;
  1319. }
  1320. h6.gragh-info {
  1321. position: absolute;
  1322. top: -35px;
  1323. right: 10px;
  1324. }
  1325. .gragh-info-symbol {
  1326. width: 14px;
  1327. height: 8px;
  1328. display: inline-block;
  1329. margin-right: 10px;
  1330. }
  1331. .gragh-info-symbol:before {
  1332. top: -3px;
  1333. border-left: 7px solid transparent;
  1334. border-right: 7px solid transparent;
  1335. border-bottom-width: 3px;
  1336. border-bottom-style: solid;
  1337. }
  1338. .gragh-info-symbol:after {
  1339. bottom: -3px;
  1340. border-left: 7px solid transparent;
  1341. border-right: 7px solid transparent;
  1342. border-top-width: 3px;
  1343. border-top-style: solid;
  1344. }
  1345. .pie-charts {
  1346. display: table;
  1347. margin: 0 auto;
  1348. }
  1349. .pie-charts canvas {
  1350. left: 0;
  1351. position: absolute;
  1352. top: 0;
  1353. }
  1354. .pie-charts .chart {
  1355. position: relative;
  1356. line-height: 160px;
  1357. text-align: center;
  1358. height: 160px;
  1359. width: 160px;
  1360. font-size: 39px;
  1361. font-weight: bold;
  1362. color: #eee;
  1363. }
  1364. .pie-charts ul {
  1365. padding-top: 70px;
  1366. }
  1367. .pie-charts ul li {
  1368. display: inline-block;
  1369. padding: 0 40px;
  1370. }
  1371. .pie-charts .chart-label {
  1372. padding: 15px 0 0;
  1373. font-size: 18px;
  1374. font-weight: bold;
  1375. }
  1376. /* 12. News
  1377. /*-----------------------------------------------------------------------------------*/
  1378. .news-item {
  1379. text-align: center;
  1380. }
  1381. .centered {
  1382. background-position: 50% 50%;
  1383. }
  1384. .news-item h3.news-title,
  1385. .news-item h5.news-subtitle {
  1386. font-size: 24px;
  1387. font-weight: bold;
  1388. padding: 0;
  1389. }
  1390. .news-item h5.news-subtitle {
  1391. font-size: 12px;
  1392. padding-bottom: 10px;
  1393. }
  1394. .news-item p {
  1395. padding-bottom: 15px;
  1396. }
  1397. .news-image .outer-hex {
  1398. width: 256px;
  1399. height: 292px;
  1400. }
  1401. .news-image .inner-hex {
  1402. width: 230px;
  1403. height: 270px;
  1404. }
  1405. .news-image-overlay .outer-hex {
  1406. width: 231px;
  1407. height: 264px;
  1408. }
  1409. .news-image-overlay .inner-hex {
  1410. width: 200px;
  1411. height: 243px;
  1412. }
  1413. .news-image-overlay .hex-area {
  1414. background-color: rgba(0,0,0,0.1);
  1415. }
  1416. .news-image-overlay .outer-hex {
  1417. background-color: transparent;
  1418. }
  1419. #news .flex-control-nav {
  1420. bottom: -80px;
  1421. }
  1422. /* 13. Contact
  1423. /*-----------------------------------------------------------------------------------*/
  1424. .map-area {
  1425. height: 550px;
  1426. position: relative;
  1427. }
  1428. .map-pos-1 {
  1429. position: absolute;
  1430. top: 200px;
  1431. left: 150px;
  1432. }
  1433. .map-pos-2 {
  1434. position: absolute;
  1435. top: 163px;
  1436. right: 170px;
  1437. }
  1438. .map-pos-3 {
  1439. position: absolute;
  1440. bottom: 70px;
  1441. left: 330px;
  1442. }
  1443. .map-marker .map-marker-info {
  1444. float: right;
  1445. padding-left: 20px;
  1446. color: #afafaf;
  1447. width: 250px;
  1448. }
  1449. .map-marker .map-marker-info h3 {
  1450. color: #eee;
  1451. font-size: 14px;
  1452. font-weight: bold;
  1453. padding: 0 0 5px;
  1454. }
  1455. .map-marker .map-marker-info h6 {
  1456. font-size: 12px;
  1457. font-weight: normal;
  1458. padding: 0;
  1459. }
  1460. .map-marker-pin {
  1461. float: left;
  1462. }
  1463. .map-marker .pin-hex {
  1464. width: 12px;
  1465. height: 7px;
  1466. background: #1d1d1d;
  1467. z-index: 3;
  1468. top: -2px;
  1469. left: -11px;
  1470. }
  1471. .map-marker .pin-hex:before {
  1472. top: -3px;
  1473. border-left: 6px solid transparent;
  1474. border-right: 6px solid transparent;
  1475. border-bottom: 3px solid #1d1d1d;
  1476. }
  1477. .map-marker .pin-hex:after {
  1478. bottom: -3px;
  1479. border-left: 6px solid transparent;
  1480. border-right: 6px solid transparent;
  1481. border-top: 3px solid #1d1d1d;
  1482. }
  1483. .map-marker .pin {
  1484. width: 30px;
  1485. height: 30px;
  1486. border-radius: 50% 50% 50% 0;
  1487. background: #89849b;
  1488. transform: rotate(-45deg);
  1489. -webkit-transform: rotate(-45deg);
  1490. margin: -20px 0 0 -20px;
  1491. z-index: 2;
  1492. }
  1493. .map-marker .pulse {
  1494. border-radius: 50%;
  1495. height: 14px;
  1496. width: 14px;
  1497. position: relative;
  1498. bottom: 10px;
  1499. margin: 11px 0px 0px -12px;
  1500. transform: rotateX(55deg);
  1501. -webkit-transform: rotateX(55deg);
  1502. z-index: 1;
  1503. }
  1504. .map-marker .pulse:after {
  1505. content: "";
  1506. border-radius: 50%;
  1507. height: 40px;
  1508. width: 40px;
  1509. position: absolute;
  1510. margin: -13px 0 0 -13px;
  1511. animation: pulsate 1s ease-out;
  1512. animation-iteration-count: infinite;
  1513. -webkit-animation: pulsate 1s ease-out;
  1514. -webkit-animation-iteration-count: infinite;
  1515. opacity: 0;
  1516. box-shadow: 0 0 1px 2px gray;
  1517. -webkit-box-shadow: 0 0 1px 2px gray;
  1518. animation-delay: 1.1s;
  1519. -webkit-animation-delay: 1.1s;
  1520. }
  1521. @keyframes pulsate {
  1522. 0% {
  1523. transform: scale(0.1, 0.1);
  1524. opacity: 0;
  1525. }
  1526. 50% {
  1527. opacity: 1;
  1528. }
  1529. 100% {
  1530. transform: scale(1.2, 1.2);
  1531. opacity: 0;
  1532. color: gray;
  1533. }
  1534. }
  1535. @-webkit-keyframes pulsate {
  1536. 0% {
  1537. -webkit-transform: scale(0.1, 0.1);
  1538. opacity: 0;
  1539. }
  1540. 50% {
  1541. opacity: 1;
  1542. }
  1543. 100% {
  1544. -webkit-transform: scale(1.2, 1.2);
  1545. opacity: 0;
  1546. color: gray;
  1547. }
  1548. }
  1549. .contact-form h3,
  1550. .contact-form h5,
  1551. .contact-socials h3,
  1552. .contact-socials h5 {
  1553. font-size: 12px;
  1554. font-weight: lighter;
  1555. padding: 0 0 20px;
  1556. text-align: left;
  1557. }
  1558. .contact-form h3,
  1559. .contact-socials h3 {
  1560. font-size: 18px;
  1561. padding: 0;
  1562. font-weight: bold;
  1563. color: #fff;
  1564. }
  1565. input.input-txt,
  1566. textarea.textarea-txt {
  1567. border: none;
  1568. background-color: #2c2c2c;
  1569. color: rgba(175,175,175,0.4);
  1570. padding: 8px 10px;
  1571. margin-bottom: 13px;
  1572. width: 300px;
  1573. font-size: 12px;
  1574. font-weight: lighter;
  1575. }
  1576. textarea.textarea-txt {
  1577. width: 400px;
  1578. }
  1579. .contact-form input#submit {
  1580. width: 84px;
  1581. height: 24px;
  1582. color: #1d1d1d;
  1583. border: none;
  1584. font-size: 14px;
  1585. font-weight: bold;
  1586. float: right;
  1587. margin-right: 52px;
  1588. cursor: pointer;
  1589. }
  1590. .contact-form .error {
  1591. border: 1px solid rgba(192,57,43,0.4) !important;
  1592. }
  1593. .contact-success {
  1594. background-color: rgba(22, 160, 133, 0.3);
  1595. padding: 20px;
  1596. margin-bottom: 20px;
  1597. color: #eee;
  1598. width: 100%;
  1599. }
  1600. .contact-success h3 {
  1601. font-style: 14px;
  1602. font-weight: bold;
  1603. padding: 0 0 10px;
  1604. }
  1605. .contact-socials {
  1606. text-align: center;
  1607. }
  1608. .contact-socials .contact-social {
  1609. float: left;
  1610. margin-right: 5px;
  1611. }
  1612. .contact-socials .contact-social.contact-socials-3s-first {
  1613. margin-left: 49px;
  1614. }
  1615. .contact-socials .contact-social:nth-child(n+6) {
  1616. margin-top: -55px;
  1617. }
  1618. .contact-social .outer-hex {
  1619. width: 93px;
  1620. height: 142px;
  1621. background-color: #4a4949 !important;
  1622. }
  1623. .contact-social .inner-hex {
  1624. width: 80px;
  1625. height: 120px;
  1626. }
  1627. .contact-social-overlay .outer-hex {
  1628. width: 81px;
  1629. height: 114px;
  1630. }
  1631. .contact-social-overlay .inner-hex {
  1632. width: 76px;
  1633. height: 87px;
  1634. left: -1px;
  1635. }
  1636. .contact-socials .contact-social-overlay .hex-area {
  1637. background-color: rgba(0,0,0,0.1);
  1638. display: table;
  1639. }
  1640. .contact-socials .contact-social-overlay .outer-hex {
  1641. background-color: transparent;
  1642. }
  1643. .contact-socials .contact-social-overlay i {
  1644. color: #fff;
  1645. font-size: 40px;
  1646. text-align: center;
  1647. display: table-cell;
  1648. vertical-align: middle;
  1649. }
  1650. .map-marker-info ul {
  1651. margin-top: 3px;
  1652. }
  1653. .map-marker-info ul li {
  1654. font-size: 11px;
  1655. }
  1656. .progress {
  1657. width: 150px;
  1658. height: 8px;
  1659. background: #595959;
  1660. position: relative;
  1661. }
  1662. .progress-bar {
  1663. width: 0px;
  1664. height: 8px;
  1665. }
  1666. .progress-caption {
  1667. }
  1668. /* 14. Footer
  1669. /*-----------------------------------------------------------------------------------*/
  1670. #footer-wrap {
  1671. background-color: #000;
  1672. border-bottom-width: 18px;
  1673. border-bottom-style: solid;
  1674. padding: 40px 0 15px;
  1675. color: #afafaf;
  1676. }
  1677. #footer .widget {
  1678. margin-bottom: 25px;
  1679. }
  1680. #footer .widget .footer-logo {
  1681. background-image: url('images/footer_logo.png');
  1682. width: 113px;
  1683. height: 18px;
  1684. margin-bottom: 15px;
  1685. }
  1686. #footer .widget h3 {
  1687. color: #eee;
  1688. font-size: 24px;
  1689. font-family: 'bebas_neue', Helvetica, Arial, sans-serif;
  1690. font-weight: normal;
  1691. padding: 0 0 5px;
  1692. text-align: left;
  1693. }
  1694. #footer .widget h5 {
  1695. font-size: 11px;
  1696. padding: 0 0 25px;
  1697. text-align: left;
  1698. }
  1699. #footer .recent-tweets ul li {
  1700. color: #cdcdcd;
  1701. clear: both;
  1702. display: inline-block;
  1703. margin-top: -10px;
  1704. }
  1705. #footer .recent-tweets .twitter-content {
  1706. float: right;
  1707. width: 85%;
  1708. padding: 18px 0 0 5px;
  1709. }
  1710. #footer .recent-tweets .tweet_time a {
  1711. color: #fff;
  1712. font-style: italic;
  1713. }
  1714. #footer .newsletter .newsletter-elements {
  1715. position: relative;
  1716. width: 288px;
  1717. }
  1718. #footer .newsletter input#newsletter-email {
  1719. width: 260px;
  1720. margin-bottom: 0;
  1721. }
  1722. #footer .recent-tweets .hive {
  1723. float: left;
  1724. }
  1725. #footer .newsletter .hive {
  1726. position: absolute;
  1727. top: -16px;
  1728. right: 29px;
  1729. }
  1730. #footer .newsletter .hive .outer-hex {
  1731. width: 28px;
  1732. height: 63px;
  1733. }
  1734. #footer .newsletter .hive .inner-hex {
  1735. width: 29px;
  1736. height: 36px;
  1737. }
  1738. #footer .recent-tweets .hive .outer-hex{
  1739. width: 34px;
  1740. height: 69px;
  1741. }
  1742. #footer .recent-tweets .hive .inner-hex {
  1743. width: 35px;
  1744. height: 42px;
  1745. }
  1746. #footer .recent-tweets .hive .hex-area,
  1747. #footer .newsletter .hive .hex-area {
  1748. display: table;
  1749. }
  1750. #footer .recent-tweets .hive i,
  1751. #footer .newsletter .hive i {
  1752. color: #1d1d1d;
  1753. font-size: 20px;
  1754. text-align: center;
  1755. display: table-cell;
  1756. vertical-align: middle;
  1757. }
  1758. #footer .newsletter .hive i {
  1759. font-size: 15px;
  1760. }
  1761. #footer .flickr .outer-hex {
  1762. width: 82px;
  1763. height: 90px;
  1764. }
  1765. #footer .flickr-item:hover {
  1766. opacity: .5;
  1767. }
  1768. #footer .borderonh {
  1769. border: 3px solid #fff;
  1770. }
  1771. #footer .flickr .inner-hex {
  1772. width: 65px;
  1773. height: 76px;
  1774. top: 0;
  1775. }
  1776. #footer .flickr {
  1777. text-align: center;
  1778. }
  1779. #footer .flickr-item {
  1780. width: 67px;
  1781. float: left;
  1782. }
  1783. #footer .flickr-item.flickr-item-3s {
  1784. margin-left: 34px;
  1785. }
  1786. #footer .flickr-item:nth-child(n+7) {
  1787. margin-top: -32px;
  1788. }
  1789. #footer .flickr_badge_image {
  1790. display: none;
  1791. }
  1792. .recent-tweets h5 {
  1793. padding-bottom: 15px !important;
  1794. }
  1795. .tweets-container .twitter-content .tweet_time a:visited{
  1796. color: white !important;
  1797. }
  1798. /*Custom effects*/
  1799. .typewriter h1 {
  1800. overflow: hidden; /* Ensures the content is not revealed until the animation */
  1801. border-right: .15em solid white; /* The typwriter cursor */
  1802. white-space: nowrap; /* Keeps the content on a single line */
  1803. margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  1804. letter-spacing: .15em; /* Adjust as needed */
  1805. animation:
  1806. typing 3.5s steps(40, end),
  1807. blink-caret .75s step-end infinite;
  1808. }
  1809. /* 15. Media Query
  1810. /*-----------------------------------------------------------------------------------*/
  1811. @media (max-width: 1024px){
  1812. #container { overflow-x:hidden;}
  1813. .map-marker{
  1814. visibility: hidden !important;
  1815. }
  1816. }
  1817. @media (min-width: 940px){
  1818. .typewriter-div{
  1819. text-align: center;
  1820. color:white;
  1821. /*margin-top:80px*/
  1822. }
  1823. }
  1824. @media (min-width: 940px) and (max-width: 1024px) {
  1825. .general-section {
  1826. width: 920px;
  1827. }
  1828. .gallery-item .outer-hex {
  1829. width: 180px;
  1830. height: 232px;
  1831. }
  1832. .gallery-item .inner-hex {
  1833. width: 170px;
  1834. height: 206px;
  1835. }
  1836. .gallery-item-overlay .outer-hex {
  1837. width: 171px;
  1838. height: 206px;
  1839. }
  1840. .gallery-item-overlay .inner-hex {
  1841. width: 140px;
  1842. height: 175px;
  1843. }
  1844. .gallery-item {
  1845. width: 180px;
  1846. }
  1847. .gallery-box .gallery-item:nth-child(n+5) {
  1848. margin-top: -74px;
  1849. }
  1850. .gallery-box .gallery-4s-first {
  1851. margin-left: 91px;
  1852. }
  1853. .gallery-item .socials {
  1854. padding-top: 50px;
  1855. }
  1856. }
  1857. @media (min-width: 768px) and (max-width: 939px) {
  1858. .general-section {
  1859. width: 720px;
  1860. }
  1861. #header-wrap {
  1862. position: static;
  1863. }
  1864. #header {
  1865. height: 93px;
  1866. }
  1867. #navigation {
  1868. float: left;
  1869. }
  1870. #navigation {
  1871. display: none;
  1872. }
  1873. a.mobile-nav-toggle {
  1874. display: block;
  1875. }
  1876. #logo {
  1877. display: block;
  1878. text-align: center;
  1879. }
  1880. #hexagon-overlay {
  1881. top: 93px;
  1882. }
  1883. .gallery-item .outer-hex {
  1884. width: 156px;
  1885. height: 195px;
  1886. }
  1887. .gallery-item .inner-hex {
  1888. width: 130px;
  1889. height: 164px;
  1890. }
  1891. .gallery-item-overlay .outer-hex {
  1892. width: 131px;
  1893. height: 164px;
  1894. }
  1895. .gallery-item-overlay .inner-hex {
  1896. width: 100px;
  1897. height: 135px;
  1898. }
  1899. .gallery-item {
  1900. width: 130px;
  1901. }
  1902. .gallery-box .gallery-item:nth-child(n+5) {
  1903. margin-top: -78px;
  1904. }
  1905. .gallery-box .gallery-4s-first {
  1906. margin-left: 67px;
  1907. }
  1908. .gallery-item .gallery-info {
  1909. display: block;
  1910. }
  1911. .gallery-item .socials {
  1912. padding-top: 25px;
  1913. }
  1914. .current-events .event h3 {
  1915. font-size: 20px;
  1916. }
  1917. .pie-charts ul li {
  1918. padding: 0 38px;
  1919. }
  1920. .news-image .outer-hex {
  1921. width: 216px;
  1922. height: 252px;
  1923. }
  1924. .news-image .inner-hex {
  1925. width: 190px;
  1926. height: 230px;
  1927. }
  1928. .news-image-overlay .outer-hex {
  1929. width: 191px;
  1930. height: 224px;
  1931. }
  1932. .news-image-overlay .inner-hex {
  1933. width: 160px;
  1934. height: 203px;
  1935. }
  1936. .map-pos-1,
  1937. .map-pos-2,
  1938. .map-pos-3 {
  1939. position: static;
  1940. float: left;
  1941. margin: 40px 30px;
  1942. clear: both;
  1943. }
  1944. .contact-socials .contact-social.contact-socials-3s-first {
  1945. margin-left: 34px;
  1946. }
  1947. .contact-socials .contact-social:nth-child(n+6) {
  1948. margin-top: -53px;
  1949. }
  1950. .contact-social .outer-hex {
  1951. width: 63px;
  1952. height: 112px;
  1953. }
  1954. .contact-social .inner-hex {
  1955. width: 50px;
  1956. height: 90px;
  1957. }
  1958. .contact-social-overlay .outer-hex {
  1959. width: 51px;
  1960. height: 84px;
  1961. }
  1962. .contact-social-overlay .inner-hex {
  1963. width: 46px;
  1964. height: 57px;
  1965. left: -1px;
  1966. }
  1967. .contact-socials .contact-social-overlay i {
  1968. font-size: 25px;
  1969. }
  1970. textarea#message-txt {
  1971. width: 300px;
  1972. }
  1973. #footer .newsletter .newsletter-elements {
  1974. width: 238px;
  1975. }
  1976. #footer .newsletter input#newsletter-email {
  1977. width: 210px;
  1978. }
  1979. #footer .recent-tweets .twitter-content {
  1980. width: 75%;
  1981. }
  1982. #footer .recent-tweets ul li {
  1983. margin-top: -10px;
  1984. }
  1985. #footer .flickr-item {
  1986. width: 48px;
  1987. }
  1988. #footer .flickr .outer-hex {
  1989. width: 56px;
  1990. height: 70px;
  1991. }
  1992. #footer .flickr .inner-hex {
  1993. width: 45px;
  1994. height: 56px;
  1995. }
  1996. #footer .flickr-item.flickr-item-3s {
  1997. margin-left: 24px;
  1998. }
  1999. #footer .flickr-item:nth-child(n+7) {
  2000. margin-top: -29px;
  2001. }
  2002. #logo a .dinamic-logo {
  2003. position: relative;
  2004. left: 50%;
  2005. top: 50%;
  2006. width: 200px;
  2007. height: 70px;
  2008. margin-left: -82px;
  2009. }
  2010. }
  2011. @media only screen and (max-width: 767px) {
  2012. .general-section {
  2013. width: 520px;
  2014. }
  2015. #header-wrap {
  2016. position: static;
  2017. }
  2018. #header {
  2019. height: 93px;
  2020. }
  2021. #navigation {
  2022. display: none;
  2023. }
  2024. a.mobile-nav-toggle {
  2025. display: block;
  2026. }
  2027. #logo {
  2028. display: block;
  2029. text-align: center;
  2030. }
  2031. #hexagon-overlay {
  2032. top: 93px;
  2033. }
  2034. .one_half,
  2035. .one_third,
  2036. .two_third,
  2037. .three_fourth,
  2038. .one_fourth,
  2039. .one_fifth,
  2040. .two_fifth,
  2041. .three_fifth,
  2042. .four_fifth,
  2043. .one_sixth {
  2044. margin-right: 0;
  2045. display: block;
  2046. margin-bottom: 30px;
  2047. width: 100% !important;
  2048. margin-left: 0;
  2049. }
  2050. #intro {
  2051. text-align: center;
  2052. }
  2053. .note-1,
  2054. .welcome-box,
  2055. .chosen-item-1,
  2056. .chosen-item-2,
  2057. .chosen-item-3 {
  2058. position: static;
  2059. }
  2060. .note-1 {
  2061. padding-bottom: 60px;
  2062. }
  2063. .note-1 .note-tooltip1, .note-1 .note-tooltip2 {
  2064. position: absolute;
  2065. margin-top: 90px;
  2066. margin-left: 85px;
  2067. }
  2068. .welcome-box {
  2069. padding-top: 0;
  2070. padding-bottom: 50px;
  2071. }
  2072. .chosen-item-1,
  2073. .chosen-item-2,
  2074. .chosen-item-3 {
  2075. display: inline-block;
  2076. }
  2077. .section-title {
  2078. position: static;
  2079. }
  2080. .services,
  2081. .gallery,
  2082. .events,
  2083. .stats,
  2084. .news,
  2085. .contact {
  2086. padding: 0;
  2087. }
  2088. .about-item,
  2089. .team-item {
  2090. padding: 40px 0 0;
  2091. }
  2092. .about .about-item:nth-child(2) {
  2093. padding-top: 100px;
  2094. }
  2095. .about-item.highlight {
  2096. background-color: transparent;
  2097. }
  2098. .important-info {
  2099. bottom: auto;
  2100. top: 150px;
  2101. }
  2102. .team-wrap,
  2103. .gallery-wrap,
  2104. .stats-wrap {
  2105. background-position: top !important;
  2106. }
  2107. .team .section-triangle {
  2108. background-image: url("images/section_triangle_grey.png");
  2109. }
  2110. .services-intro {
  2111. padding: 70px 0;
  2112. text-align: center;
  2113. }
  2114. .gallery-item .outer-hex {
  2115. width: 118px;
  2116. height: 170px;
  2117. }
  2118. .gallery-item .inner-hex {
  2119. width: 94px;
  2120. height: 139px;
  2121. }
  2122. .gallery-item-overlay .outer-hex {
  2123. width: 93px;
  2124. height: 139px;
  2125. }
  2126. .gallery-item-overlay .inner-hex {
  2127. width: 75px;
  2128. height: 110px;
  2129. }
  2130. .gallery-item {
  2131. width: 100px;
  2132. margin-left: -4px;
  2133. }
  2134. .gallery-box .gallery-item:nth-child(n+5) {
  2135. margin-top: -84px;
  2136. }
  2137. .gallery-box .gallery-4s-first {
  2138. margin-left: 46px;
  2139. }
  2140. .gallery-item .gallery-info {
  2141. display: block;
  2142. padding-top: 40px;
  2143. }
  2144. .gallery-item .socials {
  2145. display: none;
  2146. }
  2147. .gallery-item-overlay h5,
  2148. .gallery-item-overlay h6 {
  2149. font-size: 10px;
  2150. }
  2151. .current-events {
  2152. margin-top: -40px;
  2153. }
  2154. .bar-graph {
  2155. width: 520px;
  2156. }
  2157. .bar-graph .bar-month {
  2158. width: 22px;
  2159. height: 10px;
  2160. top: 5px;
  2161. left: 18px;
  2162. }
  2163. .bar-graph .bar-month:before {
  2164. top: -4px;
  2165. border-left: 11px solid transparent;
  2166. border-right: 11px solid transparent;
  2167. border-bottom-width: 4px;
  2168. }
  2169. .bar-graph .bar-month:after {
  2170. bottom: -4px;
  2171. border-left: 11px solid transparent;
  2172. border-right: 11px solid transparent;
  2173. border-top-width: 4px;
  2174. }
  2175. .bar-graph .bar-month span {
  2176. font-size: 10px;
  2177. font-weight: normal;
  2178. }
  2179. .bar-graph ul.x li,
  2180. .bar-graph .graph li.bar {
  2181. width: 22px;
  2182. }
  2183. .bar-graph .graph li.bar-1 {
  2184. left: 17px;
  2185. }
  2186. .bar-graph .graph li.bar-2 {
  2187. left: 55px;
  2188. }
  2189. .bar-graph .graph li.bar-3 {
  2190. left: 94px;
  2191. }
  2192. .bar-graph .graph li.bar-4 {
  2193. left: 133px;
  2194. }
  2195. .bar-graph .graph li.bar-5 {
  2196. left: 173px;
  2197. }
  2198. .bar-graph .graph li.bar-6 {
  2199. left: 211px;
  2200. }
  2201. .bar-graph .graph li.bar-7 {
  2202. left: 250px;
  2203. }
  2204. .bar-graph .graph li.bar-8 {
  2205. left: 289px;
  2206. }
  2207. .bar-graph .graph li.bar-9 {
  2208. left: 327px;
  2209. }
  2210. .bar-graph .graph li.bar-10 {
  2211. left: 367px;
  2212. }
  2213. .bar-graph .graph li.bar-11 {
  2214. left: 406px;
  2215. }
  2216. .bar-graph .graph li.bar-12 {
  2217. left: 444px;
  2218. }
  2219. .pie-charts ul {
  2220. padding: 50px 0;
  2221. }
  2222. .pie-charts ul li {
  2223. padding: 0 5px;
  2224. }
  2225. .news .flex-control-nav {
  2226. bottom: -20px;
  2227. }
  2228. .map-pos-1,
  2229. .map-pos-2,
  2230. .map-pos-3 {
  2231. position: static;
  2232. float: left;
  2233. margin: 40px 30px;
  2234. clear: both;
  2235. }
  2236. .contact-form input#submit {
  2237. float: left;
  2238. }
  2239. #logo a .dinamic-logo {
  2240. position: relative;
  2241. left: 50%;
  2242. top: 50%;
  2243. width: 165px;
  2244. height: 48px;
  2245. margin-left: -82px;
  2246. background-position: center;
  2247. background-size: 135px;
  2248. }
  2249. }
  2250. @media only screen and (max-width: 600px) {
  2251. .important-info {
  2252. width: 475px;
  2253. margin-left: -237px;
  2254. }
  2255. .bar-graph {
  2256. width: 480px;
  2257. }
  2258. .current-events {
  2259. width: 90% !important;
  2260. }
  2261. .note-1 .note-tooltip1, .note-1 .note-tooltip2 {
  2262. position: absolute;
  2263. margin-top: 90px;
  2264. margin-left: 85px;
  2265. }
  2266. }
  2267. @media only screen and (max-width: 480px) {
  2268. .typewriter-span{
  2269. font-size: 3rem !important;
  2270. }
  2271. .general-section {
  2272. width: 90%;
  2273. }
  2274. #mobile-navigation {
  2275. width: 250px;
  2276. }
  2277. .section-title h2 {
  2278. font-size: 45px;
  2279. }
  2280. .section-title h5 {
  2281. font-size: 15px;
  2282. }
  2283. .chosen-item-1 .outer-hex,
  2284. .chosen-item-2 .outer-hex,
  2285. .chosen-item-3 .outer-hex {
  2286. width: 62px;
  2287. height: 70px;
  2288. }
  2289. .chosen-item-1 .inner-hex,
  2290. .chosen-item-2 .inner-hex,
  2291. .chosen-item-3 .inner-hex {
  2292. width: 49px;
  2293. height: 56px;
  2294. }
  2295. .important-info {
  2296. margin-left: -122px;
  2297. width: 245px;
  2298. top: 125px;
  2299. }
  2300. .important-info p {
  2301. font-size: 10px;
  2302. padding: 10px 35px;
  2303. }
  2304. .services-intro h3 {
  2305. font-size: 24px;
  2306. }
  2307. .services-item .services-info {
  2308. padding-left: 45px;
  2309. }
  2310. .services-item .services-info h3 {
  2311. font-size: 15px;
  2312. }
  2313. .gallery-item {
  2314. width: 204px;
  2315. float: none;
  2316. margin: 0 auto;
  2317. }
  2318. .gallery-box .gallery-item:nth-child(n+5) {
  2319. margin-top: 0;
  2320. }
  2321. .gallery-item .outer-hex {
  2322. width: 206px;
  2323. height: 242px;
  2324. }
  2325. .gallery-item .inner-hex {
  2326. width: 180px;
  2327. height: 214px;
  2328. }
  2329. .gallery-item-overlay .outer-hex {
  2330. width: 181px;
  2331. height: 214px;
  2332. }
  2333. .gallery-item-overlay .inner-hex {
  2334. width: 150px;
  2335. height: 185px;
  2336. }
  2337. .gallery-item .socials {
  2338. display: block;
  2339. padding-top: 20px;
  2340. }
  2341. .current-events {
  2342. margin-top: 20px;
  2343. }
  2344. .current-events .event h3 {
  2345. font-size: 12px;
  2346. }
  2347. .current-events .event h5 {
  2348. font-size: 10px;
  2349. font-weight: normal;
  2350. }
  2351. .current-events .event p {
  2352. width: 100%;
  2353. }
  2354. #calendar table {
  2355. width: 270px;
  2356. }
  2357. h5.bar-gragh-caption {
  2358. left: 0;
  2359. font-size: 12px;
  2360. top: -20px;
  2361. }
  2362. h6.gragh-info {
  2363. font-size: 10px;
  2364. top: -40px;
  2365. }
  2366. .bar-graph {
  2367. width: 260px;
  2368. }
  2369. .bar-graph ul.y {
  2370. left: -65px;
  2371. font-size: 10px;
  2372. }
  2373. .bar-graph ul.x li,
  2374. .bar-graph .graph li.bar {
  2375. width: 10px;
  2376. }
  2377. .bar-graph ul.x li {
  2378. margin-right: 11px;
  2379. }
  2380. .bar-graph .bar-month {
  2381. width: 16px;
  2382. height: 6px;
  2383. top: 0;
  2384. left: 5px;
  2385. }
  2386. .bar-graph .bar-month:before {
  2387. top: -2px;
  2388. border-left: 8px solid transparent;
  2389. border-right: 8px solid transparent;
  2390. border-bottom-width: 2px;
  2391. }
  2392. .bar-graph .bar-month:after {
  2393. bottom: -2px;
  2394. border-left: 8px solid transparent;
  2395. border-right: 8px solid transparent;
  2396. border-top-width: 2px;
  2397. }
  2398. .bar-graph .bar-month span {
  2399. font-size: 8px;
  2400. }
  2401. .bar-graph .graph li.bar-1 {
  2402. left: 7px;
  2403. }
  2404. .bar-graph .graph li.bar-2 {
  2405. left: 28px;
  2406. }
  2407. .bar-graph .graph li.bar-3 {
  2408. left: 48px;
  2409. }
  2410. .bar-graph .graph li.bar-4 {
  2411. left: 69px;
  2412. }
  2413. .bar-graph .graph li.bar-5 {
  2414. left: 90px;
  2415. }
  2416. .bar-graph .graph li.bar-6 {
  2417. left: 111px;
  2418. }
  2419. .bar-graph .graph li.bar-7 {
  2420. left: 131px;
  2421. }
  2422. .bar-graph .graph li.bar-8 {
  2423. left: 152px;
  2424. }
  2425. .bar-graph .graph li.bar-9 {
  2426. left: 173px;
  2427. }
  2428. .bar-graph .graph li.bar-10 {
  2429. left: 194px;
  2430. }
  2431. .bar-graph .graph li.bar-11 {
  2432. left: 216px;
  2433. }
  2434. .bar-graph .graph li.bar-12 {
  2435. left: 236px;
  2436. }
  2437. .pie-charts ul li {
  2438. padding: 0 0 60px;
  2439. display: block;
  2440. }
  2441. input.input-txt,
  2442. textarea.textarea-txt {
  2443. width: 220px;
  2444. }
  2445. textarea.textarea-txt {
  2446. width: 250px;
  2447. }
  2448. .contact-socials .contact-social.contact-socials-3s-first {
  2449. margin-left: 29px;
  2450. }
  2451. .contact-socials .contact-social:nth-child(n+6) {
  2452. margin-top: -53px;
  2453. }
  2454. .contact-social .outer-hex {
  2455. width: 53px;
  2456. height: 102px;
  2457. }
  2458. .contact-social .inner-hex {
  2459. width: 40px;
  2460. height: 80px;
  2461. }
  2462. .contact-social-overlay .outer-hex {
  2463. width: 41px;
  2464. height: 74px;
  2465. }
  2466. .contact-social-overlay .inner-hex {
  2467. width: 36px;
  2468. height: 47px;
  2469. left: -1px;
  2470. }
  2471. .contact-socials .contact-social-overlay i {
  2472. font-size: 25px;
  2473. }
  2474. .note-1 .note-tooltip1, .note-1 .note-tooltip2 {
  2475. position: absolute;
  2476. margin-top: 90px;
  2477. margin-left: -45px;
  2478. }
  2479. }
  2480. /*Custom effects*/
  2481. .typewriter-div{
  2482. text-align: center;
  2483. color:white;
  2484. }
  2485. .typewriter-span{
  2486. font-size: 4rem;
  2487. }
  2488. .typed-cursor {
  2489. -webkit-animation: typed-blink 0.7s infinite;
  2490. animation: typed-blink 0.7s infinite;
  2491. opacity: 1;
  2492. display: inline-block;
  2493. }
  2494. @keyframes typed-blink {
  2495. 0% { opacity : 1; }
  2496. 50% { opacity : 0; }
  2497. 100% { opacity : 1; }
  2498. }
  2499. .typed-container{
  2500. line-height: 60px;
  2501. }