style.default.css 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332
  1. .clearfix:before,
  2. .clearfix:after,
  3. .navbar:before,
  4. .navbar:after,
  5. .navbar-header:before,
  6. .navbar-header:after {
  7. content: " ";
  8. display: table;
  9. }
  10. .clearfix:after,
  11. .navbar:after,
  12. .navbar-header:after {
  13. clear: both;
  14. }
  15. .center-block {
  16. display: block;
  17. margin-left: auto;
  18. margin-right: auto;
  19. }
  20. .pull-right {
  21. float: right !important;
  22. }
  23. .pull-left {
  24. float: left !important;
  25. }
  26. .hide {
  27. display: none !important;
  28. }
  29. .show {
  30. display: block !important;
  31. }
  32. .invisible {
  33. visibility: hidden;
  34. }
  35. .text-hide {
  36. font: 0/0 a;
  37. color: transparent;
  38. text-shadow: none;
  39. background-color: transparent;
  40. border: 0;
  41. }
  42. .hidden {
  43. display: none !important;
  44. visibility: hidden !important;
  45. }
  46. .affix {
  47. position: fixed;
  48. -webkit-transform: translate3d(0, 0, 0);
  49. transform: translate3d(0, 0, 0);
  50. }
  51. /* general styles */
  52. a,
  53. button {
  54. -webkit-transition: all 0.2s ease-out;
  55. -moz-transition: all 0.2s ease-out;
  56. transition: all 0.2s ease-out;
  57. }
  58. a i[class^="fa"],
  59. button i[class^="fa"] {
  60. margin: 0 5px;
  61. }
  62. .clickable {
  63. cursor: pointer !important;
  64. }
  65. .required {
  66. color: #38a7bb;
  67. }
  68. .accent {
  69. color: #38a7bb;
  70. }
  71. .text-uppercase {
  72. text-transform: uppercase;
  73. letter-spacing: 0.08em;
  74. }
  75. @media (max-width: 991px) {
  76. .text-center-sm {
  77. text-align: center;
  78. }
  79. }
  80. p.lead {
  81. margin-bottom: 40px;
  82. }
  83. section,
  84. div.section {
  85. margin-bottom: 40px;
  86. }
  87. .no-mb {
  88. margin-bottom: 0 !important;
  89. }
  90. .mb-small {
  91. margin-bottom: 20px !important;
  92. }
  93. .heading {
  94. margin-bottom: 40px;
  95. }
  96. .heading h1,
  97. .heading h2,
  98. .heading h3,
  99. .heading h4,
  100. .heading h5 {
  101. display: inline-block;
  102. border-bottom: solid 5px #38a7bb;
  103. line-height: 1.1;
  104. margin-bottom: 0;
  105. padding-bottom: 10px;
  106. vertical-align: middle;
  107. text-transform: uppercase;
  108. letter-spacing: 0.06em;
  109. }
  110. .heading h1 i[class^="fa"],
  111. .heading h2 i[class^="fa"],
  112. .heading h3 i[class^="fa"],
  113. .heading h4 i[class^="fa"],
  114. .heading h5 i[class^="fa"] {
  115. display: inline-block;
  116. background: #38a7bb;
  117. width: 30px;
  118. height: 30px;
  119. vertical-align: middle;
  120. text-align: center;
  121. color: #fff;
  122. font-size: 12px;
  123. line-height: 30px;
  124. border-radius: 15px;
  125. }
  126. .icon {
  127. display: inline-block;
  128. width: 80px;
  129. height: 80px;
  130. color: #fff;
  131. line-height: 80px;
  132. border-radius: 40px;
  133. border: solid 1px #fff;
  134. font-size: 20px;
  135. }
  136. .icon.icon-lg {
  137. font-size: 30px;
  138. border-width: 2px;
  139. }
  140. .ul-icons {
  141. padding-left: 10px;
  142. }
  143. .ul-icons li {
  144. list-style-type: none;
  145. line-height: 20px;
  146. margin-bottom: 20px;
  147. }
  148. .ul-icons li i {
  149. width: 20px;
  150. height: 20px;
  151. background: #38a7bb;
  152. color: #fff;
  153. text-align: center;
  154. border-radius: 10px;
  155. line-height: 20px;
  156. margin-right: 10px;
  157. }
  158. ul.list-style-none {
  159. list-style: none;
  160. }
  161. #text-page h1,
  162. #text-page h2,
  163. #text-page h3 {
  164. font-weight: 700;
  165. }
  166. #error-page {
  167. text-align: center;
  168. margin-top: 40px;
  169. margin-bottom: 100px;
  170. }
  171. #error-page h4 {
  172. margin-bottom: 40px;
  173. }
  174. #error-page p.buttons {
  175. margin-top: 40px;
  176. }
  177. .pages-listing .item {
  178. text-align: center;
  179. }
  180. .pages-listing .item h3 {
  181. font-size: 18px;
  182. text-transform: uppercase;
  183. margin-bottom: 20px;
  184. letter-spacing: 0.08em;
  185. }
  186. .pages-listing .item h3 a {
  187. color: #555555;
  188. }
  189. .pages-listing .item .text {
  190. margin-bottom: 20px;
  191. }
  192. .pages-listing .item .text p {
  193. color: #999999;
  194. font-size: 12px;
  195. margin-bottom: 20px;
  196. }
  197. .banner {
  198. margin-bottom: 30px;
  199. text-align: center;
  200. }
  201. .banner img {
  202. margin: 0 auto;
  203. }
  204. .banner a:hover img {
  205. opacity: 0.8;
  206. filter: alpha(opacity=80);
  207. -webkit-transition: all 0.2s ease-out;
  208. -moz-transition: all 0.2s ease-out;
  209. transition: all 0.2s ease-out;
  210. }
  211. .pages {
  212. text-align: center;
  213. }
  214. .pages .loadMore {
  215. text-align: center;
  216. }
  217. .pages .pagination {
  218. text-align: center;
  219. }
  220. .features-buttons button {
  221. margin-bottom: 20px;
  222. }
  223. @media (min-width: 1300px) {
  224. body.boxed {
  225. background: url(https://www.toptal.com/designers/subtlepatterns/patterns/subtle_zebra_3d.png);
  226. }
  227. body.boxed #all {
  228. position: relative;
  229. background: #fff;
  230. width: 1200px;
  231. margin: 0 auto;
  232. overflow: hidden;
  233. -webkit-box-shadow: 0 0 5px #cccccc;
  234. box-shadow: 0 0 5px #cccccc;
  235. }
  236. }
  237. #top {
  238. background: #555555;
  239. color: #eeeeee;
  240. padding: 10px 0;
  241. }
  242. #top p {
  243. margin: 0;
  244. font-size: 12px;
  245. }
  246. #top .social {
  247. float: right;
  248. text-align: right;
  249. }
  250. #top .social a {
  251. color: #999999;
  252. display: inline-block;
  253. width: 24px;
  254. height: 24px;
  255. border-radius: 12px;
  256. line-height: 24px;
  257. font-size: 12px;
  258. text-align: center;
  259. }
  260. #top .social a:hover {
  261. color: #fff;
  262. background: #4fbfa8;
  263. -webkit-transform: scale(1.1);
  264. transform: scale(1.1);
  265. }
  266. #top .social a:hover.facebook {
  267. background-color: #4460ae;
  268. }
  269. #top .social a:hover.gplus {
  270. background-color: #c21f25;
  271. }
  272. #top .social a:hover.twitter {
  273. background-color: #3cf;
  274. }
  275. #top .social a:hover.instagram {
  276. background-color: #cd4378;
  277. }
  278. #top .social a:hover.email {
  279. background-color: #4a7f45;
  280. }
  281. #top .login {
  282. float: right;
  283. }
  284. #top .login a {
  285. font-size: 12px;
  286. color: #eeeeee;
  287. margin-right: 15px;
  288. text-decoration: none;
  289. text-transform: uppercase;
  290. font-weight: 700;
  291. letter-spacing: 0.1em;
  292. }
  293. @media (max-width: 767px) {
  294. #top .login {
  295. float: left;
  296. }
  297. }
  298. #top.light {
  299. background: #fff;
  300. color: #999999;
  301. border-bottom: solid 1px #eeeeee;
  302. }
  303. #top.light .login a {
  304. color: #555555;
  305. }
  306. /* .navbar {
  307. border: none;
  308. }
  309. .navbar ul.nav > li > a {
  310. text-transform: uppercase;
  311. text-decoration: underline;
  312. font-weight: bold;
  313. letter-spacing: 0.08em;
  314. border-top: solid 5px transparent;
  315. }
  316. .navbar ul.nav > li.open > a {
  317. text-decoration: none !important;
  318. border-top: solid 5px #20616d;
  319. }
  320. @media (max-width: 768px) {
  321. .navbar ul.nav > li.active > a,
  322. .navbar ul.nav > li.open > a {
  323. border-top-color: transparent;
  324. }
  325. .navbar ul.nav > li > a:hover {
  326. border-top-color: transparent;
  327. }
  328. }
  329. .navbar.navbar-light ul.nav > li.active > a {
  330. border-top: solid 5px #20616d;
  331. background: #fff !important;
  332. color: #555555 !important;
  333. }
  334. .navbar.navbar-light ul.nav > li.active > a:hover {
  335. border-top: solid 5px #20616d;
  336. }
  337. .navbar.navbar-light ul.nav > li > a:hover,
  338. .navbar.navbar-light ul.nav > li.open > a:hover,
  339. .navbar.navbar-light ul.nav > li > a:focus,
  340. .navbar.navbar-light ul.nav > li.open > a:focus {
  341. border-top: solid 5px #38a7bb;
  342. background: #fff !important;
  343. color: #555555 !important;
  344. }
  345. .navbar ul.dropdown-menu {
  346. margin: 0;
  347. padding: 0;
  348. }
  349. .navbar ul.dropdown-menu li {
  350. list-style-type: none;
  351. border-bottom: solid 1px #eeeeee;
  352. text-transform: uppercase;
  353. letter-spacing: 0.08em;
  354. padding: 4px 0;
  355. }
  356. .navbar ul.dropdown-menu li a {
  357. position: relative;
  358. color: #999999;
  359. font-size: 12px;
  360. display: block;
  361. -webkit-transition: all 0.2s ease-out;
  362. -moz-transition: all 0.2s ease-out;
  363. transition: all 0.2s ease-out;
  364. left: 0;
  365. }
  366. .navbar ul.dropdown-menu li a:hover {
  367. color: #ea5413;
  368. text-decoration: none;
  369. background: none;
  370. left: 2px;
  371. -webkit-transition: all 0.2s ease-out;
  372. -moz-transition: all 0.2s ease-out;
  373. transition: all 0.2s ease-out;
  374. }
  375. @media (max-width: 767px) {
  376. .navbar ul.dropdown-menu li a:hover {
  377. left: 0;
  378. }
  379. }
  380. .navbar .yamm-content h3 {
  381. font-size: 18px;
  382. text-transform: uppercase;
  383. padding-bottom: 10px;
  384. margin-top: 5px;
  385. border-bottom: dotted 1px #555555;
  386. letter-spacing: 0.08em;
  387. }
  388. @media (max-width: 767px) {
  389. .navbar .yamm-content h3 {
  390. font-size: 14px;
  391. }
  392. }
  393. .navbar .yamm-content h5 {
  394. text-transform: uppercase;
  395. padding-bottom: 10px;
  396. border-bottom: dotted 1px #555555;
  397. letter-spacing: 0.08em;
  398. }
  399. .navbar .yamm-content ul {
  400. margin: 0;
  401. padding: 0;
  402. }
  403. .navbar .yamm-content ul li {
  404. list-style-type: none;
  405. border-bottom: solid 1px #eeeeee;
  406. text-transform: uppercase;
  407. padding: 4px 0;
  408. }
  409. .navbar .yamm-content ul li a {
  410. position: relative;
  411. color: #999999;
  412. font-size: 12px;
  413. display: block;
  414. -webkit-transition: all 0.2s ease-out;
  415. -moz-transition: all 0.2s ease-out;
  416. transition: all 0.2s ease-out;
  417. }
  418. .navbar .yamm-content ul li a:hover {
  419. color: #38a7bb;
  420. text-decoration: none;
  421. padding-left: 2px;
  422. }
  423. .navbar .yamm-content .banner {
  424. margin-bottom: 10px;
  425. }
  426. .navbar .yamm-fw .dropdown-menu {
  427. padding: 0;
  428. }
  429. .navbar .navbar-buttons {
  430. float: right;
  431. }
  432. .navbar .navbar-buttons button,
  433. .navbar .navbar-buttons a.btn,
  434. .navbar .navbar-buttons .btn-default.navbar-toggle {
  435. margin-top: 11px;
  436. margin-bottom: 11px;
  437. margin-left: 0;
  438. margin-right: 5px;
  439. }
  440. .navbar .btn-default,
  441. .navbar .btn-default.navbar-toggle {
  442. color: #999999;
  443. background-color: #fff;
  444. margin-left: 7px;
  445. margin-right: 0;
  446. }
  447. .navbar .btn-default:hover,
  448. .navbar .btn-default.navbar-toggle:hover,
  449. .navbar .btn-default:focus,
  450. .navbar .btn-default.navbar-toggle:focus {
  451. background-color: #fff;
  452. border-color: #38a7bb;
  453. color: #38a7bb;
  454. }
  455. .navbar #search {
  456. clear: both;
  457. border-top: solid 1px #38a7bb;
  458. text-align: right;
  459. }
  460. .navbar #search form {
  461. float: right;
  462. }
  463. .navbar #search form .input-group {
  464. width: 500px;
  465. }
  466. @media (max-width: 768px) {
  467. .navbar #search form .input-group {
  468. width: 100%;
  469. }
  470. }
  471. .navbar #basket-overview a {
  472. margin-left: 7px;
  473. }
  474. .navbar-affixed-top {
  475. top: 0;
  476. z-index: 1000;
  477. width: 100%;
  478. }
  479. .navbar-affixed-top.affix {
  480. -webkit-box-shadow: 0 0 5px #cccccc;
  481. box-shadow: 0 0 5px #cccccc;
  482. }
  483. .navbar-affixed-top.affix + section {
  484. margin-top: 62px;
  485. }
  486. @supports (position: sticky) {
  487. .navbar-affixed-top {
  488. position: sticky;
  489. }
  490. .navbar-affixed-top.affix + section {
  491. margin-top: 0;
  492. }
  493. } */
  494. #login-modal {
  495. overflow: hidden;
  496. }
  497. #login-modal .modal-header h4 {
  498. text-transform: uppercase;
  499. }
  500. #login-modal form {
  501. margin-bottom: 20px;
  502. }
  503. #login-modal a {
  504. color: #38a7bb;
  505. }
  506. #login-modal p {
  507. font-weight: 300;
  508. margin-bottom: 20px;
  509. font-size: 13px;
  510. }
  511. /* buttons */
  512. .btn {
  513. font-weight: 700;
  514. font-family: "Roboto", Helvetica, Arial, sans-serif;
  515. text-transform: uppercase;
  516. letter-spacing: 0.08em;
  517. padding: 5px 12px;
  518. font-size: 13px;
  519. line-height: 1.42857143;
  520. border-radius: 0;
  521. }
  522. .input-group .btn {
  523. font-size: 14px;
  524. }
  525. .btn-lg {
  526. padding: 10px 16px;
  527. font-size: 14px;
  528. line-height: 1.33;
  529. border-radius: 0;
  530. }
  531. .btn-sm {
  532. padding: 5px 10px;
  533. font-size: 12px;
  534. line-height: 1.5;
  535. border-radius: 0;
  536. }
  537. .btn-xs {
  538. padding: 1px 5px;
  539. font-size: 12px;
  540. line-height: 1.5;
  541. border-radius: 0;
  542. }
  543. .btn-template-main {
  544. color: #181c47;
  545. background-color: #ffffff;
  546. border-color: #181c47;
  547. }
  548. .btn-template-main:hover,
  549. .btn-template-main:focus,
  550. .btn-template-main:active,
  551. .btn-template-main.active,
  552. .open>.dropdown-toggle.btn-template-main {
  553. color: #181c47;
  554. background-color: #e6e6e6;
  555. border-color: #181c47;
  556. }
  557. .btn-template-main:active,
  558. .btn-template-main.active,
  559. .open>.dropdown-toggle.btn-template-main {
  560. background-image: none;
  561. }
  562. .btn-template-main.disabled,
  563. .btn-template-main[disabled],
  564. fieldset[disabled] .btn-template-main,
  565. .btn-template-main.disabled:hover,
  566. .btn-template-main[disabled]:hover,
  567. fieldset[disabled] .btn-template-main:hover,
  568. .btn-template-main.disabled:focus,
  569. .btn-template-main[disabled]:focus,
  570. fieldset[disabled] .btn-template-main:focus,
  571. .btn-template-main.disabled:active,
  572. .btn-template-main[disabled]:active,
  573. fieldset[disabled] .btn-template-main:active,
  574. .btn-template-main.disabled.active,
  575. .btn-template-main[disabled].active,
  576. fieldset[disabled] .btn-template-main.active {
  577. background-color: #ffffff;
  578. border-color: #38a7bb;
  579. }
  580. .btn-template-main .badge {
  581. color: #ffffff;
  582. background-color: #38a7bb;
  583. }
  584. .btn-template-main:hover,
  585. .btn-template-main:focus,
  586. .btn-template-main:active,
  587. .btn-template-main.active {
  588. background: #ea5413;
  589. color: #ffffff;
  590. border-color: #ea5413;
  591. }
  592. .btn-template-transparent-primary {
  593. color: #ffffff;
  594. background-color: transparent;
  595. border-color: #ffffff;
  596. }
  597. .btn-template-transparent-primary:hover,
  598. .btn-template-transparent-primary:focus,
  599. .btn-template-transparent-primary:active,
  600. .btn-template-transparent-primary.active,
  601. .open>.dropdown-toggle.btn-template-transparent-primary {
  602. color: #ffffff;
  603. background-color: rgba(0, 0, 0, 0);
  604. border-color: #e0e0e0;
  605. }
  606. .btn-template-transparent-primary:active,
  607. .btn-template-transparent-primary.active,
  608. .open>.dropdown-toggle.btn-template-transparent-primary {
  609. background-image: none;
  610. }
  611. .btn-template-transparent-primary.disabled,
  612. .btn-template-transparent-primary[disabled],
  613. fieldset[disabled] .btn-template-transparent-primary,
  614. .btn-template-transparent-primary.disabled:hover,
  615. .btn-template-transparent-primary[disabled]:hover,
  616. fieldset[disabled] .btn-template-transparent-primary:hover,
  617. .btn-template-transparent-primary.disabled:focus,
  618. .btn-template-transparent-primary[disabled]:focus,
  619. fieldset[disabled] .btn-template-transparent-primary:focus,
  620. .btn-template-transparent-primary.disabled:active,
  621. .btn-template-transparent-primary[disabled]:active,
  622. fieldset[disabled] .btn-template-transparent-primary:active,
  623. .btn-template-transparent-primary.disabled.active,
  624. .btn-template-transparent-primary[disabled].active,
  625. fieldset[disabled] .btn-template-transparent-primary.active {
  626. background-color: transparent;
  627. border-color: #ffffff;
  628. }
  629. .btn-template-transparent-primary .badge {
  630. color: transparent;
  631. background-color: #ffffff;
  632. }
  633. .btn-template-transparent-primary:hover,
  634. .btn-template-transparent-primary:focus,
  635. .btn-template-transparent-primary:active,
  636. .btn-template-transparent-primary.active {
  637. background: #fff;
  638. color: #38a7bb;
  639. border-color: #fff;
  640. }
  641. .btn-template-transparent-black {
  642. color: #ffffff;
  643. background-color: transparent;
  644. border-color: #ffffff;
  645. }
  646. .btn-template-transparent-black:hover,
  647. .btn-template-transparent-black:focus,
  648. .btn-template-transparent-black:active,
  649. .btn-template-transparent-black.active,
  650. .open>.dropdown-toggle.btn-template-transparent-black {
  651. color: #ffffff;
  652. background-color: rgba(0, 0, 0, 0);
  653. border-color: #e0e0e0;
  654. }
  655. .btn-template-transparent-black:active,
  656. .btn-template-transparent-black.active,
  657. .open>.dropdown-toggle.btn-template-transparent-black {
  658. background-image: none;
  659. }
  660. .btn-template-transparent-black.disabled,
  661. .btn-template-transparent-black[disabled],
  662. fieldset[disabled] .btn-template-transparent-black,
  663. .btn-template-transparent-black.disabled:hover,
  664. .btn-template-transparent-black[disabled]:hover,
  665. fieldset[disabled] .btn-template-transparent-black:hover,
  666. .btn-template-transparent-black.disabled:focus,
  667. .btn-template-transparent-black[disabled]:focus,
  668. fieldset[disabled] .btn-template-transparent-black:focus,
  669. .btn-template-transparent-black.disabled:active,
  670. .btn-template-transparent-black[disabled]:active,
  671. fieldset[disabled] .btn-template-transparent-black:active,
  672. .btn-template-transparent-black.disabled.active,
  673. .btn-template-transparent-black[disabled].active,
  674. fieldset[disabled] .btn-template-transparent-black.active {
  675. background-color: transparent;
  676. border-color: #ffffff;
  677. }
  678. .btn-template-transparent-black .badge {
  679. color: transparent;
  680. background-color: #ffffff;
  681. }
  682. .btn-template-transparent-black:hover,
  683. .btn-template-transparent-black:focus,
  684. .btn-template-transparent-black:active,
  685. .btn-template-transparent-black.active {
  686. background: #fff;
  687. color: #000;
  688. border-color: #fff;
  689. }
  690. .btn-template-primary {
  691. color: #ffffff;
  692. background-color: #38a7bb;
  693. border-color: #38a7bb;
  694. }
  695. .btn-template-primary:hover,
  696. .btn-template-primary:focus,
  697. .btn-template-primary:active,
  698. .btn-template-primary.active,
  699. .open>.dropdown-toggle.btn-template-primary {
  700. color: #ffffff;
  701. background-color: #2c8494;
  702. border-color: #2a7d8c;
  703. }
  704. .btn-template-primary:active,
  705. .btn-template-primary.active,
  706. .open>.dropdown-toggle.btn-template-primary {
  707. background-image: none;
  708. }
  709. .btn-template-primary.disabled,
  710. .btn-template-primary[disabled],
  711. fieldset[disabled] .btn-template-primary,
  712. .btn-template-primary.disabled:hover,
  713. .btn-template-primary[disabled]:hover,
  714. fieldset[disabled] .btn-template-primary:hover,
  715. .btn-template-primary.disabled:focus,
  716. .btn-template-primary[disabled]:focus,
  717. fieldset[disabled] .btn-template-primary:focus,
  718. .btn-template-primary.disabled:active,
  719. .btn-template-primary[disabled]:active,
  720. fieldset[disabled] .btn-template-primary:active,
  721. .btn-template-primary.disabled.active,
  722. .btn-template-primary[disabled].active,
  723. fieldset[disabled] .btn-template-primary.active {
  724. background-color: #38a7bb;
  725. border-color: #38a7bb;
  726. }
  727. .btn-template-primary .badge {
  728. color: #38a7bb;
  729. background-color: #ffffff;
  730. }
  731. #intro {
  732. background: url("../img/home.jpg") no-repeat center top;
  733. -webkit-background-size: cover;
  734. -moz-background-size: cover;
  735. -o-background-size: cover;
  736. background-size: cover;
  737. }
  738. #intro .item {
  739. font-family: "Roboto", Helvetica, Arial, sans-serif;
  740. height: 100%;
  741. }
  742. #intro .item h1 {
  743. text-transform: uppercase;
  744. font-size: 50px;
  745. color: #fff;
  746. margin-bottom: 40px;
  747. letter-spacing: 0.08em;
  748. }
  749. @media (max-width: 991px) {
  750. #intro .item h1 {
  751. font-size: 40px;
  752. }
  753. }
  754. @media (max-width: 767px) {
  755. #intro .item h1 {
  756. font-size: 25px;
  757. }
  758. }
  759. #intro .item h3 {
  760. color: #fff;
  761. margin-bottom: 40px;
  762. }
  763. @media (max-width: 767px) {
  764. #intro .item h3 {
  765. font-size: 15px;
  766. margin-bottom: 20px;
  767. }
  768. }
  769. #intro .item .btn {
  770. text-transform: none;
  771. }
  772. @media (max-width: 991px) {
  773. #intro .item .btn {
  774. font-size: 14px;
  775. }
  776. }
  777. @media (max-width: 991px) {
  778. #intro .item .carousel-caption {
  779. left: 10%;
  780. right: 10%;
  781. }
  782. }
  783. #intro .container,
  784. #intro .row {
  785. height: 100%;
  786. position: relative;
  787. }
  788. .jumbotron {
  789. padding: 30px;
  790. margin-bottom: 0;
  791. position: relative;
  792. background: url("../img/photogrid.jpg") center center repeat;
  793. background-size: cover;
  794. -webkit-transition: all 0.2s ease-out;
  795. -moz-transition: all 0.2s ease-out;
  796. transition: all 0.2s ease-out;
  797. }
  798. .jumbotron .dark-mask {
  799. position: absolute;
  800. top: 0;
  801. left: 0;
  802. width: 100%;
  803. height: 100%;
  804. background: #38a7bb;
  805. opacity: 0.9;
  806. filter: alpha(opacity=90);
  807. }
  808. .jumbotron h1,
  809. .jumbotron h2,
  810. .jumbotron h3,
  811. .jumbotron p,
  812. .jumbotron ul {
  813. color: #fff;
  814. }
  815. .jumbotron h1,
  816. .jumbotron h2,
  817. .jumbotron h3 {
  818. color: #ffffff;
  819. text-transform: uppercase;
  820. letter-spacing: 0.08em;
  821. }
  822. .jumbotron p {
  823. margin-bottom: 20px;
  824. font-size: 21px;
  825. font-weight: 400;
  826. }
  827. .jumbotron p.text-uppercase {
  828. font-weight: 700;
  829. }
  830. .jumbotron>hr {
  831. border-top-color: #d5d5d5;
  832. }
  833. .container .jumbotron {
  834. border-radius: 0;
  835. }
  836. .jumbotron .container {
  837. max-width: 100%;
  838. z-index: 2;
  839. }
  840. @media screen and (min-width: 768px) {
  841. .jumbotron {
  842. padding-top: 48px;
  843. padding-bottom: 48px;
  844. }
  845. .container .jumbotron {
  846. padding-left: 60px;
  847. padding-right: 60px;
  848. }
  849. .jumbotron h1,
  850. .jumbotron .h1 {
  851. font-size: 46px;
  852. }
  853. }
  854. #categoryMenu h3 {
  855. padding: 20px;
  856. background: #f7f7f7;
  857. margin: 0;
  858. border-bottom: solid 1px #eeeeee;
  859. text-transform: uppercase;
  860. letter-spacing: 0.08em;
  861. }
  862. .panel.sidebar-menu h3 {
  863. padding: 5px 0;
  864. margin: 0;
  865. color: #333;
  866. line-height: 1.2;
  867. letter-spacing: 1px;
  868. }
  869. .panel.sidebar-menu {
  870. background: #fff;
  871. margin: 0 0 20px;
  872. -webkit-box-sizing: border-box;
  873. -moz-box-sizing: border-box;
  874. box-sizing: border-box;
  875. }
  876. .panel.sidebar-menu .panel-heading {
  877. text-transform: uppercase;
  878. margin-bottom: 15px;
  879. background: none;
  880. padding: 0;
  881. letter-spacing: 0.08em;
  882. border-bottom: none;
  883. }
  884. .panel.sidebar-menu .panel-heading h1,
  885. .panel.sidebar-menu .panel-heading h2,
  886. .panel.sidebar-menu .panel-heading h3,
  887. .panel.sidebar-menu .panel-heading h4,
  888. .panel.sidebar-menu .panel-heading h5 {
  889. display: inline-block;
  890. border-bottom: solid 5px #ea5413;
  891. line-height: 1.1;
  892. margin-bottom: 0;
  893. padding-bottom: 10px;
  894. }
  895. .panel.sidebar-menu .info {
  896. display: flex;
  897. justify-content: space-between;
  898. }
  899. .panel.sidebar-menu .panel-heading .btn.btn-danger {
  900. color: #fff;
  901. margin-top: 5px;
  902. }
  903. .panel.sidebar-menu .panel-body {
  904. padding: 0;
  905. }
  906. .panel.sidebar-menu .panel-body ul {
  907. flex-direction: column;
  908. }
  909. .panel.sidebar-menu .panel-body a {
  910. display: block;
  911. }
  912. .panel.sidebar-menu .panel-body span.colour {
  913. display: inline-block;
  914. width: 15px;
  915. height: 15px;
  916. border: solid 1px #555555;
  917. vertical-align: top;
  918. margin-top: 2px;
  919. margin-left: 5px;
  920. }
  921. .panel.sidebar-menu .panel-body span.colour.white {
  922. background: #fff;
  923. }
  924. .panel.sidebar-menu .panel-body span.colour.red {
  925. background: red;
  926. }
  927. .panel.sidebar-menu .panel-body span.colour.green {
  928. background: green;
  929. }
  930. .panel.sidebar-menu .panel-body span.colour.blue {
  931. background: blue;
  932. }
  933. .panel.sidebar-menu .panel-body span.colour.yellow {
  934. background: yellow;
  935. }
  936. .panel.sidebar-menu .panel-body label {
  937. color: #999999;
  938. font-size: 12px;
  939. }
  940. .panel.sidebar-menu .panel-body label:hover {
  941. color: #555555;
  942. }
  943. .panel.sidebar-menu ul.nav.category-menu {
  944. margin-bottom: 20px;
  945. text-transform: uppercase;
  946. font-weight: 700;
  947. letter-spacing: 0.08em;
  948. }
  949. .panel.sidebar-menu ul.nav.category-menu li a {
  950. font-family: "Roboto", Helvetica, Arial, sans-serif;
  951. }
  952. .panel.sidebar-menu ul.nav ul {
  953. list-style: none;
  954. padding-left: 0;
  955. }
  956. .panel.sidebar-menu ul.nav ul li {
  957. display: block;
  958. }
  959. .panel.sidebar-menu ul.nav ul li a {
  960. position: relative;
  961. font-family: "Times New Roman", Times, serif;
  962. font-weight: normal;
  963. text-transform: none !important;
  964. display: block;
  965. padding: 10px 15px;
  966. padding-left: 30px;
  967. font-size: 12px;
  968. color: #999999;
  969. }
  970. .panel.sidebar-menu ul.nav ul li a:hover,
  971. .panel.sidebar-menu ul.nav ul li a:focus {
  972. text-decoration: none;
  973. background-color: #eeeeee;
  974. }
  975. .panel.sidebar-menu ul.tag-cloud {
  976. list-style: none;
  977. padding-left: 0;
  978. }
  979. .panel.sidebar-menu ul.tag-cloud li {
  980. display: inline-block;
  981. }
  982. .panel.sidebar-menu ul.tag-cloud li a {
  983. display: inline-block;
  984. /* padding: 5px; */
  985. padding: 5px 10px 3px 5px;
  986. border: solid 1px #eeeeee;
  987. border-radius: 0;
  988. color: #ea5413;
  989. margin: 5px 5px 5px 0;
  990. text-transform: uppercase;
  991. letter-spacing: 0.08em;
  992. font-weight: 700;
  993. font-size: 12px;
  994. text-decoration: none;
  995. }
  996. .panel.sidebar-menu ul.tag-cloud li a:hover {
  997. color: #ea5413;
  998. border-color: #ea5413;
  999. }
  1000. .panel.sidebar-menu ul.tag-cloud li.active a {
  1001. color: #ffffff;
  1002. background-color: #ea5413;
  1003. }
  1004. .panel.sidebar-menu ul.tag-cloud li.active a:hover {
  1005. color: #ffffff;
  1006. }
  1007. .panel.sidebar-menu ul.popular,
  1008. .panel.sidebar-menu ul.recent {
  1009. list-style: none;
  1010. padding-left: 0;
  1011. padding: 20px 0;
  1012. }
  1013. .panel.sidebar-menu ul.popular li,
  1014. .panel.sidebar-menu ul.recent li {
  1015. margin-bottom: 10px;
  1016. padding: 5px 0;
  1017. border-bottom: dotted 1px #eeeeee;
  1018. }
  1019. .panel.sidebar-menu ul.popular li:before,
  1020. .panel.sidebar-menu ul.recent li:before,
  1021. .panel.sidebar-menu ul.popular li:after,
  1022. .panel.sidebar-menu ul.recent li:after {
  1023. content: " ";
  1024. display: table;
  1025. }
  1026. .panel.sidebar-menu ul.popular li:after,
  1027. .panel.sidebar-menu ul.recent li:after {
  1028. clear: both;
  1029. }
  1030. .panel.sidebar-menu ul.popular li:before,
  1031. .panel.sidebar-menu ul.recent li:before,
  1032. .panel.sidebar-menu ul.popular li:after,
  1033. .panel.sidebar-menu ul.recent li:after {
  1034. content: " ";
  1035. display: table;
  1036. }
  1037. .panel.sidebar-menu ul.popular li:after,
  1038. .panel.sidebar-menu ul.recent li:after {
  1039. clear: both;
  1040. }
  1041. .panel.sidebar-menu ul.popular li img,
  1042. .panel.sidebar-menu ul.recent li img {
  1043. width: 50px;
  1044. margin-right: 10px;
  1045. }
  1046. .panel.sidebar-menu ul.popular li h5,
  1047. .panel.sidebar-menu ul.recent li h5 {
  1048. margin: 0 0 10px;
  1049. }
  1050. .panel.sidebar-menu ul.popular li h5 a,
  1051. .panel.sidebar-menu ul.recent li h5 a {
  1052. font-weight: normal;
  1053. }
  1054. .panel.sidebar-menu ul.popular li p.date,
  1055. .panel.sidebar-menu ul.recent li p.date {
  1056. float: right;
  1057. font-size: 12px;
  1058. color: #999999;
  1059. }
  1060. .panel.sidebar-menu ul.popular li:last-child,
  1061. .panel.sidebar-menu ul.recent li:last-child {
  1062. border-bottom: none;
  1063. }
  1064. .panel.sidebar-menu .text-widget {
  1065. font-size: 12px;
  1066. }
  1067. .panel.sidebar-menu.with-icons ul.nav li a:after {
  1068. font-family: "FontAwesome";
  1069. content: "\f105";
  1070. position: relative;
  1071. top: 0;
  1072. float: right;
  1073. }
  1074. /* ribbons for product sales etc. */
  1075. .ribbon {
  1076. position: absolute;
  1077. top: 50px;
  1078. padding-left: 51px;
  1079. font-weight: 700;
  1080. letter-spacing: 0.08em;
  1081. }
  1082. .ribbon .ribbon-background {
  1083. position: absolute;
  1084. top: 0;
  1085. right: 0;
  1086. }
  1087. .ribbon .theribbon {
  1088. position: relative;
  1089. width: 80px;
  1090. padding: 6px 20px 6px 20px;
  1091. margin: 30px 10px 10px -71px;
  1092. color: #fff;
  1093. background-color: #38a7bb;
  1094. font-family: "Roboto", Helvetica, Arial, sans-serif;
  1095. }
  1096. .ribbon .theribbon:before,
  1097. .ribbon .theribbon:after {
  1098. content: " ";
  1099. position: absolute;
  1100. width: 0;
  1101. height: 0;
  1102. }
  1103. .ribbon .theribbon:after {
  1104. left: 0px;
  1105. top: 100%;
  1106. border-width: 5px 10px;
  1107. border-style: solid;
  1108. border-color: #000000 #000000 transparent transparent;
  1109. }
  1110. .ribbon.sale {
  1111. top: 0;
  1112. }
  1113. .ribbon.new {
  1114. top: 50px;
  1115. }
  1116. .ribbon.new .theribbon {
  1117. background-color: #5bc0de;
  1118. text-shadow: 0px 1px 2px #bbb;
  1119. }
  1120. .ribbon.new .theribbon:after {
  1121. border-color: #2390b0 #2390b0 transparent transparent;
  1122. }
  1123. .ribbon.gift {
  1124. top: 100px;
  1125. }
  1126. .ribbon.gift .theribbon {
  1127. background-color: #5cb85c;
  1128. text-shadow: 0px 1px 2px #bbb;
  1129. }
  1130. .ribbon.gift .theribbon:after {
  1131. border-color: #357935 #357935 transparent transparent;
  1132. }
  1133. .owl-carousel .owl-controls .owl-page.active span,
  1134. .owl-theme .owl-controls .owl-page.active span,
  1135. .owl-carousel .owl-controls.clickable .owl-page:hover span,
  1136. .owl-theme .owl-controls.clickable .owl-page:hover span {
  1137. background: #38a7bb;
  1138. }
  1139. .owl-carousel .owl-controls .owl-buttons,
  1140. .owl-theme .owl-controls .owl-buttons {
  1141. position: absolute;
  1142. top: 5px;
  1143. right: 0;
  1144. }
  1145. .owl-carousel .owl-controls .owl-buttons div,
  1146. .owl-theme .owl-controls .owl-buttons div {
  1147. width: 26px;
  1148. height: 26px;
  1149. line-height: 25px;
  1150. margin: 0 5px 0 0;
  1151. font-size: 18px;
  1152. color: #38a7bb;
  1153. padding: 0;
  1154. background: #fff;
  1155. border-radius: 13px;
  1156. vertical-align: middle;
  1157. text-align: center;
  1158. opacity: 1;
  1159. filter: alpha(opacity=100);
  1160. }
  1161. .home-carousel {
  1162. position: relative;
  1163. background: url("../img/photogrid.jpg") center center repeat;
  1164. background-size: cover;
  1165. -webkit-transition: all 0.2s ease-out;
  1166. -moz-transition: all 0.2s ease-out;
  1167. transition: all 0.2s ease-out;
  1168. }
  1169. .home-carousel .dark-mask {
  1170. position: absolute;
  1171. top: 0;
  1172. left: 0;
  1173. width: 100%;
  1174. height: 100%;
  1175. background: #38a7bb;
  1176. opacity: 0.9;
  1177. filter: alpha(opacity=90);
  1178. }
  1179. .home-carousel .owl-carousel {
  1180. padding-top: 60px;
  1181. padding-bottom: 20px;
  1182. }
  1183. .home-carousel .owl-theme .owl-controls .owl-page span {
  1184. background: #666;
  1185. }
  1186. .home-carousel .owl-theme .owl-controls .owl-page.active span {
  1187. background: #fff;
  1188. }
  1189. .home-carousel .owl-theme .owl-controls .owl-page:hover span {
  1190. background: #fff;
  1191. }
  1192. @media (max-width: 767px) {
  1193. .home-carousel {
  1194. text-align: center !important;
  1195. }
  1196. }
  1197. @media (min-width: 992px) {
  1198. .home-carousel .right {
  1199. text-align: right;
  1200. }
  1201. }
  1202. .home-carousel h1,
  1203. .home-carousel h2,
  1204. .home-carousel h3,
  1205. .home-carousel p,
  1206. .home-carousel ul {
  1207. color: #fff;
  1208. }
  1209. .home-carousel h1 {
  1210. font-weight: 600;
  1211. text-transform: uppercase;
  1212. font-size: 35px;
  1213. letter-spacing: 0.08em;
  1214. }
  1215. @media (max-width: 991px) {
  1216. .home-carousel h1 {
  1217. font-size: 30px;
  1218. }
  1219. }
  1220. .home-carousel h2 {
  1221. font-weight: 700;
  1222. text-transform: uppercase;
  1223. font-size: 40px;
  1224. letter-spacing: 0.08em;
  1225. }
  1226. .home-carousel ul,
  1227. .home-carousel p {
  1228. font-size: 18px;
  1229. font-weight: 700;
  1230. padding: 0;
  1231. text-transform: uppercase;
  1232. letter-spacing: 0.1em;
  1233. }
  1234. @media (max-width: 991px) {
  1235. .home-carousel ul,
  1236. .home-carousel p {
  1237. font-size: 14px;
  1238. }
  1239. }
  1240. .home-carousel ul li {
  1241. margin-bottom: 10px;
  1242. }
  1243. .customers {
  1244. padding: 0;
  1245. margin-bottom: 40px;
  1246. }
  1247. .customers .item {
  1248. list-style-type: none;
  1249. text-align: center;
  1250. margin: 0 20px;
  1251. }
  1252. .customers .item img {
  1253. display: inline-block;
  1254. filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  1255. /* Firefox 10+, Firefox on Android */
  1256. filter: gray;
  1257. /* IE6-9 */
  1258. -webkit-filter: grayscale(100%);
  1259. /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  1260. -webkit-transition: all 0.2s ease-out;
  1261. -moz-transition: all 0.2s ease-out;
  1262. transition: all 0.2s ease-out;
  1263. }
  1264. .customers .item img:hover {
  1265. max-width: auto;
  1266. filter: none;
  1267. -webkit-filter: none;
  1268. }
  1269. .testimonials {
  1270. padding: 0;
  1271. margin-bottom: 40px;
  1272. }
  1273. .testimonials .item {
  1274. list-style-type: none;
  1275. margin: 0 5px;
  1276. background: #fff;
  1277. padding-bottom: 60px;
  1278. -webkit-box-sizing: border-box;
  1279. -moz-box-sizing: border-box;
  1280. box-sizing: border-box;
  1281. }
  1282. .testimonials .item .testimonial {
  1283. position: relative;
  1284. padding: 20px;
  1285. }
  1286. .testimonials .item .testimonial:before,
  1287. .testimonials .item .testimonial:after {
  1288. content: " ";
  1289. display: table;
  1290. }
  1291. .testimonials .item .testimonial:after {
  1292. clear: both;
  1293. }
  1294. .testimonials .item .testimonial:before,
  1295. .testimonials .item .testimonial:after {
  1296. content: " ";
  1297. display: table;
  1298. }
  1299. .testimonials .item .testimonial:after {
  1300. clear: both;
  1301. }
  1302. .testimonials .item .testimonial .text {
  1303. color: #999999;
  1304. margin-bottom: 40px;
  1305. }
  1306. .testimonials .item .testimonial .bottom {
  1307. position: absolute;
  1308. left: 0;
  1309. bottom: 0;
  1310. width: 100%;
  1311. -webkit-box-sizing: border-box;
  1312. -moz-box-sizing: border-box;
  1313. box-sizing: border-box;
  1314. padding: 20px;
  1315. height: 50px;
  1316. }
  1317. .testimonials .item .testimonial .bottom .icon {
  1318. color: #38a7bb;
  1319. font-size: 30px;
  1320. float: left;
  1321. width: 20%;
  1322. }
  1323. .testimonials .item .testimonial .name-picture {
  1324. float: right;
  1325. width: 80%;
  1326. text-align: right;
  1327. }
  1328. .testimonials .item .testimonial .name-picture h5 {
  1329. font-size: 14px;
  1330. text-transform: uppercase;
  1331. letter-spacing: 0.08em;
  1332. }
  1333. .testimonials .item .testimonial .name-picture p {
  1334. color: #999999;
  1335. margin: 0;
  1336. font-size: 12px;
  1337. }
  1338. .testimonials .item .testimonial .name-picture img {
  1339. float: right;
  1340. width: 60px;
  1341. border-radius: 30px;
  1342. margin-left: 10px;
  1343. }
  1344. .team-member {
  1345. text-align: center;
  1346. margin-bottom: 40px;
  1347. }
  1348. .team-member h3 {
  1349. font-size: 18px;
  1350. text-transform: uppercase;
  1351. margin-bottom: 5px;
  1352. letter-spacing: 0.08em;
  1353. }
  1354. .team-member h3 a {
  1355. color: #555555;
  1356. }
  1357. .team-member p.role {
  1358. color: #999999;
  1359. font-size: 12px;
  1360. text-transform: uppercase;
  1361. letter-spacing: 0.06em;
  1362. }
  1363. .team-member .social {
  1364. margin-bottom: 20px;
  1365. }
  1366. .team-member .social a {
  1367. margin: 0 10px 0 0;
  1368. color: #fff;
  1369. display: inline-block;
  1370. width: 26px;
  1371. height: 26px;
  1372. border-radius: 13px;
  1373. line-height: 26px;
  1374. font-size: 15px;
  1375. text-align: center;
  1376. -webkit-transition: all 0.2s ease-out;
  1377. -moz-transition: all 0.2s ease-out;
  1378. transition: all 0.2s ease-out;
  1379. vertical-align: bottom;
  1380. }
  1381. .team-member .social a i {
  1382. vertical-align: bottom;
  1383. line-height: 26px;
  1384. }
  1385. .team-member .social a.facebook {
  1386. background-color: #4460ae;
  1387. }
  1388. .team-member .social a.gplus {
  1389. background-color: #c21f25;
  1390. }
  1391. .team-member .social a.twitter {
  1392. background-color: #3cf;
  1393. }
  1394. .team-member .social a.instagram {
  1395. background-color: #cd4378;
  1396. }
  1397. .team-member .social a.email {
  1398. background-color: #4a7f45;
  1399. }
  1400. .team-member .text p {
  1401. color: #999999;
  1402. font-size: 12px;
  1403. }
  1404. .team-member .social,
  1405. .team-member-detail .social {
  1406. margin-bottom: 20px;
  1407. }
  1408. .team-member .social a,
  1409. .team-member-detail .social a {
  1410. margin: 0 10px 0 0;
  1411. color: #fff;
  1412. display: inline-block;
  1413. width: 26px;
  1414. height: 26px;
  1415. border-radius: 13px;
  1416. line-height: 26px;
  1417. font-size: 15px;
  1418. text-align: center;
  1419. -webkit-transition: all 0.2s ease-out;
  1420. -moz-transition: all 0.2s ease-out;
  1421. transition: all 0.2s ease-out;
  1422. vertical-align: bottom;
  1423. }
  1424. .team-member .social a i,
  1425. .team-member-detail .social a i {
  1426. vertical-align: bottom;
  1427. line-height: 26px;
  1428. }
  1429. .team-member .social a.facebook,
  1430. .team-member-detail .social a.facebook {
  1431. background-color: #4460ae;
  1432. }
  1433. .team-member .social a.gplus,
  1434. .team-member-detail .social a.gplus {
  1435. background-color: #c21f25;
  1436. }
  1437. .team-member .social a.twitter,
  1438. .team-member-detail .social a.twitter {
  1439. background-color: #3cf;
  1440. }
  1441. .team-member .social a.instagram,
  1442. .team-member-detail .social a.instagram {
  1443. background-color: #cd4378;
  1444. }
  1445. .team-member .social a.email,
  1446. .team-member-detail .social a.email {
  1447. background-color: #4a7f45;
  1448. }
  1449. .box-simple {
  1450. text-align: center;
  1451. margin-bottom: 40px;
  1452. }
  1453. .box-simple .icon {
  1454. color: #38a7bb;
  1455. border-color: #38a7bb;
  1456. -webkit-transition: all 0.2s ease-out;
  1457. -moz-transition: all 0.2s ease-out;
  1458. transition: all 0.2s ease-out;
  1459. }
  1460. .box-simple h3 {
  1461. font-weight: normal;
  1462. font-size: 18px;
  1463. text-transform: uppercase;
  1464. line-height: 1.5;
  1465. color: #555555;
  1466. font-weight: 800;
  1467. letter-spacing: 0.08em;
  1468. }
  1469. .box-simple h3 a {
  1470. color: #555555;
  1471. }
  1472. .box-simple p {
  1473. color: #999999;
  1474. }
  1475. .box-simple:hover .icon {
  1476. -webkit-transform: scale(1.1, 1.1);
  1477. -ms-transform: scale(1.1, 1.1);
  1478. -o-transform: scale(1.1, 1.1);
  1479. transform: scale(1.1, 1.1);
  1480. }
  1481. .box-simple:hover .icon i {
  1482. -webkit-transform: scale(1, 1);
  1483. -ms-transform: scale(1, 1);
  1484. -o-transform: scale(1, 1);
  1485. transform: scale(1, 1);
  1486. }
  1487. .box-simple.box-white {
  1488. padding: 20px;
  1489. border: dotted 1px #999999;
  1490. }
  1491. .box-simple.box-white .icon {
  1492. color: #555555;
  1493. border-color: transparent;
  1494. font-size: 70px;
  1495. }
  1496. .box-simple.box-dark {
  1497. padding: 20px;
  1498. border: dotted 1px #999999;
  1499. background: #555555;
  1500. color: #fff;
  1501. }
  1502. .box-simple.box-dark .icon {
  1503. color: #f7f7f7;
  1504. border-color: transparent;
  1505. font-size: 70px;
  1506. }
  1507. .box-simple.box-dark h3 {
  1508. color: #fff;
  1509. }
  1510. .box-simple.box-dark h3 a {
  1511. color: #fff;
  1512. }
  1513. .box-simple.box-dark p {
  1514. color: #fff;
  1515. }
  1516. .box-image {
  1517. position: relative;
  1518. overflow: hidden;
  1519. text-align: center;
  1520. margin: 15px 0;
  1521. }
  1522. .box-image .bg {
  1523. position: absolute;
  1524. top: auto;
  1525. bottom: 0;
  1526. width: 100%;
  1527. height: 100%;
  1528. opacity: 0;
  1529. filter: alpha(opacity=0);
  1530. background: #38a7bb;
  1531. }
  1532. .box-image .name {
  1533. position: absolute;
  1534. width: 100%;
  1535. height: 50%;
  1536. bottom: 0;
  1537. -webkit-transform: translate(0, 100%);
  1538. -ms-transform: translate(0, 100%);
  1539. -o-transform: translate(0, 100%);
  1540. transform: translate(0, 100%);
  1541. -webkit-transition: all 0.2s ease-out;
  1542. -moz-transition: all 0.2s ease-out;
  1543. transition: all 0.2s ease-out;
  1544. color: #fff;
  1545. padding: 0 20px;
  1546. }
  1547. .box-image .name h3 {
  1548. color: #fff;
  1549. text-transform: uppercase;
  1550. font-size: 18px;
  1551. letter-spacing: 0.08em;
  1552. }
  1553. .box-image .name h3 a {
  1554. color: #fff;
  1555. text-decoration: none;
  1556. }
  1557. .box-image .text {
  1558. position: absolute;
  1559. width: 100%;
  1560. height: 50%;
  1561. top: 0;
  1562. -webkit-transform: translate(0, -150%);
  1563. -ms-transform: translate(0, -150%);
  1564. -o-transform: translate(0, -150%);
  1565. transform: translate(0, -150%);
  1566. -webkit-transition: all 0.2s ease-out;
  1567. -moz-transition: all 0.2s ease-out;
  1568. transition: all 0.2s ease-out;
  1569. color: #fff;
  1570. padding: 0 20px;
  1571. }
  1572. .box-image:hover .bg {
  1573. opacity: 0.7;
  1574. filter: alpha(opacity=70);
  1575. }
  1576. .box-image:hover .name {
  1577. position: absolute;
  1578. -webkit-transform: translate(0, -75%);
  1579. -ms-transform: translate(0, -75%);
  1580. -o-transform: translate(0, -75%);
  1581. transform: translate(0, -75%);
  1582. }
  1583. .box-image:hover .text {
  1584. position: absolute;
  1585. -webkit-transform: translate(0, 100%);
  1586. -ms-transform: translate(0, 100%);
  1587. -o-transform: translate(0, 100%);
  1588. transform: translate(0, 100%);
  1589. }
  1590. .box-image-text {
  1591. position: relative;
  1592. overflow: hidden;
  1593. text-align: center;
  1594. margin: 15px 0;
  1595. }
  1596. .box-image-text .top {
  1597. position: relative;
  1598. margin-bottom: 10px;
  1599. }
  1600. .box-image-text .top .bg {
  1601. position: absolute;
  1602. top: auto;
  1603. bottom: 0;
  1604. width: 100%;
  1605. height: 100%;
  1606. opacity: 0;
  1607. filter: alpha(opacity=0);
  1608. background: #38a7bb;
  1609. }
  1610. .box-image-text .top .name {
  1611. position: absolute;
  1612. width: 100%;
  1613. height: 50%;
  1614. bottom: 0;
  1615. -webkit-transform: translate(0, 100%);
  1616. -ms-transform: translate(0, 100%);
  1617. -o-transform: translate(0, 100%);
  1618. transform: translate(0, 100%);
  1619. -webkit-transition: all 0.2s ease-out;
  1620. -moz-transition: all 0.2s ease-out;
  1621. transition: all 0.2s ease-out;
  1622. color: #fff;
  1623. padding: 0 20px;
  1624. }
  1625. .box-image-text .top .name h3 {
  1626. color: #fff;
  1627. text-transform: uppercase;
  1628. font-size: 18px;
  1629. letter-spacing: 0.08em;
  1630. }
  1631. .box-image-text .top .name h3 a {
  1632. color: #fff;
  1633. text-decoration: none;
  1634. }
  1635. .box-image-text .top .text {
  1636. position: absolute;
  1637. width: 100%;
  1638. height: 50%;
  1639. top: 0;
  1640. -webkit-transform: translate(0, -150%);
  1641. -ms-transform: translate(0, -150%);
  1642. -o-transform: translate(0, -150%);
  1643. transform: translate(0, -150%);
  1644. -webkit-transition: all 0.2s ease-out;
  1645. -moz-transition: all 0.2s ease-out;
  1646. transition: all 0.2s ease-out;
  1647. color: #fff;
  1648. padding: 0 20px;
  1649. }
  1650. .box-image-text .content h3,
  1651. .box-image-text .content h4 {
  1652. text-transform: uppercase;
  1653. line-height: 1.5;
  1654. color: #555555;
  1655. font-weight: 800;
  1656. letter-spacing: 0.08em;
  1657. }
  1658. .box-image-text .content p {
  1659. color: #999999;
  1660. }
  1661. .box-image-text:hover .bg {
  1662. opacity: 0.7;
  1663. filter: alpha(opacity=70);
  1664. }
  1665. .box-image-text:hover .name {
  1666. position: absolute;
  1667. -webkit-transform: translate(0, -75%);
  1668. -ms-transform: translate(0, -75%);
  1669. -o-transform: translate(0, -75%);
  1670. transform: translate(0, -75%);
  1671. }
  1672. .box-image-text:hover .text {
  1673. position: absolute;
  1674. -webkit-transform: translate(0, 100%);
  1675. -ms-transform: translate(0, 100%);
  1676. -o-transform: translate(0, 100%);
  1677. transform: translate(0, 100%);
  1678. }
  1679. /* universal box */
  1680. .box {
  1681. background: #fff;
  1682. margin: 0 0 30px;
  1683. border: solid 1px #ccc;
  1684. -webkit-box-sizing: border-box;
  1685. -moz-box-sizing: border-box;
  1686. box-sizing: border-box;
  1687. padding: 20px 0;
  1688. border-left: none;
  1689. border-right: none;
  1690. }
  1691. .box .box-header {
  1692. background: #f7f7f7;
  1693. margin: -20px 0 20px;
  1694. padding: 20px;
  1695. border-bottom: solid 1px #eeeeee;
  1696. text-transform: uppercase;
  1697. letter-spacing: 0.08em;
  1698. }
  1699. .box .box-header:before,
  1700. .box .box-header:after {
  1701. content: " ";
  1702. display: table;
  1703. }
  1704. .box .box-header:after {
  1705. clear: both;
  1706. }
  1707. .box .box-header:before,
  1708. .box .box-header:after {
  1709. content: " ";
  1710. display: table;
  1711. }
  1712. .box .box-header:after {
  1713. clear: both;
  1714. }
  1715. .box .box-footer {
  1716. background: #f7f7f7;
  1717. margin: 30px 0 -20px;
  1718. padding: 20px;
  1719. border-top: solid 1px #eeeeee;
  1720. }
  1721. .box .box-footer:before,
  1722. .box .box-footer:after {
  1723. content: " ";
  1724. display: table;
  1725. }
  1726. .box .box-footer:after {
  1727. clear: both;
  1728. }
  1729. .box .box-footer:before,
  1730. .box .box-footer:after {
  1731. content: " ";
  1732. display: table;
  1733. }
  1734. .box .box-footer:after {
  1735. clear: both;
  1736. }
  1737. @media (max-width: 991px) {
  1738. .box .box-footer .btn {
  1739. margin-bottom: 20px;
  1740. }
  1741. }
  1742. .box.no-border {
  1743. border: none;
  1744. }
  1745. #heading-breadcrumbs {
  1746. background: url("https://i.imgur.com/N7tVTSh.png");
  1747. padding: 0 0;
  1748. background-size: cover;
  1749. background-repeat: no-repeat;
  1750. padding-bottom: 20px;
  1751. margin: 75px auto 40px;
  1752. text-align: center;
  1753. position: relative;
  1754. }
  1755. @media (max-width: 991px) {
  1756. #heading-breadcrumbs {
  1757. margin: 65px auto 40px;
  1758. }
  1759. }
  1760. #heading-breadcrumbs .breadcrumbs-title {
  1761. position: relative;
  1762. }
  1763. #heading-breadcrumbs .breadcrumbs-title::after {
  1764. position: absolute;
  1765. width: 6rem;
  1766. height: 0.3rem;
  1767. bottom: -20px;
  1768. left: 50%;
  1769. transform: translate(-50%, 0%);
  1770. content: "";
  1771. background-color: #ea5413;
  1772. }
  1773. #heading-breadcrumbs .blog-social {
  1774. display: flex;
  1775. align-items: center;
  1776. }
  1777. #heading-breadcrumbs .blog-social a {
  1778. margin-right: 1rem;
  1779. }
  1780. #heading-breadcrumbs .container:nth-of-type(1) {
  1781. padding: 60px 0;
  1782. }
  1783. #heading-breadcrumbs .container:nth-of-type(2) {
  1784. padding-top: 10px;
  1785. padding-bottom: 10px;
  1786. font-size: 1.8rem;
  1787. }
  1788. #heading-breadcrumbs .col {
  1789. position: relative;
  1790. }
  1791. #heading-breadcrumbs .col::before {
  1792. position: absolute;
  1793. content: "";
  1794. width: 100%;
  1795. height: 100%;
  1796. border-left: 1px solid black;
  1797. left: 0;
  1798. top: 0;
  1799. z-index: -1;
  1800. }
  1801. #heading-breadcrumbs .col:last-of-type::after {
  1802. position: absolute;
  1803. content: "";
  1804. width: 100%;
  1805. height: 100%;
  1806. border-right: 1px solid black;
  1807. left: 0;
  1808. top: 0;
  1809. z-index: -1;
  1810. }
  1811. @media (min-width: 1200px) {
  1812. #heading-breadcrumbs .container:nth-of-type(2) {
  1813. max-width: 60%;
  1814. }
  1815. }
  1816. #heading-breadcrumbs .container:nth-of-type(2) a {
  1817. color: #181c47;
  1818. }
  1819. #heading-breadcrumbs.no-mb {
  1820. margin-bottom: 0;
  1821. }
  1822. #heading-breadcrumbs h1 {
  1823. color: #333333;
  1824. text-transform: uppercase;
  1825. font-size: 30px;
  1826. font-weight: 700;
  1827. letter-spacing: 0.08em;
  1828. }
  1829. @media (max-width: 991px) {
  1830. #heading-breadcrumbs h1 {
  1831. text-align: center;
  1832. }
  1833. }
  1834. #heading-breadcrumbs ul.breadcrumb {
  1835. margin-top: 5px;
  1836. margin-bottom: 0;
  1837. }
  1838. .bar {
  1839. position: relative;
  1840. background: #38a7bb;
  1841. padding: 60px 0;
  1842. }
  1843. .bar.background-pentagon {
  1844. background: url("../img/texture-bw.png") center center repeat;
  1845. border-top: solid 1px #999999;
  1846. border-bottom: solid 1px #999999;
  1847. }
  1848. .bar.background-gray {
  1849. background: #eeeeee;
  1850. }
  1851. .bar.background-gray-dark {
  1852. background: #555555;
  1853. }
  1854. .bar.background-white {
  1855. background: #fff;
  1856. }
  1857. .bar.background-image-fixed-1 {
  1858. background: url("../img/fixed-background-1.jpg") center top no-repeat;
  1859. background-attachment: fixed;
  1860. background-size: cover;
  1861. }
  1862. .bar.background-image-fixed-2 {
  1863. background: url("../img/fixed-background-2.jpg") center top no-repeat;
  1864. background-attachment: fixed;
  1865. background-size: cover;
  1866. }
  1867. .bar.color-white h1,
  1868. .bar.color-white h2,
  1869. .bar.color-white h3,
  1870. .bar.color-white h4,
  1871. .bar.color-white h5,
  1872. .bar.color-white h6,
  1873. .bar.color-white p {
  1874. color: #fff;
  1875. }
  1876. .bar.padding-big {
  1877. padding: 50px 0;
  1878. }
  1879. .bar.padding-horizontal {
  1880. padding-left: 30px;
  1881. padding-right: 30px;
  1882. }
  1883. .bar.margin-vertical {
  1884. margin-top: 20px;
  1885. margin-bottom: 20px;
  1886. }
  1887. .bar .dark-mask {
  1888. position: absolute;
  1889. top: 0;
  1890. left: 0;
  1891. width: 100%;
  1892. height: 100%;
  1893. background: #000;
  1894. opacity: 0.3;
  1895. filter: alpha(opacity=30);
  1896. }
  1897. .portfolio.no-space {
  1898. padding: 0 15px;
  1899. }
  1900. .portfolio.no-space .box-image {
  1901. margin: 0 -15px;
  1902. }
  1903. .portfolio-project .project-more h4 {
  1904. color: #555555;
  1905. text-transform: uppercase;
  1906. margin-bottom: 0;
  1907. text-align: left;
  1908. font-size: 14px;
  1909. letter-spacing: 0.08em;
  1910. }
  1911. .portfolio-project .project-more p {
  1912. color: #999999;
  1913. padding: 10px 0;
  1914. margin-bottom: 20px;
  1915. text-align: left;
  1916. }
  1917. .portfolio-showcase {
  1918. margin: 15px 0 60px;
  1919. }
  1920. .portfolio-showcase h3 a {
  1921. text-transform: uppercase;
  1922. line-height: 1.5;
  1923. letter-spacing: 0.08em;
  1924. }
  1925. .portfolio-showcase p.lead {
  1926. color: #555555;
  1927. margin-bottom: 20px;
  1928. }
  1929. .portfolio-showcase p {
  1930. color: #999999;
  1931. }
  1932. .portfolio-showcase p.buttons {
  1933. margin-top: 40px;
  1934. }
  1935. .see-more {
  1936. text-align: center;
  1937. margin-top: 20px;
  1938. padding-top: 20px;
  1939. }
  1940. .see-more p {
  1941. font-size: 28px;
  1942. font-weight: 100;
  1943. margin-bottom: 20px;
  1944. }
  1945. .showcase .item {
  1946. text-align: center;
  1947. }
  1948. .showcase .item .icon {
  1949. display: inline-block;
  1950. width: 50px;
  1951. height: 50px;
  1952. color: #555555;
  1953. line-height: 50px;
  1954. border-radius: 25px;
  1955. border: solid 1px #555555;
  1956. }
  1957. .showcase .item h4 {
  1958. color: #555555;
  1959. text-transform: uppercase;
  1960. letter-spacing: 0.08em;
  1961. line-height: 1.5;
  1962. font-size: 16px;
  1963. }
  1964. .showcase .item h4 span {
  1965. font-weight: bold;
  1966. font-size: 51px;
  1967. }
  1968. .packages .package {
  1969. background: #fff;
  1970. margin-top: 25px;
  1971. margin-bottom: 20px;
  1972. padding-bottom: 15px;
  1973. text-align: center;
  1974. border: solid 1px #38a7bb;
  1975. overflow: hidden;
  1976. }
  1977. .packages .package .package-header {
  1978. height: 57px;
  1979. color: #fff;
  1980. line-height: 57px;
  1981. background: #38a7bb;
  1982. }
  1983. .packages .package .package-header h5 {
  1984. color: #fff;
  1985. text-transform: uppercase;
  1986. font-weight: bold;
  1987. line-height: 57px;
  1988. margin: 0;
  1989. letter-spacing: 0.08em;
  1990. }
  1991. .packages .package .package-header.light-gray {
  1992. background: #eeeeee;
  1993. }
  1994. .packages .package .package-header.light-gray h5 {
  1995. color: #555555;
  1996. }
  1997. .packages .package .price {
  1998. line-height: 120px;
  1999. height: 100px;
  2000. color: #fff;
  2001. font-weight: 400;
  2002. }
  2003. .packages .package .price h4 {
  2004. display: inline;
  2005. font-size: 50px;
  2006. line-height: normal;
  2007. margin-bottom: 0;
  2008. }
  2009. .packages .package .price .period {
  2010. line-height: normal;
  2011. color: #999999;
  2012. }
  2013. .packages .package ul {
  2014. padding: 0;
  2015. }
  2016. .packages .package ul li {
  2017. list-style-type: none;
  2018. padding-top: 10px;
  2019. padding-bottom: 10px;
  2020. width: 80%;
  2021. margin: auto;
  2022. border-bottom: 1px dotted #ccc;
  2023. }
  2024. .packages .package ul li:last-child {
  2025. border-bottom: 0;
  2026. }
  2027. .packages .package ul li i {
  2028. font-size: 13px;
  2029. margin-right: 5px;
  2030. }
  2031. .packages .best-value .package {
  2032. margin-top: 0;
  2033. padding-bottom: 40px;
  2034. }
  2035. .packages .best-value .package .package-header {
  2036. height: 72px;
  2037. padding-top: 17px;
  2038. height: 82px !important;
  2039. }
  2040. .packages .best-value .package .package-header h5 {
  2041. font-weight: bold;
  2042. line-height: 29px;
  2043. text-transform: uppercase;
  2044. letter-spacing: 0.08em;
  2045. }
  2046. .packages .best-value .package .package-header .meta-text {
  2047. font-size: 13px;
  2048. line-height: 15px;
  2049. }
  2050. #map {
  2051. height: 300px;
  2052. }
  2053. #map.with-border {
  2054. border-top: solid 1px #38a7bb;
  2055. border-bottom: solid 1px #38a7bb;
  2056. }
  2057. #blog-listing-big .post,
  2058. #blog-homepage .post {
  2059. margin-bottom: 60px;
  2060. }
  2061. #blog-listing-big .post h2,
  2062. #blog-homepage .post h2,
  2063. #blog-listing-big .post h4,
  2064. #blog-homepage .post h4 {
  2065. text-transform: uppercase;
  2066. letter-spacing: 0.08em;
  2067. }
  2068. #blog-listing-big .post h2 a,
  2069. #blog-homepage .post h2 a,
  2070. #blog-listing-big .post h4 a,
  2071. #blog-homepage .post h4 a {
  2072. color: #555555;
  2073. }
  2074. #blog-listing-big .post h2 a:hover,
  2075. #blog-homepage .post h2 a:hover,
  2076. #blog-listing-big .post h4 a:hover,
  2077. #blog-homepage .post h4 a:hover {
  2078. color: #38a7bb;
  2079. }
  2080. #blog-listing-big .post .author-category,
  2081. #blog-homepage .post .author-category {
  2082. color: #999999;
  2083. text-transform: uppercase;
  2084. font-weight: 300;
  2085. letter-spacing: 0.08em;
  2086. }
  2087. #blog-listing-big .post .author-category a,
  2088. #blog-homepage .post .author-category a {
  2089. font-weight: 500;
  2090. }
  2091. #blog-listing-big .post .date-comments a,
  2092. #blog-homepage .post .date-comments a {
  2093. color: #999999;
  2094. margin-right: 20px;
  2095. }
  2096. #blog-listing-big .post .date-comments a:hover,
  2097. #blog-homepage .post .date-comments a:hover {
  2098. color: #38a7bb;
  2099. }
  2100. @media (min-width: 768px) {
  2101. #blog-listing-big .post .date-comments,
  2102. #blog-homepage .post .date-comments {
  2103. text-align: right;
  2104. }
  2105. }
  2106. #blog-listing-big .post .intro,
  2107. #blog-homepage .post .intro {
  2108. text-align: left;
  2109. }
  2110. #blog-listing-big .post .image,
  2111. #blog-homepage .post .image {
  2112. margin-bottom: 10px;
  2113. overflow: hidden;
  2114. }
  2115. #blog-listing-big .post .image img,
  2116. #blog-homepage .post .image img {
  2117. -webkit-transition: all 0.2s ease-out;
  2118. -moz-transition: all 0.2s ease-out;
  2119. transition: all 0.2s ease-out;
  2120. }
  2121. @media (max-width: 767px) {
  2122. #blog-listing-big .post .image img.img-responsive,
  2123. #blog-homepage .post .image img.img-responsive {
  2124. min-width: 100%;
  2125. }
  2126. }
  2127. #blog-listing-big .post .video,
  2128. #blog-homepage .post .video {
  2129. margin-bottom: 10px;
  2130. }
  2131. #blog-listing-big .post .read-more,
  2132. #blog-homepage .post .read-more {
  2133. text-align: right;
  2134. }
  2135. #blog-listing-medium .post {
  2136. margin-bottom: 60px;
  2137. }
  2138. #blog-listing-medium .post h2 {
  2139. text-transform: uppercase;
  2140. margin: 0 0 10px;
  2141. font-size: 24px;
  2142. letter-spacing: 0.08em;
  2143. }
  2144. #blog-listing-medium .post h2 a {
  2145. color: #555555;
  2146. }
  2147. #blog-listing-medium .post h2 a:hover {
  2148. color: grey;
  2149. }
  2150. #blog-listing-medium .post .author-category {
  2151. float: left;
  2152. color: #999999;
  2153. text-transform: uppercase;
  2154. font-weight: 300;
  2155. font-size: 12px;
  2156. letter-spacing: 0.08em;
  2157. }
  2158. #blog-listing-medium .post .author-category a {
  2159. font-weight: 500;
  2160. }
  2161. #blog-listing-medium .post .date-comments {
  2162. float: right;
  2163. font-size: 12px;
  2164. }
  2165. #blog-listing-medium .post .date-comments a {
  2166. color: #999999;
  2167. margin-right: 20px;
  2168. }
  2169. #blog-listing-medium .post .date-comments a:hover {
  2170. color: #38a7bb;
  2171. }
  2172. @media (min-width: 768px) {
  2173. #blog-listing-medium .post .date-comments {
  2174. text-align: right;
  2175. }
  2176. }
  2177. #blog-listing-medium .post .intro {
  2178. text-align: left;
  2179. }
  2180. #blog-listing-medium .post .clearfix:before,
  2181. #blog-listing-medium .post .clearfix:after,
  2182. #blog-listing-medium .post .navbar:before,
  2183. #blog-listing-medium .post .navbar:after,
  2184. #blog-listing-medium .post .navbar-header:before,
  2185. #blog-listing-medium .post .navbar-header:after {
  2186. content: " ";
  2187. display: table;
  2188. }
  2189. #blog-listing-medium .post .clearfix:after,
  2190. #blog-listing-medium .post .navbar:after,
  2191. #blog-listing-medium .post .navbar-header:after {
  2192. clear: both;
  2193. }
  2194. #blog-listing-medium .post .clearfix:before,
  2195. #blog-listing-medium .post .clearfix:after,
  2196. #blog-listing-medium .post .navbar:before,
  2197. #blog-listing-medium .post .navbar:after,
  2198. #blog-listing-medium .post .navbar-header:before,
  2199. #blog-listing-medium .post .navbar-header:after {
  2200. content: " ";
  2201. display: table;
  2202. }
  2203. #blog-listing-medium .post .clearfix:after,
  2204. #blog-listing-medium .post .navbar:after,
  2205. #blog-listing-medium .post .navbar-header:after {
  2206. clear: both;
  2207. }
  2208. #blog-listing-medium .post .image {
  2209. margin-bottom: 10px;
  2210. position: relative;
  2211. /* overflow: hidden; */
  2212. }
  2213. #blog-listing-medium .post .image img {
  2214. -webkit-transition: all 0.2s ease-out;
  2215. -moz-transition: all 0.2s ease-out;
  2216. transition: all 0.2s ease-out;
  2217. height: 160px;
  2218. width: 100%;
  2219. object-fit: cover;
  2220. position: relative;
  2221. z-index: 100;
  2222. }
  2223. @media (max-width: 991px) {
  2224. #blog-listing-medium .post .image img {
  2225. height: 45vw;
  2226. }
  2227. }
  2228. @media (max-width: 767px) {
  2229. #blog-listing-medium .post .image img.img-responsive {
  2230. min-width: 100%;
  2231. }
  2232. }
  2233. #blog-listing-medium .post .image::after {
  2234. position: absolute;
  2235. content: " ";
  2236. right: 3.5rem;
  2237. bottom: 2.5rem;
  2238. width: 90%;
  2239. height: 90%;
  2240. z-index: 10;
  2241. }
  2242. #blog-listing-medium .post .image img {
  2243. border: 5px solid white;
  2244. }
  2245. #blog-listing-medium .post:nth-of-type(3n + 1) .image::after {
  2246. background-color: thistle;
  2247. }
  2248. #blog-listing-medium .post:nth-of-type(3n + 2) .image::after {
  2249. background-color: #f3f3f9;
  2250. }
  2251. #blog-listing-medium .post:nth-of-type(3n) .image::after {
  2252. background-color: #eba764;
  2253. }
  2254. #blog-listing-medium .post .video {
  2255. margin-bottom: 10px;
  2256. }
  2257. #blog-listing-medium .post .read-more {
  2258. text-align: right;
  2259. }
  2260. .box-image-text.blog .author-category {
  2261. color: #999999;
  2262. text-transform: uppercase;
  2263. letter-spacing: 0.08em;
  2264. font-weight: 300;
  2265. font-size: 12px;
  2266. }
  2267. .box-image-text.blog .author-category a {
  2268. font-weight: 500;
  2269. }
  2270. .box-image-text.blog .intro {
  2271. text-align: left;
  2272. margin-bottom: 20px;
  2273. }
  2274. #blog-homepage .post {
  2275. margin-bottom: 30px;
  2276. }
  2277. #blog-homepage .post h2,
  2278. #blog-homepage .post h4,
  2279. #blog-homepage .post .author-category,
  2280. #blog-homepage .post .read-more {
  2281. text-align: center;
  2282. }
  2283. #blog-homepage .post .read-more {
  2284. margin-top: 20px;
  2285. }
  2286. #blog-post #post-content {
  2287. margin-bottom: 20px;
  2288. }
  2289. #blog-post .comment {
  2290. margin-bottom: 25px;
  2291. }
  2292. #blog-post .comment:before,
  2293. #blog-post .comment:after {
  2294. content: " ";
  2295. display: table;
  2296. }
  2297. #blog-post .comment:after {
  2298. clear: both;
  2299. }
  2300. #blog-post .comment:before,
  2301. #blog-post .comment:after {
  2302. content: " ";
  2303. display: table;
  2304. }
  2305. #blog-post .comment:after {
  2306. clear: both;
  2307. }
  2308. #blog-post .comment .posted {
  2309. color: #999999;
  2310. font-size: 12px;
  2311. }
  2312. #blog-post .comment .reply {
  2313. font-family: "Roboto", Helvetica, Arial, sans-serif;
  2314. }
  2315. #blog-post .comment.last {
  2316. margin-bottom: 0;
  2317. }
  2318. #blog-post #comments,
  2319. #blog-post #comment-form {
  2320. padding: 20px 0;
  2321. margin-top: 20px;
  2322. border-top: solid 1px #eeeeee;
  2323. }
  2324. #blog-post #comments:before,
  2325. #blog-post #comment-form:before,
  2326. #blog-post #comments:after,
  2327. #blog-post #comment-form:after {
  2328. content: " ";
  2329. display: table;
  2330. }
  2331. #blog-post #comments:after,
  2332. #blog-post #comment-form:after {
  2333. clear: both;
  2334. }
  2335. #blog-post #comments:before,
  2336. #blog-post #comment-form:before,
  2337. #blog-post #comments:after,
  2338. #blog-post #comment-form:after {
  2339. content: " ";
  2340. display: table;
  2341. }
  2342. #blog-post #comments:after,
  2343. #blog-post #comment-form:after {
  2344. clear: both;
  2345. }
  2346. #blog-post #comments h4,
  2347. #blog-post #comment-form h4 {
  2348. margin-bottom: 20px;
  2349. }
  2350. #blog-post #comment-form {
  2351. margin-bottom: 20px;
  2352. }
  2353. .product {
  2354. background: #fff;
  2355. border-bottom: solid 1px #e6e6e6;
  2356. -webkit-box-sizing: border-box;
  2357. -moz-box-sizing: border-box;
  2358. box-sizing: border-box;
  2359. margin-bottom: 60px;
  2360. overflow: hidden;
  2361. text-align: center;
  2362. }
  2363. .product .image {
  2364. overflow: hidden;
  2365. }
  2366. .product .image img {
  2367. -webkit-transition: all 0.2s ease-out;
  2368. -moz-transition: all 0.2s ease-out;
  2369. transition: all 0.2s ease-out;
  2370. }
  2371. @media (max-width: 767px) {
  2372. .product .image img.img-responsive {
  2373. min-width: 100%;
  2374. }
  2375. }
  2376. .product .text {
  2377. padding: 10px;
  2378. }
  2379. .product .text h3 {
  2380. font-size: 14px;
  2381. font-weight: 700;
  2382. height: 39.6px;
  2383. text-transform: uppercase;
  2384. letter-spacing: 0.08em;
  2385. }
  2386. .product .text h3 a {
  2387. color: #555555;
  2388. }
  2389. .product .text h3 a:hover {
  2390. text-decoration: none;
  2391. }
  2392. .product .text p.price {
  2393. font-size: 18px;
  2394. }
  2395. .product .text p.price del {
  2396. color: #999999;
  2397. }
  2398. .product .buttons {
  2399. clear: both;
  2400. position: absolute;
  2401. display: none;
  2402. bottom: 0;
  2403. -webkit-box-sizing: border-box;
  2404. -moz-box-sizing: border-box;
  2405. box-sizing: border-box;
  2406. width: 100%;
  2407. border: solid 1px transparent;
  2408. padding: 20px;
  2409. background: rgba(255, 255, 255, 0.9);
  2410. -webkit-transition: all 0.2s ease-out;
  2411. -moz-transition: all 0.2s ease-out;
  2412. transition: all 0.2s ease-out;
  2413. text-align: center;
  2414. }
  2415. .product .buttons .btn {
  2416. margin-bottom: 20px;
  2417. }
  2418. .product:hover {
  2419. border-bottom: solid 1px #808080;
  2420. top: 0;
  2421. }
  2422. .product:hover .buttons {
  2423. clear: both;
  2424. position: absolute;
  2425. top: 0;
  2426. background: rgba(255, 255, 255, 0.5);
  2427. }
  2428. .product:hover .image img {
  2429. -webkit-transform: scale(1.1, 1.1);
  2430. -ms-transform: scale(1.1, 1.1);
  2431. -o-transform: scale(1.1, 1.1);
  2432. transform: scale(1.1, 1.1);
  2433. }
  2434. .goToDescription {
  2435. font-size: 12px;
  2436. text-align: center;
  2437. margin-bottom: 40px;
  2438. }
  2439. .goToDescription a {
  2440. color: #999999;
  2441. text-decoration: underline;
  2442. }
  2443. #productMain {
  2444. margin-bottom: 30px;
  2445. }
  2446. #productMain .sizes {
  2447. text-align: center;
  2448. }
  2449. #productMain .sizes h3 {
  2450. font-weight: 700;
  2451. letter-spacing: 0.08em;
  2452. text-transform: uppercase;
  2453. margin-bottom: 40px;
  2454. }
  2455. #productMain .sizes a {
  2456. display: inline-block;
  2457. width: 40px;
  2458. height: 40px;
  2459. border-radius: 40px;
  2460. background: #ccc;
  2461. line-height: 40px;
  2462. color: #555555;
  2463. text-align: center;
  2464. text-decoration: none;
  2465. font-family: "Roboto", Helvetica, Arial, sans-serif;
  2466. }
  2467. #productMain .sizes a.active,
  2468. #productMain .sizes a:hover {
  2469. background: #38a7bb;
  2470. color: #fff;
  2471. }
  2472. #productMain .sizes input {
  2473. display: none;
  2474. }
  2475. #productMain .price {
  2476. font-size: 40px;
  2477. text-align: center;
  2478. margin-top: 40px;
  2479. margin-bottom: 40px;
  2480. }
  2481. #thumbs a {
  2482. display: block;
  2483. border: solid 1px transparent;
  2484. }
  2485. #thumbs a.active {
  2486. border-color: #38a7bb;
  2487. }
  2488. #product-social {
  2489. text-align: center;
  2490. }
  2491. #product-social h4 {
  2492. font-weight: 300;
  2493. margin-bottom: 10px;
  2494. }
  2495. #product-social p {
  2496. line-height: 26px;
  2497. }
  2498. #product-social p a {
  2499. margin: 0 10px 0 0;
  2500. color: #fff;
  2501. display: inline-block;
  2502. width: 26px;
  2503. height: 26px;
  2504. border-radius: 13px;
  2505. line-height: 26px;
  2506. font-size: 15px;
  2507. text-align: center;
  2508. -webkit-transition: all 0.2s ease-out;
  2509. -moz-transition: all 0.2s ease-out;
  2510. transition: all 0.2s ease-out;
  2511. vertical-align: bottom;
  2512. }
  2513. #product-social p a i {
  2514. vertical-align: bottom;
  2515. line-height: 26px;
  2516. }
  2517. #product-social p a.facebook {
  2518. background-color: #4460ae;
  2519. }
  2520. #product-social p a.gplus {
  2521. background-color: #c21f25;
  2522. }
  2523. #product-social p a.twitter {
  2524. background-color: #3cf;
  2525. }
  2526. #product-social p a.instagram {
  2527. background-color: #cd4378;
  2528. }
  2529. #product-social p a.email {
  2530. background-color: #4a7f45;
  2531. }
  2532. @media (max-width: 991px) {
  2533. #product-social {
  2534. text-align: center;
  2535. }
  2536. }
  2537. #checkout .nav {
  2538. margin-bottom: 20px;
  2539. border-bottom: solid 1px #38a7bb;
  2540. }
  2541. #checkout .nav li {
  2542. height: 100%;
  2543. }
  2544. #checkout .nav li a {
  2545. display: block;
  2546. height: 100%;
  2547. }
  2548. #order-summary table {
  2549. margin-top: 20px;
  2550. }
  2551. #order-summary table td {
  2552. color: #999999;
  2553. }
  2554. #order-summary table tr.total td,
  2555. #order-summary table tr.total th {
  2556. font-size: 18px;
  2557. color: #555555;
  2558. font-weight: 700;
  2559. }
  2560. #checkout .table tbody tr td,
  2561. #basket .table tbody tr td,
  2562. #customer-order .table tbody tr td {
  2563. vertical-align: middle;
  2564. }
  2565. #checkout .table tbody tr td input,
  2566. #basket .table tbody tr td input,
  2567. #customer-order .table tbody tr td input {
  2568. width: 50px;
  2569. text-align: right;
  2570. }
  2571. #checkout .table tbody tr td img,
  2572. #basket .table tbody tr td img,
  2573. #customer-order .table tbody tr td img {
  2574. width: 50px;
  2575. }
  2576. #checkout .table tfoot,
  2577. #basket .table tfoot,
  2578. #customer-order .table tfoot {
  2579. font-size: 18px;
  2580. }
  2581. .shipping-method h4,
  2582. .payment-method h4 {
  2583. text-transform: uppercase;
  2584. letter-spacing: 0.08em;
  2585. }
  2586. #customer-orders table tr th,
  2587. #customer-orders table tr td {
  2588. vertical-align: baseline;
  2589. }
  2590. #customer-order .table tfoot th {
  2591. font-size: 18px;
  2592. font-weight: 300;
  2593. }
  2594. #customer-order .addresses {
  2595. text-align: right;
  2596. margin-bottom: 30px;
  2597. }
  2598. #customer-order .addresses p {
  2599. font-size: 18px;
  2600. font-weight: 300;
  2601. }
  2602. #customer-account {
  2603. margin-bottom: 30px;
  2604. }
  2605. #get-it {
  2606. background: #38a7bb;
  2607. padding: 50px 0 30px;
  2608. color: #fff;
  2609. text-align: center;
  2610. }
  2611. #get-it h1,
  2612. #get-it h2,
  2613. #get-it h3,
  2614. #get-it h4,
  2615. #get-it h5,
  2616. #get-it h6 {
  2617. color: #fff;
  2618. text-transform: uppercase;
  2619. letter-spacing: 0.08em;
  2620. margin: 0 0 20px;
  2621. }
  2622. #get-it p {
  2623. margin: 0 0 20px;
  2624. }
  2625. #footer {
  2626. background: #f0f0f0;
  2627. padding: 50px 0;
  2628. color: #24282f;
  2629. }
  2630. #footer h1,
  2631. #footer h2,
  2632. #footer h3,
  2633. #footer h4,
  2634. #footer h5,
  2635. #footer h6 {
  2636. color: #eeeeee;
  2637. }
  2638. #footer h4 {
  2639. font-size: 14px;
  2640. font-weight: 800;
  2641. text-transform: uppercase;
  2642. letter-spacing: 0.08em;
  2643. }
  2644. #footer ul {
  2645. padding-left: 0;
  2646. list-style: none;
  2647. }
  2648. #footer ul a {
  2649. color: #999999;
  2650. }
  2651. #footer ul a:hover {
  2652. color: #38a7bb;
  2653. text-decoration: none;
  2654. }
  2655. #footer .photostream div {
  2656. float: left;
  2657. display: block;
  2658. -webkit-box-sizing: border-box;
  2659. -moz-box-sizing: border-box;
  2660. box-sizing: border-box;
  2661. width: 33%;
  2662. padding: 7.5px;
  2663. overflow: hidden;
  2664. }
  2665. #footer .photostream div a {
  2666. border: solid 1 px #eeeeee;
  2667. }
  2668. #footer .photostream div img {
  2669. -webkit-transition: all 0.2s ease-out;
  2670. -moz-transition: all 0.2s ease-out;
  2671. transition: all 0.2s ease-out;
  2672. }
  2673. #footer .photostream div:hover img {
  2674. -webkit-transform: scale(1.1, 1.1);
  2675. -ms-transform: scale(1.1, 1.1);
  2676. -o-transform: scale(1.1, 1.1);
  2677. transform: scale(1.1, 1.1);
  2678. }
  2679. #footer .blog-entries .item {
  2680. clear: both;
  2681. padding: 5px 0;
  2682. margin-bottom: 10px;
  2683. border-bottom: solid 1px #555555;
  2684. }
  2685. #footer .blog-entries .item .image {
  2686. float: left;
  2687. width: 15%;
  2688. margin-right: 10px;
  2689. }
  2690. #footer .blog-entries .item .name {
  2691. width: 75%;
  2692. margin-left: 10px;
  2693. display: table-cell;
  2694. vertical-align: middle;
  2695. }
  2696. #footer .blog-entries .item .name h5 {
  2697. margin: 0;
  2698. text-transform: uppercase;
  2699. letter-spacing: 0.08em;
  2700. font-size: 12px;
  2701. }
  2702. #footer .blog-entries .item .name h5 a {
  2703. color: #eeeeee;
  2704. }
  2705. #footer .blog-entries .item .text {
  2706. width: 100%;
  2707. clear: both;
  2708. }
  2709. #footer .blog-entries .item:last-child {
  2710. border-bottom: none;
  2711. margin-bottom: 0;
  2712. }
  2713. #footer .social a {
  2714. color: #555555;
  2715. font-size: 25px;
  2716. margin: 0 10px 0 0;
  2717. }
  2718. #footer .social a:hover {
  2719. color: #38a7bb;
  2720. }
  2721. #copyright {
  2722. background: #333;
  2723. color: #ccc;
  2724. padding: 50px 0;
  2725. font-size: 12px;
  2726. line-height: 28px;
  2727. }
  2728. #copyright p {
  2729. margin: 0;
  2730. }
  2731. @media (max-width: 991px) {
  2732. #copyright p {
  2733. float: none !important;
  2734. text-align: center;
  2735. margin-bottom: 10px;
  2736. }
  2737. }
  2738. [data-animate] {
  2739. opacity: 0;
  2740. filter: alpha(opacity=0);
  2741. }
  2742. #style-switch-button {
  2743. position: fixed;
  2744. top: 100px;
  2745. left: 0px;
  2746. border-radius: 0;
  2747. }
  2748. #style-switch {
  2749. -webkit-box-sizing: border-box;
  2750. -moz-box-sizing: border-box;
  2751. box-sizing: border-box;
  2752. width: 300px;
  2753. padding: 20px;
  2754. position: fixed;
  2755. top: 140px;
  2756. left: 0;
  2757. background: #fff;
  2758. border: solid 1px #eeeeee;
  2759. }
  2760. @media (max-width: 991px) {
  2761. #style-switch-button {
  2762. display: none;
  2763. }
  2764. #style-switch {
  2765. display: none;
  2766. }
  2767. }
  2768. /* Original Boostrap template overwrite */
  2769. /* breadcrumbs */
  2770. .breadcrumb {
  2771. font-family: "Roboto", Helvetica, Arial, sans-serif;
  2772. text-transform: uppercase;
  2773. background-color: none;
  2774. letter-spacing: 0.08em;
  2775. }
  2776. /* nav */
  2777. .nav>li>a {
  2778. padding: 10px 15px;
  2779. }
  2780. .nav>li>a:hover,
  2781. .nav>li>a:focus {
  2782. background-color: #eeeeee;
  2783. }
  2784. .nav>li.disabled>a {
  2785. color: #999999;
  2786. }
  2787. .nav>li.disabled>a:hover,
  2788. .nav>li.disabled>a:focus {
  2789. color: #999999;
  2790. }
  2791. .nav .open>a,
  2792. .nav .open>a:hover,
  2793. .nav .open>a:focus {
  2794. background-color: #eeeeee;
  2795. border-color: #38a7bb;
  2796. }
  2797. .nav-tabs {
  2798. border-bottom: 1px solid #38a7bb;
  2799. }
  2800. .nav-tabs>li {
  2801. float: left;
  2802. margin-bottom: -1px;
  2803. }
  2804. .nav-tabs>li>a {
  2805. margin-right: 2px;
  2806. line-height: 1.42857143;
  2807. border: 1px solid transparent;
  2808. border-radius: 0 0 0 0;
  2809. }
  2810. .nav-tabs>li>a:hover {
  2811. border-color: #eeeeee #eeeeee #38a7bb;
  2812. }
  2813. .nav-tabs>li.active>a,
  2814. .nav-tabs>li.active>a:hover,
  2815. .nav-tabs>li.active>a:focus {
  2816. color: #555555;
  2817. background-color: #ffffff;
  2818. border: 1px solid #38a7bb;
  2819. border-bottom-color: transparent;
  2820. cursor: default;
  2821. }
  2822. .nav-tabs.nav-justified {
  2823. width: 100%;
  2824. border-bottom: solid 1px #38a7bb;
  2825. border-bottom: 0;
  2826. }
  2827. .nav-tabs.nav-justified>li {
  2828. float: none;
  2829. }
  2830. .nav-tabs.nav-justified>li>a {
  2831. text-align: center;
  2832. /*margin-bottom: 5px;*/
  2833. }
  2834. .nav-tabs.nav-justified>.dropdown .dropdown-menu {
  2835. top: auto;
  2836. left: auto;
  2837. }
  2838. .nav-tabs.nav-justified>li>a {
  2839. margin-right: 0;
  2840. border-radius: 0;
  2841. }
  2842. .nav-tabs.nav-justified>.active>a,
  2843. .nav-tabs.nav-justified>.active>a:hover,
  2844. .nav-tabs.nav-justified>.active>a:focus {
  2845. border: 1px solid #38a7bb;
  2846. }
  2847. @media (min-width: 768px) {
  2848. .nav-tabs.nav-justified>li>a {
  2849. border-bottom: 1px solid #38a7bb;
  2850. border-radius: 0 0 0 0;
  2851. }
  2852. .nav-tabs.nav-justified>.active>a,
  2853. .nav-tabs.nav-justified>.active>a:hover,
  2854. .nav-tabs.nav-justified>.active>a:focus {
  2855. border-bottom-color: #ffffff;
  2856. }
  2857. }
  2858. .nav-pills>li {
  2859. float: left;
  2860. }
  2861. .nav-pills>li>a {
  2862. border-radius: 0;
  2863. }
  2864. .nav-pills>li+li {
  2865. margin-left: 2px;
  2866. }
  2867. .nav-pills>li.active>a,
  2868. .nav-pills>li.active>a:hover,
  2869. .nav-pills>li.active>a:focus {
  2870. color: #ffffff;
  2871. background-color: #ffebe2;
  2872. }
  2873. .nav-stacked>li {
  2874. float: none;
  2875. }
  2876. .nav-stacked>li+li {
  2877. margin-top: 2px;
  2878. margin-left: 0;
  2879. }
  2880. .nav-justified {
  2881. width: 100%;
  2882. border-bottom: solid 1px #38a7bb;
  2883. }
  2884. .nav-justified>li {
  2885. float: none;
  2886. }
  2887. .nav-justified>li>a {
  2888. text-align: center;
  2889. /*margin-bottom: 5px;*/
  2890. }
  2891. .nav-justified>.dropdown .dropdown-menu {
  2892. top: auto;
  2893. left: auto;
  2894. }
  2895. .nav-tabs-justified {
  2896. border-bottom: 0;
  2897. }
  2898. .nav-tabs-justified>li>a {
  2899. margin-right: 0;
  2900. border-radius: 0;
  2901. }
  2902. .nav-tabs-justified>.active>a,
  2903. .nav-tabs-justified>.active>a:hover,
  2904. .nav-tabs-justified>.active>a:focus {
  2905. border: 1px solid #38a7bb;
  2906. }
  2907. @media (min-width: 768px) {
  2908. .nav-tabs-justified>li>a {
  2909. border-bottom: 1px solid #38a7bb;
  2910. border-radius: 0 0 0 0;
  2911. }
  2912. .nav-tabs-justified>.active>a,
  2913. .nav-tabs-justified>.active>a:hover,
  2914. .nav-tabs-justified>.active>a:focus {
  2915. border-bottom-color: #ffffff;
  2916. }
  2917. }
  2918. .tab-content {
  2919. padding: 15px;
  2920. border: solid 1px #ddd;
  2921. border-top: none;
  2922. }
  2923. /* navbar */
  2924. /* .navbar {
  2925. position: relative;
  2926. min-height: 62px;
  2927. margin-bottom: 0;
  2928. border-bottom: 1px solid transparent;
  2929. }
  2930. @media (min-width: 768px) {
  2931. .navbar {
  2932. border-radius: 0px;
  2933. }
  2934. }
  2935. @media (min-width: 768px) {
  2936. .navbar-header {
  2937. float: left;
  2938. }
  2939. }
  2940. .navbar-collapse {
  2941. overflow-x: visible;
  2942. padding-right: 15px;
  2943. padding-left: 15px;
  2944. }
  2945. .navbar-collapse.in {
  2946. overflow-y: auto;
  2947. }
  2948. @media (min-width: 768px) {
  2949. .navbar-collapse {
  2950. width: auto;
  2951. border-top: 0;
  2952. box-shadow: none;
  2953. }
  2954. .navbar-collapse.collapse {
  2955. display: block !important;
  2956. height: auto !important;
  2957. padding-bottom: 0;
  2958. overflow: visible !important;
  2959. }
  2960. .navbar-collapse.in {
  2961. overflow-y: visible;
  2962. }
  2963. .navbar-fixed-top .navbar-collapse,
  2964. .navbar-static-top .navbar-collapse,
  2965. .navbar-fixed-bottom .navbar-collapse {
  2966. padding-left: 0;
  2967. padding-right: 0;
  2968. }
  2969. }
  2970. .navbar-fixed-top .navbar-collapse,
  2971. .navbar-affixed-top .navbar-collapse,
  2972. .navbar-fixed-bottom .navbar-collapse {
  2973. max-height: 340px;
  2974. }
  2975. @media (max-width: 480px) and (orientation: landscape) {
  2976. .navbar-fixed-top .navbar-collapse,
  2977. .navbar-affixed-top .navbar-collapse,
  2978. .navbar-fixed-bottom .navbar-collapse {
  2979. max-height: 200px;
  2980. }
  2981. }
  2982. .container > .navbar-header,
  2983. .container-fluid > .navbar-header,
  2984. .container > .navbar-collapse,
  2985. .container-fluid > .navbar-collapse {
  2986. margin-right: -15px;
  2987. margin-left: -15px;
  2988. }
  2989. @media (min-width: 768px) {
  2990. .container > .navbar-header,
  2991. .container-fluid > .navbar-header,
  2992. .container > .navbar-collapse,
  2993. .container-fluid > .navbar-collapse {
  2994. margin-right: 0;
  2995. margin-left: 0;
  2996. }
  2997. }
  2998. .navbar-static-top {
  2999. z-index: 1000;
  3000. border-width: 0 0 1px;
  3001. }
  3002. @media (min-width: 768px) {
  3003. .navbar-static-top {
  3004. border-radius: 0;
  3005. }
  3006. }
  3007. .navbar-fixed-top,
  3008. .navbar-fixed-bottom {
  3009. position: fixed;
  3010. right: 0;
  3011. left: 0;
  3012. z-index: 1030;
  3013. -webkit-transform: translate3d(0, 0, 0);
  3014. transform: translate3d(0, 0, 0);
  3015. }
  3016. @media (min-width: 768px) {
  3017. .navbar-fixed-top,
  3018. .navbar-fixed-bottom {
  3019. border-radius: 0;
  3020. }
  3021. }
  3022. .navbar-fixed-top {
  3023. top: 0;
  3024. border-width: 0 0 1px;
  3025. }
  3026. .navbar-fixed-bottom {
  3027. bottom: 0;
  3028. margin-bottom: 0;
  3029. border-width: 1px 0 0;
  3030. }
  3031. .navbar-brand {
  3032. float: left;
  3033. padding: 10px 15px;
  3034. font-size: 18px;
  3035. line-height: 20px;
  3036. height: 62px;
  3037. }
  3038. .navbar-brand:hover,
  3039. .navbar-brand:focus {
  3040. text-decoration: none;
  3041. }
  3042. @media (min-width: 768px) {
  3043. .navbar > .container .navbar-brand,
  3044. .navbar > .container-fluid .navbar-brand {
  3045. margin-left: -15px;
  3046. }
  3047. }
  3048. .navbar-toggle {
  3049. position: relative;
  3050. float: right;
  3051. margin-right: 15px;
  3052. padding: 9px 10px;
  3053. margin-top: 14px;
  3054. margin-bottom: 14px;
  3055. background-color: transparent;
  3056. background-image: none;
  3057. border: 1px solid transparent;
  3058. border-radius: 0;
  3059. }
  3060. .navbar-toggle:focus {
  3061. outline: 0;
  3062. }
  3063. .navbar-nav {
  3064. margin: 10.5px -15px;
  3065. }
  3066. .navbar-nav > li > a {
  3067. padding-top: 10px;
  3068. padding-bottom: 10px;
  3069. line-height: 20px;
  3070. }
  3071. @media (max-width: 767px) {
  3072. .navbar-nav .open .dropdown-menu > li > a,
  3073. .navbar-nav .open .dropdown-menu .dropdown-header {
  3074. padding: 5px 15px 5px 25px;
  3075. }
  3076. .navbar-nav .open .dropdown-menu > li > a {
  3077. line-height: 20px;
  3078. }
  3079. .navbar-nav .open .dropdown-menu > li > a:hover,
  3080. .navbar-nav .open .dropdown-menu > li > a:focus {
  3081. background-image: none;
  3082. }
  3083. }
  3084. @media (min-width: 768px) {
  3085. .navbar-nav {
  3086. float: left;
  3087. margin: 0;
  3088. }
  3089. .navbar-nav > li {
  3090. float: left;
  3091. }
  3092. .navbar-nav > li > a {
  3093. padding-top: 21px;
  3094. padding-bottom: 21px;
  3095. }
  3096. .navbar-nav.navbar-right:last-child {
  3097. margin-right: -15px;
  3098. }
  3099. }
  3100. @media (min-width: 768px) {
  3101. .navbar-left {
  3102. float: left !important;
  3103. }
  3104. .navbar-right {
  3105. float: right !important;
  3106. }
  3107. }
  3108. .navbar-form {
  3109. margin-left: -15px;
  3110. margin-right: -15px;
  3111. padding: 10px 15px;
  3112. border-top: 1px solid transparent;
  3113. border-bottom: 1px solid transparent;
  3114. -webkit-box-shadow:
  3115. inset 0 1px 0 rgba(255, 255, 255, 0.1),
  3116. 0 1px 0 rgba(255, 255, 255, 0.1);
  3117. box-shadow:
  3118. inset 0 1px 0 rgba(255, 255, 255, 0.1),
  3119. 0 1px 0 rgba(255, 255, 255, 0.1);
  3120. margin-top: 14px;
  3121. margin-bottom: 14px;
  3122. }
  3123. @media (max-width: 767px) {
  3124. .navbar-form .form-group {
  3125. margin-bottom: 5px;
  3126. }
  3127. }
  3128. @media (min-width: 768px) {
  3129. .navbar-form {
  3130. width: auto;
  3131. border: 0;
  3132. margin-left: 0;
  3133. margin-right: 0;
  3134. padding-top: 0;
  3135. padding-bottom: 0;
  3136. -webkit-box-shadow: none;
  3137. box-shadow: none;
  3138. }
  3139. .navbar-form.navbar-right:last-child {
  3140. margin-right: -15px;
  3141. }
  3142. }
  3143. .navbar-nav > li > .dropdown-menu {
  3144. margin-top: 0;
  3145. border-top-right-radius: 0;
  3146. border-top-left-radius: 0;
  3147. }
  3148. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  3149. border-bottom-right-radius: 0;
  3150. border-bottom-left-radius: 0;
  3151. }
  3152. .navbar-btn {
  3153. margin-top: 14px;
  3154. margin-bottom: 14px;
  3155. }
  3156. .navbar-btn.btn-sm {
  3157. margin-top: 16px;
  3158. margin-bottom: 16px;
  3159. }
  3160. .navbar-btn.btn-xs {
  3161. margin-top: 20px;
  3162. margin-bottom: 20px;
  3163. }
  3164. .navbar-text {
  3165. margin-top: 21px;
  3166. margin-bottom: 21px;
  3167. }
  3168. @media (min-width: 768px) {
  3169. .navbar-text {
  3170. float: left;
  3171. margin-left: 15px;
  3172. margin-right: 15px;
  3173. }
  3174. .navbar-text.navbar-right:last-child {
  3175. margin-right: 0;
  3176. }
  3177. }
  3178. .navbar-default {
  3179. background-color: #ffffff;
  3180. border-color: #cccccc;
  3181. border-bottom: none;
  3182. }
  3183. .navbar-default .navbar-brand {
  3184. color: #555555;
  3185. }
  3186. .navbar-default .navbar-brand:hover,
  3187. .navbar-default .navbar-brand:focus {
  3188. color: #3b3b3b;
  3189. background-color: transparent;
  3190. }
  3191. .navbar-default .navbar-text {
  3192. color: #777777;
  3193. }
  3194. .navbar-default .navbar-nav > li > a {
  3195. color: #555555;
  3196. }
  3197. .navbar-default .navbar-nav > li > a:hover,
  3198. .navbar-default .navbar-nav > li > a:focus {
  3199. color: #555555;
  3200. background-color: #80cbd9;
  3201. }
  3202. .navbar-default .navbar-nav > .active > a,
  3203. .navbar-default .navbar-nav > .active > a:hover,
  3204. .navbar-default .navbar-nav > .active > a:focus {
  3205. color: #ffffff;
  3206. background-color: #38a7bb;
  3207. }
  3208. .navbar-default .navbar-nav > .disabled > a,
  3209. .navbar-default .navbar-nav > .disabled > a:hover,
  3210. .navbar-default .navbar-nav > .disabled > a:focus {
  3211. color: #cccccc;
  3212. background-color: transparent;
  3213. }
  3214. .navbar-default .navbar-toggle {
  3215. border-color: #dddddd;
  3216. }
  3217. .navbar-default .navbar-toggle:hover,
  3218. .navbar-default .navbar-toggle:focus {
  3219. background-color: #ea5413;
  3220. }
  3221. .navbar-default .navbar-toggle .icon-bar {
  3222. background-color: #888888;
  3223. }
  3224. .navbar-default .navbar-collapse,
  3225. .navbar-default .navbar-form {
  3226. border-color: #cccccc;
  3227. }
  3228. .navbar-default .navbar-nav > .open > a,
  3229. .navbar-default .navbar-nav > .open > a:hover,
  3230. .navbar-default .navbar-nav > .open > a:focus {
  3231. background-color: #38a7bb;
  3232. color: #ffffff;
  3233. }
  3234. @media (max-width: 767px) {
  3235. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  3236. color: #555555;
  3237. }
  3238. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  3239. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  3240. color: #38a7bb;
  3241. }
  3242. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  3243. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  3244. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  3245. color: #ffffff;
  3246. background-color: #38a7bb;
  3247. }
  3248. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  3249. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  3250. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3251. color: #cccccc;
  3252. background-color: transparent;
  3253. }
  3254. }
  3255. .navbar-default .navbar-link {
  3256. color: #555555;
  3257. }
  3258. .navbar-default .navbar-link:hover {
  3259. color: #555555;
  3260. }
  3261. .navbar-default .btn-link {
  3262. color: #555555;
  3263. }
  3264. .navbar-default .btn-link:hover,
  3265. .navbar-default .btn-link:focus {
  3266. color: #555555;
  3267. }
  3268. .navbar-default .btn-link[disabled]:hover,
  3269. fieldset[disabled] .navbar-default .btn-link:hover,
  3270. .navbar-default .btn-link[disabled]:focus,
  3271. fieldset[disabled] .navbar-default .btn-link:focus {
  3272. color: #cccccc;
  3273. } */
  3274. /* scaffolding */
  3275. body {
  3276. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3277. font-size: 14px;
  3278. line-height: 1.42857143;
  3279. color: #555555;
  3280. }
  3281. a {
  3282. color: #ea5413;
  3283. text-decoration: none;
  3284. }
  3285. .panel.sidebar-menu .panel-body a {
  3286. color: #181c47;
  3287. }
  3288. a:hover,
  3289. a:focus {
  3290. color: #cf3e00;
  3291. text-decoration: none;
  3292. }
  3293. a:focus {
  3294. outline: thin dotted;
  3295. outline: 5px auto -webkit-focus-ring-color;
  3296. outline-offset: -2px;
  3297. }
  3298. .img-rounded {
  3299. border-radius: 0;
  3300. }
  3301. hr {
  3302. margin-top: 20px;
  3303. margin-bottom: 20px;
  3304. border: 0;
  3305. border-top: 1px solid #eeeeee;
  3306. }
  3307. /* breadcrumbs */
  3308. .breadcrumb {
  3309. padding: 20px 0;
  3310. margin-bottom: 20px;
  3311. background-color: transparent;
  3312. border-radius: 0;
  3313. text-align: right;
  3314. }
  3315. .breadcrumb>li+li:before {
  3316. content: ">\00a0";
  3317. color: #555555;
  3318. }
  3319. .breadcrumb>.active {
  3320. color: #999999;
  3321. }
  3322. @media (max-width: 991px) {
  3323. .breadcrumb {
  3324. padding: 20px 0;
  3325. text-align: center;
  3326. }
  3327. }
  3328. /* dropdowns */
  3329. .dropdown-menu {
  3330. z-index: 1000;
  3331. font-size: 14px;
  3332. background-color: #ffffff;
  3333. border: 1px solid #cccccc;
  3334. border: 1px solid rgba(0, 0, 0, 0.15);
  3335. border-radius: 0;
  3336. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3337. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3338. }
  3339. .dropdown-menu.pull-right {
  3340. right: 0;
  3341. left: auto;
  3342. }
  3343. .dropdown-menu .divider {
  3344. height: 1px;
  3345. margin: 9px 0;
  3346. overflow: hidden;
  3347. background-color: #e5e5e5;
  3348. }
  3349. .dropdown-menu>li>a {
  3350. padding: 5px 20px;
  3351. line-height: 1.42857143;
  3352. color: #333333;
  3353. white-space: nowrap;
  3354. }
  3355. /* labels */
  3356. .label {
  3357. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3358. font-weight: normal;
  3359. text-transform: uppercase;
  3360. letter-spacing: 0.08em;
  3361. }
  3362. /* forms.less */
  3363. label {
  3364. font-weight: normal;
  3365. }
  3366. .form-control {
  3367. -webkit-box-shadow: none;
  3368. box-shadow: none;
  3369. border-radius: 0;
  3370. }
  3371. .form-control:focus {
  3372. border-color: #38a7bb;
  3373. outline: 0;
  3374. -webkit-box-shadow:
  3375. inset 0 1px 1px rgba(0, 0, 0, 0.075),
  3376. 0 0 8px rgba(56, 167, 187, 0.6);
  3377. box-shadow:
  3378. inset 0 1px 1px rgba(0, 0, 0, 0.075),
  3379. 0 0 8px rgba(56, 167, 187, 0.6);
  3380. }
  3381. .form-group {
  3382. margin-bottom: 20px;
  3383. }
  3384. /* pager*/
  3385. .pager {
  3386. display: flex;
  3387. justify-content: space-between;
  3388. margin: 20px 0;
  3389. padding-left: 0;
  3390. padding-top: 20px;
  3391. border-top: solid 1px #eeeeee;
  3392. text-transform: uppercase;
  3393. letter-spacing: 1px;
  3394. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3395. }
  3396. .pager li {
  3397. display: inline;
  3398. }
  3399. .pager li a {
  3400. display: block;
  3401. padding: 5px 15px;
  3402. }
  3403. .pager li>a,
  3404. .pager li>span {
  3405. background-color: #ffffff;
  3406. border: 1px solid #ea5413;
  3407. border-radius: 0;
  3408. color: #ea5413;
  3409. }
  3410. .pager li>a:hover,
  3411. .pager li>a:focus {
  3412. text-decoration: none;
  3413. color: #fff;
  3414. background-color: #ea5413;
  3415. }
  3416. .pager .disabled>a,
  3417. .pager .disabled>a:hover,
  3418. .pager .disabled>a:focus,
  3419. .pager .disabled>span {
  3420. color: #999999;
  3421. background-color: #ffffff;
  3422. border-color: #ddd;
  3423. }
  3424. /* pagination */
  3425. .pagination {
  3426. margin: 20px 0;
  3427. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3428. border-radius: 0;
  3429. }
  3430. .pagination>li>a,
  3431. .pagination>li>span {
  3432. padding: 6px 12px;
  3433. line-height: 1.42857143;
  3434. text-decoration: none;
  3435. color: #38a7bb;
  3436. background-color: #ffffff;
  3437. border: 1px solid #dddddd;
  3438. }
  3439. .pagination>li>a:hover,
  3440. .pagination>li>span:hover,
  3441. .pagination>li>a:focus,
  3442. .pagination>li>span:focus {
  3443. color: #38a7bb;
  3444. background-color: #a7dbe5;
  3445. border-color: #dddddd;
  3446. }
  3447. .pagination>.active>a,
  3448. .pagination>.active>span,
  3449. .pagination>.active>a:hover,
  3450. .pagination>.active>span:hover,
  3451. .pagination>.active>a:focus,
  3452. .pagination>.active>span:focus {
  3453. z-index: 2;
  3454. color: #ffffff;
  3455. background-color: #38a7bb;
  3456. border-color: #38a7bb;
  3457. }
  3458. .pagination>.disabled>span,
  3459. .pagination>.disabled>span:hover,
  3460. .pagination>.disabled>span:focus,
  3461. .pagination>.disabled>a,
  3462. .pagination>.disabled>a:hover,
  3463. .pagination>.disabled>a:focus {
  3464. color: #999999;
  3465. background-color: #ffffff;
  3466. border-color: #dddddd;
  3467. }
  3468. /* responsive utilities */
  3469. @media (max-width: 767px) {
  3470. .text-center-xs {
  3471. text-align: center !important;
  3472. }
  3473. .text-center-xs img {
  3474. display: block;
  3475. margin-left: auto;
  3476. margin-right: auto;
  3477. }
  3478. }
  3479. @media (min-width: 768px) and (max-width: 991px) {
  3480. .text-center-sm {
  3481. text-align: center !important;
  3482. }
  3483. .text-center-sm img {
  3484. display: block;
  3485. margin-left: auto;
  3486. margin-right: auto;
  3487. }
  3488. }
  3489. /* type */
  3490. h1,
  3491. h2,
  3492. h3,
  3493. h4,
  3494. h5,
  3495. h6,
  3496. .h1,
  3497. .h2,
  3498. .h3,
  3499. .h4,
  3500. .h5,
  3501. .h6 {
  3502. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3503. font-weight: 900;
  3504. line-height: 1.1;
  3505. color: #333333;
  3506. }
  3507. h1,
  3508. .h1,
  3509. h2,
  3510. .h2,
  3511. h3,
  3512. .h3 {
  3513. margin: 30px 0;
  3514. }
  3515. p {
  3516. margin: 0 0 10px;
  3517. }
  3518. .lead {
  3519. margin-bottom: 20px;
  3520. font-size: 18px;
  3521. }
  3522. @media (min-width: 768px) {
  3523. .lead {
  3524. font-size: 21px;
  3525. }
  3526. }
  3527. .text-small {
  3528. font-size: 12px;
  3529. }
  3530. .text-large {
  3531. font-size: 18px;
  3532. }
  3533. .text-italic {
  3534. font-style: italic;
  3535. }
  3536. .text-primary {
  3537. color: #38a7bb;
  3538. }
  3539. a.text-primary:hover {
  3540. color: #2c8494;
  3541. }
  3542. .bg-primary {
  3543. color: #fff;
  3544. background-color: #38a7bb;
  3545. }
  3546. a.bg-primary:hover {
  3547. background-color: #2c8494;
  3548. }
  3549. abbr[title],
  3550. abbr[data-original-title] {
  3551. border-bottom: 1px dotted #999999;
  3552. }
  3553. blockquote {
  3554. padding: 10px 20px;
  3555. margin: 0 0 20px;
  3556. font-size: 14px;
  3557. border-left: 5px solid #38a7bb;
  3558. }
  3559. blockquote footer,
  3560. blockquote small,
  3561. blockquote .small {
  3562. display: block;
  3563. font-size: 80%;
  3564. line-height: 1.42857143;
  3565. color: #999999;
  3566. }
  3567. blockquote footer:before,
  3568. blockquote small:before,
  3569. blockquote .small:before {
  3570. content: "\2014 \00A0";
  3571. }
  3572. .blockquote-reverse,
  3573. blockquote.pull-right {
  3574. border-right: 5px solid #38a7bb;
  3575. }
  3576. address {
  3577. margin-bottom: 20px;
  3578. line-height: 1.42857143;
  3579. }
  3580. .panel {
  3581. margin-bottom: 20px;
  3582. background-color: #ffffff;
  3583. border: 1px solid transparent;
  3584. border-radius: 0;
  3585. -webkit-box-shadow: 0 0 0;
  3586. box-shadow: 0 0 0;
  3587. }
  3588. .panel-heading {
  3589. border-top-right-radius: 0;
  3590. border-top-left-radius: 0;
  3591. text-transform: uppercase;
  3592. letter-spacing: 0.08em;
  3593. padding: 15px 15px;
  3594. }
  3595. .progress {
  3596. overflow: hidden;
  3597. height: 20px;
  3598. margin-bottom: 20px;
  3599. background-color: #f5f5f5;
  3600. border-radius: 0;
  3601. -webkit-box-shadow: none;
  3602. box-shadow: none;
  3603. }
  3604. .panel-group {
  3605. margin-bottom: 20px;
  3606. }
  3607. .panel-group .panel {
  3608. margin-bottom: 0;
  3609. border-radius: 0;
  3610. overflow: hidden;
  3611. }
  3612. .panel-group .panel+.panel {
  3613. margin-top: 5px;
  3614. }
  3615. .panel-group.accordion .panel {
  3616. border-color: #ccc;
  3617. }
  3618. .panel-primary {
  3619. border-color: #38a7bb;
  3620. }
  3621. .panel-primary>.panel-heading {
  3622. color: #ffffff;
  3623. background-color: #38a7bb;
  3624. border-color: #38a7bb;
  3625. }
  3626. .panel-primary>.panel-heading+.panel-collapse>.panel-body {
  3627. border-top-color: #38a7bb;
  3628. }
  3629. .panel-primary>.panel-heading .badge {
  3630. color: #38a7bb;
  3631. background-color: #ffffff;
  3632. }
  3633. .panel-primary>.panel-footer+.panel-collapse>.panel-body {
  3634. border-bottom-color: #38a7bb;
  3635. }
  3636. .panel-primary .panel-title {
  3637. font-weight: 300;
  3638. }
  3639. .panel-primary .panel-title a:hover {
  3640. color: #fff;
  3641. text-decoration: none;
  3642. }
  3643. .panel-heading .panel-title {
  3644. font-size: 16px;
  3645. }
  3646. a.badge:hover,
  3647. a.badge:focus {
  3648. color: #ffffff;
  3649. text-decoration: none;
  3650. cursor: pointer;
  3651. }
  3652. a.list-group-item.active>.badge,
  3653. .nav-pills>.active>a>.badge {
  3654. color: #38a7bb;
  3655. background-color: #ffffff;
  3656. }
  3657. .nav-pills>li>a>.badge {
  3658. margin-left: 3px;
  3659. }
  3660. .progress-bar-primary {
  3661. background-color: #38a7bb;
  3662. }
  3663. .progress-striped .progress-bar-primary {
  3664. background-image: -webkit-linear-gradient(45deg,
  3665. rgba(255, 255, 255, 0.15) 25%,
  3666. transparent 25%,
  3667. transparent 50%,
  3668. rgba(255, 255, 255, 0.15) 50%,
  3669. rgba(255, 255, 255, 0.15) 75%,
  3670. transparent 75%,
  3671. transparent);
  3672. background-image: -o-linear-gradient(45deg,
  3673. rgba(255, 255, 255, 0.15) 25%,
  3674. transparent 25%,
  3675. transparent 50%,
  3676. rgba(255, 255, 255, 0.15) 50%,
  3677. rgba(255, 255, 255, 0.15) 75%,
  3678. transparent 75%,
  3679. transparent);
  3680. background-image: linear-gradient(45deg,
  3681. rgba(255, 255, 255, 0.15) 25%,
  3682. transparent 25%,
  3683. transparent 50%,
  3684. rgba(255, 255, 255, 0.15) 50%,
  3685. rgba(255, 255, 255, 0.15) 75%,
  3686. transparent 75%,
  3687. transparent);
  3688. }
  3689. /*!
  3690. * Yamm!3 - Yet another megamenu for Bootstrap 3
  3691. * http://geedmo.github.com/yamm3
  3692. *
  3693. * @geedmo - Licensed under the MIT license
  3694. */
  3695. .yamm .nav,
  3696. .yamm .collapse,
  3697. .yamm .dropup.use-yamm,
  3698. .yamm .dropdown.use-yamm {
  3699. position: static;
  3700. }
  3701. .yamm .container {
  3702. position: relative;
  3703. }
  3704. .yamm .dropdown-menu {
  3705. left: auto;
  3706. }
  3707. .yamm .nav.navbar-right .dropdown-menu {
  3708. left: auto;
  3709. right: 0;
  3710. }
  3711. .yamm .yamm-content {
  3712. padding: 20px 30px;
  3713. }
  3714. .yamm .dropdown.yamm-fw .dropdown-menu {
  3715. left: 15px;
  3716. right: 15px;
  3717. }
  3718. .vt-content .card-title {
  3719. font-size: 20px;
  3720. /* 超過則省略 */
  3721. overflow: hidden;
  3722. text-overflow: ellipsis;
  3723. display: -webkit-box;
  3724. -webkit-line-clamp: 1;
  3725. -webkit-box-orient: vertical;
  3726. line-break: after-white-space;
  3727. }