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

style.css 53KB

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