Diligent web site
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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