main.css 80 KB

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