Diligent web site
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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