main.css 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  235. }
  236. .bg-default {
  237. color: #444;
  238. background: #ea4814;
  239. padding: 3px 4px;
  240. }
  241. .bg-primary {
  242. color: #fff;
  243. background: #ea4814;
  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: #ea4814 !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 #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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 #ea4814;
  783. background: #ea4814;
  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: #ea4814;
  804. border: 2px solid #ea4814;
  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: #ea4814;
  813. border: 2px solid #ea4814;
  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: #ea4814;
  921. border: 1px solid #ddd;
  922. background: transparent;
  923. }
  924. .pagination .btn-default:hover {
  925. color: #fff;
  926. background: #ea4814;
  927. border: 1px solid #ea4814;
  928. }
  929. .pagination .btn-active {
  930. color: #fff !important;
  931. background: #ea4814 !important;
  932. border: 1px solid #ea4814 !important;
  933. }
  934. .pagination .btn-default-filled {
  935. color: #ea4814;
  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: #ea4814 !important;
  1057. }
  1058. .navbar-toggle .icon-bar {
  1059. background: #ea4814;
  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: #ea4814;
  1084. color: #fff;
  1085. }
  1086. .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  1087. color: #ea4814;
  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: #ea4814;
  1099. }
  1100. .navbar-light .navbar-nav .nav-link:hover:focus {
  1101. color: #ea4814;
  1102. }
  1103. .navbar-light .navbar-nav > .active > a, .navbar-light .navbar-nav > .active > a:focus, .navbar-light .navbar-nav > .active > a:hover {
  1104. color: #ea4814;
  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: #ea4814;
  1109. background-color: transparent;
  1110. }
  1111. .navbar-light .navbar-toggle .icon-bar {
  1112. background-color: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  1189. background-color: transparent;
  1190. }
  1191. .navbar-light-transparent.navbar-light .navbar-toggle .icon-bar {
  1192. background-color: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  1215. background-color: transparent;
  1216. }
  1217. .navbar-inverse-transparent.navbar-inverse .navbar-toggle .icon-bar {
  1218. background-color: #ea4814;
  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: #ea4814 !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 #ea4814;
  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 #ea4814;
  1316. background: #ea4814;
  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 #ea4814;
  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 #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: #ea4814;
  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: none;
  1629. /* text-transform: uppercase; */
  1630. }
  1631. .members {
  1632. text-align: center;
  1633. }
  1634. .members .memeber-img {
  1635. margin-bottom: 30px;
  1636. }
  1637. .members .member-content .member-name {
  1638. font-size: 25px;
  1639. line-height: 33px;
  1640. margin: 0;
  1641. }
  1642. .members .member-content .member-position {
  1643. font-size: 14px;
  1644. margin-top: 10px;
  1645. }
  1646. .team-members-tow figure {
  1647. position: relative;
  1648. cursor: pointer;
  1649. margin-bottom: 10px;
  1650. }
  1651. .team-members-tow figure:hover .image-overlay {
  1652. opacity: 1;
  1653. }
  1654. .team-members-tow figure:hover .info-text {
  1655. -webkit-transform: translateY(0px);
  1656. transform: translateY(0px);
  1657. }
  1658. .team-members-tow figure:hover .social-icons {
  1659. -webkit-transform: translateY(0px);
  1660. transform: translateY(0px);
  1661. }
  1662. .team-members-tow .image-overlay {
  1663. height: 100%;
  1664. position: absolute;
  1665. top: 0;
  1666. background: rgba(0, 0, 0, 0.85);
  1667. opacity: 0;
  1668. width: 100%;
  1669. transition: all 0.3s ease-in-out 0s;
  1670. -moz-transition: all 0.3s ease-in-out 0s;
  1671. -webkit-transition: all 0.3s ease-in-out 0s;
  1672. -o-transition: all 0.3s ease-in-out 0s;
  1673. }
  1674. .team-members-tow .overlay-text {
  1675. color: #ffffff;
  1676. padding-top: 30%;
  1677. }
  1678. .team-members-tow .overlay-text .info-text {
  1679. -webkit-transform: translateY(50px);
  1680. transform: translateY(50px);
  1681. transition: all 0.3s ease-in-out 0s;
  1682. -moz-transition: all 0.3s ease-in-out 0s;
  1683. -webkit-transition: all 0.3s ease-in-out 0s;
  1684. -o-transition: all 0.3s ease-in-out 0s;
  1685. }
  1686. .team-members-tow .overlay-text .info-text strong {
  1687. display: block;
  1688. font-size: 22px;
  1689. font-weight: 700;
  1690. margin-bottom: 5px;
  1691. }
  1692. .team-members-tow .overlay-text .info-text span {
  1693. font-size: 14px;
  1694. font-weight: 400;
  1695. font-style: italic;
  1696. }
  1697. .team-members-tow .overlay-text .small-divider {
  1698. margin-bottom: 30px;
  1699. border-color: #fff;
  1700. margin-top: 30px;
  1701. width: 50px;
  1702. }
  1703. .team-members-tow .social-icons {
  1704. padding-left: 0;
  1705. -webkit-transform: translateY(-50px);
  1706. transform: translateY(-50px);
  1707. transition: all 0.3s ease-in-out 0s;
  1708. -moz-transition: all 0.3s ease-in-out 0s;
  1709. -webkit-transition: all 0.3s ease-in-out 0s;
  1710. -o-transition: all 0.3s ease-in-out 0s;
  1711. }
  1712. .team-members-tow .social-icons li {
  1713. display: inline-block;
  1714. margin: 0 10px;
  1715. }
  1716. .team-members-tow .social-icons li a i {
  1717. font-size: 24px;
  1718. color: #fff;
  1719. }
  1720. .team-members-tow .social-icons .fa-facebook:hover {
  1721. color: #3b5998;
  1722. }
  1723. .team-members-tow .social-icons .fa-twitter:hover {
  1724. color: #55acee;
  1725. }
  1726. .team-members-tow .social-icons .fa-instagram:hover {
  1727. color: #fb3958;
  1728. }
  1729. .team-members-three img {
  1730. box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  1731. }
  1732. .team-members-three .team-content {
  1733. margin-top: 30px;
  1734. }
  1735. .team-members-three .team-content h3 {
  1736. display: block;
  1737. font-size: 22px;
  1738. font-weight: 700;
  1739. margin-bottom: 5px;
  1740. }
  1741. .team-members-three .team-content span {
  1742. font-size: 14px;
  1743. font-weight: 400;
  1744. margin-bottom: 15px;
  1745. color: #999;
  1746. font-style: italic;
  1747. }
  1748. .team-members-three .team-content p {
  1749. color: #999;
  1750. }
  1751. .team-members-three .team-content .info-text {
  1752. margin-bottom: 30px;
  1753. }
  1754. .team-members-three .social-icons {
  1755. transition: all 0.3s ease-in-out 0s;
  1756. -moz-transition: all 0.3s ease-in-out 0s;
  1757. -webkit-transition: all 0.3s ease-in-out 0s;
  1758. -o-transition: all 0.3s ease-in-out 0s;
  1759. }
  1760. .team-members-three .social-icons li {
  1761. display: inline-block;
  1762. margin: 0 10px;
  1763. }
  1764. .team-members-three .social-icons li a i {
  1765. font-size: 24px;
  1766. color: #999;
  1767. }
  1768. .team-members-three .social-icons .fa-facebook:hover {
  1769. color: #3b5998;
  1770. }
  1771. .team-members-three .social-icons .fa-twitter:hover {
  1772. color: #55acee;
  1773. }
  1774. .team-members-three .social-icons .fa-instagram:hover {
  1775. color: #fb3958;
  1776. }
  1777. /* About */
  1778. #about {
  1779. padding: 30px 0;
  1780. }
  1781. .about h5 {
  1782. font-size: 18px;
  1783. }
  1784. .about h5 a {
  1785. color: #444;
  1786. }
  1787. .about h5 a:hover {
  1788. color: #ea4814;
  1789. }
  1790. .about.block img {
  1791. max-width: 100px;
  1792. margin-bottom: 15px;
  1793. }
  1794. .testimonial {
  1795. position: relative;
  1796. }
  1797. #facts {
  1798. padding: 60px 0;
  1799. }
  1800. #facts .fact-icon {
  1801. color: #ea4814;
  1802. font-size: 46px;
  1803. display: block;
  1804. margin-top: 0;
  1805. margin-bottom: 20px;
  1806. }
  1807. .timer {
  1808. color: #444;
  1809. font-size: 48px;
  1810. line-height: 1.2;
  1811. margin-top: 0;
  1812. margin-bottom: 20px;
  1813. }
  1814. .fact-title {
  1815. color: #444;
  1816. font-size: 18px;
  1817. font-weight: 700;
  1818. margin-bottom: 30px;
  1819. }
  1820. #single-testimonial-item .item {
  1821. margin: 10px;
  1822. }
  1823. #single-testimonial-item .property-main {
  1824. margin-bottom: 0;
  1825. }
  1826. #single-testimonial-item .owl-controls .owl-buttons {
  1827. position: relative;
  1828. top: -160px;
  1829. left: 0;
  1830. }
  1831. #single-testimonial-item .owl-controls .owl-buttons div.owl-prev {
  1832. float: left;
  1833. margin-left: -45px;
  1834. }
  1835. #single-testimonial-item .owl-controls .owl-buttons div.owl-next {
  1836. float: right !important;
  1837. margin-right: -45px;
  1838. }
  1839. .owl-theme .owl-buttons div {
  1840. width: 40px;
  1841. height: 40px;
  1842. display: block !important;
  1843. background: transparent !important;
  1844. text-align: center;
  1845. display: inline-block;
  1846. opacity: 1 !important;
  1847. border-radius: 0 !important;
  1848. transition: all 0.4s ease-in-out;
  1849. -moz-transition: all 0.4s ease-in-out;
  1850. -webkit-transition: all 0.4s ease-in-out;
  1851. -o-transition: all 0.4s ease-in-out;
  1852. }
  1853. .owl-theme .owl-buttons div:hover {
  1854. opacity: 0.8 !important;
  1855. }
  1856. .owl-theme .owl-buttons div i {
  1857. color: #fff;
  1858. font-size: 16px;
  1859. line-height: 32px;
  1860. }
  1861. /* / End About */
  1862. /* Start Tesitmonial */
  1863. .single-testimonial-area {
  1864. background-image: url(../img/about/testimonial-bg.jpg);
  1865. background-size: cover;
  1866. padding: 60px 0;
  1867. }
  1868. .single-testimonial-area .testimonial-inner blockquote {
  1869. font-size: 14px;
  1870. color: #fff;
  1871. text-align: center;
  1872. }
  1873. .single-testimonial-area .testimonial-inner .testimonial-images {
  1874. text-align: center;
  1875. }
  1876. .single-testimonial-area .testimonial-inner .testimonial-images img {
  1877. box-shadow: 0 0 3px #ddd;
  1878. height: 90px;
  1879. margin: 0 auto;
  1880. border-radius: 50%;
  1881. padding: 5px;
  1882. width: 90px;
  1883. }
  1884. .single-testimonial-area .testimonial-inner .testimonial-footer {
  1885. font-size: 16px;
  1886. color: #fff;
  1887. text-align: center;
  1888. margin-top: 20px;
  1889. }
  1890. .single-testimonial-area .testimonial-inner .testimonial-footer a {
  1891. color: #ea4814;
  1892. font-size: 15px;
  1893. }
  1894. /* End Tesitmonial */
  1895. /* List Style */
  1896. .list-title {
  1897. margin-bottom: 30px;
  1898. font-size: 27px;
  1899. }
  1900. .list-style li {
  1901. margin-bottom: 15px;
  1902. font-size: 14px;
  1903. position: relative;
  1904. }
  1905. .list-style li i {
  1906. margin-right: 10px;
  1907. color: #ea4814;
  1908. }
  1909. /* Features Header */
  1910. .features-header {
  1911. background: #f5f5f5;
  1912. margin: 30px 0;
  1913. padding: 30px 30px;
  1914. }
  1915. .features-wrap {
  1916. background: #f5f5f5;
  1917. padding: 30px 30px 0px;
  1918. margin-bottom: 50px;
  1919. }
  1920. /* Features Box */
  1921. .featured-box {
  1922. margin-bottom: 30px;
  1923. }
  1924. .featured-box .featured-icon {
  1925. float: left;
  1926. }
  1927. .featured-box .featured-icon i {
  1928. width: 48px;
  1929. height: 48px;
  1930. color: #ea4814;
  1931. border: 1px solid #ea4814;
  1932. display: inline-block;
  1933. text-align: center;
  1934. line-height: 48px;
  1935. font-size: 22px;
  1936. border-radius: 50%;
  1937. transition: all 0.4s ease;
  1938. -moz-transition: all 0.4s ease;
  1939. -webkit-transition: all 0.4s ease;
  1940. -o-transition: all 0.4s ease;
  1941. }
  1942. .featured-box .featured-content {
  1943. padding-left: 64px;
  1944. }
  1945. .featured-box .featured-content h4 {
  1946. font-size: 18px;
  1947. margin-bottom: 10px;
  1948. }
  1949. .featured-box:hover .featured-icon i {
  1950. background: #ea4814;
  1951. color: #fff;
  1952. }
  1953. .featured-center {
  1954. text-align: center;
  1955. }
  1956. .featured-center .featured-icon {
  1957. float: none;
  1958. margin-bottom: 20px;
  1959. }
  1960. .featured-center .border-icon i {
  1961. font-size: 30px;
  1962. border: none;
  1963. }
  1964. .featured-center .featured-content {
  1965. padding-left: 0;
  1966. }
  1967. .featured-img {
  1968. margin-bottom: 30px;
  1969. }
  1970. .featured-img .featured-content {
  1971. background: #f5f5f5;
  1972. padding: 15px;
  1973. }
  1974. .featured-img .featured-content h4 {
  1975. font-size: 18px;
  1976. margin-bottom: 10px;
  1977. }
  1978. .featured-box-item {
  1979. margin-bottom: 40px;
  1980. }
  1981. .featured-box-item .featured-icon {
  1982. float: left;
  1983. }
  1984. .featured-box-item .featured-icon i {
  1985. width: 70px;
  1986. height: 70px;
  1987. color: #ea4814;
  1988. border: 2px solid #f1f1f1;
  1989. text-align: center;
  1990. line-height: 70px;
  1991. font-size: 30px;
  1992. border-radius: 10px;
  1993. display: inline-block;
  1994. transition: all 0.4s ease;
  1995. -moz-transition: all 0.4s ease;
  1996. -webkit-transition: all 0.4s ease;
  1997. -o-transition: all 0.4s ease;
  1998. }
  1999. .featured-box-item .featured-content {
  2000. padding-left: 88px;
  2001. }
  2002. .featured-box-item .featured-content h4 {
  2003. font-size: 15px;
  2004. text-transform: uppercase;
  2005. margin-bottom: 10px;
  2006. }
  2007. .featured-box-item:hover .featured-icon i {
  2008. background: #ea4814;
  2009. color: #fff;
  2010. }
  2011. /* Pricing Table */
  2012. #pricing {
  2013. padding: 30px 0;
  2014. }
  2015. .pricing-table {
  2016. background: #353b48;
  2017. padding: 30px;
  2018. text-align: center;
  2019. }
  2020. .pricing-table .table-header h3 {
  2021. font-size: 20px;
  2022. margin-bottom: 20px;
  2023. color: #fff;
  2024. }
  2025. .pricing-table .plan .price {
  2026. font-size: 24px;
  2027. color: #fff;
  2028. }
  2029. .pricing-table .plan-info {
  2030. margin-top: 30px;
  2031. }
  2032. .pricing-table .plan-info p {
  2033. color: #fff;
  2034. }
  2035. .pricing-table .button-area {
  2036. margin-top: 30px;
  2037. }
  2038. /* Pricing Table */
  2039. .pricing-tables {
  2040. padding: 25px 0;
  2041. text-align: center;
  2042. }
  2043. .pricing-tables .pricing-table-block {
  2044. background: #f6f6f6;
  2045. text-align: center;
  2046. position: relative;
  2047. background-color: #fff;
  2048. -webkit-transition: all 0.2s linear;
  2049. -moz-transition: all 0.2s linear;
  2050. -o-transition: all 0.2s linear;
  2051. transition: all 0.2s linear;
  2052. border: 1px solid #f1f1f1;
  2053. }
  2054. .pricing-tables .highlight-plan {
  2055. margin: -15px 0;
  2056. margin-right: -1px;
  2057. z-index: 1;
  2058. background: #f6f6f6;
  2059. }
  2060. .pricing-tables .pricing-table-block .highlight-plan .plan-name {
  2061. padding: 25px 0;
  2062. }
  2063. .pricing-tables .pricing-table-block .highlight-plan .plan-name h3 {
  2064. color: #fff;
  2065. }
  2066. .pricing-tables .pricing-table-block .highlight-plan .plan-signup {
  2067. padding: 30px 0;
  2068. background: #ea4814;
  2069. }
  2070. .pricing-tables .pricing-table-block .highlight-plan .plan-signup .btn-system.border-btn {
  2071. border-color: #fff;
  2072. color: #fff;
  2073. }
  2074. .pricing-table-block {
  2075. background: #f6f6f6;
  2076. text-align: center;
  2077. position: relative;
  2078. -webkit-transition: all 0.2s linear;
  2079. -moz-transition: all 0.2s linear;
  2080. -o-transition: all 0.2s linear;
  2081. transition: all 0.2s linear;
  2082. }
  2083. .pricing-table-block .plan-name {
  2084. padding: 25px;
  2085. background: #ea4814;
  2086. margin-bottom: 20px;
  2087. }
  2088. .pricing-table-block .plan-name h3 {
  2089. font-size: 22px;
  2090. line-height: 24px;
  2091. margin: 0;
  2092. color: #fff;
  2093. }
  2094. .pricing-table-block .plan-price {
  2095. margin-bottom: 30px;
  2096. }
  2097. .pricing-table-block .plan-price .price-value {
  2098. font-size: 50px;
  2099. line-height: 76px;
  2100. font-weight: 700;
  2101. color: #333333;
  2102. }
  2103. .pricing-table-block .plan-price .price-value span {
  2104. font-size: 22px;
  2105. font-weight: 400;
  2106. line-height: 18px;
  2107. }
  2108. .pricing-table-block .plan-price .interval {
  2109. line-height: 16px;
  2110. font-size: 14px;
  2111. font-weight: 700;
  2112. }
  2113. .pricing-table-block .plan-list li {
  2114. padding: 10px;
  2115. font-size: 15px;
  2116. letter-spacing: 1px;
  2117. border-bottom: 1px solid #ddd;
  2118. }
  2119. .pricing-table-block .plan-list li i {
  2120. margin-right: 10px;
  2121. }
  2122. .pricing-table-block .plan-signup {
  2123. padding: 15px 0px 30px;
  2124. }
  2125. .pricing-table-block .plan-signup a {
  2126. text-transform: uppercase;
  2127. }
  2128. .pricing-table-item {
  2129. border-radius: 4px;
  2130. text-align: center;
  2131. position: relative;
  2132. margin: 15px 0;
  2133. box-shadow: 0px 2px 18px 0px rgba(198, 198, 198, 0.3);
  2134. -webkit-transition: all 0.2s linear;
  2135. -moz-transition: all 0.2s linear;
  2136. -o-transition: all 0.2s linear;
  2137. transition: all 0.2s linear;
  2138. }
  2139. .pricing-table-item .plan-name {
  2140. padding: 25px;
  2141. margin-bottom: 0px;
  2142. }
  2143. .pricing-table-item .plan-name h3 {
  2144. font-size: 22px;
  2145. line-height: 24px;
  2146. margin: 0;
  2147. color: #333333;
  2148. }
  2149. .pricing-table-item .plan-price {
  2150. margin-bottom: 30px;
  2151. }
  2152. .pricing-table-item .plan-price .price-value {
  2153. font-size: 50px;
  2154. line-height: 76px;
  2155. font-weight: 700;
  2156. color: #333333;
  2157. }
  2158. .pricing-table-item .plan-price .price-value span {
  2159. font-size: 22px;
  2160. font-weight: 400;
  2161. line-height: 18px;
  2162. }
  2163. .pricing-table-item .plan-price .interval {
  2164. line-height: 16px;
  2165. font-size: 14px;
  2166. font-weight: 700;
  2167. }
  2168. .pricing-table-item .plan-list li {
  2169. padding: 10px;
  2170. font-size: 15px;
  2171. letter-spacing: 1px;
  2172. }
  2173. .pricing-table-item .plan-list li i {
  2174. margin-right: 10px;
  2175. }
  2176. .pricing-table-item .plan-signup {
  2177. padding: 15px 0px 30px;
  2178. }
  2179. .pricing-table-item .plan-signup a {
  2180. text-transform: uppercase;
  2181. }
  2182. .table-active {
  2183. background: #ea4814;
  2184. }
  2185. .table-active .plan-name h3 {
  2186. color: #fff;
  2187. }
  2188. .table-active .plan-price .price-value {
  2189. color: #fff;
  2190. }
  2191. .table-active .plan-price .price-value span {
  2192. color: #fff;
  2193. }
  2194. .table-active .plan-price .interval {
  2195. color: #fff;
  2196. }
  2197. .table-active .plan-list li {
  2198. color: #fff;
  2199. }
  2200. .table-active .plan-list li i {
  2201. margin-right: 10px;
  2202. }
  2203. .table-active .plan-signup .btn-common {
  2204. background: #fff;
  2205. color: #ea4814;
  2206. }
  2207. .table-active .plan-signup .btn-common:hover {
  2208. color: #ea4814;
  2209. }
  2210. /* Cards */
  2211. .card {
  2212. position: relative;
  2213. display: block;
  2214. margin-bottom: 30px;
  2215. background-color: #f7f7f7;
  2216. border-radius: 0;
  2217. border: 0;
  2218. width: 100%;
  2219. }
  2220. .card-img-top {
  2221. border-top-right-radius: 0;
  2222. border-top-left-radius: 0;
  2223. }
  2224. .card-img-inside {
  2225. margin-bottom: 15px;
  2226. }
  2227. .card img {
  2228. width: 100%;
  2229. }
  2230. .card-block {
  2231. padding: 15px;
  2232. }
  2233. .card-title {
  2234. color: #444;
  2235. font-size: 18px;
  2236. margin-top: 0;
  2237. margin-bottom: 15px;
  2238. }
  2239. .card-text {
  2240. font-size: 14px;
  2241. color: #444;
  2242. }
  2243. .card-btn {
  2244. margin-top: 5px;
  2245. }
  2246. .card-2 {
  2247. position: relative;
  2248. display: block;
  2249. margin-bottom: 30px;
  2250. background-color: #fff;
  2251. border: 1px solid #ddd;
  2252. border-radius: 0;
  2253. }
  2254. .card-2 .card-block .card-title {
  2255. margin-bottom: 7px;
  2256. }
  2257. .card-2 .card-block .meta {
  2258. font-size: 13px;
  2259. }
  2260. .card-2 .card-block .meta a {
  2261. color: #999;
  2262. }
  2263. .card-2 .card-block .meta a:hover {
  2264. color: #ea4814;
  2265. cursor: pointer;
  2266. }
  2267. .card-2 .card-block .description {
  2268. margin-top: 5px;
  2269. }
  2270. .card-2 .extra {
  2271. max-width: 100%;
  2272. border-top: 1px solid rgba(0, 0, 0, 0.05);
  2273. width: auto;
  2274. margin: 0;
  2275. padding: 10px 15px;
  2276. top: 0;
  2277. left: 0;
  2278. color: rgba(0, 0, 0, 0.4);
  2279. }
  2280. .card-2 .extra .right {
  2281. float: right;
  2282. }
  2283. .card-2 .extra .right i {
  2284. margin-right: 5px;
  2285. }
  2286. .card-2 .card-text {
  2287. font-size: 14px;
  2288. line-height: 1.2;
  2289. }
  2290. .card-2 .card-btn {
  2291. margin-top: 10px;
  2292. margin-bottom: 10px;
  2293. }
  2294. /* / End Cards */
  2295. /* Blog Section Start */
  2296. .blog-item-wrapper {
  2297. box-shadow: 0px 1px 4px #dddddd;
  2298. }
  2299. .blog-item-wrapper .blog-item-text {
  2300. padding: 20px;
  2301. }
  2302. .blog-item-wrapper .blog-item-text h3 a {
  2303. color: #444;
  2304. font-size: 18px;
  2305. }
  2306. .blog-item-wrapper .blog-item-text h3 a:hover {
  2307. color: #ea4814;
  2308. }
  2309. .blog-item-wrapper .blog-item-text .meta-tags {
  2310. font-size: 12px;
  2311. }
  2312. .blog-item-wrapper .blog-item-text .meta-tags .comments a {
  2313. color: #444;
  2314. font-size: 12px;
  2315. }
  2316. .blog-item-wrapper .blog-item-text .meta-tags .comments a:hover {
  2317. color: #ea4814;
  2318. }
  2319. .blog-block {
  2320. box-shadow: 0px 1px 4px #dddddd;
  2321. }
  2322. .blog-block .blog-content {
  2323. padding: 15px;
  2324. }
  2325. .blog-block .blog-content h3 {
  2326. font-size: 18px;
  2327. }
  2328. .blog-block .blog-content h3 a {
  2329. color: #444;
  2330. }
  2331. .blog-block .blog-content h3 a:hover {
  2332. color: #ea4814;
  2333. }
  2334. .blog-post {
  2335. padding: 30px;
  2336. }
  2337. .blog-post h3 {
  2338. font-size: 18px;
  2339. }
  2340. .blog-post h3 a {
  2341. color: #444;
  2342. }
  2343. .blog-post h3 a:hover {
  2344. color: #ea4814;
  2345. }
  2346. .about-sidebar-widget,
  2347. .categories-sidebar-widget,
  2348. .blog-posts-widget {
  2349. padding: 15px;
  2350. }
  2351. .about-sidebar-widget h4,
  2352. .categories-sidebar-widget h4,
  2353. .blog-posts-widget h4 {
  2354. color: #222;
  2355. padding: 10px 0;
  2356. font-size: 20px;
  2357. }
  2358. .about-sidebar-widget p,
  2359. .categories-sidebar-widget p,
  2360. .blog-posts-widget p {
  2361. color: #444;
  2362. }
  2363. .about-sidebar-widget img {
  2364. margin-bottom: 10px;
  2365. }
  2366. .categories-sidebar-widget .post-category {
  2367. border-bottom: 1px solid #EFEFEF;
  2368. padding: 3px 0px;
  2369. }
  2370. .categories-sidebar-widget .post-category a {
  2371. color: #999;
  2372. font-size: 14px;
  2373. font-weight: 400;
  2374. line-height: 32px;
  2375. }
  2376. .categories-sidebar-widget .post-category:last-child {
  2377. border: none;
  2378. }
  2379. .blog-post-small {
  2380. margin-bottom: 15px;
  2381. border-bottom: 1px solid #EFEFEF;
  2382. }
  2383. .blog-post-small img {
  2384. max-width: 66px;
  2385. margin: 0 10px 0 0;
  2386. float: left;
  2387. }
  2388. .blog-post-small a {
  2389. color: #999;
  2390. font-size: 14px;
  2391. }
  2392. .blog-post-small p {
  2393. font-size: 12px;
  2394. }
  2395. .blog-post-small .post-date {
  2396. font-size: 12px;
  2397. }
  2398. .blog-post-small:last-child {
  2399. border: none;
  2400. }
  2401. /* Progress Bars */
  2402. .progress {
  2403. height: 15px;
  2404. margin-bottom: 20px;
  2405. overflow: hidden;
  2406. background-color: #ddd;
  2407. border-radius: 0px;
  2408. -webkit-box-shadow: none;
  2409. box-shadow: none;
  2410. }
  2411. .progress .progress-bar {
  2412. font-size: 11px;
  2413. line-height: 15px;
  2414. color: #fff;
  2415. background-color: #ea4814;
  2416. -webkit-box-shadow: none;
  2417. box-shadow: none;
  2418. }
  2419. .progress-bar-default {
  2420. background-color: #ea4814;
  2421. }
  2422. .progress-bar-primary {
  2423. background-color: #ea4814;
  2424. }
  2425. .progress-bar-success {
  2426. background-color: #87c056;
  2427. }
  2428. .progress-bar-info {
  2429. background-color: #4da5e2;
  2430. }
  2431. .progress-bar-warning {
  2432. background-color: #ffcc66;
  2433. }
  2434. .progress-bar-danger {
  2435. background-color: #ec7160;
  2436. }
  2437. .progress-label .sr-only {
  2438. position: relative;
  2439. }
  2440. /* End Progress Bars */
  2441. /* Caounter Style */
  2442. #counter {
  2443. background-image: url(../img/about/testimonial-bg.jpg);
  2444. background-size: cover;
  2445. padding: 60px 0;
  2446. }
  2447. .count-one {
  2448. text-align: center;
  2449. margin-top: 80px;
  2450. margin-bottom: 80px;
  2451. }
  2452. .count-one .icon {
  2453. margin-bottom: 20px;
  2454. display: block;
  2455. }
  2456. .count-one .icon i {
  2457. color: #ea4814;
  2458. font-size: 48px;
  2459. }
  2460. .count-one .count-value {
  2461. color: #fff;
  2462. font-size: 48px;
  2463. margin-bottom: 20px;
  2464. }
  2465. .count-one .count-title {
  2466. color: #fff;
  2467. font-size: 14px;
  2468. }
  2469. .width25-divider {
  2470. margin: 20px auto;
  2471. width: 25px;
  2472. border-color: #fff;
  2473. }
  2474. /* Sliders */
  2475. /* Dark Slider */
  2476. #dark-slider h3 {
  2477. color: #ccc;
  2478. }
  2479. #dark-slider .slide-text {
  2480. color: #ccc;
  2481. line-height: 1.5;
  2482. }
  2483. #dark-slider p.caption {
  2484. color: #fff;
  2485. padding: 6px;
  2486. }
  2487. #dark-slider .item {
  2488. min-height: 555px;
  2489. height: auto;
  2490. }
  2491. #dark-slider .slide1 {
  2492. background-image: url("../img/dark-bg-image.jpg");
  2493. -webkit-background-size: cover;
  2494. -moz-background-size: cover;
  2495. background-size: cover;
  2496. background-position: contain;
  2497. }
  2498. #dark-slider .slide2 {
  2499. background-image: url("../img/dark-bg-image.jpg");
  2500. -webkit-background-size: cover;
  2501. -moz-background-size: cover;
  2502. background-size: cover;
  2503. background-position: center;
  2504. }
  2505. #dark-slider .carousel-control {
  2506. color: #ccc;
  2507. opacity: 0.8;
  2508. }
  2509. .text-primary {
  2510. color: #ea4814 !important;
  2511. }
  2512. /* Carousels */
  2513. .owl-theme .owl-controls .owl-page span {
  2514. width: 12px !important;
  2515. height: 12px !important;
  2516. margin: 5px !important;
  2517. background: #ea4814 !important;
  2518. }
  2519. #cards-carousel .card-block {
  2520. margin: 0 10px;
  2521. background: #f7f7f7;
  2522. }
  2523. #cards-carousel .card {
  2524. background: transparent;
  2525. margin-bottom: 0;
  2526. }
  2527. #image-carousel .item {
  2528. margin: 10px;
  2529. }
  2530. #image-carousel .item img {
  2531. display: block;
  2532. width: 100%;
  2533. height: auto;
  2534. }
  2535. /* Testimonials Slider */
  2536. #testimonials-slider {
  2537. background-color: #ccc;
  2538. }
  2539. #testimonials-slider .testimonial {
  2540. padding: 150px 0;
  2541. text-align: center;
  2542. }
  2543. #testimonials-slider .testimonial img {
  2544. width: 100px;
  2545. height: 100px;
  2546. border-radius: 100%;
  2547. margin-top: -40px;
  2548. margin-bottom: 40px;
  2549. }
  2550. #testimonials-slider .testimonial h3 {
  2551. color: #fff;
  2552. font-size: 30px;
  2553. margin-top: 0;
  2554. margin-left: auto;
  2555. margin-right: auto;
  2556. margin-bottom: 40px;
  2557. max-width: 900px;
  2558. }
  2559. #testimonials-slider .testimonial i {
  2560. color: #fff;
  2561. font-size: 38px;
  2562. margin-bottom: 40px;
  2563. }
  2564. .customer-name {
  2565. color: #fff;
  2566. font-size: 16px;
  2567. font-weight: 400;
  2568. }
  2569. #testimonials-slider .carousel-indicators {
  2570. margin-bottom: 10px;
  2571. }
  2572. .carousel-indicators .active {
  2573. width: 12px;
  2574. height: 12px;
  2575. background-color: #fff;
  2576. margin: 3px;
  2577. opacity: 1;
  2578. }
  2579. .carousel-indicators li {
  2580. width: 12px;
  2581. height: 12px;
  2582. margin: 3px;
  2583. background-color: #fff;
  2584. border: 0;
  2585. opacity: 0.5;
  2586. }
  2587. /* / Sliders */
  2588. #carousel-area {
  2589. background: #2c3e50;
  2590. }
  2591. #carousel-area .btn-lg {
  2592. margin: 10px;
  2593. }
  2594. #carousel-area .carousel-inner .active {
  2595. opacity: 1;
  2596. }
  2597. #carousel-area .carousel-inner .active.left,
  2598. #carousel-area .carousel-inner .active.right {
  2599. left: 0;
  2600. opacity: 0;
  2601. z-index: 1;
  2602. }
  2603. #carousel-area .carousel-inner .next.left,
  2604. #carousel-area .carousel-inner .prev.right {
  2605. opacity: 1;
  2606. }
  2607. #carousel-area .carousel-control {
  2608. z-index: 2;
  2609. }
  2610. #carousel-area .carousel-item .carousel-caption {
  2611. top: 28%;
  2612. right: 10%;
  2613. left: 10%;
  2614. text-shadow: none;
  2615. }
  2616. #carousel-area .carousel-item .carousel-caption h5 {
  2617. color: #fff;
  2618. line-height: 24px;
  2619. font-weight: 400;
  2620. margin-bottom: 30px;
  2621. font-size: 16px;
  2622. font-family: "NeuzeitGro-Reg", sans-serif;
  2623. }
  2624. #carousel-area .carousel-item .carousel-caption h3 {
  2625. font-size: 50px;
  2626. margin-bottom: 15px;
  2627. color: #fff;
  2628. font-weight: 700;
  2629. }
  2630. #carousel-area .carousel-indicators {
  2631. bottom: 5px;
  2632. }
  2633. #carousel-area .carousel-indicators li {
  2634. border-radius: 0px;
  2635. width: 32px;
  2636. height: 5px;
  2637. margin: 0 5px;
  2638. background: rgba(253, 254, 255, 0.8);
  2639. border: none;
  2640. transition: all 0.4s ease-in-out;
  2641. -moz-transition: all 0.4s ease-in-out;
  2642. -webkit-transition: all 0.4s ease-in-out;
  2643. -o-transition: all 0.4s ease-in-out;
  2644. }
  2645. .carousel-post {
  2646. margin-right: 15px;
  2647. }
  2648. .carousel-post h5 {
  2649. margin-top: 20px;
  2650. }
  2651. #single-testimonial-item .item {
  2652. margin: 10px;
  2653. }
  2654. #single-testimonial-item .property-main {
  2655. margin-bottom: 0;
  2656. }
  2657. #single-testimonial-item .owl-controls .owl-buttons {
  2658. position: relative;
  2659. top: -160px;
  2660. left: 0;
  2661. }
  2662. #single-testimonial-item .owl-controls .owl-buttons div.owl-prev {
  2663. float: left;
  2664. margin-left: -45px;
  2665. }
  2666. #single-testimonial-item .owl-controls .owl-buttons div.owl-next {
  2667. float: right !important;
  2668. margin-right: -45px;
  2669. }
  2670. #image-slider .owl-controls .owl-buttons {
  2671. position: relative;
  2672. top: -280px;
  2673. left: 0;
  2674. }
  2675. #image-slider .owl-controls .owl-buttons div.owl-prev {
  2676. float: left;
  2677. margin-left: 45px;
  2678. }
  2679. #image-slider .owl-controls .owl-buttons div.owl-next {
  2680. float: right !important;
  2681. margin-right: 45px;
  2682. }
  2683. #posts-carousel-3col .owl-controls .owl-buttons {
  2684. position: relative;
  2685. top: -235px;
  2686. left: 0;
  2687. }
  2688. #posts-carousel-3col .owl-controls .owl-buttons div.owl-prev {
  2689. float: left;
  2690. margin-left: -60px;
  2691. }
  2692. #posts-carousel-3col .owl-controls .owl-buttons div.owl-next {
  2693. float: right !important;
  2694. margin-right: -45px;
  2695. }
  2696. #posts-carousel .owl-controls .owl-buttons {
  2697. position: relative;
  2698. top: -235px;
  2699. left: 0;
  2700. }
  2701. #posts-carousel .owl-controls .owl-buttons div.owl-prev {
  2702. float: left;
  2703. margin-left: -60px;
  2704. }
  2705. #posts-carousel .owl-controls .owl-buttons div.owl-next {
  2706. float: right !important;
  2707. margin-right: -45px;
  2708. }
  2709. /* Forms */
  2710. .title-head {
  2711. color: #444;
  2712. font-size: 30px;
  2713. margin-bottom: 30px;
  2714. }
  2715. .contact-form .form-control {
  2716. background: transparent;
  2717. padding: 15px 25px 15px 50px;
  2718. color: #444;
  2719. }
  2720. .contact-form .form-control:focus {
  2721. border-color: #ea4814;
  2722. }
  2723. .contact-form .contact-icon {
  2724. left: 34px;
  2725. position: absolute;
  2726. top: 16px;
  2727. color: #444;
  2728. }
  2729. .contact-form textarea {
  2730. height: 268px;
  2731. width: 100%;
  2732. background: transparent;
  2733. border: 1px solid #ddd;
  2734. padding: 18px 18px;
  2735. color: #444;
  2736. margin-bottom: 35px;
  2737. resize: vertical;
  2738. }
  2739. .contact-form textarea:focus {
  2740. border-color: #ea4814;
  2741. }
  2742. .contact-form .form-group {
  2743. margin-bottom: 0;
  2744. }
  2745. .contact-info-title {
  2746. color: #444;
  2747. font-size: 24px;
  2748. margin-bottom: 25px;
  2749. }
  2750. .contact-info a {
  2751. display: block;
  2752. font-size: 14px;
  2753. color: #444;
  2754. margin-bottom: 10px;
  2755. position: relative;
  2756. font-weight: 400;
  2757. }
  2758. .contact-info a i {
  2759. margin-right: 10px;
  2760. }
  2761. .contact-info address {
  2762. position: relative;
  2763. margin-bottom: 15px;
  2764. }
  2765. address {
  2766. font-size: 14px;
  2767. color: #444;
  2768. line-height: 1.8;
  2769. }
  2770. address i {
  2771. margin-right: 10px;
  2772. }
  2773. .tel-info {
  2774. margin-bottom: 15px;
  2775. }
  2776. .social-links li {
  2777. display: inline-block;
  2778. }
  2779. .social-links li a {
  2780. color: #444;
  2781. font-size: 18px;
  2782. padding-left: 0;
  2783. margin: 10px 20px 0 0;
  2784. }
  2785. .form-control {
  2786. color: #444;
  2787. background: #f7f7f7;
  2788. font-weight: 400;
  2789. letter-spacing: 0px;
  2790. border: 1px solid #ddd;
  2791. border-radius: 0;
  2792. margin-bottom: 30px;
  2793. padding: 10px 20px;
  2794. min-height: 50px;
  2795. -webkit-box-shadow: none;
  2796. box-shadow: none;
  2797. -webkit-appearance: none;
  2798. -moz-appearance: none;
  2799. appearance: none;
  2800. }
  2801. .form-control:focus {
  2802. border-color: #ea4814;
  2803. }
  2804. .form-group input {
  2805. font: normal normal normal 14px/1 FontAwesome, "NeuzeitGro-Reg", sans-serif;
  2806. }
  2807. .input-group input {
  2808. font: normal normal normal 14px/1 FontAwesome, "NeuzeitGro-Reg", sans-serif;
  2809. }
  2810. /* Contact Forms */
  2811. #contactForm .form-control {
  2812. color: #444;
  2813. background: #f7f7f7;
  2814. font-weight: 400;
  2815. letter-spacing: 0px;
  2816. border: 1px solid #ddd;
  2817. border-radius: 0;
  2818. margin-bottom: 30px;
  2819. padding: 10px 20px;
  2820. min-height: 50px;
  2821. -webkit-box-shadow: none;
  2822. box-shadow: none;
  2823. -webkit-appearance: none;
  2824. -moz-appearance: none;
  2825. appearance: none;
  2826. }
  2827. #contactForm .form-control:focus {
  2828. border-color: #ea4814;
  2829. }
  2830. #contactForm textarea {
  2831. max-width: 100%;
  2832. min-height: 130px !important;
  2833. max-height: 211px;
  2834. margin-bottom: 30px;
  2835. }
  2836. ::-webkit-input-placeholder {
  2837. color: #ccc !important;
  2838. }
  2839. :-moz-placeholder {
  2840. color: #ccc !important;
  2841. }
  2842. ::-moz-placeholder {
  2843. color: #ccc !important;
  2844. }
  2845. :-ms-input-placeholder {
  2846. color: #ccc !important;
  2847. }
  2848. .has-error .form-control {
  2849. color: #ec7160 !important;
  2850. border: 1px solid #ec7160 !important;
  2851. }
  2852. .help-block.with-errors li {
  2853. color: #ec7160;
  2854. font-size: 13px;
  2855. margin-top: -30px;
  2856. margin-bottom: 0;
  2857. }
  2858. #msgSubmit.h3 {
  2859. font-size: 14px;
  2860. margin-top: 5px;
  2861. }
  2862. /* Contact Form 1 */
  2863. #contact-form-1 .form-group {
  2864. margin-bottom: 0;
  2865. }
  2866. #contact-form-1 #contactForm {
  2867. width: 100%;
  2868. margin-left: auto;
  2869. margin-right: auto;
  2870. }
  2871. #contact-form-1 .btn-form-submit {
  2872. width: 100%;
  2873. border-radius: 0;
  2874. padding: 14px 24px;
  2875. }
  2876. /* Contact Form 2 */
  2877. .contact-form-2 {
  2878. margin-bottom: 50px;
  2879. }
  2880. #contactForm.contact-form-2 .form-control#name {
  2881. width: 70%;
  2882. }
  2883. #contactForm.contact-form-2 .form-control#email {
  2884. width: 70%;
  2885. }
  2886. #contactForm.contact-form-2 .form-control#subject {
  2887. width: 70%;
  2888. }
  2889. #contact-form-2 .form-group {
  2890. margin-bottom: 0;
  2891. }
  2892. #contact-form-2 #contactForm {
  2893. width: 100%;
  2894. margin-left: auto;
  2895. margin-right: auto;
  2896. }
  2897. #contact-form-2 .btn-form-submit {
  2898. width: 30%;
  2899. border-radius: 0;
  2900. padding: 14px 24px;
  2901. }
  2902. /* Login / Register Forms */
  2903. #login-form {
  2904. width: 100%;
  2905. background: #fff;
  2906. border: 1px solid #ddd;
  2907. padding: 35px;
  2908. }
  2909. #login-form .form-group {
  2910. margin-bottom: 0;
  2911. }
  2912. #login-form .btn-log {
  2913. border-radius: 0;
  2914. margin-bottom: 30px;
  2915. padding-left: 17px;
  2916. padding-right: 17px;
  2917. }
  2918. #register-form {
  2919. width: 100%;
  2920. background: #fff;
  2921. border: 1px solid #ddd;
  2922. padding: 35px;
  2923. }
  2924. #register-form .form-group {
  2925. margin-bottom: 0;
  2926. }
  2927. #register-form .btn-log {
  2928. border-radius: 0;
  2929. margin-bottom: 30px;
  2930. padding-left: 17px;
  2931. padding-right: 17px;
  2932. }
  2933. .log-title {
  2934. font-size: 24px;
  2935. margin: 0 0 35px 0;
  2936. }
  2937. .log-line {
  2938. padding: 0 0 35px 0;
  2939. margin-bottom: 35px;
  2940. }
  2941. .log-line .checkbox {
  2942. margin-left: 3px;
  2943. }
  2944. .log-line .checkbox-primary label {
  2945. color: #ea4814;
  2946. }
  2947. .forgot-password {
  2948. font-size: 16px;
  2949. }
  2950. .checkbox .hide {
  2951. display: none;
  2952. }
  2953. /* / End Login / Register Forms */
  2954. #newsletter .input-group {
  2955. margin-bottom: 20px;
  2956. }
  2957. /* / End Forms */
  2958. /* Labels Badges & Alerts */
  2959. /* Labels */
  2960. .space-25 {
  2961. margin-bottom: 25px;
  2962. }
  2963. .label {
  2964. font-weight: 400;
  2965. padding: 5px 18px;
  2966. display: inline-block;
  2967. margin: 0px 15px 0px 0px;
  2968. }
  2969. .label-pill {
  2970. border-radius: 5em;
  2971. }
  2972. .label-default {
  2973. color: #ea4814;
  2974. background-color: transparent;
  2975. border: 2px solid #ea4814;
  2976. }
  2977. .label-default-filled {
  2978. color: #fff;
  2979. background-color: #ea4814;
  2980. border: 2px solid #ea4814;
  2981. }
  2982. .label-primary {
  2983. color: #ea4814;
  2984. background-color: transparent;
  2985. border: 2px solid #ea4814;
  2986. }
  2987. .label-primary-filled {
  2988. color: #fff;
  2989. background-color: #ea4814;
  2990. border: 2px solid #ea4814;
  2991. }
  2992. .label-success {
  2993. color: #87c056;
  2994. background-color: transparent;
  2995. border: 2px solid #87c056;
  2996. }
  2997. .label-success-filled {
  2998. color: #fff;
  2999. background-color: #87c056;
  3000. border: 2px solid #87c056;
  3001. }
  3002. .label-info {
  3003. color: #4da5e2;
  3004. background-color: transparent;
  3005. border: 2px solid #4da5e2;
  3006. }
  3007. .label-info-filled {
  3008. color: #fff;
  3009. background-color: #4da5e2;
  3010. border: 2px solid #4da5e2;
  3011. }
  3012. .label-warning {
  3013. color: #ffcc66;
  3014. background-color: transparent;
  3015. border: 2px solid #ffcc66;
  3016. }
  3017. .label-warning-filled {
  3018. color: #fff;
  3019. background-color: #ffcc66;
  3020. border: 2px solid #ffcc66;
  3021. }
  3022. .label-danger {
  3023. color: #ec7160;
  3024. background-color: transparent;
  3025. border: 2px solid #ec7160;
  3026. }
  3027. .label-danger-filled {
  3028. color: #fff;
  3029. background-color: #ec7160;
  3030. border: 2px solid #ec7160;
  3031. }
  3032. /* / End Labels */
  3033. /* Badges */
  3034. .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
  3035. color: #fff;
  3036. background-color: #ea4814;
  3037. }
  3038. .nav-pills > li > a:hover {
  3039. color: #fff;
  3040. background-color: #ea4814;
  3041. }
  3042. .nav-pills > li > a {
  3043. border-radius: 5px;
  3044. padding: 10px;
  3045. margin-right: 20px;
  3046. }
  3047. .badge {
  3048. color: #fff;
  3049. background-color: #ea4814;
  3050. font-size: 10px;
  3051. font-weight: 400;
  3052. border-radius: 5px;
  3053. padding: 6px 7px;
  3054. }
  3055. .active .badge {
  3056. color: #fff !important;
  3057. }
  3058. /* / End Badges */
  3059. /* Alerts */
  3060. .massage-box {
  3061. position: relative;
  3062. padding: 23px 20px 13px 55px;
  3063. border-radius: 4px;
  3064. margin: 0 0 30px;
  3065. }
  3066. .massage-box strong {
  3067. font-size: 24px;
  3068. display: block;
  3069. margin: 0 0 10px;
  3070. }
  3071. .massage-box p {
  3072. color: #fff;
  3073. }
  3074. .massage-box i {
  3075. position: absolute;
  3076. left: 15px;
  3077. top: 22px;
  3078. width: 25px;
  3079. font-size: 24px;
  3080. text-align: center;
  3081. }
  3082. .small-box strong, .small-box i {
  3083. font-size: 14px;
  3084. }
  3085. .alert {
  3086. border: 2px solid transparent;
  3087. border-radius: 5px;
  3088. }
  3089. .alert-success {
  3090. color: #fff;
  3091. background-color: #87c056;
  3092. border-color: #74a44a;
  3093. }
  3094. .alert-success .close {
  3095. color: #74a44a;
  3096. }
  3097. .alert-info {
  3098. color: #fff;
  3099. background-color: #4da5e2;
  3100. border-color: #428fc4;
  3101. }
  3102. .alert-info .close {
  3103. color: #428fc4;
  3104. }
  3105. .alert-warning {
  3106. color: #fff;
  3107. background-color: #ffcc66;
  3108. border-color: #e1b459;
  3109. }
  3110. .alert-warning .close {
  3111. color: #e1b459;
  3112. }
  3113. .alert-danger {
  3114. color: #fff;
  3115. background-color: #ec7160;
  3116. border-color: #cd6254;
  3117. }
  3118. .alert-danger .close {
  3119. color: #cd6254;
  3120. }
  3121. .alert-dismissible .close {
  3122. font-size: 16px;
  3123. top: -14px;
  3124. right: -31px;
  3125. text-shadow: none;
  3126. opacity: 1;
  3127. }
  3128. .alert-dismissible .close:hover {
  3129. opacity: 0.8;
  3130. }
  3131. .alert-sm {
  3132. font-size: 14px;
  3133. padding: 5px;
  3134. }
  3135. .alert i {
  3136. margin: 0 10px 0 5px;
  3137. }
  3138. .alert-sm.alert-dismissible .close {
  3139. top: -5px;
  3140. right: -2px;
  3141. }
  3142. .tgl {
  3143. position: relative;
  3144. display: inline-block;
  3145. height: 30px;
  3146. cursor: pointer;
  3147. }
  3148. .tgl > input {
  3149. position: absolute;
  3150. opacity: 0;
  3151. z-index: -1;
  3152. visibility: hidden;
  3153. }
  3154. .tgl .tgl_body {
  3155. width: 60px;
  3156. height: 30px;
  3157. background: white;
  3158. border: 1px solid #dadde1;
  3159. display: inline-block;
  3160. position: relative;
  3161. border-radius: 50px;
  3162. }
  3163. .tgl .tgl_switch {
  3164. width: 30px;
  3165. height: 30px;
  3166. display: inline-block;
  3167. background-color: white;
  3168. position: absolute;
  3169. left: -1px;
  3170. top: -1px;
  3171. border-radius: 50%;
  3172. border: 1px solid #ccd0d6;
  3173. -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.13);
  3174. -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.13);
  3175. box-shadow: 0 2px 2px rgba(0, 0, 0, 0.13);
  3176. -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);
  3177. -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);
  3178. -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);
  3179. transition: left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), transform 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
  3180. z-index: 1;
  3181. }
  3182. .tgl .tgl_track {
  3183. position: absolute;
  3184. left: 0;
  3185. top: 0;
  3186. right: 0;
  3187. bottom: 0;
  3188. overflow: hidden;
  3189. border-radius: 50px;
  3190. }
  3191. .tgl .tgl_bgd {
  3192. font-size: 11px;
  3193. color: #fff;
  3194. padding: 4px 18px;
  3195. position: absolute;
  3196. right: -10px;
  3197. top: 0;
  3198. bottom: 0;
  3199. width: 55px;
  3200. -moz-transition: left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), right 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
  3201. -o-transition: left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), right 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
  3202. -webkit-transition: left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), right 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
  3203. transition: left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), right 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
  3204. background: #ea4814;
  3205. }
  3206. .tgl .tgl_bgd-negative {
  3207. right: auto;
  3208. left: -45px;
  3209. background: #ddd;
  3210. }
  3211. .tgl:hover .tgl_switch {
  3212. border-color: #b5bbc3;
  3213. -moz-transform: scale(1.06);
  3214. -ms-transform: scale(1.06);
  3215. -webkit-transform: scale(1.06);
  3216. transform: scale(1.06);
  3217. }
  3218. .tgl:active .tgl_switch {
  3219. -moz-transform: scale(0.95);
  3220. -ms-transform: scale(0.95);
  3221. -webkit-transform: scale(0.95);
  3222. transform: scale(0.95);
  3223. }
  3224. .tgl > :not(:checked) ~ .tgl_body > .tgl_switch {
  3225. left: 30px;
  3226. }
  3227. .tgl > :not(:checked) ~ .tgl_body .tgl_bgd {
  3228. right: -45px;
  3229. }
  3230. .tgl > :not(:checked) ~ .tgl_body .tgl_bgd.tgl_bgd-negative {
  3231. right: auto;
  3232. left: -10px;
  3233. }
  3234. /* / End Alerts */
  3235. /* #portfolio {
  3236. background: #F6F6F6;
  3237. padding: 60px 0;
  3238. width: 100%;
  3239. } */
  3240. #portfolio .mix {
  3241. padding: 0;
  3242. display: none;
  3243. }
  3244. .controls {
  3245. text-align: center;
  3246. padding: 20px;
  3247. }
  3248. a:not([href]):not([tabindex]) {
  3249. color: #222;
  3250. }
  3251. a:focus:not([href]):not([tabindex]), a:hover:not([href]):not([tabindex]) {
  3252. color: #fff;
  3253. }
  3254. .controls .active {
  3255. color: #fff !important;
  3256. background: #ea4814;
  3257. }
  3258. #portfolio-list {
  3259. margin-top: 15px;
  3260. display: inline-block;
  3261. }
  3262. .portfolio-img {
  3263. overflow: hidden;
  3264. display: block;
  3265. position: relative;
  3266. }
  3267. .portfolio-img img {
  3268. width: 100%;
  3269. }
  3270. .portfoli-content {
  3271. width: 100%;
  3272. position: absolute;
  3273. height: 100%;
  3274. opacity: 0;
  3275. top: 0;
  3276. -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  3277. transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  3278. }
  3279. .portfoli-content:before {
  3280. background-color: RGBA(235, 88, 111, 0.7);
  3281. top: 15px;
  3282. left: 15px;
  3283. bottom: 15px;
  3284. right: 15px;
  3285. content: '';
  3286. position: absolute;
  3287. -webkit-transform: scale(0.8);
  3288. -moz-transform: scale(0.8);
  3289. -ms-transform: scale(0.8);
  3290. -o-transform: scale(0.8);
  3291. transform: scale(0.8);
  3292. -webkit-transition: all 400ms ease;
  3293. transition: all 400ms ease;
  3294. }
  3295. .sup-desc-wrap {
  3296. display: table;
  3297. width: 100%;
  3298. height: 100%;
  3299. }
  3300. .sup-desc-wrap .sup-title {
  3301. display: block;
  3302. outline: none;
  3303. margin-bottom: 10px;
  3304. -webkit-transform: scale(0);
  3305. -moz-transform: scale(0);
  3306. -ms-transform: scale(0);
  3307. -o-transform: scale(0);
  3308. transform: scale(0);
  3309. opacity: 0;
  3310. -webkit-transition: all 0.5s ease;
  3311. -moz-transition: all 0.5s ease;
  3312. transition: all 0.5s ease;
  3313. }
  3314. .sup-desc-wrap .sup-title h4 {
  3315. font-size: 18px;
  3316. color: #fff;
  3317. line-height: 22px;
  3318. text-transform: uppercase;
  3319. font-weight: 300;
  3320. }
  3321. .sup-desc-wrap .sup-desc-inner {
  3322. display: table-cell;
  3323. text-align: center;
  3324. vertical-align: middle;
  3325. padding: 0 35px;
  3326. }
  3327. .sup-desc-wrap .sup-link {
  3328. margin-bottom: 20px;
  3329. }
  3330. .sup-desc-wrap .sup-link a:hover {
  3331. background: #fff;
  3332. color: #ea4814;
  3333. }
  3334. .sup-desc-wrap .sup-link .left-link,
  3335. .sup-desc-wrap .sup-link .right-link {
  3336. font-size: 14px;
  3337. line-height: normal;
  3338. outline: none;
  3339. border-radius: 50%;
  3340. color: #fff;
  3341. border: 1px solid #fff;
  3342. width: 42px;
  3343. height: 42px;
  3344. opacity: 0;
  3345. line-height: 42px;
  3346. text-align: center;
  3347. display: inline-block;
  3348. -webkit-transform: translateY(-50px);
  3349. transform: translateY(-50px);
  3350. margin-right: 5px;
  3351. }
  3352. .sup-desc-wrap .sup-link .left-link {
  3353. -webkit-transition: all 400ms ease;
  3354. transition: all 400ms ease;
  3355. }
  3356. .sup-desc-wrap .sup-link .right-link {
  3357. -webkit-transition: all 500ms ease;
  3358. transition: all 500ms ease;
  3359. }
  3360. .sup-desc-wrap .sup-meta-wrap .sup-description {
  3361. font-size: 13px;
  3362. line-height: 18px;
  3363. color: #fff;
  3364. text-align: center;
  3365. -webkit-transform: translateY(40px);
  3366. transform: translateY(40px);
  3367. opacity: 0;
  3368. -webkit-transition: all 0.5s ease;
  3369. -moz-transition: all 0.5s ease;
  3370. transition: all 0.5s ease;
  3371. }
  3372. .portfolio-item:hover .portfoli-content,
  3373. .portfolio-item:hover .portfoli-content:before {
  3374. opacity: 1;
  3375. -webkit-transform: scale(1);
  3376. -moz-transform: scale(1);
  3377. -ms-transform: scale(1);
  3378. -o-transform: scale(1);
  3379. transform: scale(1);
  3380. }
  3381. .portfolio-item:hover .sup-title {
  3382. -webkit-transform: scale(1);
  3383. -moz-transform: scale(1);
  3384. -ms-transform: scale(1);
  3385. -o-transform: scale(1);
  3386. transform: scale(1);
  3387. opacity: 1;
  3388. }
  3389. .portfolio-item:hover .sup-description {
  3390. opacity: 1;
  3391. -webkit-transform: translateY(0px);
  3392. transform: translateY(0px);
  3393. }
  3394. .portfolio-item:hover .sup-link .right-link,
  3395. .portfolio-item:hover .sup-link .left-link {
  3396. opacity: 1;
  3397. webkit-transform: translateY(0px);
  3398. transform: translateY(0px);
  3399. }
  3400. /* Portfolio */
  3401. #portfolio ul.portfolio {
  3402. margin-bottom: 0 !important;
  3403. }
  3404. #testimonials h2{
  3405. color: #fff;
  3406. }
  3407. .round-pic{
  3408. border-radius: 50%;
  3409. }
  3410. .hovereffect {
  3411. width: 100%;
  3412. height: 100%;
  3413. float: left;
  3414. overflow: hidden;
  3415. position: relative;
  3416. text-align: center;
  3417. cursor: default;
  3418. }
  3419. .hovereffect img {
  3420. display: block;
  3421. position: relative;
  3422. -webkit-transition: all .5s linear;
  3423. transition: all .2s linear;
  3424. }
  3425. .hovereffect .overlay {
  3426. width: 100%;
  3427. height: 100%;
  3428. position: absolute;
  3429. overflow: hidden;
  3430. top: 0;
  3431. left: 0;
  3432. opacity: 0;
  3433. background-color: RGBA(0, 0, 0, 0.7);
  3434. -webkit-transition: all .2s ease-in-out;
  3435. transition: all .2s ease-in-out;
  3436. }
  3437. .hovereffect .iocns {
  3438. position: absolute;
  3439. top: 40%;
  3440. left: 0;
  3441. right: 0;
  3442. }
  3443. .hovereffect .iocns .left-link {
  3444. font-size: 14px;
  3445. line-height: normal;
  3446. outline: none;
  3447. border-radius: 50%;
  3448. color: #fff;
  3449. border: 1px solid #fff;
  3450. width: 42px;
  3451. height: 42px;
  3452. line-height: 42px;
  3453. text-align: center;
  3454. display: inline-block;
  3455. margin-right: 5px;
  3456. -webkit-transition: all .2s ease-in-out;
  3457. transition: all .2s ease-in-out;
  3458. }
  3459. .hovereffect .iocns a:hover {
  3460. background: #fff;
  3461. color: #ea4814;
  3462. }
  3463. .hovereffect-title h6,
  3464. .hovereffect-title h5 {
  3465. color: #fff;
  3466. background: transparent;
  3467. text-align: center;
  3468. position: absolute;
  3469. top: 40%;
  3470. width: 100%;
  3471. -webkit-transition: all .5s ease-in-out;
  3472. transition: all .5s ease-in-out;
  3473. padding: 10px;
  3474. }
  3475. .hovereffect-title h5 {
  3476. color: #fff;
  3477. background: transparent;
  3478. text-align: center;
  3479. position: absolute;
  3480. top: 43%;
  3481. width: 100%;
  3482. -webkit-transition: all .5s ease-in-out;
  3483. transition: all .5s ease-in-out;
  3484. padding: 10px;
  3485. }
  3486. .hovereffect-title h4 {
  3487. color: #fff;
  3488. background: transparent;
  3489. text-align: center;
  3490. position: absolute;
  3491. top: 44%;
  3492. width: 100%;
  3493. -webkit-transition: all .5s ease-in-out;
  3494. transition: all .5s ease-in-out;
  3495. padding: 10px;
  3496. }
  3497. .hovereffect:hover img {
  3498. -ms-transform: scale(1.1);
  3499. -webkit-transform: scale(1.1);
  3500. transform: scale(1.1);
  3501. }
  3502. .hovereffect:hover .overlay {
  3503. opacity: 1;
  3504. filter: alpha(opacity=100);
  3505. }
  3506. .hovereffect:hover h6, .hovereffect:hover a.info {
  3507. opacity: 1;
  3508. filter: alpha(opacity=100);
  3509. -ms-transform: translatey(0);
  3510. -webkit-transform: translatey(0);
  3511. transform: translatey(0);
  3512. }
  3513. .hovereffect:hover a.info {
  3514. -webkit-transition-delay: .2s;
  3515. transition-delay: .2s;
  3516. }
  3517. figure {
  3518. display: inline-block;
  3519. }
  3520. #portfolio .portfolio.block {
  3521. top: 15px;
  3522. }
  3523. #portfolio .portfolio.block h5 {
  3524. color: #444;
  3525. margin-top: 5px;
  3526. margin-bottom: 0px;
  3527. }
  3528. #portfolio .project {
  3529. padding-top: 15px;
  3530. padding-bottom: 15px;
  3531. }
  3532. #portfolio .project-description {
  3533. font-size: 14px;
  3534. color: #444;
  3535. }
  3536. .icons-link {
  3537. position: absolute;
  3538. top: 40%;
  3539. left: 0;
  3540. right: 0;
  3541. }
  3542. .icons-link a:hover {
  3543. border: 1px solid #fff;
  3544. background: transparent;
  3545. }
  3546. .icons-link .left-link,
  3547. .icons-link .right-link {
  3548. font-size: 14px;
  3549. line-height: normal;
  3550. outline: none;
  3551. border-radius: 4px;
  3552. color: #fff;
  3553. background: #ea4814;
  3554. border: 1px solid transparent;
  3555. width: 42px;
  3556. height: 42px;
  3557. opacity: 0;
  3558. line-height: 42px;
  3559. text-align: center;
  3560. display: inline-block;
  3561. -webkit-transform: translateY(-50px);
  3562. transform: translateY(-50px);
  3563. margin-right: 5px;
  3564. }
  3565. .icons-link .left-link {
  3566. -webkit-transition: all 400ms ease;
  3567. transition: all 400ms ease;
  3568. }
  3569. .icons-link .right-link {
  3570. -webkit-transition: all 500ms ease;
  3571. transition: all 500ms ease;
  3572. }
  3573. .hovereffect:hover .icons-link .right-link,
  3574. .hovereffect:hover .icons-link .left-link {
  3575. opacity: 1;
  3576. webkit-transform: translateY(0px);
  3577. transform: translateY(0px);
  3578. }
  3579. .table-1 {
  3580. color: #fff;
  3581. }
  3582. .table-bordered.table-2 > thead > tr > th {
  3583. background: #232833;
  3584. font-weight: 700;
  3585. color: #ea4814;
  3586. }
  3587. .table-bordered.table-3 > thead > tr > th {
  3588. background: #ea4814;
  3589. font-weight: 700;
  3590. color: #fff;
  3591. }
  3592. .table-bordered > thead > tr > th {
  3593. text-align: center;
  3594. background: #373d4a;
  3595. font-size: 16px;
  3596. font-weight: 700;
  3597. padding: 26px 10px;
  3598. }
  3599. .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 {
  3600. border: 1px solid #f1f1f1;
  3601. }
  3602. .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  3603. padding: 18px 20px;
  3604. color: #444;
  3605. text-align: center;
  3606. font-size: 14px;
  3607. }
  3608. .table-striped > tbody > tr:nth-of-type(2n+1) {
  3609. background-color: #e3e3e3;
  3610. }
  3611. /* Tabs */
  3612. #default-tab ul.nav-tabs {
  3613. border-bottom: none;
  3614. padding-bottom: 5px;
  3615. }
  3616. #default-tab ul.nav-tabs a {
  3617. border: 0;
  3618. }
  3619. ul.nav-tabs li {
  3620. float: left;
  3621. margin-top: 0;
  3622. }
  3623. ul.nav-tabs li a {
  3624. color: #444;
  3625. font-size: 16px;
  3626. font-weight: 400;
  3627. line-height: 18px;
  3628. padding: 10px 15px;
  3629. text-transform: uppercase;
  3630. }
  3631. #default-tab .nav-tabs > li > a.active, #default-tab .nav-tabs > li a.active:focus, #default-tab .nav-tabs > li a.active:hover {
  3632. border: 0 none;
  3633. position: relative;
  3634. color: #ea4814;
  3635. }
  3636. .nav-bg > li > a {
  3637. color: #444;
  3638. text-transform: uppercase;
  3639. border: 1px solid transparent;
  3640. margin-right: 10px;
  3641. }
  3642. .nav-bg > li > a.active, .nav-bg > li a.active:focus, .nav-bg > li a:hover {
  3643. color: #ea4814 !important;
  3644. border: 1px solid #ea4814 !important;
  3645. border-radius: 0;
  3646. }
  3647. .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  3648. color: #ea4814;
  3649. }
  3650. .nav-tabs {
  3651. border-bottom: none;
  3652. }
  3653. .nav-tabs .nav-link {
  3654. border-top-right-radius: 0px;
  3655. border-top-left-radius: 0px;
  3656. }
  3657. .tab-content {
  3658. padding: 15px;
  3659. border: 1px solid #ddd;
  3660. }
  3661. /* End TAbs */
  3662. /* Accordions */
  3663. .panel-group .panel {
  3664. background: none;
  3665. -webkit-box-shadow: none;
  3666. box-shadow: none;
  3667. margin-bottom: 10px;
  3668. border: 0;
  3669. border-radius: 0;
  3670. }
  3671. .panel-group .panel-heading {
  3672. padding: 15px;
  3673. background: #ea4814;
  3674. }
  3675. .panel-group .panel-title {
  3676. font-size: 16px;
  3677. color: #fff;
  3678. font-weight: 700;
  3679. }
  3680. .panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
  3681. border-top: none;
  3682. }
  3683. .panel-group .panel-heading > a:after {
  3684. float: right;
  3685. }
  3686. .panel-group .panel-heading .panel-title.collapsed:after {
  3687. float: right;
  3688. }
  3689. .panel-group .panel-heading > a:after {
  3690. display: inline-block;
  3691. vertical-align: middle;
  3692. font-family: "FontAwesome";
  3693. font-size: 16px;
  3694. content: "\f0d8";
  3695. margin-top: -2px;
  3696. margin-left: 10px;
  3697. -webkit-transform: rotate(0);
  3698. -moz-transform: rotate(0);
  3699. -ms-transform: rotate(0);
  3700. -o-transform: rotate(0);
  3701. transform: rotate(0);
  3702. -webkit-transition: all 0.3s;
  3703. -o-transition: all 0.3s;
  3704. transition: all 0.3s;
  3705. }
  3706. .panel-group .panel-heading .panel-title.collapsed:after {
  3707. -webkit-transform: rotate(180deg);
  3708. -moz-transform: rotate(180deg);
  3709. -ms-transform: rotate(180deg);
  3710. -o-transform: rotate(180deg);
  3711. transform: rotate(180deg);
  3712. }
  3713. .panel-group .panel-body {
  3714. padding: 15px;
  3715. border: 1px solid #ddd;
  3716. }
  3717. .panel-group.tabbed .panel-heading {
  3718. background: transparent;
  3719. padding: 15px;
  3720. border: 1px solid #ccc;
  3721. }
  3722. .panel-group.tabbed a {
  3723. color: #444;
  3724. }
  3725. .panel-group.tabbed .panel-heading > a:after {
  3726. float: right;
  3727. }
  3728. .panel-group.tabbed .panel-heading .panel-title.collapsed:after {
  3729. float: right;
  3730. }
  3731. /* End Tabs & Accordions */
  3732. @media (min-width: 768px) and (max-width: 1024px) {
  3733. .fact-title {
  3734. font-size: 14px;
  3735. }
  3736. #single-testimonial-item .owl-controls .owl-buttons div.owl-prev {
  3737. margin-left: 0px;
  3738. }
  3739. #single-testimonial-item .owl-controls .owl-buttons div.owl-next {
  3740. margin-right: 0px;
  3741. }
  3742. .blog-item-wrapper .blog-item-text h3 a {
  3743. font-size: 14px;
  3744. }
  3745. .blog-post-small img {
  3746. max-width: 100%;
  3747. }
  3748. .contact-info-title {
  3749. font-size: 18px;
  3750. }
  3751. .featured-box .featured-content h4 {
  3752. font-size: 13px;
  3753. }
  3754. footer #copyright .copyright-text, footer #copyright .nav-inline {
  3755. line-height: 24px;
  3756. }
  3757. .nav-link {
  3758. padding: 8px 3px;
  3759. }
  3760. .social-footer a .fa {
  3761. margin: 0px;
  3762. }
  3763. .hero-content-v2 {
  3764. margin-top: 0;
  3765. }
  3766. .list-title {
  3767. font-size: 20px;
  3768. }
  3769. .list-style li i {
  3770. margin-right: 5px;
  3771. }
  3772. .sub-title {
  3773. font-size: 14px;
  3774. }
  3775. .bs-example {
  3776. margin-bottom: 30px;
  3777. }
  3778. .bs-example .nav > li > a {
  3779. padding: 10px 19px;
  3780. }
  3781. .pricing-table-block .plan-list li {
  3782. font-size: 12px;
  3783. }
  3784. .pricing-table .table-header h3 {
  3785. font-size: 15px;
  3786. }
  3787. .button-area .btn {
  3788. padding: 11px 12px;
  3789. }
  3790. .service-box .service-content h4 {
  3791. font-size: 14px;
  3792. }
  3793. #carousel-area .carousel-item .carousel-caption h3 {
  3794. font-size: 26px;
  3795. }
  3796. #carousel-area .carousel-item .carousel-caption h5 {
  3797. margin-bottom: 10px;
  3798. }
  3799. #carousel-area .carousel-item .btn-lg {
  3800. padding: 7px 10px;
  3801. min-width: 150px;
  3802. }
  3803. .sup-desc-wrap .sup-meta-wrap .sup-description {
  3804. display: none;
  3805. }
  3806. .label {
  3807. padding: 0;
  3808. }
  3809. }
  3810. @media (max-width: 640px) {
  3811. .page-header-title .heading-title {
  3812. font-size: 24px;
  3813. }
  3814. .navbar-light .navbar-toggler {
  3815. margin: 24px;
  3816. border: 0;
  3817. }
  3818. .blog-item-wrapper {
  3819. margin-bottom: 30px;
  3820. }
  3821. .blog-item-wrapper .blog-item-text h3 a {
  3822. font-size: 12px;
  3823. }
  3824. .contact-form {
  3825. margin-bottom: 30px;
  3826. }
  3827. .contact-info {
  3828. margin-bottom: 30px;
  3829. }
  3830. .featured-box .featured-content h4 {
  3831. font-size: 14px;
  3832. }
  3833. .footer-info .pull-right {
  3834. float: left !important;
  3835. }
  3836. .footer-widget {
  3837. margin-bottom: 30px;
  3838. }
  3839. .nav-link {
  3840. padding: 8px 3px;
  3841. }
  3842. .hero-content-v2 {
  3843. margin-top: 0;
  3844. }
  3845. .hero-content-v2 h3 {
  3846. font-size: 22px;
  3847. }
  3848. .hero-content-v2 h3 strong {
  3849. font-size: 32px;
  3850. line-height: 38px;
  3851. }
  3852. .store-btn-wrap li {
  3853. margin-bottom: 20px;
  3854. }
  3855. .team-members-tow figure {
  3856. margin-bottom: 30px;
  3857. }
  3858. .bs-example {
  3859. margin-bottom: 30px;
  3860. }
  3861. .bs-example .nav > li > a {
  3862. padding: 10px 19px;
  3863. }
  3864. .tab-content .tabbing-content {
  3865. width: 100%;
  3866. padding-left: 0;
  3867. }
  3868. .pricing-table {
  3869. margin-bottom: 30px;
  3870. }
  3871. .pricing-table-block {
  3872. margin-bottom: 30px;
  3873. }
  3874. .service-box .service-content h4 {
  3875. font-size: 14px;
  3876. }
  3877. #carousel-area .carousel-item .carousel-caption {
  3878. top: 5%;
  3879. }
  3880. #carousel-area .carousel-item .carousel-caption h3 {
  3881. font-size: 26px;
  3882. }
  3883. #carousel-area .carousel-item .carousel-caption h5 {
  3884. margin-bottom: 0px;
  3885. }
  3886. #carousel-area .carousel-item .btn-lg {
  3887. padding: 7px 10px;
  3888. min-width: 150px;
  3889. }
  3890. .controls .btn {
  3891. padding: 7px 14px;
  3892. margin: 5px 0;
  3893. }
  3894. .list-group {
  3895. margin-bottom: 30px;
  3896. }
  3897. }
  3898. @media (max-width: 480px) {
  3899. .navbar-brand img {
  3900. max-width: 120px;
  3901. }
  3902. .sub-title {
  3903. font-size: 20px;
  3904. }
  3905. .top-menu {
  3906. height: 70px;
  3907. }
  3908. .top-menu .right {
  3909. float: left;
  3910. }
  3911. .page-header-title .heading-title {
  3912. font-size: 16px;
  3913. }
  3914. .title-head {
  3915. font-size: 20px;
  3916. }
  3917. .about {
  3918. margin-bottom: 30px;
  3919. }
  3920. #single-testimonial-item .owl-controls .owl-buttons {
  3921. display: none;
  3922. }
  3923. .blog-item-wrapper {
  3924. margin-bottom: 30px;
  3925. }
  3926. .contact-form {
  3927. margin-bottom: 30px;
  3928. }
  3929. .contact-info {
  3930. margin-bottom: 30px;
  3931. }
  3932. .contact-info-title {
  3933. font-size: 18px;
  3934. }
  3935. footer ul li a {
  3936. font-size: 12px;
  3937. }
  3938. header h3 {
  3939. font-size: 18px;
  3940. }
  3941. .hero-content-v2 {
  3942. margin-top: 0;
  3943. }
  3944. .hero-content-v2 h3 {
  3945. font-size: 22px;
  3946. }
  3947. .hero-content-v2 h3 strong {
  3948. font-size: 32px;
  3949. line-height: 38px;
  3950. }
  3951. .store-btn-wrap li {
  3952. margin-bottom: 20px;
  3953. }
  3954. .team-members-tow figure {
  3955. margin-bottom: 30px;
  3956. }
  3957. .bs-example {
  3958. margin-bottom: 30px;
  3959. }
  3960. .tab-content .tabbing-content {
  3961. width: 100%;
  3962. margin-top: 10px;
  3963. padding-left: 0;
  3964. }
  3965. .pricing-table {
  3966. margin-bottom: 30px;
  3967. }
  3968. .pricing-table-block {
  3969. margin-bottom: 30px;
  3970. }
  3971. .service-box .service-content h4 {
  3972. font-size: 14px;
  3973. }
  3974. .count-one {
  3975. margin-top: 40px;
  3976. margin-bottom: 40px;
  3977. }
  3978. .carousel-inner {
  3979. height: 175px;
  3980. }
  3981. #carousel-area .carousel-item .carousel-caption {
  3982. top: 2%;
  3983. }
  3984. #carousel-area .carousel-item .carousel-caption h3 {
  3985. font-size: 14px;
  3986. }
  3987. #carousel-area .carousel-item .carousel-caption h5 {
  3988. margin-bottom: 3px;
  3989. font-size: 12px;
  3990. line-height: 15px;
  3991. }
  3992. #carousel-area .carousel-item .btn-lg {
  3993. padding: 4px 5px;
  3994. min-width: 150px;
  3995. font-size: 12px;
  3996. }
  3997. .carousel-indicators {
  3998. display: none;
  3999. }
  4000. .controls .btn {
  4001. font-size: 13px;
  4002. padding: 7px 8px;
  4003. margin: 5px 0;
  4004. }
  4005. .list-group {
  4006. margin-bottom: 30px;
  4007. }
  4008. }
  4009. /* Custom CSS */
  4010. body {
  4011. color: #444;
  4012. background: #ffffff;
  4013. font-family: "NeuzeitGro-Reg", sans-serif;
  4014. font-weight: 400;
  4015. font-size: 14px;
  4016. line-height: 20px;
  4017. letter-spacing: 0px;
  4018. }
  4019. img {
  4020. width: 100%;
  4021. }
  4022. .page-header {
  4023. font-size: 30px;
  4024. font-weight: 700;
  4025. border: none;
  4026. padding-top: 50px;
  4027. text-transform: uppercase;
  4028. margin: 0 0 20px 0;
  4029. }