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.

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