navigation.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637
  1. /*-----------------------------------------------------------------------------
  2. - Revolution Slider 5.0 Navigatin Skin Style -
  3. -----------------------------------------------------------------------------*/
  4. .ares.tparrows {
  5. cursor:pointer;
  6. background:#fff;
  7. min-width:60px;
  8. min-height:60px;
  9. position:absolute;
  10. display:block;
  11. z-index:100;
  12. border-radius:50%;
  13. }
  14. .ares.tparrows:hover {
  15. }
  16. .ares.tparrows:before {
  17. font-family: "revicons";
  18. font-size:25px;
  19. color:#aaa;
  20. display:block;
  21. line-height: 60px;
  22. text-align: center;
  23. -webkit-transition: color 0.3s;
  24. -moz-transition: color 0.3s;
  25. transition: color 0.3s;
  26. z-index:2;
  27. position:relative;
  28. }
  29. .ares.tparrows.tp-leftarrow:before {
  30. content: "\e81f";
  31. }
  32. .ares.tparrows.tp-rightarrow:before {
  33. content: "\e81e";
  34. }
  35. .ares.tparrows:hover:before {
  36. color:#000;
  37. }
  38. .ares .tp-title-wrap {
  39. position:absolute;
  40. z-index:1;
  41. display:inline-block;
  42. background:#fff;
  43. min-height:60px;
  44. line-height:60px;
  45. top:0px;
  46. margin-left:30px;
  47. border-radius:0px 30px 30px 0px;
  48. overflow:hidden;
  49. -webkit-transition: -webkit-transform 0.3s;
  50. transition: transform 0.3s;
  51. transform:scaleX(0);
  52. -webkit-transform:scaleX(0);
  53. transform-origin:0% 50%;
  54. -webkit-transform-origin:0% 50%;
  55. }
  56. .ares.tp-rightarrow .tp-title-wrap {
  57. right:0px;
  58. margin-right:30px;margin-left:0px;
  59. -webkit-transform-origin:100% 50%;
  60. border-radius:30px 0px 0px 30px;
  61. }
  62. .ares.tparrows:hover .tp-title-wrap {
  63. transform:scaleX(1) scaleY(1);
  64. -webkit-transform:scaleX(1) scaleY(1);
  65. }
  66. .ares .tp-arr-titleholder {
  67. position:relative;
  68. -webkit-transition: -webkit-transform 0.3s;
  69. transition: transform 0.3s;
  70. transform:translateX(200px);
  71. text-transform:uppercase;
  72. color:#000;
  73. font-weight:400;
  74. font-size:14px;
  75. line-height:60px;
  76. white-space:nowrap;
  77. padding:0px 20px;
  78. margin-left:10px;
  79. opacity:0;
  80. }
  81. .ares.tp-rightarrow .tp-arr-titleholder {
  82. transform:translateX(-200px);
  83. margin-left:0px; margin-right:10px;
  84. }
  85. .ares.tparrows:hover .tp-arr-titleholder {
  86. transform:translateX(0px);
  87. -webkit-transform:translateX(0px);
  88. transition-delay: 0.1s;
  89. opacity:1;
  90. }
  91. /* BULLETS */
  92. .ares.tp-bullets {
  93. }
  94. .ares.tp-bullets:before {
  95. content:" ";
  96. position:absolute;
  97. width:100%;
  98. height:100%;
  99. background:transparent;
  100. padding:10px;
  101. margin-left:-10px;margin-top:-10px;
  102. box-sizing:content-box;
  103. }
  104. .ares .tp-bullet {
  105. width:13px;
  106. height:13px;
  107. position:absolute;
  108. background:#e5e5e5;
  109. border-radius:50%;
  110. cursor: pointer;
  111. box-sizing:content-box;
  112. }
  113. .ares .tp-bullet:hover,
  114. .ares .tp-bullet.selected {
  115. background:#fff;
  116. }
  117. .ares .tp-bullet-title {
  118. position:absolute;
  119. color:#888;
  120. font-size:12px;
  121. padding:0px 10px;
  122. font-weight:600;
  123. right:27px;
  124. top:-4px;
  125. background:#fff;
  126. background:rgba(255,255,255,0.75);
  127. visibility:hidden;
  128. transform:translateX(-20px);
  129. -webkit-transform:translateX(-20px);
  130. transition:transform 0.3s;
  131. -webkit-transition:transform 0.3s;
  132. line-height:20px;
  133. white-space:nowrap;
  134. }
  135. .ares .tp-bullet-title:after {
  136. width: 0px;
  137. height: 0px;
  138. border-style: solid;
  139. border-width: 10px 0 10px 10px;
  140. border-color: transparent transparent transparent rgba(255,255,255,0.75);
  141. content:" ";
  142. position:absolute;
  143. right:-10px;
  144. top:0px;
  145. }
  146. .ares .tp-bullet:hover .tp-bullet-title{
  147. visibility:visible;
  148. transform:translateX(0px);
  149. -webkit-transform:translateX(0px);
  150. }
  151. .ares .tp-bullet.selected:hover .tp-bullet-title {
  152. background:#fff;
  153. }
  154. .ares .tp-bullet.selected:hover .tp-bullet-title:after {
  155. border-color:transparent transparent transparent #fff;
  156. }
  157. .ares.tp-bullets:hover .tp-bullet-title {
  158. visibility:hidden;
  159. }
  160. .ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
  161. visibility:visible;
  162. }
  163. /* TABS */
  164. .ares .tp-tab {
  165. opacity:1;
  166. padding:10px;
  167. box-sizing:border-box;
  168. font-family: "Roboto", sans-serif;
  169. border-bottom: 1px solid #e5e5e5;
  170. }
  171. .ares .tp-tab-image
  172. {
  173. width:60px;
  174. height:60px; max-height:100%; max-width:100%;
  175. position:relative;
  176. display:inline-block;
  177. float:left;
  178. }
  179. .ares .tp-tab-content
  180. {
  181. background:rgba(0,0,0,0);
  182. position:relative;
  183. padding:15px 15px 15px 85px;
  184. left:0px;
  185. overflow:hidden;
  186. margin-top:-15px;
  187. box-sizing:border-box;
  188. color:#333;
  189. display: inline-block;
  190. width:100%;
  191. height:100%;
  192. position:absolute; }
  193. .ares .tp-tab-date
  194. {
  195. display:block;
  196. color: #aaa;
  197. font-weight:500;
  198. font-size:12px;
  199. margin-bottom:0px;
  200. }
  201. .ares .tp-tab-title
  202. {
  203. display:block;
  204. text-align:left;
  205. color:#333;
  206. font-size:14px;
  207. font-weight:500;
  208. text-transform:none;
  209. line-height:17px;
  210. }
  211. .ares .tp-tab:hover,
  212. .ares .tp-tab.selected {
  213. background:#eee;
  214. }
  215. .ares .tp-tab-mask {
  216. }
  217. /* MEDIA QUERIES */
  218. @media only screen and (max-width: 960px) {
  219. }
  220. @media only screen and (max-width: 768px) {
  221. }
  222. /*-----------------------------------------------------------------------------
  223. - Revolution Slider 5.0 Navigatin Skin Style -
  224. CUSTOM SKIN
  225. author: ThemePunch
  226. email: info@themepunch.com
  227. website: http://www.themepunch.com
  228. -----------------------------------------------------------------------------*/
  229. /* ARROWS */
  230. .custom.tparrows {
  231. cursor:pointer;
  232. background:#000;
  233. background:rgba(0,0,0,0.5);
  234. width:40px;
  235. height:40px;
  236. position:absolute;
  237. display:block;
  238. z-index:10000;
  239. }
  240. .custom.tparrows:hover {
  241. background:#000;
  242. }
  243. .custom.tparrows:before {
  244. font-family: "revicons";
  245. font-size:15px;
  246. color:#fff;
  247. display:block;
  248. line-height: 40px;
  249. text-align: center;
  250. }
  251. .custom.tparrows.tp-leftarrow:before {
  252. content: "\e824";
  253. }
  254. .custom.tparrows.tp-rightarrow:before {
  255. content: "\e825";
  256. }
  257. /* BULLETS */
  258. .custom.tp-bullets {
  259. }
  260. .custom.tp-bullets:before {
  261. content:" ";
  262. position:absolute;
  263. width:100%;
  264. height:100%;
  265. background:transparent;
  266. padding:10px;
  267. margin-left:-10px;margin-top:-10px;
  268. box-sizing:content-box;
  269. }
  270. .custom .tp-bullet {
  271. width:12px;
  272. height:12px;
  273. position:absolute;
  274. background:#aaa;
  275. background:rgba(125,125,125,0.5);
  276. cursor: pointer;
  277. box-sizing:content-box;
  278. }
  279. .custom .tp-bullet:hover,
  280. .custom .tp-bullet.selected {
  281. background:rgb(125,125,125);
  282. }
  283. .custom .tp-bullet-image {
  284. }
  285. .custom .tp-bullet-title {
  286. }
  287. /* THUMBS */
  288. /* TABS */
  289. /*-----------------------------------------------------------------------------
  290. - Revolution Slider 5.0 Navigatin Skin Style -
  291. DIONE SKIN
  292. author: ThemePunch
  293. email: info@themepunch.com
  294. website: http://www.themepunch.com
  295. -----------------------------------------------------------------------------*/
  296. /* ARROWS */
  297. .dione.tparrows {
  298. height:100%;
  299. width:100px;
  300. background:transparent;
  301. background:rgba(0,0,0,0);
  302. line-height:100%;
  303. transition:all 0.3s;
  304. -webkit-transition:all 0.3s;
  305. }
  306. .dione.tparrows:hover {
  307. background:rgba(0,0,0,0.45);
  308. }
  309. .dione .tp-arr-imgwrapper {
  310. width:100px;
  311. left:0px;
  312. position:absolute;
  313. height:100%;
  314. top:0px;
  315. overflow:hidden;
  316. }
  317. .dione.tp-rightarrow .tp-arr-imgwrapper {
  318. left:auto;
  319. right:0px;
  320. }
  321. .dione .tp-arr-imgholder {
  322. background-position:center center;
  323. background-size:cover;
  324. width:100px;
  325. height:100%;
  326. top:0px;
  327. visibility:hidden;
  328. transform:translateX(-50px);
  329. -webkit-transform:translateX(-50px);
  330. transition:all 0.3s;
  331. -webkit-transition:all 0.3s;
  332. opacity:0;
  333. left:0px;
  334. }
  335. .dione.tparrows.tp-rightarrow .tp-arr-imgholder {
  336. right:0px;
  337. left:auto;
  338. transform:translateX(50px);
  339. -webkit-transform:translateX(50px);
  340. }
  341. .dione.tparrows:before {
  342. position:absolute;
  343. line-height:30px;
  344. margin-left:-22px;
  345. top:50%;
  346. left:50%;
  347. font-size:30px;
  348. margin-top:-15px;
  349. transition:all 0.3s;
  350. -webkit-transition:all 0.3s;
  351. }
  352. .dione.tparrows.tp-rightarrow:before {
  353. margin-left:6px;
  354. }
  355. .dione.tparrows:hover:before {
  356. transform:translateX(-20px);
  357. -webkit-transform:translateX(-20px);
  358. opacity:0;
  359. }
  360. .dione.tparrows.tp-rightarrow:hover:before {
  361. transform:translateX(20px);
  362. -webkit-transform:translateX(20px);
  363. }
  364. .dione.tparrows:hover .tp-arr-imgholder {
  365. transform:translateX(0px);
  366. -webkit-transform:translateX(0px);
  367. opacity:1;
  368. visibility:visible;
  369. }
  370. /* BULLETS */
  371. .dione .tp-bullet {
  372. opacity:1;
  373. width:50px;
  374. height:50px;
  375. padding:3px;
  376. background:#000;
  377. background-color:rgba(0,0,0,0.25);
  378. margin:0px;
  379. box-sizing:border-box;
  380. transition:all 0.3s;
  381. -webkit-transition:all 0.3s;
  382. }
  383. .dione .tp-bullet-image {
  384. display:block;
  385. box-sizing:border-box;
  386. position:relative;
  387. -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  388. -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  389. box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  390. width:44px;
  391. height:44px;
  392. background-size:cover;
  393. background-position:center center;
  394. }
  395. .dione .tp-bullet-title {
  396. position:absolute;
  397. bottom:65px;
  398. display:inline-block;
  399. left:50%;
  400. background:#000;
  401. background:rgba(0,0,0,0.75);
  402. color:#fff;
  403. padding:10px 30px;
  404. border-radius:4px;
  405. -webkit-border-radius:4px;
  406. opacity:0;
  407. transition:all 0.3s;
  408. -webkit-transition:all 0.3s;
  409. transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  410. transform-origin:50% 100%;
  411. -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  412. -webkit-transform-origin:50% 100%;
  413. opacity:0;
  414. white-space:nowrap;
  415. }
  416. .dione .tp-bullet:hover .tp-bullet-title {
  417. transform:rotateX(0deg) translateX(-50%);
  418. -webkit-transform:rotateX(0deg) translateX(-50%);
  419. opacity:1;
  420. }
  421. .dione .tp-bullet.selected,
  422. .dione .tp-bullet:hover {
  423. background: rgba(255,255,255,1);
  424. background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  425. background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  426. background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  427. background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  428. background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  429. background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  430. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
  431. }
  432. .dione .tp-bullet-title:after {
  433. content:" ";
  434. position:absolute;
  435. left:50%;
  436. margin-left:-8px;
  437. width: 0;
  438. height: 0;
  439. border-style: solid;
  440. border-width: 8px 8px 0 8px;
  441. border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  442. bottom:-8px;
  443. }
  444. /*-----------------------------------------------------------------------------
  445. - Revolution Slider 5.0 Navigatin Skin Style -
  446. ERINYEN SKIN
  447. author: ThemePunch
  448. email: info@themepunch.com
  449. website: http://www.themepunch.com
  450. -----------------------------------------------------------------------------*/
  451. /* ARROWS */
  452. .erinyen.tparrows {
  453. cursor:pointer;
  454. background:#000;
  455. background:rgba(0,0,0,0.5);
  456. min-width:70px;
  457. min-height:70px;
  458. position:absolute;
  459. display:block;
  460. z-index:1000;
  461. border-radius:35px;
  462. }
  463. .erinyen.tparrows:before {
  464. font-family: "revicons";
  465. font-size:20px;
  466. color:#fff;
  467. display:block;
  468. line-height: 70px;
  469. text-align: center;
  470. z-index:2;
  471. position:relative;
  472. }
  473. .erinyen.tparrows.tp-leftarrow:before {
  474. content: "\e824";
  475. }
  476. .erinyen.tparrows.tp-rightarrow:before {
  477. content: "\e825";
  478. }
  479. .erinyen .tp-title-wrap {
  480. position:absolute;
  481. z-index:1;
  482. display:inline-block;
  483. background:#000;
  484. background:rgba(0,0,0,0.5);
  485. min-height:70px;
  486. line-height:70px;
  487. top:0px;
  488. margin-left:0px;
  489. border-radius:35px;
  490. overflow:hidden;
  491. transition: opacity 0.3s;
  492. -webkit-transition:opacity 0.3s;
  493. -moz-transition:opacity 0.3s;
  494. -webkit-transform: scale(0);
  495. -moz-transform: scale(0);
  496. transform: scale(0);
  497. visibility:hidden;
  498. opacity:0;
  499. }
  500. .erinyen.tparrows:hover .tp-title-wrap{
  501. -webkit-transform: scale(1);
  502. -moz-transform: scale(1);
  503. transform: scale(1);
  504. opacity:1;
  505. visibility:visible;
  506. }
  507. .erinyen.tp-rightarrow .tp-title-wrap {
  508. right:0px;
  509. margin-right:0px;margin-left:0px;
  510. -webkit-transform-origin:100% 50%;
  511. border-radius:35px;
  512. padding-right:20px;
  513. padding-left:10px;
  514. }
  515. .erinyen.tp-leftarrow .tp-title-wrap {
  516. padding-left:20px;
  517. padding-right:10px;
  518. }
  519. .erinyen .tp-arr-titleholder {
  520. letter-spacing: 3px;
  521. position:relative;
  522. -webkit-transition: -webkit-transform 0.3s;
  523. transition: transform 0.3s;
  524. transform:translateX(200px);
  525. text-transform:uppercase;
  526. color:#fff;
  527. font-weight:600;
  528. font-size:13px;
  529. line-height:70px;
  530. white-space:nowrap;
  531. padding:0px 20px;
  532. margin-left:11px;
  533. opacity:0;
  534. }
  535. .erinyen .tp-arr-imgholder {
  536. width:100%;
  537. height:100%;
  538. position:absolute;
  539. top:0px;
  540. left:0px;
  541. background-position:center center;
  542. background-size:cover;
  543. }
  544. .erinyen .tp-arr-img-over {
  545. width:100%;
  546. height:100%;
  547. position:absolute;
  548. top:0px;
  549. left:0px;
  550. background:#000;
  551. background:rgba(0,0,0,0.5);
  552. }
  553. .erinyen.tp-rightarrow .tp-arr-titleholder {
  554. transform:translateX(-200px);
  555. margin-left:0px; margin-right:11px;
  556. }
  557. .erinyen.tparrows:hover .tp-arr-titleholder {
  558. transform:translateX(0px);
  559. -webkit-transform:translateX(0px);
  560. transition-delay: 0.1s;
  561. opacity:1;
  562. }
  563. /* BULLETS */
  564. .erinyen.tp-bullets {
  565. }
  566. .erinyen.tp-bullets:before {
  567. content:" ";
  568. position:absolute;
  569. width:100%;
  570. height:100%;
  571. background: #555555; /* old browsers */
  572. background: -moz-linear-gradient(top, #555555 0%, #222222 100%); /* ff3.6+ */
  573. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555555), color-stop(100%,#222222)); /* chrome,safari4+ */
  574. background: -webkit-linear-gradient(top, #555555 0%,#222222 100%); /* chrome10+,safari5.1+ */
  575. background: -o-linear-gradient(top, #555555 0%,#222222 100%); /* opera 11.10+ */
  576. background: -ms-linear-gradient(top, #555555 0%,#222222 100%); /* ie10+ */
  577. background: linear-gradient(to bottom, #555555 0%,#222222 100%); /* w3c */
  578. filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 ); /* ie6-9 */
  579. padding:10px 15px;
  580. margin-left:-15px;margin-top:-10px;
  581. box-sizing:content-box;
  582. border-radius:10px;
  583. box-shadow:0px 0px 2px 1px rgba(33,33,33,0.3);
  584. }
  585. .erinyen .tp-bullet {
  586. width:13px;
  587. height:13px;
  588. position:absolute;
  589. background:#111;
  590. border-radius:50%;
  591. cursor: pointer;
  592. box-sizing:content-box;
  593. }
  594. .erinyen .tp-bullet:hover,
  595. .erinyen .tp-bullet.selected {
  596. background: #e5e5e5; /* old browsers */
  597. background: -moz-linear-gradient(top, #e5e5e5 0%, #999999 100%); /* ff3.6+ */
  598. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#999999)); /* chrome,safari4+ */
  599. background: -webkit-linear-gradient(top, #e5e5e5 0%,#999999 100%); /* chrome10+,safari5.1+ */
  600. background: -o-linear-gradient(top, #e5e5e5 0%,#999999 100%); /* opera 11.10+ */
  601. background: -ms-linear-gradient(top, #e5e5e5 0%,#999999 100%); /* ie10+ */
  602. background: linear-gradient(to bottom, #e5e5e5 0%,#999999 100%); /* w3c */
  603. filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 ); /* ie6-9 */
  604. border:1px solid #555;
  605. width:12px;height:12px;
  606. }
  607. .erinyen .tp-bullet-image {
  608. }
  609. .erinyen .tp-bullet-title {
  610. }
  611. /* THUMBS */
  612. .erinyen .tp-thumb {
  613. opacity:1
  614. }
  615. .erinyen .tp-thumb-over {
  616. background:#000;
  617. background:rgba(0,0,0,0.25);
  618. width:100%;
  619. height:100%;
  620. position:absolute;
  621. top:0px;
  622. left:0px;
  623. z-index:1;
  624. -webkit-transition:all 0.3s;
  625. transition:all 0.3s;
  626. }
  627. .erinyen .tp-thumb-more:before {
  628. font-family: "revicons";
  629. font-size:12px;
  630. color:#aaa;
  631. color:rgba(255,255,255,0.75);
  632. display:block;
  633. line-height: 12px;
  634. text-align: left;
  635. z-index:2;
  636. position:absolute;
  637. top:20px;
  638. right:20px;
  639. z-index:2;
  640. }
  641. .erinyen .tp-thumb-more:before {
  642. content: "\e825";
  643. }
  644. .erinyen .tp-thumb-title {
  645. font-family:"Raleway";
  646. letter-spacing:1px;
  647. font-size:12px;
  648. color:#fff;
  649. display:block;
  650. line-height: 15px;
  651. text-align: left;
  652. z-index:2;
  653. position:absolute;
  654. top:0px;
  655. left:0px;
  656. z-index:2;
  657. padding:20px 35px 20px 20px;
  658. width:100%;
  659. height:100%;
  660. box-sizing:border-box;
  661. transition:all 0.3s;
  662. -webkit-transition:all 0.3s;
  663. font-weight:500;
  664. }
  665. .erinyen .tp-thumb.selected .tp-thumb-more:before,
  666. .erinyen .tp-thumb:hover .tp-thumb-more:before {
  667. color:#aaa;
  668. }
  669. .erinyen .tp-thumb.selected .tp-thumb-over,
  670. .erinyen .tp-thumb:hover .tp-thumb-over {
  671. background:#fff;
  672. }
  673. .erinyen .tp-thumb.selected .tp-thumb-title,
  674. .erinyen .tp-thumb:hover .tp-thumb-title {
  675. color:#000;
  676. }
  677. /* TABS */
  678. .erinyen .tp-tab-title {
  679. color:#a8d8ee;
  680. font-size:13px;
  681. font-weight:700;
  682. text-transform:uppercase;
  683. font-family:"Roboto Slab"
  684. margin-bottom:5px;
  685. }
  686. .erinyen .tp-tab-desc {
  687. font-size:18px;
  688. font-weight:400;
  689. color:#fff;
  690. line-height:25px;
  691. font-family:"Roboto Slab";
  692. }
  693. /*-----------------------------------------------------------------------------
  694. - Revolution Slider 5.0 Navigatin Skin Style -
  695. GYGES SKIN
  696. author: ThemePunch
  697. email: info@themepunch.com
  698. website: http://www.themepunch.com
  699. -----------------------------------------------------------------------------*/
  700. /* ARROWS */
  701. /* BULLETS */
  702. .gyges.tp-bullets {
  703. }
  704. .gyges.tp-bullets:before {
  705. content:" ";
  706. position:absolute;
  707. width:100%;
  708. height:100%;
  709. background: #777777; /* Old browsers */
  710. background: -moz-linear-gradient(top, #777777 0%, #666666 100%);
  711. background: -webkit-gradient(linear, left top, left bottom,
  712. color-stop(0%,#777777), color-stop(100%,#666666));
  713. background: -webkit-linear-gradient(top, #777777 0%,#666666 100%);
  714. background: -o-linear-gradient(top, #777777 0%,#666666 100%);
  715. background: -ms-linear-gradient(top, #777777 0%,#666666 100%);
  716. background: linear-gradient(to bottom, #777777 0%,#666666 100%);
  717. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#777777",
  718. endColorstr="#666666",GradientType=0 );
  719. padding:10px;
  720. margin-left:-10px;margin-top:-10px;
  721. box-sizing:content-box;
  722. border-radius:10px;
  723. }
  724. .gyges .tp-bullet {
  725. width:12px;
  726. height:12px;
  727. position:absolute;
  728. background:#333;
  729. border:3px solid #444;
  730. border-radius:50%;
  731. cursor: pointer;
  732. box-sizing:content-box;
  733. }
  734. .gyges .tp-bullet:hover,
  735. .gyges .tp-bullet.selected {
  736. background: #ffffff; /* Old browsers */
  737. background: -moz-linear-gradient(top, #ffffff 0%, #e1e1e1 100%); /* FF3.6+ */
  738. background: -webkit-gradient(linear, left top, left bottom,
  739. color-stop(0%,#ffffff), color-stop(100%,#e1e1e1)); /* Chrome,Safari4+ */
  740. background: -webkit-linear-gradient(top, #ffffff 0%,#e1e1e1 100%); /* Chrome10+,Safari5.1+ */
  741. background: -o-linear-gradient(top, #ffffff 0%,#e1e1e1 100%); /* Opera 11.10+ */
  742. background: -ms-linear-gradient(top, #ffffff 0%,#e1e1e1 100%); /* IE10+ */
  743. background: linear-gradient(to bottom, #ffffff 0%,#e1e1e1 100%); /* W3C */
  744. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff",
  745. endColorstr="#e1e1e1",GradientType=0 ); /* IE6-9 */
  746. }
  747. .gyges .tp-bullet-image {
  748. }
  749. .gyges .tp-bullet-title {
  750. }
  751. /* THUMBS */
  752. .gyges .tp-thumb {
  753. opacity:1
  754. }
  755. .gyges .tp-thumb-img-wrap {
  756. padding:3px;
  757. background:#000;
  758. background-color:rgba(0,0,0,0.25);
  759. display:inline-block;
  760. width:100%;
  761. height:100%;
  762. position:relative;
  763. margin:0px;
  764. box-sizing:border-box;
  765. transition:all 0.3s;
  766. -webkit-transition:all 0.3s;
  767. }
  768. .gyges .tp-thumb-image {
  769. padding:3px;
  770. display:block;
  771. box-sizing:border-box;
  772. position:relative;
  773. -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  774. -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  775. box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  776. }
  777. .gyges .tp-thumb-title {
  778. position:absolute;
  779. bottom:100%;
  780. display:inline-block;
  781. left:50%;
  782. background:rgba(255,255,255,0.8);
  783. padding:10px 30px;
  784. border-radius:4px;
  785. -webkit-border-radius:4px;
  786. margin-bottom:20px;
  787. opacity:0;
  788. transition:all 0.3s;
  789. -webkit-transition:all 0.3s;
  790. transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  791. transform-origin:50% 100%;
  792. -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  793. -webkit-transform-origin:50% 100%;
  794. white-space:nowrap;
  795. }
  796. .gyges .tp-thumb:hover .tp-thumb-title {
  797. transform:rotateX(0deg) translateX(-50%);
  798. -webkit-transform:rotateX(0deg) translateX(-50%);
  799. opacity:1;
  800. }
  801. .gyges .tp-thumb:hover .tp-thumb-img-wrap,
  802. .gyges .tp-thumb.selected .tp-thumb-img-wrap {
  803. background: rgba(255,255,255,1);
  804. background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  805. background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  806. background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  807. background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  808. background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  809. background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  810. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
  811. }
  812. .gyges .tp-thumb-title:after {
  813. content:" ";
  814. position:absolute;
  815. left:50%;
  816. margin-left:-8px;
  817. width: 0;
  818. height: 0;
  819. border-style: solid;
  820. border-width: 8px 8px 0 8px;
  821. border-color: rgba(255,255,255,0.8) transparent transparent transparent;
  822. bottom:-8px;
  823. }
  824. /* TABS */
  825. .gyges .tp-tab {
  826. opacity:1;
  827. padding:10px;
  828. box-sizing:border-box;
  829. font-family: "Roboto", sans-serif;
  830. border-bottom: 1px solid rgba(255,255,255,0.15);
  831. }
  832. .gyges .tp-tab-image
  833. {
  834. width:60px;
  835. height:60px; max-height:100%; max-width:100%;
  836. position:relative;
  837. display:inline-block;
  838. float:left;
  839. }
  840. .gyges .tp-tab-content
  841. {
  842. background:rgba(0,0,0,0);
  843. position:relative;
  844. padding:15px 15px 15px 85px;
  845. left:0px;
  846. overflow:hidden;
  847. margin-top:-15px;
  848. box-sizing:border-box;
  849. color:#333;
  850. display: inline-block;
  851. width:100%;
  852. height:100%;
  853. position:absolute; }
  854. .gyges .tp-tab-date
  855. {
  856. display:block;
  857. color: rgba(255,255,255,0.25);
  858. font-weight:500;
  859. font-size:12px;
  860. margin-bottom:0px;
  861. }
  862. .gyges .tp-tab-title
  863. {
  864. display:block;
  865. text-align:left;
  866. color:#fff;
  867. font-size:14px;
  868. font-weight:500;
  869. text-transform:none;
  870. line-height:17px;
  871. }
  872. .gyges .tp-tab:hover,
  873. .gyges .tp-tab.selected {
  874. background:rgba(0,0,0,0.5);
  875. }
  876. .gyges .tp-tab-mask {
  877. }
  878. /* MEDIA QUERIES */
  879. @media only screen and (max-width: 960px) {
  880. }
  881. @media only screen and (max-width: 768px) {
  882. }
  883. /*-----------------------------------------------------------------------------
  884. - Revolution Slider 5.0 Navigatin Skin Style -
  885. HADES SKIN
  886. author: ThemePunch
  887. email: info@themepunch.com
  888. website: http://www.themepunch.com
  889. -----------------------------------------------------------------------------*/
  890. /* ARROWS */
  891. .hades.tparrows {
  892. cursor:pointer;
  893. background:#000;
  894. background:rgba(0,0,0,0.15);
  895. width:100px;
  896. height:100px;
  897. position:absolute;
  898. display:block;
  899. z-index:1000;
  900. }
  901. .hades.tparrows:before {
  902. font-family: "revicons";
  903. font-size:30px;
  904. color:#fff;
  905. display:block;
  906. line-height: 100px;
  907. text-align: center;
  908. transition: background 0.3s, color 0.3s;
  909. }
  910. .hades.tparrows.tp-leftarrow:before {
  911. content: "\e824";
  912. }
  913. .hades.tparrows.tp-rightarrow:before {
  914. content: "\e825";
  915. }
  916. .hades.tparrows:hover:before {
  917. color:#aaa;
  918. background:#fff;
  919. background:rgba(255,255,255,1);
  920. }
  921. .hades .tp-arr-allwrapper {
  922. position:absolute;
  923. left:100%;
  924. top:0px;
  925. background:#888;
  926. width:100px;height:100px;
  927. -webkit-transition: all 0.3s;
  928. transition: all 0.3s;
  929. -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
  930. filter: alpha(opacity=0);
  931. -moz-opacity: 0.0;
  932. -khtml-opacity: 0.0;
  933. opacity: 0.0;
  934. -webkit-transform: rotatey(-90deg);
  935. transform: rotatey(-90deg);
  936. -webkit-transform-origin: 0% 50%;
  937. transform-origin: 0% 50%;
  938. }
  939. .hades.tp-rightarrow .tp-arr-allwrapper {
  940. left:auto;
  941. right:100%;
  942. -webkit-transform-origin: 100% 50%;
  943. transform-origin: 100% 50%;
  944. -webkit-transform: rotatey(90deg);
  945. transform: rotatey(90deg);
  946. }
  947. .hades:hover .tp-arr-allwrapper {
  948. -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
  949. filter: alpha(opacity=100);
  950. -moz-opacity: 1;
  951. -khtml-opacity: 1;
  952. opacity: 1;
  953. -webkit-transform: rotatey(0deg);
  954. transform: rotatey(0deg);
  955. }
  956. .hades .tp-arr-iwrapper {
  957. }
  958. .hades .tp-arr-imgholder {
  959. background-size:cover;
  960. position:absolute;
  961. top:0px;left:0px;
  962. width:100%;height:100%;
  963. }
  964. .hades .tp-arr-titleholder {
  965. }
  966. .hades .tp-arr-subtitleholder {
  967. }
  968. /* BULLETS */
  969. .hades.tp-bullets {
  970. }
  971. .hades.tp-bullets:before {
  972. content:" ";
  973. position:absolute;
  974. width:100%;
  975. height:100%;
  976. background:transparent;
  977. padding:10px;
  978. margin-left:-10px;margin-top:-10px;
  979. box-sizing:content-box;
  980. }
  981. .hades .tp-bullet {
  982. width:3px;
  983. height:3px;
  984. position:absolute;
  985. background:#888;
  986. cursor: pointer;
  987. border:5px solid #fff;
  988. box-sizing:content-box;
  989. box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
  990. -webkit-perspective:400;
  991. perspective:400;
  992. -webkit-transform:translatez(0.01px);
  993. transform:translatez(0.01px);
  994. }
  995. .hades .tp-bullet:hover,
  996. .hades .tp-bullet.selected {
  997. background:#555;
  998. }
  999. .hades .tp-bullet-image {
  1000. position:absolute;top:-80px; left:-60px;width:120px;height:60px;
  1001. background-position:center center;
  1002. background-size:cover;
  1003. visibility:hidden;
  1004. opacity:0;
  1005. transition:all 0.3s;
  1006. -webkit-transform-style:flat;
  1007. transform-style:flat;
  1008. perspective:600;
  1009. -webkit-perspective:600;
  1010. transform: rotatex(-90deg);
  1011. -webkit-transform: rotatex(-90deg);
  1012. box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
  1013. transform-origin:50% 100%;
  1014. -webkit-transform-origin:50% 100%;
  1015. }
  1016. .hades .tp-bullet:hover .tp-bullet-image {
  1017. display:block;
  1018. opacity:1;
  1019. transform: rotatex(0deg);
  1020. -webkit-transform: rotatex(0deg);
  1021. visibility:visible;
  1022. }
  1023. .hades .tp-bullet-title {
  1024. }
  1025. /* THUMBS */
  1026. .hades .tp-thumb {
  1027. opacity:1
  1028. }
  1029. .hades .tp-thumb-img-wrap {
  1030. border-radius:50%;
  1031. padding:3px;
  1032. display:inline-block;
  1033. background:#000;
  1034. background-color:rgba(0,0,0,0.25);
  1035. width:100%;
  1036. height:100%;
  1037. position:relative;
  1038. margin:0px;
  1039. box-sizing:border-box;
  1040. transition:all 0.3s;
  1041. -webkit-transition:all 0.3s;
  1042. }
  1043. .hades .tp-thumb-image {
  1044. padding:3px;
  1045. border-radius:50%;
  1046. display:block;
  1047. box-sizing:border-box;
  1048. position:relative;
  1049. -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  1050. -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  1051. box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  1052. }
  1053. .hades .tp-thumb:hover .tp-thumb-img-wrap,
  1054. .hades .tp-thumb.selected .tp-thumb-img-wrap {
  1055. background: rgba(255,255,255,1);
  1056. background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1057. background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  1058. background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1059. background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1060. background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1061. background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1062. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
  1063. }
  1064. .hades .tp-thumb-title:after {
  1065. content:" ";
  1066. position:absolute;
  1067. left:50%;
  1068. margin-left:-8px;
  1069. width: 0;
  1070. height: 0;
  1071. border-style: solid;
  1072. border-width: 8px 8px 0 8px;
  1073. border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  1074. bottom:-8px;
  1075. }
  1076. /* TABS */
  1077. .hades .tp-tab {
  1078. opacity:1;
  1079. }
  1080. .hades .tp-tab-title
  1081. {
  1082. display:block;
  1083. color:#333;
  1084. font-weight:600;
  1085. font-size:18px;
  1086. text-align:center;
  1087. line-height:25px;
  1088. }
  1089. .hades .tp-tab-price
  1090. {
  1091. display:block;
  1092. text-align:center;
  1093. color:#999;
  1094. font-size:16px;
  1095. margin-top:10px;
  1096. line-height:20px
  1097. }
  1098. .hades .tp-tab-button {
  1099. display:inline-block;
  1100. margin-top:15px;
  1101. text-align:center;
  1102. padding:5px 15px;
  1103. color:#fff;
  1104. font-size:14px;
  1105. background:#219bd7;
  1106. border-radius:4px;
  1107. font-weight:400;
  1108. }
  1109. .hades .tp-tab-inner {
  1110. text-align:center;
  1111. }
  1112. /*-----------------------------------------------------------------------------
  1113. - Revolution Slider 5.0 Navigatin Skin Style -
  1114. HEBE SKIN
  1115. author: ThemePunch
  1116. email: info@themepunch.com
  1117. website: http://www.themepunch.com
  1118. -----------------------------------------------------------------------------*/
  1119. /* ARROWS */
  1120. .hebe.tparrows {
  1121. cursor:pointer;
  1122. background:#fff;
  1123. min-width:70px;
  1124. min-height:70px;
  1125. position:absolute;
  1126. display:block;
  1127. z-index:1000;
  1128. }
  1129. .hebe.tparrows:hover {
  1130. }
  1131. .hebe.tparrows:before {
  1132. font-family: "revicons";
  1133. font-size:30px;
  1134. color:#aaa;
  1135. display:block;
  1136. line-height: 70px;
  1137. text-align: center;
  1138. -webkit-transition: color 0.3s;
  1139. -moz-transition: color 0.3s;
  1140. transition: color 0.3s;
  1141. z-index:2;
  1142. position:relative;
  1143. background:#fff;
  1144. min-width:70px;
  1145. min-height:70px;
  1146. }
  1147. .hebe.tparrows.tp-leftarrow:before {
  1148. content: "\e824";
  1149. }
  1150. .hebe.tparrows.tp-rightarrow:before {
  1151. content: "\e825";
  1152. }
  1153. .hebe.tparrows:hover:before {
  1154. color:#000;
  1155. }
  1156. .hebe .tp-title-wrap {
  1157. position:absolute;
  1158. z-index:0;
  1159. display:inline-block;
  1160. background:#000;
  1161. background:rgba(0,0,0,0.75);
  1162. min-height:60px;
  1163. line-height:60px;
  1164. top:-10px;
  1165. margin-left:0px;
  1166. -webkit-transition: -webkit-transform 0.3s;
  1167. transition: transform 0.3s;
  1168. transform:scaleX(0);
  1169. -webkit-transform:scaleX(0);
  1170. transform-origin:0% 50%;
  1171. -webkit-transform-origin:0% 50%;
  1172. }
  1173. .hebe.tp-rightarrow .tp-title-wrap {
  1174. right:0px;
  1175. -webkit-transform-origin:100% 50%;
  1176. }
  1177. .hebe.tparrows:hover .tp-title-wrap {
  1178. transform:scaleX(1);
  1179. -webkit-transform:scaleX(1);
  1180. }
  1181. .hebe .tp-arr-titleholder {
  1182. position:relative;
  1183. text-transform:uppercase;
  1184. color:#fff;
  1185. font-weight:600;
  1186. font-size:12px;
  1187. line-height:90px;
  1188. white-space:nowrap;
  1189. padding:0px 20px 0px 90px;
  1190. }
  1191. .hebe.tp-rightarrow .tp-arr-titleholder {
  1192. margin-left:0px;
  1193. padding:0px 90px 0px 20px;
  1194. }
  1195. .hebe.tparrows:hover .tp-arr-titleholder {
  1196. transform:translateX(0px);
  1197. -webkit-transform:translateX(0px);
  1198. transition-delay: 0.1s;
  1199. opacity:1;
  1200. }
  1201. .hebe .tp-arr-imgholder{
  1202. width:90px;
  1203. height:90px;
  1204. position:absolute;
  1205. left:100%;
  1206. display:block;
  1207. background-size:cover;
  1208. background-position:center center;
  1209. top:0px; right:-90px;
  1210. }
  1211. .hebe.tp-rightarrow .tp-arr-imgholder{
  1212. right:auto;left:-90px;
  1213. }
  1214. /* BULLETS */
  1215. .hebe.tp-bullets {
  1216. }
  1217. .hebe.tp-bullets:before {
  1218. content:" ";
  1219. position:absolute;
  1220. width:100%;
  1221. height:100%;
  1222. background:transparent;
  1223. padding:10px;
  1224. margin-left:-10px;margin-top:-10px;
  1225. box-sizing:content-box;
  1226. }
  1227. .hebe .tp-bullet {
  1228. width:3px;
  1229. height:3px;
  1230. position:absolute;
  1231. background:#fff;
  1232. cursor: pointer;
  1233. border:5px solid #222;
  1234. border-radius:50%;
  1235. box-sizing:content-box;
  1236. -webkit-perspective:400;
  1237. perspective:400;
  1238. -webkit-transform:translateZ(0.01px);
  1239. transform:translateZ(0.01px);
  1240. transition:all 0.3s;
  1241. }
  1242. .hebe .tp-bullet:hover,
  1243. .hebe .tp-bullet.selected {
  1244. background:#222;
  1245. border-color:#fff;
  1246. }
  1247. .hebe .tp-bullet-image {
  1248. position:absolute;
  1249. top:-90px; left:-40px;
  1250. width:70px;
  1251. height:70px;
  1252. background-position:center center;
  1253. background-size:cover;
  1254. visibility:hidden;
  1255. opacity:0;
  1256. transition:all 0.3s;
  1257. -webkit-transform-style:flat;
  1258. transform-style:flat;
  1259. perspective:600;
  1260. -webkit-perspective:600;
  1261. transform: scale(0);
  1262. -webkit-transform: scale(0);
  1263. transform-origin:50% 100%;
  1264. -webkit-transform-origin:50% 100%;
  1265. border-radius:6px;
  1266. }
  1267. .hebe .tp-bullet:hover .tp-bullet-image {
  1268. display:block;
  1269. opacity:1;
  1270. transform: scale(1);
  1271. -webkit-transform: scale(1);
  1272. visibility:visible;
  1273. }
  1274. .hebe .tp-bullet-title {
  1275. }
  1276. /* TABS */
  1277. .hebe .tp-tab-title {
  1278. color:#a8d8ee;
  1279. font-size:13px;
  1280. font-weight:700;
  1281. text-transform:uppercase;
  1282. font-family:"Roboto Slab"
  1283. margin-bottom:5px;
  1284. }
  1285. .hebe .tp-tab-desc {
  1286. font-size:18px;
  1287. font-weight:400;
  1288. color:#fff;
  1289. line-height:25px;
  1290. font-family:"Roboto Slab";
  1291. }
  1292. /*-----------------------------------------------------------------------------
  1293. - Revolution Slider 5.0 Navigatin Skin Style -
  1294. HEPHAISTOS SKIN
  1295. author: ThemePunch
  1296. email: info@themepunch.com
  1297. website: http://www.themepunch.com
  1298. -----------------------------------------------------------------------------*/
  1299. /* ARROWS */
  1300. .hephaistos.tparrows {
  1301. cursor:pointer;
  1302. background:#000;
  1303. background:rgba(0,0,0,0.5);
  1304. width:40px;
  1305. height:40px;
  1306. position:absolute;
  1307. display:block;
  1308. z-index:1000;
  1309. border-radius:50%;
  1310. }
  1311. .hephaistos.tparrows:hover {
  1312. background:#000;
  1313. }
  1314. .hephaistos.tparrows:before {
  1315. font-family: "revicons";
  1316. font-size:18px;
  1317. color:#fff;
  1318. display:block;
  1319. line-height: 40px;
  1320. text-align: center;
  1321. }
  1322. .hephaistos.tparrows.tp-leftarrow:before {
  1323. content: "\e82c";
  1324. margin-left:-2px;
  1325. }
  1326. .hephaistos.tparrows.tp-rightarrow:before {
  1327. content: "\e82d";
  1328. margin-right:-2px;
  1329. }
  1330. /* BULLETS */
  1331. .hephaistos.tp-bullets {
  1332. }
  1333. .hephaistos.tp-bullets:before {
  1334. content:" ";
  1335. position:absolute;
  1336. width:100%;
  1337. height:100%;
  1338. background:transparent;
  1339. padding:10px;
  1340. margin-left:-10px;margin-top:-10px;
  1341. box-sizing:content-box;
  1342. }
  1343. .hephaistos .tp-bullet {
  1344. width:12px;
  1345. height:12px;
  1346. position:absolute;
  1347. background:#999;
  1348. border:3px solid #f5f5f5;
  1349. border-radius:50%;
  1350. cursor: pointer;
  1351. box-sizing:content-box;
  1352. box-shadow: 0px 0px 2px 1px rgba(130,130,130, 0.3);
  1353. }
  1354. .hephaistos .tp-bullet:hover,
  1355. .hephaistos .tp-bullet.selected {
  1356. background:#fff;
  1357. border-color:#000;
  1358. }
  1359. .hephaistos .tp-bullet-image {
  1360. }
  1361. .hephaistos .tp-bullet-title {
  1362. }
  1363. /*-----------------------------------------------------------------------------
  1364. - Revolution Slider 5.0 Navigatin Skin Style -
  1365. HERMES SKIN
  1366. author: ThemePunch
  1367. email: info@themepunch.com
  1368. website: http://www.themepunch.com
  1369. -----------------------------------------------------------------------------*/
  1370. /* ARROWS */
  1371. .hermes.tparrows {
  1372. cursor:pointer;
  1373. background:#000;
  1374. background:rgba(0,0,0,0.5);
  1375. width:30px;
  1376. height:110px;
  1377. position:absolute;
  1378. display:block;
  1379. z-index:1000;
  1380. }
  1381. .hermes.tparrows:before {
  1382. font-family: "revicons";
  1383. font-size:15px;
  1384. color:#fff;
  1385. display:block;
  1386. line-height: 110px;
  1387. text-align: center;
  1388. transform:translateX(0px);
  1389. -webkit-transform:translateX(0px);
  1390. transition:all 0.3s;
  1391. -webkit-transition:all 0.3s;
  1392. }
  1393. .hermes.tparrows.tp-leftarrow:before {
  1394. content: "\e824";
  1395. }
  1396. .hermes.tparrows.tp-rightarrow:before {
  1397. content: "\e825";
  1398. }
  1399. .hermes.tparrows.tp-leftarrow:hover:before {
  1400. transform:translateX(-20px);
  1401. -webkit-transform:translateX(-20px);
  1402. opacity:0;
  1403. }
  1404. .hermes.tparrows.tp-rightarrow:hover:before {
  1405. transform:translateX(20px);
  1406. -webkit-transform:translateX(20px);
  1407. opacity:0;
  1408. }
  1409. .hermes .tp-arr-allwrapper {
  1410. overflow:hidden;
  1411. position:absolute;
  1412. width:180px;
  1413. height:140px;
  1414. top:0px;
  1415. left:0px;
  1416. visibility:hidden;
  1417. -webkit-transition: -webkit-transform 0.3s 0.3s;
  1418. transition: transform 0.3s 0.3s;
  1419. -webkit-perspective: 1000px;
  1420. perspective: 1000px;
  1421. }
  1422. .hermes.tp-rightarrow .tp-arr-allwrapper {
  1423. right:0px;left:auto;
  1424. }
  1425. .hermes.tparrows:hover .tp-arr-allwrapper {
  1426. visibility:visible;
  1427. }
  1428. .hermes .tp-arr-imgholder {
  1429. width:180px;position:absolute;
  1430. left:0px;top:0px;height:110px;
  1431. transform:translateX(-180px);
  1432. -webkit-transform:translateX(-180px);
  1433. transition:all 0.3s;
  1434. transition-delay:0.3s;
  1435. }
  1436. .hermes.tp-rightarrow .tp-arr-imgholder{
  1437. transform:translateX(180px);
  1438. -webkit-transform:translateX(180px);
  1439. }
  1440. .hermes.tparrows:hover .tp-arr-imgholder {
  1441. transform:translateX(0px);
  1442. -webkit-transform:translateX(0px);
  1443. }
  1444. .hermes .tp-arr-titleholder {
  1445. top:110px;
  1446. width:180px;
  1447. text-align:left;
  1448. display:block;
  1449. padding:0px 10px;
  1450. line-height:30px; background:#000;
  1451. background:rgba(0,0,0,0.75);color:#fff;
  1452. font-weight:600; position:absolute;
  1453. font-size:12px;
  1454. white-space:nowrap;
  1455. letter-spacing:1px;
  1456. -webkit-transition: all 0.3s;
  1457. transition: all 0.3s;
  1458. -webkit-transform: rotateX(-90deg);
  1459. transform: rotateX(-90deg);
  1460. -webkit-transform-origin: 50% 0;
  1461. transform-origin: 50% 0;
  1462. box-sizing:border-box;
  1463. }
  1464. .hermes.tparrows:hover .tp-arr-titleholder {
  1465. -webkit-transition-delay: 0.6s;
  1466. transition-delay: 0.6s;
  1467. -webkit-transform: rotateX(0deg);
  1468. transform: rotateX(0deg);
  1469. }
  1470. /* BULLETS */
  1471. .hermes.tp-bullets {
  1472. }
  1473. .hermes .tp-bullet {
  1474. overflow:hidden;
  1475. border-radius:50%;
  1476. width:16px;
  1477. height:16px;
  1478. background-color: rgba(0, 0, 0, 0);
  1479. box-shadow: inset 0 0 0 2px #FFF;
  1480. -webkit-transition: background 0.3s ease;
  1481. transition: background 0.3s ease;
  1482. position:absolute;
  1483. }
  1484. .hermes .tp-bullet:hover {
  1485. background-color: rgba(0, 0, 0, 0.2);
  1486. }
  1487. .hermes .tp-bullet:after {
  1488. content: ' ';
  1489. position: absolute;
  1490. bottom: 0;
  1491. height: 0;
  1492. left: 0;
  1493. width: 100%;
  1494. background-color: #FFF;
  1495. box-shadow: 0 0 1px #FFF;
  1496. -webkit-transition: height 0.3s ease;
  1497. transition: height 0.3s ease;
  1498. }
  1499. .hermes .tp-bullet.selected:after {
  1500. height:100%;
  1501. }
  1502. /* TABS */
  1503. .hermes .tp-tab {
  1504. opacity:1;
  1505. padding-right:10px;
  1506. box-sizing:border-box;
  1507. }
  1508. .hermes .tp-tab-image
  1509. {
  1510. width:100%;
  1511. height:60%;
  1512. position:relative;
  1513. }
  1514. .hermes .tp-tab-content
  1515. {
  1516. background:rgb(54,54,54);
  1517. position:absolute;
  1518. padding:20px 20px 20px 30px;
  1519. box-sizing:border-box;
  1520. color:#fff;
  1521. display:block;
  1522. width:100%;
  1523. min-height:40%;
  1524. bottom:0px;
  1525. left:-10px;
  1526. }
  1527. .hermes .tp-tab-date
  1528. {
  1529. display:block;
  1530. color:#888;
  1531. font-weight:600;
  1532. font-size:12px;
  1533. margin-bottom:10px;
  1534. }
  1535. .hermes .tp-tab-title
  1536. {
  1537. display:block;
  1538. color:#fff;
  1539. font-size:16px;
  1540. font-weight:800;
  1541. text-transform:uppercase;
  1542. line-height:19px;
  1543. }
  1544. .hermes .tp-tab.selected .tp-tab-title:after {
  1545. width: 0px;
  1546. height: 0px;
  1547. border-style: solid;
  1548. border-width: 30px 0 30px 10px;
  1549. border-color: transparent transparent transparent rgb(54,54,54);
  1550. content:" ";
  1551. position:absolute;
  1552. right:-9px;
  1553. bottom:50%;
  1554. margin-bottom:-30px;
  1555. }
  1556. .hermes .tp-tab-mask {
  1557. padding-right:10px !important;
  1558. }
  1559. /* MEDIA QUERIES */
  1560. @media only screen and (max-width: 960px) {
  1561. .hermes .tp-tab .tp-tab-title {font-size:14px;line-height:16px;}
  1562. .hermes .tp-tab-date { font-size:11px; line-height:13px;margin-bottom:10px;}
  1563. .hermes .tp-tab-content { padding:15px 15px 15px 25px;}
  1564. }
  1565. @media only screen and (max-width: 768px) {
  1566. .hermes .tp-tab .tp-tab-title {font-size:12px;line-height:14px;}
  1567. .hermes .tp-tab-date {font-size:10px; line-height:12px;margin-bottom:5px;}
  1568. .hermes .tp-tab-content {padding:10px 10px 10px 20px;}
  1569. }
  1570. /*-----------------------------------------------------------------------------
  1571. - Revolution Slider 5.0 Navigatin Skin Style -
  1572. HESPERIDEN SKIN
  1573. author: ThemePunch
  1574. email: info@themepunch.com
  1575. website: http://www.themepunch.com
  1576. -----------------------------------------------------------------------------*/
  1577. /* ARROWS */
  1578. .hesperiden.tparrows {
  1579. cursor:pointer;
  1580. background:#000;
  1581. background:rgba(0,0,0,0.5);
  1582. width:40px;
  1583. height:40px;
  1584. position:absolute;
  1585. display:block;
  1586. z-index:1000;
  1587. border-radius: 50%;
  1588. }
  1589. .hesperiden.tparrows:hover {
  1590. background:#000;
  1591. }
  1592. .hesperiden.tparrows:before {
  1593. font-family: "revicons";
  1594. font-size:20px;
  1595. color:#fff;
  1596. display:block;
  1597. line-height: 40px;
  1598. text-align: center;
  1599. }
  1600. .hesperiden.tparrows.tp-leftarrow:before {
  1601. content: "\e82c";
  1602. margin-left:-3px;
  1603. }
  1604. .hesperiden.tparrows.tp-rightarrow:before {
  1605. content: "\e82d";
  1606. margin-right:-3px;
  1607. }
  1608. /* BULLETS */
  1609. .hesperiden.tp-bullets {
  1610. }
  1611. .hesperiden.tp-bullets:before {
  1612. content:" ";
  1613. position:absolute;
  1614. width:100%;
  1615. height:100%;
  1616. background:transparent;
  1617. padding:10px;
  1618. margin-left:-10px;margin-top:-10px;
  1619. box-sizing:content-box;
  1620. border-radius:8px;
  1621. }
  1622. .hesperiden .tp-bullet {
  1623. width:12px;
  1624. height:12px;
  1625. position:absolute;
  1626. background: #999999; /* old browsers */
  1627. background: -moz-linear-gradient(top, #999999 0%, #e1e1e1 100%); /* ff3.6+ */
  1628. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999),
  1629. color-stop(100%,#e1e1e1)); /* chrome,safari4+ */
  1630. background: -webkit-linear-gradient(top, #999999 0%,#e1e1e1 100%); /* chrome10+,safari5.1+ */
  1631. background: -o-linear-gradient(top, #999999 0%,#e1e1e1 100%); /* opera 11.10+ */
  1632. background: -ms-linear-gradient(top, #999999 0%,#e1e1e1 100%); /* ie10+ */
  1633. background: linear-gradient(to bottom, #999999 0%,#e1e1e1 100%); /* w3c */
  1634. filter: progid:dximagetransform.microsoft.gradient(
  1635. startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 ); /* ie6-9 */
  1636. border:3px solid #e5e5e5;
  1637. border-radius:50%;
  1638. cursor: pointer;
  1639. box-sizing:content-box;
  1640. }
  1641. .hesperiden .tp-bullet:hover,
  1642. .hesperiden .tp-bullet.selected {
  1643. background:#666;
  1644. }
  1645. .hesperiden .tp-bullet-image {
  1646. }
  1647. .hesperiden .tp-bullet-title {
  1648. }
  1649. /* THUMBS */
  1650. .hesperiden .tp-thumb {
  1651. opacity:1;
  1652. -webkit-perspective: 600px;
  1653. perspective: 600px;
  1654. }
  1655. .hesperiden .tp-thumb .tp-thumb-title {
  1656. font-size:12px;
  1657. position:absolute;
  1658. margin-top:-10px;
  1659. color:#fff;
  1660. display:block;
  1661. z-index:10000;
  1662. background-color:#000;
  1663. padding:5px 10px;
  1664. bottom:0px;
  1665. left:0px;
  1666. width:100%;
  1667. box-sizing:border-box;
  1668. text-align:center;
  1669. overflow:hidden;
  1670. white-space:nowrap;
  1671. transition:all 0.3s;
  1672. -webkit-transition:all 0.3s;
  1673. transform:rotatex(90deg) translatez(0.001px);
  1674. transform-origin:50% 100%;
  1675. -webkit-transform:rotatex(90deg) translatez(0.001px);
  1676. -webkit-transform-origin:50% 100%;
  1677. opacity:0;
  1678. }
  1679. .hesperiden .tp-thumb:hover .tp-thumb-title {
  1680. transform:rotatex(0deg);
  1681. -webkit-transform:rotatex(0deg);
  1682. opacity:1;
  1683. }
  1684. /* TABS */
  1685. .hesperiden .tp-tab {
  1686. opacity:1;
  1687. padding:10px;
  1688. box-sizing:border-box;
  1689. font-family: "Roboto", sans-serif;
  1690. border-bottom: 1px solid #e5e5e5;
  1691. }
  1692. .hesperiden .tp-tab-image
  1693. {
  1694. width:60px;
  1695. height:60px; max-height:100%; max-width:100%;
  1696. position:relative;
  1697. display:inline-block;
  1698. float:left;
  1699. }
  1700. .hesperiden .tp-tab-content
  1701. {
  1702. background:rgba(0,0,0,0);
  1703. position:relative;
  1704. padding:15px 15px 15px 85px;
  1705. left:0px;
  1706. overflow:hidden;
  1707. margin-top:-15px;
  1708. box-sizing:border-box;
  1709. color:#333;
  1710. display: inline-block;
  1711. width:100%;
  1712. height:100%;
  1713. position:absolute; }
  1714. .hesperiden .tp-tab-date
  1715. {
  1716. display:block;
  1717. color: #aaa;
  1718. font-weight:500;
  1719. font-size:12px;
  1720. margin-bottom:0px;
  1721. }
  1722. .hesperiden .tp-tab-title
  1723. {
  1724. display:block;
  1725. text-align:left;
  1726. color:#333;
  1727. font-size:14px;
  1728. font-weight:500;
  1729. text-transform:none;
  1730. line-height:17px;
  1731. }
  1732. .hesperiden .tp-tab:hover,
  1733. .hesperiden .tp-tab.selected {
  1734. background:#eee;
  1735. }
  1736. .hesperiden .tp-tab-mask {
  1737. }
  1738. /* MEDIA QUERIES */
  1739. @media only screen and (max-width: 960px) {
  1740. }
  1741. @media only screen and (max-width: 768px) {
  1742. }
  1743. /*-----------------------------------------------------------------------------
  1744. - Revolution Slider 5.0 Navigatin Skin Style -
  1745. METIS SKIN
  1746. author: ThemePunch
  1747. email: info@themepunch.com
  1748. website: http://www.themepunch.com
  1749. -----------------------------------------------------------------------------*/
  1750. /* ARROWS */
  1751. .metis.tparrows {
  1752. background:#fff;
  1753. padding:10px;
  1754. transition:all 0.3s;
  1755. -webkit-transition:all 0.3s;
  1756. width:60px;
  1757. height:60px;
  1758. box-sizing:border-box;
  1759. }
  1760. .metis.tparrows:hover {
  1761. background:#fff;
  1762. background:rgba(255,255,255,0.75);
  1763. }
  1764. .metis.tparrows:before {
  1765. color:#000;
  1766. transition:all 0.3s;
  1767. -webkit-transition:all 0.3s;
  1768. }
  1769. .metis.tparrows:hover:before {
  1770. transform:scale(1.5);
  1771. }
  1772. /* BULLETS */
  1773. .metis .tp-bullet {
  1774. opacity:1;
  1775. width:50px;
  1776. height:50px;
  1777. padding:3px;
  1778. background:#000;
  1779. background-color:rgba(0,0,0,0.25);
  1780. margin:0px;
  1781. box-sizing:border-box;
  1782. transition:all 0.3s;
  1783. -webkit-transition:all 0.3s;
  1784. border-radius:50%;
  1785. }
  1786. .metis .tp-bullet-image {
  1787. border-radius:50%;
  1788. display:block;
  1789. box-sizing:border-box;
  1790. position:relative;
  1791. -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  1792. -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  1793. box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  1794. width:44px;
  1795. height:44px;
  1796. background-size:cover;
  1797. background-position:center center;
  1798. }
  1799. .metis .tp-bullet-title {
  1800. position:absolute;
  1801. bottom:65px;
  1802. display:inline-block;
  1803. left:50%;
  1804. background:#000;
  1805. background:rgba(0,0,0,0.75);
  1806. color:#fff;
  1807. padding:10px 30px;
  1808. border-radius:4px;
  1809. -webkit-border-radius:4px;
  1810. opacity:0;
  1811. transition:all 0.3s;
  1812. -webkit-transition:all 0.3s;
  1813. transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  1814. transform-origin:50% 100%;
  1815. -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  1816. -webkit-transform-origin:50% 100%;
  1817. opacity:0;
  1818. white-space:nowrap;
  1819. }
  1820. .metis .tp-bullet:hover .tp-bullet-title {
  1821. transform:rotateX(0deg) translateX(-50%);
  1822. -webkit-transform:rotateX(0deg) translateX(-50%);
  1823. opacity:1;
  1824. }
  1825. .metis .tp-bullet.selected,
  1826. .metis .tp-bullet:hover {
  1827. background: rgba(255,255,255,1);
  1828. background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1829. background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  1830. background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1831. background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1832. background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1833. background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  1834. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
  1835. }
  1836. .metis .tp-bullet-title:after {
  1837. content:" ";
  1838. position:absolute;
  1839. left:50%;
  1840. margin-left:-8px;
  1841. width: 0;
  1842. height: 0;
  1843. border-style: solid;
  1844. border-width: 8px 8px 0 8px;
  1845. border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  1846. bottom:-8px;
  1847. }
  1848. .metis .tp-tab-number {
  1849. color: #fff;
  1850. font-size: 40px;
  1851. line-height: 30px;
  1852. font-weight: 400;
  1853. font-family: "Playfair Display";
  1854. width: 50px;
  1855. margin-right: 17px;
  1856. display: inline-block;
  1857. float: left;
  1858. }
  1859. .metis .tp-tab-mask {
  1860. padding-left: 20px;
  1861. left: 0px;
  1862. max-width: 90px !important;
  1863. transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
  1864. }
  1865. .metis:hover .tp-tab-mask {
  1866. padding-left: 0px;
  1867. left: 50px;
  1868. max-width: 500px !important;
  1869. }
  1870. .metis .tp-tab-divider {
  1871. border-right: 1px solid transparent;
  1872. height: 30px;
  1873. width: 1px;
  1874. margin-top: 5px;
  1875. display: inline-block;
  1876. float: left;
  1877. }
  1878. .metis .tp-tab-title {
  1879. color: #fff;
  1880. font-size: 20px;
  1881. line-height: 20px;
  1882. font-weight: 400;
  1883. font-family: "Playfair Display";
  1884. position: relative;
  1885. padding-top: 10px;
  1886. padding-left: 30px;
  1887. display: inline-block;
  1888. transform: translateX(-100%);
  1889. transition: 0.4s all;
  1890. }
  1891. .metis .tp-tab-title-mask {
  1892. position: absolute;
  1893. overflow: hidden;
  1894. left: 67px;
  1895. }
  1896. .metis:hover .tp-tab-title {
  1897. transform: translateX(0);
  1898. }
  1899. .metis .tp-tab {
  1900. opacity: 0.15;
  1901. transition: 0.4s all;
  1902. }
  1903. .metis .tp-tab:hover,
  1904. .metis .tp-tab.selected {
  1905. opacity: 1;
  1906. }
  1907. .metis .tp-tab.selected .tp-tab-divider {
  1908. border-right: 1px solid #cdb083;
  1909. }
  1910. .metis.tp-tabs {
  1911. max-width: 118px !important;
  1912. padding-left: 50px;
  1913. }
  1914. .metis.tp-tabs:before {
  1915. content: " ";
  1916. height: 100%;
  1917. width: 88px;
  1918. background: rgba(0, 0, 0, 0.15);
  1919. border-right: 1px solid rgba(255, 255, 255, 0.10);
  1920. left: 0px;
  1921. top: 0px;
  1922. position: absolute;
  1923. transition: 0.4s all;
  1924. }
  1925. .metis.tp-tabs:hover:before {
  1926. width: 118px;
  1927. }
  1928. @media (max-width: 499px) {
  1929. .metis.tp-tabs:before {
  1930. background: rgba(0, 0, 0, 0.75);
  1931. }
  1932. }
  1933. /*-----------------------------------------------------------------------------
  1934. - Revolution Slider 5.0 Navigatin Skin Style -
  1935. PERSEPHONE SKIN
  1936. author: ThemePunch
  1937. email: info@themepunch.com
  1938. website: http://www.themepunch.com
  1939. -----------------------------------------------------------------------------*/
  1940. /* ARROWS */
  1941. .persephone.tparrows {
  1942. cursor:pointer;
  1943. background:#aaa;
  1944. background:rgba(200,200,200,0.5);
  1945. width:40px;
  1946. height:40px;
  1947. position:absolute;
  1948. display:block;
  1949. z-index:100;
  1950. border:1px solid #f5f5f5;
  1951. }
  1952. .persephone.tparrows:hover {
  1953. background:#333;
  1954. }
  1955. .persephone.tparrows:before {
  1956. font-family: "revicons";
  1957. font-size:15px;
  1958. color:#fff;
  1959. display:block;
  1960. line-height: 40px;
  1961. text-align: center;
  1962. }
  1963. .persephone.tparrows.tp-leftarrow:before {
  1964. content: "\e824";
  1965. }
  1966. .persephone.tparrows.tp-rightarrow:before {
  1967. content: "\e825";
  1968. }
  1969. /* BULLETS */
  1970. .persephone.tp-bullets {
  1971. }
  1972. .persephone.tp-bullets:before {
  1973. content:" ";
  1974. position:absolute;
  1975. width:100%;
  1976. height:100%;
  1977. background:#transparent;
  1978. padding:10px;
  1979. margin-left:-10px;margin-top:-10px;
  1980. box-sizing:content-box;
  1981. }
  1982. .persephone .tp-bullet {
  1983. width:12px;
  1984. height:12px;
  1985. position:absolute;
  1986. background:#aaa;
  1987. border:1px solid #e5e5e5;
  1988. cursor: pointer;
  1989. box-sizing:content-box;
  1990. }
  1991. .persephone .tp-bullet:hover,
  1992. .persephone .tp-bullet.selected {
  1993. background:#222;
  1994. }
  1995. .persephone .tp-bullet-image {
  1996. }
  1997. .persephone .tp-bullet-title {
  1998. }
  1999. /*-----------------------------------------------------------------------------
  2000. - Revolution Slider 5.0 Navigatin Skin Style -
  2001. URANUS SKIN
  2002. author: ThemePunch
  2003. email: info@themepunch.com
  2004. website: http://www.themepunch.com
  2005. -----------------------------------------------------------------------------*/
  2006. /* ARROWS */
  2007. .uranus.tparrows {
  2008. width:50px;
  2009. height:50px;
  2010. background:transparent;
  2011. }
  2012. .uranus.tparrows:before {
  2013. width:50px;
  2014. height:50px;
  2015. line-height:50px;
  2016. font-size:40px;
  2017. transition:all 0.3s;
  2018. -webkit-transition:all 0.3s;
  2019. }
  2020. .uranus.tparrows:hover:before {
  2021. opacity:0.75;
  2022. }
  2023. /* BULLETS */
  2024. .uranus .tp-bullet{
  2025. border-radius: 50%;
  2026. box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  2027. -webkit-transition: box-shadow 0.3s ease;
  2028. transition: box-shadow 0.3s ease;
  2029. background:transparent;
  2030. }
  2031. .uranus .tp-bullet.selected,
  2032. .uranus .tp-bullet:hover {
  2033. box-shadow: 0 0 0 2px #FFF;
  2034. border:none;
  2035. border-radius: 50%;
  2036. background:transparent;
  2037. }
  2038. .uranus .tp-bullet-inner {
  2039. background-color: rgba(255, 255, 255, 0.7);
  2040. -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  2041. transition: background-color 0.3s ease, transform 0.3s ease;
  2042. top: 0;
  2043. left: 0;
  2044. width: 100%;
  2045. height: 100%;
  2046. outline: none;
  2047. border-radius: 50%;
  2048. background-color: #FFF;
  2049. background-color: rgba(255, 255, 255, 0.3);
  2050. text-indent: -999em;
  2051. cursor: pointer;
  2052. position: absolute;
  2053. }
  2054. .uranus .tp-bullet.selected .tp-bullet-inner,
  2055. .uranus .tp-bullet:hover .tp-bullet-inner{
  2056. transform: scale(0.4);
  2057. -webkit-transform: scale(0.4);
  2058. background-color:#fff;
  2059. }
  2060. /*-----------------------------------------------------------------------------
  2061. - Revolution Slider 5.0 Navigatin Skin Style -
  2062. ZEUS SKIN
  2063. author: ThemePunch
  2064. email: info@themepunch.com
  2065. website: http://www.themepunch.com
  2066. -----------------------------------------------------------------------------*/
  2067. /* ARROWS */
  2068. .zeus.tparrows {
  2069. cursor:pointer;
  2070. min-width:70px;
  2071. min-height:70px;
  2072. position:absolute;
  2073. display:block;
  2074. z-index:100;
  2075. border-radius:35px;
  2076. overflow:hidden;
  2077. background:rgba(0,0,0,0.10);
  2078. }
  2079. .zeus.tparrows:before {
  2080. font-family: "revicons";
  2081. font-size:20px;
  2082. color:#fff;
  2083. display:block;
  2084. line-height: 70px;
  2085. text-align: center;
  2086. z-index:2;
  2087. position:relative;
  2088. }
  2089. .zeus.tparrows.tp-leftarrow:before {
  2090. content: "\e824";
  2091. }
  2092. .zeus.tparrows.tp-rightarrow:before {
  2093. content: "\e825";
  2094. }
  2095. .zeus .tp-title-wrap {
  2096. background:#000;
  2097. background:rgba(0,0,0,0.5);
  2098. width:100%;
  2099. height:100%;
  2100. top:0px;
  2101. left:0px;
  2102. position:absolute;
  2103. opacity:0;
  2104. transform:scale(0);
  2105. -webkit-transform:scale(0);
  2106. transition: all 0.3s;
  2107. -webkit-transition:all 0.3s;
  2108. -moz-transition:all 0.3s;
  2109. border-radius:50%;
  2110. }
  2111. .zeus .tp-arr-imgholder {
  2112. width:100%;
  2113. height:100%;
  2114. position:absolute;
  2115. top:0px;
  2116. left:0px;
  2117. background-position:center center;
  2118. background-size:cover;
  2119. border-radius:50%;
  2120. transform:translateX(-100%);
  2121. -webkit-transform:translateX(-100%);
  2122. transition: all 0.3s;
  2123. -webkit-transition:all 0.3s;
  2124. -moz-transition:all 0.3s;
  2125. }
  2126. .zeus.tp-rightarrow .tp-arr-imgholder {
  2127. transform:translateX(100%);
  2128. -webkit-transform:translateX(100%);
  2129. }
  2130. .zeus.tparrows:hover .tp-arr-imgholder {
  2131. transform:translateX(0);
  2132. -webkit-transform:translateX(0);
  2133. opacity:1;
  2134. }
  2135. .zeus.tparrows:hover .tp-title-wrap {
  2136. transform:scale(1);
  2137. -webkit-transform:scale(1);
  2138. opacity:1;
  2139. }
  2140. /* BULLETS */
  2141. .zeus .tp-bullet {
  2142. box-sizing:content-box; -webkit-box-sizing:content-box; border-radius:50%;
  2143. background-color: rgba(0, 0, 0, 0);
  2144. -webkit-transition: opacity 0.3s ease;
  2145. transition: opacity 0.3s ease;
  2146. width:13px;height:13px;
  2147. border:2px solid #fff;
  2148. }
  2149. .zeus .tp-bullet:after {
  2150. content: "";
  2151. position: absolute;
  2152. width: 100%;
  2153. height: 100%;
  2154. left: 0;
  2155. border-radius: 50%;
  2156. background-color: #FFF;
  2157. -webkit-transform: scale(0);
  2158. transform: scale(0);
  2159. -webkit-transform-origin: 50% 50%;
  2160. transform-origin: 50% 50%;
  2161. -webkit-transition: -webkit-transform 0.3s ease;
  2162. transition: transform 0.3s ease;
  2163. }
  2164. .zeus .tp-bullet:hover:after,
  2165. .zeus .tp-bullet.selected:after{
  2166. -webkit-transform: scale(1.2);
  2167. transform: scale(1.2);
  2168. }
  2169. .zeus .tp-bullet-image,
  2170. .zeus .tp-bullet-imageoverlay{
  2171. width:135px;
  2172. height:60px;
  2173. position:absolute;
  2174. background:#000;
  2175. background:rgba(0,0,0,0.5);
  2176. bottom:25px;
  2177. left:50%;
  2178. margin-left:-65px;
  2179. box-sizing:border-box;
  2180. background-size:cover;
  2181. background-position:center center;
  2182. visibility:hidden;
  2183. opacity:0;
  2184. -webkit-backface-visibility: hidden;
  2185. backface-visibility: hidden;
  2186. -webkit-transform-origin: 50% 50%;
  2187. transform-origin: 50% 50%;
  2188. -webkit-transition: all 0.3s ease;
  2189. transition: all 0.3s ease;
  2190. border-radius:4px;
  2191. }
  2192. .zeus .tp-bullet-title,
  2193. .zeus .tp-bullet-imageoverlay {
  2194. z-index:2;
  2195. -webkit-transition: all 0.5s ease;
  2196. transition: all 0.5s ease;
  2197. }
  2198. .zeus .tp-bullet-title {
  2199. color:#fff;
  2200. text-align:center;
  2201. line-height:15px;
  2202. font-size:13px;
  2203. font-weight:600;
  2204. z-index:3;
  2205. visibility:hidden;
  2206. opacity:0;
  2207. -webkit-backface-visibility: hidden;
  2208. backface-visibility: hidden;
  2209. -webkit-transform-origin: 50% 50%;
  2210. transform-origin: 50% 50%;
  2211. -webkit-transition: all 0.3s ease;
  2212. transition: all 0.3s ease;
  2213. position:absolute;
  2214. bottom:45px;
  2215. width:135px;
  2216. vertical-align:middle;
  2217. left:-57px;
  2218. }
  2219. .zeus .tp-bullet:hover .tp-bullet-title,
  2220. .zeus .tp-bullet:hover .tp-bullet-image,
  2221. .zeus .tp-bullet:hover .tp-bullet-imageoverlay{
  2222. opacity:1;
  2223. visibility:visible;
  2224. -webkit-transform:translateY(0px);
  2225. transform:translateY(0px);
  2226. }
  2227. /* THUMBS */
  2228. .zeus .tp-thumb {
  2229. opacity:1
  2230. }
  2231. .zeus .tp-thumb-over {
  2232. background:#000;
  2233. background:rgba(0,0,0,0.25);
  2234. width:100%;
  2235. height:100%;
  2236. position:absolute;
  2237. top:0px;
  2238. left:0px;
  2239. z-index:1;
  2240. -webkit-transition:all 0.3s;
  2241. transition:all 0.3s;
  2242. }
  2243. .zeus .tp-thumb-more:before {
  2244. font-family: "revicons";
  2245. font-size:12px;
  2246. color:#aaa;
  2247. color:rgba(255,255,255,0.75);
  2248. display:block;
  2249. line-height: 12px;
  2250. text-align: left;
  2251. z-index:2;
  2252. position:absolute;
  2253. top:20px;
  2254. right:20px;
  2255. z-index:2;
  2256. }
  2257. .zeus .tp-thumb-more:before {
  2258. content: "\e825";
  2259. }
  2260. .zeus .tp-thumb-title {
  2261. font-family:"Raleway";
  2262. letter-spacing:1px;
  2263. font-size:12px;
  2264. color:#fff;
  2265. display:block;
  2266. line-height: 15px;
  2267. text-align: left;
  2268. z-index:2;
  2269. position:absolute;
  2270. top:0px;
  2271. left:0px;
  2272. z-index:2;
  2273. padding:20px 35px 20px 20px;
  2274. width:100%;
  2275. height:100%;
  2276. box-sizing:border-box;
  2277. transition:all 0.3s;
  2278. -webkit-transition:all 0.3s;
  2279. font-weight:500;
  2280. }
  2281. .zeus .tp-thumb.selected .tp-thumb-more:before,
  2282. .zeus .tp-thumb:hover .tp-thumb-more:before {
  2283. color:#aaa;
  2284. }
  2285. .zeus .tp-thumb.selected .tp-thumb-over,
  2286. .zeus .tp-thumb:hover .tp-thumb-over {
  2287. background:#000;
  2288. }
  2289. .zeus .tp-thumb.selected .tp-thumb-title,
  2290. .zeus .tp-thumb:hover .tp-thumb-title {
  2291. color:#fff;
  2292. }
  2293. /* TABS */
  2294. .zeus .tp-tab {
  2295. opacity:1;
  2296. box-sizing:border-box;
  2297. }
  2298. .zeus .tp-tab-title {
  2299. display: block;
  2300. text-align: center;
  2301. background: rgba(0,0,0,0.25);
  2302. font-family: "Roboto Slab", serif;
  2303. font-weight: 700;
  2304. font-size: 13px;
  2305. line-height: 13px;
  2306. color: #fff;
  2307. padding: 9px 10px; }
  2308. .zeus .tp-tab:hover .tp-tab-title,
  2309. .zeus .tp-tab.selected .tp-tab-title {
  2310. color: #000;
  2311. background:rgba(255,255,255,1);
  2312. }
  2313. /*-----------------------------------------------------------------------------
  2314. - Revolution Slider 5.0 Navigatin Skin Style -
  2315. ZEUS SKIN
  2316. author: ThemePunch
  2317. email: info@themepunch.com
  2318. website: http://www.themepunch.com
  2319. -----------------------------------------------------------------------------*/
  2320. .post-tabs .tp-thumb {
  2321. opacity:1
  2322. }
  2323. .post-tabs .tp-thumb-over {
  2324. background:#252525;
  2325. width:100%;
  2326. height:100%;
  2327. position:absolute;
  2328. top:0px;
  2329. left:0px;
  2330. z-index:1;
  2331. -webkit-transition:all 0.3s;
  2332. transition:all 0.3s;
  2333. }
  2334. .post-tabs .tp-thumb-more:before {
  2335. font-family: "revicons";
  2336. font-size:12px;
  2337. color:#aaa;
  2338. color:rgba(255,255,255,0.75);
  2339. display:block;
  2340. line-height: 12px;
  2341. text-align: left;
  2342. z-index:2;
  2343. position:absolute;
  2344. top:15px;
  2345. right:15px;
  2346. z-index:2;
  2347. }
  2348. .post-tabs .tp-thumb-more:before {
  2349. content: "\e825";
  2350. }
  2351. .post-tabs .tp-thumb-title {
  2352. font-family:"raleway";
  2353. letter-spacing:1px;
  2354. font-size:12px;
  2355. color:#fff;
  2356. display:block;
  2357. line-height: 15px;
  2358. text-align: left;
  2359. z-index:2;
  2360. position:absolute;
  2361. top:0px;
  2362. left:0px;
  2363. z-index:2;
  2364. padding:15px 30px 15px 15px;
  2365. width:100%;
  2366. height:100%;
  2367. box-sizing:border-box;
  2368. transition:all 0.3s;
  2369. -webkit-transition:all 0.3s;
  2370. font-weight:500;
  2371. }
  2372. .post-tabs .tp-thumb.selected .tp-thumb-more:before,
  2373. .post-tabs .tp-thumb:hover .tp-thumb-more:before {
  2374. color:#aaa;
  2375. }
  2376. .post-tabs .tp-thumb.selected .tp-thumb-over,
  2377. .post-tabs .tp-thumb:hover .tp-thumb-over {
  2378. background:#fff;
  2379. }
  2380. .post-tabs .tp-thumb.selected .tp-thumb-title,
  2381. .post-tabs .tp-thumb:hover .tp-thumb-title {
  2382. color:#000;
  2383. }