main.css 96 KB

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