| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470 |
- @import url("https://fonts.googleapis.com/css?family=Lato|Montserrat:700");
- /* Typography */
- h1, h2, h3, h4, h5, h6 {
- color: #444;
- font-family: "Montserrat", sans-serif;
- font-weight: 700;
- letter-spacing: 0.5px;
- margin-top: 0; }
- h1 {
- font-size: 36px; }
- h2 {
- font-size: 30px; }
- h3 {
- font-size: 26px; }
- h4 {
- font-size: 22px; }
- h5 {
- font-size: 18px; }
- h6 {
- font-size: 16px; }
- a {
- color: #EB586F;
- -moz-transition: 0.2s ease-in;
- -o-transition: 0.2s ease-in;
- -webkit-transition: 0.2s ease-in;
- -ms-transition: 0.2s ease-in;
- transition: 0.2s ease-in;
- letter-spacing: 0.5px;
- font-weight: 700;
- outline: 0 !important; }
- a:hover, a:active, a:focus {
- color: #D14E63;
- text-decoration: none; }
- p {
- font-family: "Lato", sans-serif;
- font-weight: 400;
- font-size: 14px;
- line-height: 25px;
- color: #444;
- letter-spacing: 0.5px;
- margin-bottom: 10px; }
- ul, li {
- list-style: none;
- padding: 0; }
- ul, ol {
- list-style: none;
- padding: 0; }
- .list-featured {
- list-style: none;
- padding: 0; }
- .list-featured li {
- position: relative;
- font-size: 14px;
- padding-left: 14px;
- margin-bottom: 7px; }
- .list-featured li:before {
- position: absolute;
- display: block;
- content: "";
- width: 6px;
- height: 6px;
- border-radius: 50%;
- left: 0;
- top: 7px;
- background-color: #EB586F; }
- .line-height-36 {
- line-height: 36px;
- }
- ol li {
- margin-bottom: 7px;
- }
- li {
- color: #444;
- font-size: 16px;
- line-height: 20px;
- letter-spacing: 0.5px;
- }
- blockquote {
- border-left: 0px solid #ddd; }
- blockquote p {
- font-size: 16px;
- font-weight: 400; }
- .blockquote-reverse {
- border-right: none; }
- cite {
- color: #ccc;
- font-size: 14px; }
- strong {
- font-weight: 700; }
- .text-uppercase {
- text-transform: uppercase; }
- .lead {
- font-size: 18px; }
- .text-sm {
- font-size: 14px; }
- .text-xs {
- font-size: 12px; }
- .text-left {
- text-align: left; }
- .text-center {
- text-align: center; }
- .text-right {
- text-align: right; }
- .text-default {
- color: #EB586F; }
- .text-primary {
- color: #EB586F !important; }
- .text-success {
- color: #87c056; }
- .text-info {
- color: #4da5e2; }
- .text-warning {
- color: #ffcc66; }
- .text-danger {
- color: #ec7160; }
- .bg-default {
- color: #444;
- background: #EB586F;
- padding: 3px 4px; }
- .bg-primary {
- color: #fff;
- background: #EB586F;
- padding: 3px 4px; }
- .bg-success {
- color: #fff;
- background: #87c056;
- padding: 3px 4px; }
- .bg-info {
- color: #fff;
- background: #4da5e2;
- padding: 3px 4px; }
- .bg-warning {
- color: #fff;
- background: #ffcc66;
- padding: 3px 4px; }
- .bg-danger {
- color: #fff;
- background: #ec7160;
- padding: 3px 4px; }
- /* / End Typography */
- /* Sections */
- /* Headers */
- .wrapper {
- background: #fff; }
- .mtb-50 {
- margin-top: 50px;
- margin-bottom: 50px; }
- #content {
- padding-bottom: 60px; }
- .mb-60 {
- margin-bottom: 50px; }
- .space-right {
- margin-right: 25px; }
- .row-spacer {
- margin-bottom: 80px; }
- .page-header-title {
- padding-top: 60px;
- padding-bottom: 60px; }
- .page-header-title .heading-title {
- color: #444;
- font-size: 36px;
- letter-spacing: 3px;
- text-transform: uppercase;
- font-weight: 400; }
- .navbar-light .navbar-nav .nav-link {
- color: #fff; }
- .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
- color: #fff; }
- #headers .navbar {
- margin-bottom: 0; }
- #headers .header-caption {
- text-align: center;
- height: auto;
- text-shadow: none !important;
- top: 0;
- bottom: 0;
- padding: 0; }
- #headers .header-content {
- padding: 90px 0; }
- header h3 {
- font-size: 36px; }
- .header-title .text-primary {
- color: #EB586F !important; }
- .header-content header-title span {
- margin-bottom: 15px; }
- .header-content .header-text {
- margin-top: 15px;
- font-size: 14px;
- line-height: 30px; }
- .header-content .btn {
- margin: 15px; }
- .header-style-2 {
- background: #f4f6f9;
- padding-top: 80px; }
- .header-style-3 {
- background: url("../img/bg/bg-image.jpg") no-repeat left center;
- background-size: cover;
- padding-top: 80px; }
- .header-style-3 .hero-content-v2 h3 {
- color: #fff; }
- .header-style-3 .hero-content-v2 p {
- color: #fff; }
- figure {
- margin: 0; }
- .hero-content-v2 {
- margin-top: 144px; }
- .hero-content-v2 h3 {
- font-size: 24px;
- color: #2f3542;
- font-weight: 400; }
- .hero-content-v2 h3 strong {
- display: block;
- font-size: 48px;
- font-weight: 400;
- line-height: 62px;
- margin-bottom: 25px; }
- .hero-content-v2 p {
- color: #444;
- font-size: 18px;
- margin-bottom: 45px; }
- .store-btn-wrap li {
- display: inline-block;
- margin-right: 15px;
- margin-bottom: 0; }
- /* Light Header */
- #header-style-1 .content {
- min-height: 555px;
- height: auto; }
- #header-style-1 {
- background-image: url("../img/bg/bg-image.jpg");
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- background-position: contain; }
- #header-style-1 .header-text {
- color: #fff;
- line-height: 1.5; }
- .header-title {
- color: #fff; }
- #header-style-1 p.caption {
- padding: 6px;
- color: #444; }
- /* / Light Header */
- /* Dark Header */
- #dark-header .content {
- min-height: 555px;
- height: auto; }
- #dark-header .content {
- background-image: url("../img/bg/dark-bg-image.jpg");
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- background-position: contain; }
- #dark-header h3 {
- color: #ccc; }
- #dark-header .header-text {
- color: #ccc;
- line-height: 1.5; }
- #dark-header p.caption {
- color: #fff;
- padding: 6px; }
- /* / Dark header */
- /* Light Slider */
- .header nav {
- z-index: 9999; }
- #light-slider.header {
- background-image: url("../images/light-bg-image.jpg");
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- background-position: contain; }
- #light-slider.header .slide1 {
- background-image: none; }
- #light-slider.header .slide2 {
- background-image: none; }
- /* / End Light Slider */
- /* Dark Slider */
- #dark-slider.header {
- background-image: url("../images/dark-bg-image.jpg");
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- background-position: contain; }
- #dark-slider.header .slide1 {
- background-image: none; }
- #dark-slider.header .slide2 {
- background-image: none; }
- /* / End Dark Slider */
- /* / End Headers */
- .section {
- padding: 30px 0; }
- /* Footer */
- .footer-info {
- padding: 25px 0; }
- footer .social a {
- font-size: 14px;
- margin-left: 10px; }
- footer {
- background: #282828;
- color: #7C7C7C; }
- footer .small-title {
- margin-bottom: 20px;
- font-size: 22px;
- color: #fff; }
- footer ul {
- padding: 0;
- margin: 0;
- list-style: none; }
- footer ul li {
- line-height: 25px; }
- footer ul li a {
- color: #999;
- font-size: 14px; }
- footer .menu {
- color: #fff; }
- footer .plain-flicker-gallery {
- margin-right: -5px;
- margin-left: -5px; }
- footer .plain-flicker-gallery a {
- display: inline-block;
- width: 32%;
- font-size: 0px;
- padding: 5px; }
- footer .plain-flicker-gallery a img {
- width: 100%; }
- footer .contact-us .form-control {
- color: #999;
- font-size: 14px;
- margin-bottom: 15px;
- background: #1D1D1D;
- border-radius: 0px; }
- footer #copyright {
- background: #1D1D1D; }
- footer #copyright .row {
- padding: 10px 0; }
- footer #copyright .copyright-text,
- footer #copyright .nav-inline {
- line-height: 38px;
- margin-bottom: 0; }
- .social-footer a i {
- font-size: 14px;
- height: 35px;
- text-align: center;
- display: inline-block;
- border: 1px solid #EB586F;
- line-height: 35px;
- margin: 4px;
- width: 35px;
- -webkit-transition: all 0.2s linear;
- -moz-transition: all 0.2s linear;
- -o-transition: all 0.2s linear;
- transition: all 0.2s linear; }
- .social-footer .fa-facebook:hover {
- background: #3b5998;
- color: #fff;
- border-color: #3b5998; }
- .social-footer .fa-twitter:hover {
- background: #55acee;
- color: #fff;
- border-color: #55acee; }
- .social-footer .fa-linkedin:hover {
- background: #007bb6;
- color: #fff;
- border-color: #007bb6; }
- .social-footer .fa-google-plus:hover {
- background: #dd4b39;
- color: #fff;
- border-color: #dd4b39; }
- .default-footer {
- background: #232935;
- padding-bottom: 100px;
- padding-top: 100px; }
- .copy-right {
- font-size: 12px;
- color: #bac0cb; }
- .dis-blk {
- display: block;
- margin-bottom: 30px; }
- .mb-40 {
- margin-bottom: 40px; }
- .footer-logo {
- width: auto; }
- .light-footer {
- background: #f7f7f7; }
- .light-footer p {
- color: #444; }
- .dark-footer {
- background: #222; }
- .dark-footer p {
- color: #ccc; }
- .color-footer {
- background: #EB586F; }
- .color-footer p {
- color: #ccc; }
- .color-footer a {
- color: #fff; }
- .color-footer a:hover {
- color: #ccc; }
- /* Footer Widgets */
- .light-footer .widget-area {
- background: #fff; }
- .dark-footer .widget-area {
- background: #000; }
- .color-footer .widget-area {
- background: #D14E63; }
- footer .widget-title {
- text-align: left;
- margin-bottom: 30px; }
- .dark-footer .widget-title h4 {
- color: #fff; }
- .color-footer .widget-title h4 {
- color: #fff; }
- /* ==========================================================================
- Footer Style 2
- ========================================================================== */
- footer .block-title {
- font-size: 20px;
- margin-bottom: 25px; }
- footer .footer-Content {
- background-color: #18191b;
- padding: 60px 0;
- color: #fff; }
- .footer-widget p {
- color: #fff; }
- .textwidget {
- font-size: 14px;
- font-weight: 300;
- line-height: 24px;
- color: #fff; }
- footer .menu {
- padding-left: 0; }
- footer .menu li {
- padding-bottom: 10px; }
- footer .menu li a {
- color: #fff; }
- footer .menu li a:hover {
- color: #D14E63; }
- .twitter-content ul li {
- margin-bottom: 10px;
- padding-bottom: 10px; }
- .twitter-content span {
- float: left;
- width: 224px; }
- .twitter-content span a {
- color: #EB586F; }
- .featured-list {
- margin: 0;
- padding: 0;
- display: inline-block; }
- .featured-list li {
- float: left;
- width: 80px;
- height: 80px;
- margin-right: 7px;
- margin-bottom: 7px;
- overflow: hidden;
- position: relative; }
- .bottom-social-icons a {
- color: #fff;
- text-align: center;
- width: 32px;
- line-height: 32px;
- border-radius: 50px;
- border: 1px solid #fff;
- display: inline-block;
- height: 32px;
- margin-left: 5px;
- position: relative;
- overflow: hidden; }
- #copyright {
- background-color: #1d1e20;
- padding: 20px 0 10px;
- color: #fff; }
- #copyright p {
- line-height: 34px;
- color: #999; }
- #copyright p a {
- color: #fff; }
- #copyright p a:hover {
- color: #D14E63; }
- .social-icon .facebook:hover {
- background-color: #3b5998;
- border-color: #3b5998; }
- .social-icon .twitter:hover {
- background-color: #55acee;
- border-color: #55acee; }
- .social-icon .dribble:hover {
- background-color: #D34836;
- border-color: #D34836; }
- .social-icon .flickr:hover {
- background-color: #ff0084;
- border-color: #ff0084; }
- .social-icon .youtube:hover {
- background-color: #CC181E;
- border-color: #CC181E; }
- .social-icon .google-plus:hover {
- background-color: #dd4b39;
- border-color: #dd4b39; }
- .social-icon .linkedin:hover {
- background-color: #007bb5;
- border-color: #007bb5; }
- .subscribe-box {
- margin-top: 18px; }
- .subscribe-box input[type="text"] {
- outline: none;
- color: #444;
- font-size: 12px;
- padding: 6px 12px;
- border: none;
- background: #fff;
- border-radius: 0px;
- -webkit-border-radius: 0px;
- -moz-border-radius: 0px;
- -o-border-radius: 0px;
- outline: none; }
- .subscribe-box input[type="submit"] {
- display: inline-block;
- text-decoration: none;
- color: #fff;
- font-size: 12px;
- background: #EB586F;
- text-transform: uppercase;
- border: none;
- padding: 7px 16px;
- border-radius: 0px;
- -webkit-border-radius: 0px;
- -moz-border-radius: 0px;
- -o-border-radius: 0px;
- transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -webkit-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out; }
- /* Footer Widgets */
- .light-footer .widget-area {
- background: #fff; }
- .dark-footer .widget-area {
- background: #000; }
- .color-footer .widget-area {
- background: #D14E63; }
- footer .widget-title {
- text-align: left;
- margin-bottom: 30px; }
- .dark-footer .widget-title h4 {
- color: #fff; }
- .color-footer .widget-title h4 {
- color: #fff; }
- /* / End Sections */
- /* Buttons */
- .space-bottom {
- margin-bottom: 15px; }
- .btn {
- font-weight: 400;
- font-size: 14px;
- letter-spacing: 0.5px;
- -moz-transition: 0.2s ease-in;
- -o-transition: 0.2s ease-in;
- -webkit-transition: 0.2s ease-in;
- -ms-transition: 0.2s ease-in;
- transition: 0.2s ease-in;
- border-radius: 0;
- padding: 9px 10px; }
- .btn span {
- margin-left: 10px;
- margin-right: 10px; }
- .btn:hover {
- background: transparent;
- cursor: pointer; }
- .btn:focus {
- background: transparent; }
- .btn-xl {
- font-size: 20px;
- padding: 9px 10px; }
- .btn-lg {
- font-size: 15px;
- padding: 10px 32px; }
- .btn-sm {
- font-size: 12px;
- padding: 7px 6px; }
- .btn-xs {
- font-size: 10px;
- padding: 5px 8px; }
- .btn-rounded {
- border-radius: 4px !important; }
- .btn-pill {
- border-radius: 50px !important; }
- .btn-circle {
- border-radius: 50% !important;
- height: 40px;
- width: 40px;
- padding: 3px !Important; }
- .btn-square {
- height: 40px;
- width: 40px;
- border-radius: 5px;
- padding: 3px !Important; }
- .btn-link {
- color: #EB586F; }
- .btn-link:hover {
- color: #D14E63;
- text-decoration: none; }
- .btn-link:focus {
- color: #D14E63;
- text-decoration: none; }
- /* Default Button */
- .btn-common, .btn-common:active, .btn-common:focus {
- color: #EB586F;
- border: 2px solid #EB586F;
- background: transparent; }
- .btn-common:hover {
- color: #fff;
- background: #EB586F;
- border: 2px solid #EB586F; }
- .btn-filled {
- background: #EB586F;
- border: 2px solid #EB586F;
- color: #fff; }
- .btn-filled:hover {
- background: #D14E63; }
- .btn-default-filled, .btn-default-filled:active, .btn-default-filled:focus {
- color: #fff;
- background: #EB586F;
- border: 2px solid #EB586F; }
- .btn-default-filled:hover {
- color: #fff;
- background: #D14E63;
- border: 2px solid #D14E63; }
- /* / End Default Button */
- /* Success Button */
- .btn-success, .btn-success:active, .btn-success:focus {
- color: #87c056;
- border: 2px solid #87c056;
- background: transparent; }
- .btn-success:hover {
- color: #fff;
- background: #87c056;
- border: 2px solid #87c056; }
- .btn-success-filled, .btn-success-filled:active, .btn-success-filled:focus {
- color: #fff;
- background: #87c056;
- border: 2px solid #87c056; }
- .btn-success-filled:hover {
- color: #fff;
- background: #74a44a;
- border: 2px solid #74a44a; }
- /* / End Success Button */
- /* Info Button */
- .btn-info, .btn-info:active, .btn-info:focus {
- color: #4da5e2;
- border: 2px solid #4da5e2;
- background: transparent; }
- .btn-info:hover {
- color: #fff;
- background: #4da5e2;
- border: 2px solid #4da5e2; }
- .btn-info-filled, .btn-info-filled:active, .btn-info-filled:focus {
- color: #fff;
- background: #4da5e2;
- border: 2px solid #4da5e2; }
- .btn-info-filled:hover {
- color: #fff;
- background: #428fc4;
- border: 2px solid #428fc4; }
- /* / End Info Button */
- /* Warning Button */
- .btn-warning, .btn-warning:active, .btn-warning:focus {
- color: #ffcc66;
- border: 2px solid #ffcc66;
- background: transparent; }
- .btn-warning:hover {
- color: #fff;
- background: #ffcc66;
- border: 2px solid #ffcc66; }
- .btn-warning-filled, .btn-warning-filled:active, .btn-warning-filled:focus {
- color: #fff;
- background: #ffcc66;
- border: 2px solid #ffcc66; }
- .btn-warning-filled:hover {
- color: #fff;
- background: #e1b459;
- border: 2px solid #e1b459; }
- /* / End Warning Button */
- /* Danger Button */
- .btn-danger, .btn-danger:active, .btn-danger:focus {
- color: #ec7160;
- border: 2px solid #ec7160;
- background: transparent; }
- .btn-danger:hover {
- color: #fff;
- background: #ec7160;
- border: 2px solid #ec7160; }
- .btn-danger-filled, .btn-danger-filled:active, .btn-danger-filled:focus {
- color: #fff;
- background: #ec7160;
- border: 2px solid #ec7160; }
- .btn-danger-filled:hover {
- color: #fff;
- background: #cd6254;
- border: 2px solid #cd6254; }
- /* / End Danger Button */
- /* Social Buttons */
- .btn-social {
- font-size: 13px;
- padding: 8px 15px;
- letter-spacing: 0.5px;
- vertical-align: middle;
- -moz-transition: 0.2s ease-in;
- -o-transition: 0.2s ease-in;
- -webkit-transition: 0.2s ease-in;
- -ms-transition: 0.2s ease-in;
- transition: 0.2s ease-in; }
- .btn-social span {
- margin-left: 10px; }
- /* Facebook Button */
- .btn-facebook, .btn-facebook:active, .btn-facebook:focus {
- color: #4e68a1;
- background: transparent;
- border: 2px solid #4e68a1; }
- .btn-facebook:hover {
- color: #fff !important;
- background: #4e68a1;
- border: 2px solid #4e68a1; }
- .btn-facebook-filled, .btn-facebook-filled:active, .btn-facebook-filled:focus {
- color: #fff;
- background: #4e68a1;
- border: 2px solid #4e68a1; }
- .btn-facebook-filled:hover {
- color: #fff;
- background: #3b4f7a;
- border: 2px solid #3b4f7a; }
- .btn-facebook-link, .btn-facebook-link:active, .btn-facebook-link:focus {
- color: #4e68a1;
- background: transparent;
- border: none; }
- .btn-facebook-link:hover {
- color: #3b4f7a; }
- /* / End Facebook Button */
- /* Twitter Button */
- .btn-twitter, .btn-twitter:active, .btn-twitter:focus {
- color: #65b5f2;
- background: transparent;
- border: 2px solid #65b5f2; }
- .btn-twitter:hover {
- color: #fff;
- background: #65b5f2;
- border: 2px solid #65b5f2; }
- .btn-twitter-filled, .btn-twitter-filled:active, .btn-twitter-filled:focus {
- color: #fff;
- background: #65b5f2;
- border: 2px solid #65b5f2; }
- .btn-twitter-filled:hover {
- color: #fff;
- background: #5294c6;
- border: 2px solid #5294c6; }
- .btn-twitter-filled:hover {
- color: #fff;
- background: #5294c6;
- border: 2px solid #5294c6; }
- .btn-twitter-link, .btn-twitter-link:active, .btn-twitter-link:focus {
- color: #65b5f2;
- background: transparent;
- border: none; }
- .btn-twitter-link:hover {
- color: #5294c6; }
- /* / End Twitter Button */
- /* Google Button */
- .btn-google, .btn-google:active, .btn-google:focus {
- color: #e05d4b;
- background: transparent;
- border: 2px solid #e05d4b; }
- .btn-google:hover {
- color: #fff;
- background: #e05d4b;
- border: 2px solid #e05d4b; }
- .btn-google-filled, .btn-google-filled:active, .btn-google-filled:focus {
- color: #fff;
- background: #e05d4b;
- border: 2px solid #e05d4b; }
- .btn-google-filled:hover {
- color: #fff;
- background: #b94c3d;
- border: 2px solid #b94c3d; }
- .btn-google-link, .btn-google-link:active, .btn-google-link:focus {
- color: #e05d4b;
- background: transparent;
- border: none; }
- .btn-google-link:hover {
- color: #b94c3d; }
- /* / End Google Button */
- /* Linkedin Button */
- .btn-linkedin, .btn-linkedin:active, .btn-linkedin:focus {
- color: #2083bc;
- background: transparent;
- border: 2px solid #2083bc; }
- .btn-linkedin:hover {
- color: #fff;
- background: #2083bc;
- border: 2px solid #2083bc; }
- .btn-linkedin-filled, .btn-linkedin-filled:active, .btn-linkedin-filled:focus {
- color: #fff;
- background: #2083bc;
- border: 2px solid #2083bc; }
- .btn-linkedin-filled:hover {
- color: #fff;
- background: #186592;
- border: 2px solid #186592; }
- .btn-linkedin-link, .btn-linkedin-link:active, .btn-linkedin-link:focus {
- color: #2083bc;
- background: transparent;
- border: none; }
- .btn-linkedin-link:hover {
- color: #186592; }
- /* / End Linkedin Button */
- /* Pinterest Button */
- .btn-pinterest, .btn-pinterest:active, .btn-pinterest:focus {
- color: #d2373b;
- background: transparent;
- border: 2px solid #d2373b; }
- .btn-pinterest:hover {
- color: #fff;
- background: #d2373b;
- border: 2px solid #d2373b; }
- .btn-pinterest-filled, .btn-pinterest-filled:active, .btn-pinterest-filled:focus {
- color: #fff;
- background: #d2373b;
- border: 2px solid #d2373b; }
- .btn-pinterest-filled:hover {
- color: #fff;
- background: #ad2c2f;
- border: 2px solid #ad2c2f; }
- .btn-pinterest-link, .btn-pinterest-link:active, .btn-pinterest-link:focus {
- color: #d2373b;
- background: transparent;
- border: none; }
- .btn-pinterest-link:hover {
- color: #ad2c2f; }
- /* / End Pinterest Button */
- /* Dribbble Button */
- .btn-dribbble, .btn-dribbble:active, .btn-dribbble:focus {
- color: #ec5f94;
- background: transparent;
- border: 2px solid #ec5f94; }
- .btn-dribbble:hover {
- color: #fff;
- background: #ec5f94;
- border: 2px solid #ec5f94; }
- .btn-dribbble-filled, .btn-dribbble-filled:active, .btn-dribbble-filled:focus {
- color: #fff;
- background: #ec5f94;
- border: 2px solid #ec5f94; }
- .btn-dribbble-filled:hover {
- color: #fff;
- background: #b4446e;
- border: 2px solid #b4446e; }
- .btn-dribbble-link, .btn-dribbble-link:active, .btn-dribbble-link:focus {
- color: #ec5f94;
- background: transparent;
- border: none; }
- .btn-dribbble-link:hover {
- color: #b4446e; }
- /* / End Dribbble Button */
- /* / End Social Buttons */
- /* Checkboxes */
- .checkbox label {
- display: inline-block;
- position: relative;
- padding-left: 20px;
- width: 25px;
- height: 25px; }
- .checkbox label span {
- margin-top: 2px;
- position: absolute;
- white-space: nowrap; }
- .checkbox label::before {
- content: "";
- display: inline-block;
- position: absolute;
- width: 25px;
- height: 25px;
- left: 0;
- margin-left: -20px;
- border: 2px solid #ccc;
- border-radius: 5px;
- background-color: #fff;
- -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
- -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
- transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
- .checkbox label::after {
- display: inline-block;
- position: absolute;
- width: 25px;
- height: 25px;
- left: 0;
- top: 0;
- margin-left: -17px;
- padding-left: 3px;
- padding-top: 3px;
- font-size: 14px;
- color: #EB586F; }
- .checkbox + .checkbox, .radio + .radio {
- margin-top: 0; }
- .checkbox input[type="checkbox"] {
- opacity: 0; }
- .checkbox input[type="checkbox"]:checked + label::after {
- font-family: 'FontAwesome';
- content: "\f00c"; }
- .checkbox input[type="checkbox"]:disabled + label {
- opacity: 0.3; }
- .checkbox input[type="checkbox"]:disabled + label::before {
- background-color: #ddd;
- cursor: not-allowed; }
- .checkbox.checkbox-circle label::before {
- border-radius: 50%; }
- .checkbox.checkbox-inline {
- margin-top: 0; }
- .checkbox-default input[type="checkbox"]:checked + label::before {
- background-color: #EB586F;
- border-color: #EB586F; }
- .checkbox-default input[type="checkbox"]:checked + label::after {
- color: #fff; }
- .checkbox-default label {
- color: #EB586F; }
- .label {
- cursor: pointer; }
- .checkbox-primary input[type="checkbox"]:checked + label::before {
- background-color: #EB586F;
- border-color: #EB586F; }
- .checkbox-primary input[type="checkbox"]:checked + label::after {
- color: #fff; }
- .checkbox-primary label {
- color: #EB586F; }
- .checkbox-success input[type="checkbox"]:checked + label::before {
- background-color: #87c056;
- border-color: #87c056; }
- .checkbox-success input[type="checkbox"]:checked + label::after {
- color: #fff; }
- .checkbox-success label {
- color: #87c056; }
- .checkbox-info input[type="checkbox"]:checked + label::before {
- background-color: #4da5e2;
- border-color: #4da5e2; }
- .checkbox-info input[type="checkbox"]:checked + label::after {
- color: #fff; }
- .checkbox-info label {
- color: #4da5e2; }
- .checkbox-warning input[type="checkbox"]:checked + label::before {
- background-color: #ffcc66;
- border-color: #ffcc66; }
- .checkbox-warning input[type="checkbox"]:checked + label::after {
- color: #fff; }
- .checkbox-warning label {
- color: #ffcc66; }
- .checkbox-danger input[type="checkbox"]:checked + label::before {
- background-color: #ec7160;
- border-color: #ec7160; }
- .checkbox-danger input[type="checkbox"]:checked + label::after {
- color: #fff; }
- .checkbox-danger label {
- color: #ec7160; }
- /* / End Checkboxes */
- /* Radio Buttons */
- .radio {
- padding-left: 10px; }
- .radio label {
- display: inline-block;
- position: relative;
- padding-left: 20px;
- width: 25px;
- height: 25px; }
- .radio label span {
- margin-top: 2px;
- position: absolute;
- white-space: nowrap; }
- .radio label::before {
- content: "";
- display: inline-block;
- position: absolute;
- width: 25px;
- height: 25px;
- left: 0;
- margin-left: -20px;
- border: 3px solid #ccc;
- border-radius: 50%;
- background-color: #fff;
- -webkit-transition: border 0.15s ease-in-out;
- -o-transition: border 0.15s ease-in-out;
- transition: border 0.15s ease-in-out; }
- .radio label::after {
- display: inline-block;
- position: absolute;
- content: " ";
- width: 11px;
- height: 11px;
- left: 7px;
- top: 7px;
- margin-left: -20px;
- border-radius: 50%;
- background-color: #ccc;
- -webkit-transform: scale(0, 0);
- -ms-transform: scale(0, 0);
- -o-transform: scale(0, 0);
- transform: scale(0, 0);
- -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
- -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
- -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
- transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
- .radio input[type="radio"] {
- opacity: 0; }
- .radio input[type="radio"]:checked + label::after {
- -webkit-transform: scale(1, 1);
- -ms-transform: scale(1, 1);
- -o-transform: scale(1, 1);
- transform: scale(1, 1); }
- .radio input[type="radio"]:disabled + label {
- opacity: 0.3; }
- .radio input[type="radio"]:disabled + label::before {
- cursor: not-allowed; }
- .radio.radio-inline {
- margin-top: 0; }
- .radio-default input[type="radio"] + label::after {
- background-color: #EB586F; }
- .radio-default input[type="radio"]:checked + label::before {
- border-color: #EB586F; }
- .radio-default input[type="radio"]:checked + label::after {
- background-color: #EB586F; }
- .radio-default label {
- color: #EB586F; }
- .radio-primary input[type="radio"] + label::after {
- background-color: #EB586F; }
- .radio-primary input[type="radio"]:checked + label::before {
- border-color: #EB586F; }
- .radio-primary input[type="radio"]:checked + label::after {
- background-color: #EB586F; }
- .radio-primary label {
- color: #EB586F; }
- .radio-success input[type="radio"] + label::after {
- background-color: #87c056; }
- .radio-success input[type="radio"]:checked + label::before {
- border-color: #87c056; }
- .radio-success input[type="radio"]:checked + label::after {
- background-color: #87c056; }
- .radio-success label {
- color: #87c056; }
- .radio-info input[type="radio"] + label::after {
- background-color: #4da5e2; }
- .radio-info input[type="radio"]:checked + label::before {
- border-color: #4da5e2; }
- .radio-info input[type="radio"]:checked + label::after {
- background-color: #4da5e2; }
- .radio-info label {
- color: #4da5e2; }
- .radio-warning input[type="radio"] + label::after {
- background-color: #ffcc66; }
- .radio-warning input[type="radio"]:checked + label::before {
- border-color: #ffcc66; }
- .radio-warning input[type="radio"]:checked + label::after {
- background-color: #ffcc66; }
- .radio-warning label {
- color: #ffcc66; }
- .radio-danger input[type="radio"] + label::after {
- background-color: #ec7160; }
- .radio-danger input[type="radio"]:checked + label::before {
- border-color: #ec7160; }
- .radio-danger input[type="radio"]:checked + label::after {
- background-color: #ec7160; }
- .radio-danger label {
- color: #ec7160; }
- /* / End Radio Buttons */
- /* Switches */
- /* Switch Style 1 */
- .onoffswitch {
- display: inline-block;
- margin: 0 5px;
- position: relative;
- width: 70px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none; }
- .onoffswitch-checkbox {
- display: none; }
- .onoffswitch.disabled {
- opacity: 0.3;
- cursor: not-allowed; }
- .onoffswitch-label {
- display: block;
- overflow: hidden;
- cursor: pointer;
- border-radius: 5px; }
- .onoffswitch-inner {
- display: block;
- width: 200%;
- margin-left: -100%;
- -moz-transition: margin 0.3s ease-in 0s;
- -webkit-transition: margin 0.3s ease-in 0s;
- -o-transition: margin 0.3s ease-in 0s;
- transition: margin 0.3s ease-in 0s; }
- .onoffswitch-inner:before, .onoffswitch-inner:after {
- display: block;
- float: left;
- width: 50%;
- height: 30px;
- padding: 0;
- line-height: 30px;
- font-size: 14px;
- font-family: "Lato", sans-serif;
- font-weight: 700;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- border-radius: 5px; }
- .onoffswitch-inner:before {
- content: "ON";
- padding-left: 10px;
- background-color: #ddd;
- color: #EB586F;
- border-radius: 5px; }
- .onoffswitch-inner.primary-switch:before {
- color: #EB586F; }
- .onoffswitch-inner.success-switch:before {
- color: #87c056; }
- .onoffswitch-inner.info-switch:before {
- color: #4da5e2; }
- .onoffswitch-inner.warning-switch:before {
- color: #ffcc66; }
- .onoffswitch-inner.danger-switch:before {
- color: #ec7160; }
- .onoffswitch-inner:after {
- content: "OFF";
- padding-right: 10px;
- background-color: #ddd;
- color: #EB586F;
- text-align: right;
- border-radius: 5px; }
- .onoffswitch-switch {
- display: block;
- background: #EB586F;
- border-radius: 5px;
- height: 30px;
- width: 24px;
- margin: 0px;
- top: 0;
- bottom: 0;
- right: 46px;
- position: absolute;
- -moz-transition: all 0.3s ease-in 0s;
- -webkit-transition: all 0.3s ease-in 0s;
- -o-transition: all 0.3s ease-in 0s;
- transition: all 0.3s ease-in 0s; }
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
- margin-left: 0; }
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
- right: 0;
- background: #EB586F; }
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch.primary-switch {
- background: #EB586F; }
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch.success-switch {
- background: #87c056; }
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch.info-switch {
- background: #4da5e2; }
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch.warning-switch {
- background: #ffcc66; }
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch.danger-switch {
- background: #ec7160; }
- /* / End Switch Style 1 */
- /* Switch Style 2 */
- .onoffswitch2 {
- display: inline-block;
- margin: 0 5px;
- position: relative;
- width: 70px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none; }
- .onoffswitch2-checkbox {
- display: none; }
- .onoffswitch2.disabled {
- opacity: 0.3;
- cursor: not-allowed; }
- .onoffswitch2-label {
- display: block;
- overflow: hidden;
- cursor: pointer;
- border-radius: 30px; }
- .onoffswitch2-inner {
- display: block;
- width: 200%;
- margin-left: -100%;
- -moz-transition: margin 0.3s ease-in 0s;
- -webkit-transition: margin 0.3s ease-in 0s;
- -o-transition: margin 0.3s ease-in 0s;
- transition: margin 0.3s ease-in 0s; }
- .onoffswitch2-inner:before, .onoffswitch2-inner:after {
- display: block;
- float: left;
- width: 50%;
- height: 30px;
- padding: 0;
- line-height: 30px;
- font-size: 14px;
- font-family: "Lato", sans-serif;
- font-weight: 700;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- border-radius: 30px; }
- .onoffswitch2-inner:before {
- content: "ON";
- padding-left: 10px;
- background-color: #EB586F;
- color: #ddd;
- border-radius: 30px 0 0 30px; }
- .onoffswitch2-inner.primary-switch:before {
- background-color: #EB586F; }
- .onoffswitch2-inner.success-switch:before {
- background-color: #87c056; }
- .onoffswitch2-inner.info-switch:before {
- background-color: #4da5e2; }
- .onoffswitch2-inner.warning-switch:before {
- background-color: #ffcc66; }
- .onoffswitch2-inner.danger-switch:before {
- background-color: #ec7160; }
- .onoffswitch2-inner:after {
- content: "OFF";
- padding-right: 10px;
- background-color: #ddd;
- color: #EB586F;
- text-align: right;
- border-radius: 0 30px 30px 0; }
- .onoffswitch2-switch {
- display: block;
- background: #EB586F;
- border-radius: 50%;
- height: 24px;
- width: 24px;
- margin: 0px;
- top: 3px;
- bottom: 0;
- right: 42px;
- position: absolute;
- -moz-transition: all 0.3s ease-in 0s;
- -webkit-transition: all 0.3s ease-in 0s;
- -o-transition: all 0.3s ease-in 0s;
- transition: all 0.3s ease-in 0s; }
- .onoffswitch2-checkbox:checked + .onoffswitch2-label .onoffswitch2-inner {
- margin-left: 0; }
- .onoffswitch2-checkbox:checked + .onoffswitch2-label .onoffswitch2-switch {
- right: 3px;
- background: #ddd; }
- /* / End Switch Style 2 */
- /* / End Switches */
- /* Paginations */
- .pagination .btn {
- font-size: 14px;
- padding: 4px 10px;
- margin: 0 5px; }
- .pagination .btn-direction {
- font-size: 12px;
- padding: 5.5px 8px; }
- .pagination .btn-default {
- color: #EB586F;
- border: 1px solid #ddd;
- background: transparent; }
- .pagination .btn-default:hover {
- color: #fff;
- background: #EB586F;
- border: 1px solid #EB586F; }
- .pagination .btn-active {
- color: #fff !important;
- background: #EB586F !important;
- border: 1px solid #EB586F !important; }
- .pagination .btn-default-filled {
- color: #EB586F;
- background: #ddd;
- border: 1px solid #ddd; }
- .pagination .btn-default-filled:hover {
- color: #fff;
- background: #D14E63;
- border: 1px solid #D14E63; }
- .pagination .btn-circle {
- border-radius: 50%;
- height: 30px;
- width: 30px;
- padding: 3px !important; }
- /* / End Paginations */
- /* / End Button Groups */
- .btn-group.open .dropdown-toggle {
- -webkit-box-shadow: none;
- box-shadow: none; }
- .btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
- color: #fff;
- background-color: #EB586F;
- border-color: #EB586F; }
- .btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
- color: #fff;
- background-color: #EB586F;
- border-color: #EB586F; }
- .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
- color: #fff;
- background-color: #EB586F;
- border-color: #EB586F; }
- .btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {
- color: #fff;
- background-color: #EB586F;
- border-color: #EB586F; }
- .btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover {
- color: #fff;
- background-color: #87c056;
- border-color: #87c056; }
- .btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success {
- color: #fff;
- background-color: #87c056;
- border-color: #87c056; }
- .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover {
- color: #fff;
- background-color: #4da5e2;
- border-color: #4da5e2; }
- .btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info {
- color: #fff;
- background-color: #4da5e2;
- border-color: #4da5e2; }
- .btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover {
- color: #fff;
- background-color: #ffcc66;
- border-color: #ffcc66; }
- .btn-warning.active, .btn-warning:active, .open > .dropdown-toggle.btn-warning {
- color: #fff;
- background-color: #ffcc66;
- border-color: #ffcc66; }
- .btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover {
- color: #fff;
- background-color: #ec7160;
- border-color: #ec7160; }
- .btn-danger.active, .btn-danger:active, .open > .dropdown-toggle.btn-danger {
- color: #fff;
- background-color: #ec7160;
- border-color: #ec7160; }
- /* / End Dropdown Buttons */
- /*
- 1.) Standard Buttons
- */
- .button-title {
- border-bottom: 1px solid #ffffff;
- color: #ffffff;
- opacity: 0.2;
- text-align: left; }
- .button-title span {
- display: inline-block;
- font-size: 14px;
- margin-bottom: 20px;
- text-transform: uppercase; }
- .btn {
- font-size: 14px;
- padding: 11px 27px; }
- .btn:focus {
- outline: none; }
- .std-btn {
- margin-bottom: 20px; }
- .icon-cloud-download {
- margin-right: 13px;
- font-size: 16px;
- vertical-align: -2px; }
- .btn-primary {
- margin-right: 20px;
- border: none; }
- .light-btn {
- background: #87c056;
- color: #fff;
- border: 1px solid #87c056; }
- .light-btn:hover, .light-btn:focus, .dark-btn:hover, .dark-btn:focus, .light-btn:active:focus, .dark-btn:active:focus {
- background: transparent;
- border: 1px solid #fff;
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease;
- border-color: #fff; }
- .dark-btn {
- border: 1px solid #00d5c3;
- background: #00d5c3;
- color: #2f3542; }
- .dark-btn:hover {
- color: #fff;
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease; }
- .white-btn {
- border: 1px solid #fff;
- background: #fff;
- color: #2f3542; }
- .white-btn:hover, .white-btn:focus, .white-btn:active:focus {
- background: transparent;
- color: #00d5c3;
- border: 1px solid #00d5c3;
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease; }
- .black-btn {
- background: #1a1c20;
- color: #00d5c3;
- border: 1px solid #1a1c20; }
- .black-btn:hover, .black-btn:focus, .black-btn:active:focus {
- background: #00d5c3;
- color: #1a1c20;
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease;
- border: 1px solid #00d5c3; }
- .line-btn {
- background: transparent;
- border: 1px solid #00d5c3;
- color: #00d5c3; }
- .line-btn:hover, .line-btn:focus, .line-btn:active:focus {
- background: #00d5c3;
- color: #fff;
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease; }
- .line2-btn {
- background: transparent;
- border: 1px solid #fff;
- color: #fff; }
- .line2-btn:hover, .line2-btn:focus, .line2-btn:active:focus {
- background: #00d5c3;
- color: #1a1c20;
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease; }
- .learn-more .btn {
- text-transform: uppercase;
- font-size: 12px;
- font-weight: 700;
- letter-spacing: 2.33px; }
- .read-more .btn {
- font-weight: 600;
- min-width: 125px; }
- /*
- 2.) Small Buttons
- */
- .btn-sm {
- font-size: 12px;
- min-width: 122px;
- padding: 5px 11px; }
- .learn-more .btn.btn-sm {
- font-size: 11px; }
- .read-more .btn.btn-sm {
- min-width: 94px; }
- /*
- 3.) large Buttons
- */
- .btn-lg {
- font-size: 18px;
- min-width: 198px;
- padding: 15px 11px; }
- .learn-more .btn-lg {
- font-size: 17px; }
- .learn-more2 .btn-lg {
- min-width: 170px; }
- /*
- 4.)Extra large Buttons
- */
- .btn-xlg {
- font-size: 22px;
- min-width: 233px;
- padding: 22px 27px;
- font-weight: 600; }
- .learn-more .btn-xlg {
- font-size: 19px; }
- .read-more .btn-xlg {
- min-width: 186px;
- font-size: 21px; }
- /*
- 5.)download Buttons
- */
- .download-buttons {
- margin-bottom: 100px; }
- .download-btn {
- border-radius: 10px;
- min-width: 215px;
- padding: 37px 20px; }
- .white-btn-group .download-btn {
- margin-right: 30px; }
- .white-btn-group, .black-btn-group {
- display: inline-block; }
- .black {
- background: #000;
- border: medium none;
- margin-right: 20px; }
- .black-btn-group {
- margin-left: 18px; }
- /* Navigations */
- .bg-faded {
- background-color: transparent; }
- .bg-default {
- background: #F8F8F8;
- border: none; }
- .bg-default .navbar-nav .nav-link {
- color: #444; }
- .bg-black {
- background-color: #5F5F5F; }
- .bg-black .navbar-nav .nav-link {
- color: #fff; }
- .navbar-fixed-top {
- border-radius: 0; }
- .navbar-brand {
- color: #ccc !important;
- font-size: 20px;
- line-height: 20px;
- font-weight: 700;
- padding: 20px 15px; }
- .navbar-brand > img {
- width: auto; }
- .navbar-light .navbar-brand, .navbar-light .navbar-toggler {
- color: #EB586F !important; }
- .navbar-toggle .icon-bar {
- background: #EB586F;
- width: 20px;
- height: 3px;
- border-radius: 5px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px; }
- .navbar-collapse {
- text-align: center; }
- .navbar {
- padding: 0; }
- .dropdown-menu {
- padding: 10px 0px;
- border: 1px solid #e7e7e7;
- border-radius: 0; }
- .dropdown-item {
- padding: 10px 22px;
- font-size: 14px;
- width: 170px; }
- /* Default Navbar */
- .navbar-nav .nav-link {
- color: #fff;
- font-size: 14px;
- margin-right: 18px;
- font-weight: 700;
- padding: 18px 0px; }
- .navbar-light .navbar-nav .nav-link:hover {
- color: #EB586F; }
- .navbar-light .navbar-nav .nav-link:hover:focus {
- color: #EB586F; }
- .navbar-light .navbar-nav > .active > a, .navbar-light .navbar-nav > .active > a:focus, .navbar-light .navbar-nav > .active > a:hover {
- color: #EB586F;
- background-color: transparent; }
- .navbar-light .navbar-nav > .open > a, .navbar-light .navbar-nav > .open > a:focus, .navbar-light .navbar-nav > .open > a:hover {
- color: #EB586F;
- background-color: transparent; }
- .navbar-light .navbar-toggle .icon-bar {
- background-color: #EB586F; }
- .navbar-light .navbar-toggle {
- border-color: transparent; }
- .navbar-light .navbar-toggle:hover, .navbar-light .navbar-toggle:focus {
- background-color: transparent; }
- /* / End Default Navbar */
- /* Default Navbar Inverse */
- .navbar-inverse .navbar-nav > li > a {
- color: #ccc;
- font-size: 14px;
- font-weight: 700; }
- .navbar-inverse .navbar-nav > li > a:hover {
- color: #EB586F; }
- .navbar-inverse .navbar-nav > li > a:focus {
- color: #ccc !important; }
- .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
- color: #EB586F;
- background-color: transparent; }
- .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
- color: #EB586F;
- background-color: transparent; }
- .navbar-inverse .navbar-toggle .icon-bar {
- background-color: #EB586F; }
- .navbar-inverse .navbar-toggle {
- border-color: transparent; }
- .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
- background-color: transparent; }
- .navbar-inverse .dropdown-menu {
- background-color: #222; }
- .navbar-inverse .dropdown-menu .divider {
- background-color: #333; }
- .navbar-inverse .dropdown-menu > li > a {
- color: #ccc; }
- .navbar-inverse .dropdown-menu > li > a:hover {
- color: #fff;
- background-color: #333; }
- /* / End Default Navbar Inverse */
- /* Split Menu */
- .split-menu {
- text-align: center; }
- .split-menu .navbar-brand {
- float: none;
- display: inline-block; }
- /* / End Split Menu */
- /* Stacked Menu */
- .stacked-menu {
- text-align: center; }
- .stacked-menu .navbar-brand {
- float: none;
- display: inline-block; }
- .stacked-menu .navbar-nav {
- float: none;
- display: inline-block; }
- .stacked-menu .navbar-nav > li > a {
- padding-top: 0; }
- /* / End Stacked Menu */
- /* / End Default Menus */
- /* Navbar-1 */
- .navbar-1 {
- border-radius: 0; }
- .navbar-1.navbar-light {
- background-color: #f7f7f7;
- border-color: transparent; }
- .navbar-inverse {
- background-color: #222;
- border-color: transparent; }
- /* Transparent Navigations */
- .nav-bg-default {
- background: url("../images/nav-bg-default.jpg");
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center; }
- .nav-bg-inverse {
- background: url("../images/nav-bg-inverse.jpg");
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center; }
- .nav-bg-default .navbar {
- margin-bottom: 0;
- opacity: 0.8; }
- .nav-bg-inverse .navbar {
- margin-bottom: 0;
- opacity: 0.8; }
- .navbar-light-transparent {
- background-color: transparent !important; }
- .navbar-inverse-transparent {
- background-color: transparent !important; }
- .navbar-light-transparent.navbar-light .navbar-nav > li > a {
- color: #fff; }
- .navbar-light-transparent.navbar-light .navbar-nav > li > a:hover {
- color: #EB586F; }
- .navbar-light-transparent.navbar-light .navbar-nav > li > a:focus {
- color: #fff !important; }
- .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 {
- color: #EB586F;
- background-color: transparent; }
- .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 {
- color: #EB586F;
- background-color: transparent; }
- .navbar-light-transparent.navbar-light .navbar-toggle .icon-bar {
- background-color: #EB586F; }
- .navbar-light-transparent.navbar-light .navbar-toggle {
- border-color: transparent; }
- .navbar-light-transparent.navbar-light .navbar-toggle:hover, .navbar-light-transparent.navbar-light .navbar-toggle:focus {
- background-color: transparent; }
- .navbar-inverse-transparent.navbar-inverse .navbar-nav > li > a {
- color: #000; }
- .navbar-inverse-transparent.navbar-inverse .navbar-nav > li > a:hover {
- color: #EB586F; }
- .navbar-inverse-transparent.navbar-inverse .navbar-nav > li > a:focus {
- color: #000 !important; }
- .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 {
- color: #EB586F;
- background-color: transparent; }
- .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 {
- color: #EB586F;
- background-color: transparent; }
- .navbar-inverse-transparent.navbar-inverse .navbar-toggle .icon-bar {
- background-color: #EB586F; }
- .navbar-inverse-transparent .navbar-inverse .navbar-toggle {
- border-color: transparent; }
- .navbar-inverse-transparent.navbar-inverse .navbar-toggle:hover, .navbar-inverse-transparent.navbar-inverse .navbar-toggle:focus {
- background-color: transparent; }
- /* / End Transparent Navigations */
- /* Navigations with Buttons */
- .btn-default-nav {
- background: transparent;
- font-size: 12px !important;
- font-weight: 700;
- border: 2px solid #444;
- margin: 13px 0 0 15px;
- padding: 7px 0; }
- .btn-default-nav a {
- color: #444;
- padding: 10px 13px !important; }
- .btn-default-nav a:hover {
- color: #EB586F !important; }
- .btn-default-nav:hover {
- border: 2px solid #EB586F; }
- .btn-inverse-nav {
- background: transparent;
- font-size: 12px !important;
- font-weight: 700;
- border: 2px solid #ccc;
- margin: 13px 0 0 15px;
- padding: 7px 0; }
- .btn-inverse-nav a {
- color: #ccc;
- padding: 10px 13px !important; }
- .btn-inverse-nav a:hover {
- color: #EB586F !important; }
- .btn-inverse-nav:hover {
- border: 2px solid #EB586F; }
- .navbar-light-transparent .btn-default-nav a {
- color: #fff; }
- .navbar-light-transparent .btn-default-nav {
- border: 2px solid #fff; }
- .navbar-light-transparent .btn-default-nav:hover {
- border: 2px solid #EB586F; }
- .navbar-inverse-transparent .btn-inverse-nav a {
- color: #000; }
- .navbar-inverse-transparent .btn-inverse-nav {
- border: 2px solid #000; }
- .navbar-inverse-transparent .btn-inverse-nav:hover {
- border: 2px solid #EB586F; }
- .form-inline .form-control {
- margin: 0;
- border-radius: 50px;
- min-height: 42px;
- padding: 7px 20px;
- background: transparent; }
- /* Top Menus */
- .top-menu {
- background-color: #f7f7f7; }
- .top-menu-inverse {
- background-color: #222; }
- .top-menu p {
- margin-bottom: 0;
- padding: 9px 15px; }
- .top-menu-bg p {
- padding: 9px 0; }
- .top-menu-bg-inverse p {
- padding: 9px 0; }
- .top-menu a {
- color: #444 !important;
- font-size: 12px !important;
- margin-right: 10px; }
- .top-menu-inverse a {
- color: #ccc !important; }
- .top-menu a:hover {
- color: #EB586F !important; }
- .top-menu .left i {
- margin-right: 5px; }
- .top-menu .right {
- float: right; }
- .top-menu .right a {
- margin: 0 0 0 15px; }
- .top-menu-bg {
- background: url("../images/nav-bg-default.jpg");
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center; }
- .top-menu-bg-inverse {
- background: url("../images/nav-bg-inverse.jpg");
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center; }
- .top-menu .container {
- padding: 0 30px; }
- .top-menu-bg a {
- color: #fff !important; }
- .top-menu-bg-inverse a {
- color: #000 !important; }
- .btn-top-menu {
- background: transparent;
- font-size: 10px !important;
- font-weight: 700;
- border: 2px solid #444;
- margin: -3px 0 0 10px;
- padding: 5px 0; }
- .btn-top-menu:hover {
- border: 2px solid #EB586F; }
- .btn-top-menu a {
- font-size: 10px !important;
- margin: 0 !important;
- padding: 8px; }
- .btn-top-menu-inverse {
- background: transparent;
- font-size: 10px !important;
- font-weight: 700;
- border: 2px solid #ccc;
- margin: -3px 0 0 10px;
- padding: 5px 0; }
- .btn-top-menu-inverse:hover {
- border: 2px solid #EB586F; }
- .btn-top-menu-inverse a {
- font-size: 10px !important;
- margin: 0 !important;
- padding: 8px; }
- .top-menu-bg .btn-top-menu {
- border: 2px solid #fff; }
- .top-menu-bg .btn-top-menu:hover {
- border: 2px solid #EB586F; }
- .top-menu-bg-inverse .btn-top-menu-inverse {
- border: 2px solid #000; }
- .top-menu-bg-inverse .btn-top-menu-inverse:hover {
- border: 2px solid #EB586F; }
- /* / End Top Menus */
- .tbtn {
- font-size: 30px;
- height: 42px;
- width: 120px;
- padding: 8px;
- cursor: pointer;
- position: fixed;
- background: #E74C3C;
- z-index: 999;
- top: 124px;
- left: 0px; }
- .tbtn p {
- font-size: 11px;
- color: #fff; }
- .tbtn p i {
- margin-right: 4px;
- font-size: 12px; }
- .title-menu {
- font-size: 12px;
- padding: 28px 15px;
- text-transform: uppercase; }
- .navmenu, .navbar-offcanvas {
- width: 200px;
- z-index: 99999; }
- .navmenu-default, .navbar-default .navbar-offcanvas {
- background-color: #fff;
- border-left: 1px solid #eee; }
- .navmenu-default .navmenu-nav > li > a:hover,
- .navbar-default .navbar-offcanvas .navmenu-nav > li > a:hover,
- .navmenu-default .navmenu-nav > li > a:focus,
- .navbar-default .navbar-offcanvas .navmenu-nav > li > a:focus {
- color: #EB586F;
- background-color: transparent; }
- .navmenu-default .navmenu-nav > li {
- border-bottom: 1px solid #eee;
- line-height: 20px; }
- .navmenu-default .navmenu-nav > li > a,
- .navbar-default .navbar-offcanvas .navmenu-nav > li > a {
- color: #444;
- padding: 0px 15px;
- font-size: 12px; }
- nav#menu span.fa.fa-bars:hover {
- color: #EB586F; }
- .navmenu-default .navmenu-nav > .active > a,
- .navbar-default .navbar-offcanvas .navmenu-nav > .active > a,
- .navmenu-default .navmenu-nav > .active > a:hover,
- .navbar-default .navbar-offcanvas .navmenu-nav > .active > a:hover,
- .navmenu-default .navmenu-nav > .active > a:focus,
- .navbar-default .navbar-offcanvas .navmenu-nav > .active > a:focus {
- color: #EB586F; }
- .close {
- background: transparent;
- padding: 4px 12px;
- opacity: 1;
- position: absolute;
- top: 14px;
- right: 0px; }
- .close i {
- background: #EB586F;
- color: #fff;
- border-radius: 4px;
- font-size: 16px;
- width: 32px;
- height: 32px;
- text-align: center;
- line-height: 30px; }
- #services {
- padding: 30px 0; }
- .service-box {
- margin-top: 15px;
- margin-bottom: 15px; }
- .service-box .service-icon {
- float: left;
- margin-top: 5px; }
- .service-box .service-icon i {
- font-size: 32px;
- color: #EB586F; }
- .service-box .service-content {
- padding-left: 48px; }
- .service-box .service-content h4 {
- font-size: 18px;
- margin-bottom: 10px;
- font-weight: 700;
- transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -webkit-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out; }
- .service-box .service-content h4 a {
- color: #444; }
- .service-box .service-content h4 a:hover {
- color: #EB586F; }
- .service-center .service-icon {
- float: none;
- width: 60px;
- height: 60px;
- margin: 0px auto 20px;
- background: #ddd;
- line-height: 70px;
- border-radius: 4px;
- text-align: center; }
- .service-center .service-content {
- padding-left: 0; }
- .sub-title {
- margin-bottom: 40px; }
- .sub-title {
- color: #999;
- font-size: 24px;
- font-weight: 400; }
- .image-service-box h4 {
- font-weight: 700;
- font-size: 16px; }
- .image-service-box h4 a {
- color: #444; }
- .image-service-box h4 a:hover {
- color: #EB586F; }
- .image-service-box .service-text {
- background: #f5f5f5;
- padding: 15px;
- border: 1px solid #e3e3e3; }
- /* Team Item */
- .team-item figure {
- position: relative;
- overflow: hidden;
- width: 100%;
- margin: 0; }
- .team-item figure img {
- width: 100%;
- height: auto; }
- .team-item figure figcaption {
- height: 100%;
- position: absolute;
- top: 0;
- background: rgba(0, 0, 0, 0.85);
- opacity: 0;
- width: 100%;
- transition: all 0.3s ease-in-out 0s;
- -moz-transition: all 0.3s ease-in-out 0s;
- -webkit-transition: all 0.3s ease-in-out 0s;
- -o-transition: all 0.3s ease-in-out 0s; }
- .team-item figure figcaption .details {
- position: absolute;
- top: 30%; }
- .team-item figure figcaption .content-white {
- font-size: 13px;
- text-align: center;
- color: #FFF;
- margin: 0 auto;
- line-height: 18px;
- width: 65%;
- -webkit-transform: translateY(-50px);
- transform: translateY(-50px);
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- transition: all 0.5s ease; }
- .team-item figure figcaption .small-divider {
- margin: 12px auto 6px;
- width: 0px;
- background: #fff;
- height: 1px;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- transition: all 0.5s ease; }
- .team-item figure:hover figcaption {
- opacity: 1; }
- .team-item figure:hover .small-divider {
- width: 62px;
- background: #fff; }
- .team-item figure:hover figcaption .content-white {
- -webkit-transform: translateY(0px);
- transform: translateY(0px); }
- .team-item figure:hover .social a {
- -webkit-transform: translateY(0px);
- transform: translateY(0px); }
- .team-item .social {
- text-align: center;
- margin-top: 15px; }
- .team-item .social .facebook,
- .team-item .social .twitter,
- .team-item .social .google-plus {
- font-size: 24px;
- line-height: normal;
- outline: none;
- border-radius: 50%;
- color: #fff;
- width: 42px;
- height: 42px;
- line-height: 42px;
- text-align: center;
- display: inline-block;
- -webkit-transform: translateY(50px);
- transform: translateY(50px);
- margin-right: 5px; }
- .team-item .social .facebook {
- -webkit-transition: all 400ms ease;
- transition: all 400ms ease; }
- .team-item .social .twitter {
- -webkit-transition: all 500ms ease;
- transition: all 500ms ease; }
- .team-item .social .google-plus {
- -webkit-transition: all 600ms ease;
- transition: all 600ms ease; }
- .team-item .social a:hover {
- background: transparent; }
- .social .fa-facebook:hover {
- color: #3b5998; }
- .social .fa-twitter:hover {
- color: #55acee; }
- .social .fa-instagram:hover {
- color: #fb3958; }
- .info {
- background: #F6F6F6;
- padding: 15px 0 10px;
- text-align: center; }
- .info h2 {
- color: #000;
- font-size: 18px; }
- .info p {
- color: #000;
- font-size: 12px;
- font-weight: 300;
- line-height: 22px;
- text-transform: uppercase; }
- .members {
- text-align: center; }
- .members .memeber-img {
- margin-bottom: 30px; }
- .members .member-content .member-name {
- font-size: 25px;
- line-height: 33px;
- margin: 0; }
- .members .member-content .member-position {
- font-size: 14px;
- margin-top: 10px; }
- /* team members tow */
- .team-members-tow figure {
- position: relative;
- cursor: pointer; }
- .team-members-tow figure:hover .image-overlay {
- opacity: 1; }
- .team-members-tow figure:hover .info-text {
- -webkit-transform: translateY(0px);
- transform: translateY(0px); }
- .team-members-tow figure:hover .social-icons {
- -webkit-transform: translateY(0px);
- transform: translateY(0px); }
- .team-members-tow .image-overlay {
- height: 100%;
- position: absolute;
- top: 0;
- background: rgba(0, 0, 0, 0.85);
- opacity: 0;
- width: 100%;
- transition: all 0.3s ease-in-out 0s;
- -moz-transition: all 0.3s ease-in-out 0s;
- -webkit-transition: all 0.3s ease-in-out 0s;
- -o-transition: all 0.3s ease-in-out 0s; }
- .team-members-tow .overlay-text {
- color: #ffffff;
- padding-top: 30%; }
- .team-members-tow .overlay-text .info-text {
- -webkit-transform: translateY(50px);
- transform: translateY(50px);
- transition: all 0.3s ease-in-out 0s;
- -moz-transition: all 0.3s ease-in-out 0s;
- -webkit-transition: all 0.3s ease-in-out 0s;
- -o-transition: all 0.3s ease-in-out 0s; }
- .team-members-tow .overlay-text .info-text strong {
- display: block;
- font-size: 22px;
- font-weight: 700;
- margin-bottom: 5px; }
- .team-members-tow .overlay-text .info-text span {
- font-size: 14px;
- font-weight: 400;
- font-style: italic; }
- .team-members-tow .overlay-text .small-divider {
- margin-bottom: 30px;
- border-color: #fff;
- margin-top: 30px;
- width: 50px; }
- .team-members-tow .social-icons {
- padding-left: 0;
- -webkit-transform: translateY(-50px);
- transform: translateY(-50px);
- transition: all 0.3s ease-in-out 0s;
- -moz-transition: all 0.3s ease-in-out 0s;
- -webkit-transition: all 0.3s ease-in-out 0s;
- -o-transition: all 0.3s ease-in-out 0s; }
- .team-members-tow .social-icons li {
- display: inline-block;
- margin: 0 10px; }
- .team-members-tow .social-icons li a i {
- font-size: 24px;
- color: #fff; }
- .team-members-tow .social-icons .fa-facebook:hover {
- color: #3b5998; }
- .team-members-tow .social-icons .fa-twitter:hover {
- color: #55acee; }
- .team-members-tow .social-icons .fa-instagram:hover {
- color: #fb3958; }
- /* About */
- #about {
- padding: 30px 0; }
- .about h5 {
- font-size: 18px; }
- .about h5 a {
- color: #444; }
- .about h5 a:hover {
- color: #EB586F; }
- .about.block img {
- border-radius: 50%;
- max-width: 100px;
- margin-bottom: 15px; }
- .testimonial {
- position: relative; }
- #facts {
- padding: 60px 0; }
- #facts .fact-icon {
- color: #EB586F;
- font-size: 46px;
- display: block;
- margin-top: 0;
- margin-bottom: 20px; }
- .timer {
- color: #444;
- font-size: 48px;
- line-height: 1.2;
- margin-top: 0;
- margin-bottom: 20px; }
- .fact-title {
- color: #444;
- font-size: 18px;
- font-weight: 700;
- margin-bottom: 30px; }
- #single-testimonial-item .item {
- margin: 10px; }
- #single-testimonial-item .property-main {
- margin-bottom: 0; }
- #single-testimonial-item .owl-controls .owl-buttons {
- position: relative;
- top: -160px;
- left: 0; }
- #single-testimonial-item .owl-controls .owl-buttons div.owl-prev {
- float: left;
- margin-left: -45px; }
- #single-testimonial-item .owl-controls .owl-buttons div.owl-next {
- float: right !important;
- margin-right: -45px; }
- .owl-theme .owl-buttons div {
- width: 40px;
- height: 40px;
- display: block !important;
- background: #EB586F !important;
- text-align: center;
- display: inline-block;
- opacity: 1 !important;
- border-radius: 0 !important;
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.18), 0 2px 5px 0 rgba(0, 0, 0, 0.15);
- transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -webkit-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out; }
- .owl-theme .owl-buttons div:hover {
- box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
- opacity: 0.8 !important; }
- .owl-theme .owl-buttons div i {
- color: #fff;
- font-size: 16px;
- line-height: 32px; }
- /* / End About */
- /* Start Tesitmonial */
- .single-testimonial-area {
- background-image: url(../img/about/testimonial-bg.jpg);
- background-size: cover;
- padding: 60px 0; }
- .single-testimonial-area .testimonial-inner blockquote {
- font-size: 14px;
- color: #fff;
- text-align: center; }
- .single-testimonial-area .testimonial-inner .testimonial-images {
- text-align: center; }
- .single-testimonial-area .testimonial-inner .testimonial-images img {
- box-shadow: 0 0 3px #ddd;
- height: 90px;
- margin: 0 auto;
- border-radius: 50%;
- padding: 5px;
- width: 90px; }
- .single-testimonial-area .testimonial-inner .testimonial-footer {
- font-size: 16px;
- color: #fff;
- text-align: center;
- margin-top: 20px; }
- .single-testimonial-area .testimonial-inner .testimonial-footer a {
- color: #EB586F;
- font-size: 15px; }
- /* End Tesitmonial */
- /* List Style */
- .list-title {
- margin-bottom: 30px;
- font-size: 27px; }
- .list-style li {
- margin-bottom: 15px;
- font-size: 14px;
- position: relative;
- list-style: none; }
- .list-style li i {
- margin-right: 10px;
- color: #EB586F; }
- /* Features Header */
- .features-header {
- background: #f5f5f5;
- margin: 30px 0;
- padding: 30px 30px; }
- .features-wrap {
- background: #f5f5f5;
- padding: 30px 30px 0px;
- margin-bottom: 50px; }
- /* Features Box */
- .featured-box {
- margin-bottom: 30px; }
- .featured-box .featured-icon {
- float: left; }
- .featured-box .featured-icon i {
- width: 48px;
- height: 48px;
- color: #EB586F;
- border: 1px solid #EB586F;
- text-align: center;
- line-height: 48px;
- font-size: 22px;
- border-radius: 50%;
- transition: all 0.4s ease;
- -moz-transition: all 0.4s ease;
- -webkit-transition: all 0.4s ease;
- -o-transition: all 0.4s ease; }
- .featured-box .featured-content {
- padding-left: 64px; }
- .featured-box .featured-content h4 {
- font-size: 18px;
- margin-bottom: 10px; }
- .featured-box:hover .featured-icon i {
- background: #EB586F;
- color: #fff; }
- .featured-center {
- text-align: center; }
- .featured-center .featured-icon {
- float: none;
- margin-bottom: 20px; }
- .featured-center .border-icon i {
- font-size: 30px;
- border: none; }
- .featured-center .featured-content {
- padding-left: 0; }
- .featured-img {
- margin-bottom: 30px; }
- .featured-img .featured-content {
- background: #f5f5f5;
- padding: 15px; }
- .featured-img .featured-content h4 {
- font-size: 18px;
- margin-bottom: 10px; }
- /* Pricing Table */
- #pricing {
- padding: 30px 0; }
- .pricing-table {
- background: #353b48;
- padding: 30px;
- text-align: center; }
- .pricing-table .table-header h3 {
- font-size: 20px;
- margin-bottom: 20px;
- color: #fff; }
- .pricing-table .plan .price {
- font-size: 24px;
- color: #fff; }
- .pricing-table .plan-info {
- margin-top: 30px; }
- .pricing-table .plan-info p {
- color: #fff; }
- .pricing-table .button-area {
- margin-top: 30px; }
- /* Pricing Table */
- .pricing-tables {
- padding: 25px 0;
- text-align: center; }
- .pricing-tables .pricing-table-block {
- background: #f6f6f6;
- text-align: center;
- position: relative;
- background-color: #fff;
- -webkit-transition: all 0.2s linear;
- -moz-transition: all 0.2s linear;
- -o-transition: all 0.2s linear;
- transition: all 0.2s linear;
- border: 1px solid #f1f1f1; }
- .pricing-tables .highlight-plan {
- margin: -15px 0;
- margin-right: -1px;
- z-index: 1;
- background: #f6f6f6; }
- .pricing-tables .pricing-table-block .highlight-plan .plan-name {
- padding: 25px 0; }
- .pricing-tables .pricing-table-block .highlight-plan .plan-name h3 {
- color: #fff; }
- .pricing-tables .pricing-table-block .highlight-plan .plan-signup {
- padding: 30px 0;
- background: #EB586F; }
- .pricing-tables .pricing-table-block .highlight-plan .plan-signup .btn-system.border-btn {
- border-color: #fff;
- color: #fff; }
- .pricing-table-block {
- background: #f6f6f6;
- text-align: center;
- position: relative;
- -webkit-transition: all 0.2s linear;
- -moz-transition: all 0.2s linear;
- -o-transition: all 0.2s linear;
- transition: all 0.2s linear; }
- .pricing-table-block .plan-name {
- padding: 25px;
- background: #EB586F;
- margin-bottom: 20px; }
- .pricing-table-block .plan-name h3 {
- font-size: 22px;
- line-height: 24px;
- margin: 0;
- color: #fff; }
- .pricing-table-block .plan-price {
- margin-bottom: 30px; }
- .pricing-table-block .plan-price .price-value {
- font-size: 50px;
- line-height: 76px;
- font-weight: 700;
- color: #333333; }
- .pricing-table-block .plan-price .price-value span {
- font-size: 22px;
- font-weight: 400;
- line-height: 18px; }
- .pricing-table-block .plan-price .interval {
- line-height: 16px;
- font-size: 14px;
- font-weight: 700; }
- .pricing-table-block .plan-list li {
- padding: 10px;
- font-size: 15px;
- letter-spacing: 1px;
- border-bottom: 1px solid #ddd; }
- .pricing-table-block .plan-list li i {
- margin-right: 10px; }
- .pricing-table-block .plan-signup {
- padding: 15px 0px 30px; }
- .pricing-table-block .plan-signup a {
- text-transform: uppercase; }
- /* Cards */
- .card {
- position: relative;
- display: block;
- margin-bottom: 30px;
- background-color: #f7f7f7;
- border-radius: 0;
- border: 0;
- width: 100%; }
- .card-img-top {
- border-top-right-radius: 0;
- border-top-left-radius: 0; }
- .card-img-inside {
- margin-bottom: 15px; }
- .card img {
- width: 100%; }
- .card-block {
- padding: 15px; }
- .card-title {
- color: #444;
- font-size: 18px;
- margin-top: 0;
- margin-bottom: 15px; }
- .card-text {
- font-size: 14px;
- color: #444; }
- .card-btn {
- margin-top: 5px; }
- .card-2 {
- position: relative;
- display: block;
- margin-bottom: 30px;
- background-color: #fff;
- border: 1px solid #ddd;
- border-radius: 0; }
- .card-2 .card-text {
- font-size: 14px;
- line-height: 1.2; }
- .card-2 .card-btn {
- margin-top: 10px;
- margin-bottom: 10px; }
- /* / End Cards */
- /* Blog Section Start */
- .color-title {
- color: #222 !important; }
- .blog-item-wrapper {
- box-shadow: 0px 1px 4px #dddddd; }
- .blog-item-wrapper .blog-item-text {
- padding: 20px; }
- .blog-item-wrapper .blog-item-text h3 a {
- color: #444;
- font-size: 18px; }
- .blog-item-wrapper .blog-item-text h3 a:hover {
- color: #EB586F; }
- .blog-item-wrapper .blog-item-text .meta-tags {
- font-size: 12px; }
- .blog-item-wrapper .blog-item-text .meta-tags .comments a {
- color: #444;
- font-size: 12px; }
- .blog-item-wrapper .blog-item-text .meta-tags .comments a:hover {
- color: #EB586F; }
- .blog-block {
- box-shadow: 0px 1px 4px #dddddd; }
- .blog-block .blog-content {
- padding: 15px; }
- .blog-block .blog-content h3 {
- font-size: 18px; }
- .blog-block .blog-content h3 a {
- color: #444; }
- .blog-block .blog-content h3 a:hover {
- color: #EB586F; }
- .blog-post {
- padding: 30px; }
- .blog-post h3 {
- font-size: 18px; }
- .blog-post h3 a {
- color: #444; }
- .blog-post h3 a:hover {
- color: #EB586F; }
- .about-sidebar-widget,
- .categories-sidebar-widget,
- .blog-posts-widget {
- padding: 15px; }
- .about-sidebar-widget h4,
- .categories-sidebar-widget h4,
- .blog-posts-widget h4 {
- color: #222;
- padding: 10px 0;
- font-size: 20px; }
- .about-sidebar-widget p,
- .categories-sidebar-widget p,
- .blog-posts-widget p {
- color: #444; }
- .about-sidebar-widget img {
- margin-bottom: 10px; }
- .categories-sidebar-widget .post-category {
- border-bottom: 1px solid #EFEFEF;
- padding: 3px 0px; }
- .categories-sidebar-widget .post-category a {
- color: #999;
- font-size: 14px;
- font-weight: 400;
- line-height: 32px; }
- .categories-sidebar-widget .post-category:last-child {
- border: none; }
- .blog-post-small {
- margin-bottom: 15px;
- border-bottom: 1px solid #EFEFEF; }
- .blog-post-small img {
- max-width: 66px;
- margin: 0 10px 0 0;
- float: left; }
- .blog-post-small a {
- color: #999;
- font-size: 14px; }
- .blog-post-small p {
- font-size: 12px; }
- .blog-post-small .post-date {
- font-size: 12px; }
- .blog-post-small:last-child {
- border: none; }
- /* Progress Bars */
- .progress {
- height: 15px;
- margin-bottom: 20px;
- overflow: hidden;
- background-color: #ddd;
- border-radius: 0px;
- -webkit-box-shadow: none;
- box-shadow: none; }
- .progress-bar {
- font-size: 11px;
- line-height: 15px;
- color: #fff;
- background-color: #EB586F;
- -webkit-box-shadow: none;
- box-shadow: none; }
- .progress-bar-default {
- background-color: #EB586F; }
- .progress-bar-primary {
- background-color: #EB586F; }
- .progress-bar-success {
- background-color: #87c056; }
- .progress-bar-info {
- background-color: #4da5e2; }
- .progress-bar-warning {
- background-color: #ffcc66; }
- .progress-bar-danger {
- background-color: #ec7160; }
- .progress-label .sr-only {
- position: relative; }
- /* / End Progress Bars */
- /* Caounter Style */
- #counter {
- background-image: url(../img/about/testimonial-bg.jpg);
- background-size: cover;
- padding: 60px 0; }
- .count-one {
- text-align: center;
- margin-top: 80px;
- margin-bottom: 80px; }
- .count-one .icon {
- margin-bottom: 20px;
- display: block; }
- .count-one .icon i {
- color: #EB586F;
- font-size: 48px; }
- .count-one .count-value {
- color: #fff;
- font-size: 48px;
- margin-bottom: 20px; }
- .count-one .count-title {
- color: #fff;
- font-size: 14px; }
- .width25-divider {
- margin: 20px auto;
- width: 25px;
- border-color: #fff; }
- /* Sliders */
- /* Dark Slider */
- #dark-slider .item {
- min-height: 555px;
- height: auto; }
- #dark-slider .slide1 {
- background-image: url("../img/dark-bg-image.jpg");
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- background-position: contain; }
- #dark-slider .slide2 {
- background-image: url("../img/dark-bg-image.jpg");
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- background-position: center; }
- #dark-slider h3 {
- color: #ccc; }
- #dark-slider .slide-text {
- color: #ccc;
- line-height: 1.5; }
- #dark-slider p.caption {
- color: #fff;
- padding: 6px; }
- #dark-slider .carousel-control {
- color: #ccc;
- opacity: 0.8; }
- /* / Dark Slider */
- /* Carousels */
- .owl-theme .owl-controls .owl-page span {
- width: 12px !important;
- height: 12px !important;
- margin: 5px !important;
- background: #EB586F !important; }
- #cards-carousel .card-block {
- margin: 0 10px;
- background: #f7f7f7; }
- #cards-carousel .card {
- background: transparent;
- margin-bottom: 0; }
- #image-carousel .item {
- margin: 10px; }
- #image-carousel .item img {
- display: block;
- width: 100%;
- height: auto; }
- /* / End Carousels */
- /* Testimonials Slider */
- #testimonials-slider {
- background-color: #ccc; }
- #testimonials-slider .testimonial {
- padding: 150px 0;
- text-align: center; }
- #testimonials-slider .testimonial i {
- color: #fff;
- font-size: 38px;
- margin-bottom: 40px; }
- .testimonial img {
- width: 100px;
- height: 100px;
- border-radius: 100%;
- margin-top: -40px;
- margin-bottom: 40px; }
- #testimonials-slider .testimonial h3 {
- color: #fff;
- font-size: 30px;
- margin-top: 0;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 40px;
- max-width: 900px; }
- .customer-name {
- color: #fff;
- font-size: 16px;
- font-weight: 400; }
- #testimonials-slider .carousel-indicators {
- margin-bottom: 10px; }
- .carousel-indicators .active {
- width: 12px;
- height: 12px;
- background-color: #fff;
- margin: 3px;
- opacity: 1; }
- .carousel-indicators li {
- width: 12px;
- height: 12px;
- margin: 3px;
- background-color: #fff;
- border: 0;
- opacity: 0.5; }
- /* / End Testimonials Slider */
- /* / Sliders */
- #carousel-area {
- overflow: hidden;
- background: #2c3e50; }
- #carousel-area .btn-lg {
- margin: 10px; }
- #carousel-area .carousel-inner .active {
- opacity: 1; }
- #carousel-area .carousel-inner .active.left,
- #carousel-area .carousel-inner .active.right {
- left: 0;
- opacity: 0;
- z-index: 1; }
- #carousel-area .carousel-inner .next.left,
- #carousel-area .carousel-inner .prev.right {
- opacity: 1; }
- #carousel-area .carousel-control {
- z-index: 2; }
- #carousel-area .carousel-item .carousel-caption {
- top: 22%;
- right: 10%;
- left: 10%;
- text-shadow: none; }
- #carousel-area .carousel-item .carousel-caption h5 {
- color: #fff;
- line-height: 22px;
- font-weight: 400;
- margin-bottom: 30px;
- font-size: 15px; }
- #carousel-area .carousel-item .carousel-caption h3 {
- font-size: 50px;
- margin-bottom: 15px;
- color: #fff;
- font-weight: 700; }
- #carousel-area .carousel-indicators {
- bottom: 5px; }
- #carousel-area .carousel-indicators li {
- border-radius: 0px;
- width: 32px;
- height: 5px;
- margin: 0 5px;
- background: rgba(253, 254, 255, 0.8);
- border: none;
- transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -webkit-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out; }
- .carousel-post {
- margin-right: 15px; }
- .carousel-post h5 {
- margin-top: 20px; }
- /* Forms */
- .title-head {
- color: #444;
- font-size: 30px;
- margin-bottom: 30px; }
- .contact-form .form-control {
- background: transparent;
- padding: 15px 25px 15px 50px;
- color: #444; }
- .contact-form .form-control:focus {
- border-color: #EB586F; }
- .contact-form .contact-icon {
- left: 34px;
- position: absolute;
- top: 16px;
- color: #444; }
- .contact-form textarea {
- height: 268px;
- width: 100%;
- background: transparent;
- border: 1px solid #ddd;
- padding: 18px 18px;
- color: #444;
- margin-bottom: 35px;
- resize: vertical; }
- .contact-form textarea:focus {
- border-color: #EB586F; }
- .contact-info-title {
- color: #444;
- font-size: 24px;
- margin-bottom: 25px; }
- .contact-info a {
- display: block;
- font-size: 14px;
- color: #444;
- margin-bottom: 10px;
- position: relative;
- font-weight: 400; }
- .contact-info a i {
- margin-right: 10px; }
- .contact-info address {
- position: relative;
- margin-bottom: 15px; }
- address {
- font-size: 14px;
- color: #444;
- line-height: 1.8; }
- address i {
- margin-right: 10px; }
- .tel-info {
- margin-bottom: 15px; }
- .social-links li {
- display: inline-block; }
- .social-links li a {
- color: #444;
- font-size: 18px;
- padding-left: 0;
- margin: 10px 20px 0 0; }
- .form-control {
- color: #444;
- background: #f7f7f7;
- font-weight: 400;
- letter-spacing: 0.5px;
- border: 1px solid #ddd;
- border-radius: 0;
- margin-bottom: 30px;
- padding: 10px 20px;
- min-height: 50px;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none; }
- .form-control:focus {
- border-color: #EB586F; }
- .form-group input {
- font: normal normal normal 14px/1 FontAwesome, "Lato", sans-serif; }
- .input-group input {
- font: normal normal normal 14px/1 FontAwesome, "Lato", sans-serif; }
- /* Contact Forms */
- #contactForm .form-control {
- color: #444;
- background: #f7f7f7;
- font-weight: 400;
- letter-spacing: 0.5px;
- border: 1px solid #ddd;
- border-radius: 0;
- margin-bottom: 30px;
- padding: 10px 20px;
- min-height: 50px;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none; }
- #contactForm .form-control:focus {
- border-color: #EB586F; }
- #contactForm textarea {
- max-width: 100%;
- min-height: 130px !important;
- max-height: 211px;
- margin-bottom: 30px; }
- ::-webkit-input-placeholder {
- color: #ccc !important; }
- :-moz-placeholder {
- color: #ccc !important; }
- ::-moz-placeholder {
- color: #ccc !important; }
- :-ms-input-placeholder {
- color: #ccc !important; }
- .has-error .form-control {
- color: #ec7160 !important;
- border: 1px solid #ec7160 !important; }
- .help-block.with-errors li {
- color: #ec7160;
- font-size: 13px;
- margin-top: -30px;
- margin-bottom: 0; }
- #msgSubmit.h3 {
- font-size: 14px;
- margin-top: 5px; }
- /* Contact Form 1 */
- #contact-form-1 .form-group {
- margin-bottom: 0; }
- #contact-form-1 #contactForm {
- width: 100%;
- margin-left: auto;
- margin-right: auto; }
- #contact-form-1 .btn-form-submit {
- width: 100%;
- border-radius: 0;
- padding: 14px 24px; }
- /* / End Contact Form 1 */
- /* Contact Form 2 */
- .contact-form-2 {
- margin-bottom: 50px; }
- #contactForm.contact-form-2 .form-control#name {
- width: 70%; }
- #contactForm.contact-form-2 .form-control#email {
- width: 70%; }
- #contactForm.contact-form-2 .form-control#subject {
- width: 70%; }
- #contact-form-2 .form-group {
- margin-bottom: 0; }
- #contact-form-2 #contactForm {
- width: 100%;
- margin-left: auto;
- margin-right: auto; }
- #contact-form-2 .btn-form-submit {
- width: 30%;
- border-radius: 0;
- padding: 14px 24px; }
- /* / End Contact Form 2 */
- /* / End Contact Forms */
- /* Login / Register Forms */
- #login-form {
- width: 100%;
- background: #fff;
- border: 1px solid #ddd;
- padding: 35px; }
- #login-form .form-group {
- margin-bottom: 0; }
- #login-form .btn-log {
- border-radius: 0;
- margin-bottom: 30px;
- padding-left: 17px;
- padding-right: 17px; }
- #register-form {
- width: 100%;
- background: #fff;
- border: 1px solid #ddd;
- padding: 35px; }
- #register-form .form-group {
- margin-bottom: 0; }
- #register-form .btn-log {
- border-radius: 0;
- margin-bottom: 30px;
- padding-left: 17px;
- padding-right: 17px; }
- .log-title {
- font-size: 24px;
- margin: 0 0 35px 0; }
- .log-line {
- padding: 0 0 35px 0;
- margin-bottom: 35px; }
- .log-line .checkbox {
- margin-left: 3px; }
- .log-line .checkbox-primary label {
- color: #EB586F; }
- .forgot-password {
- font-size: 16px; }
- .checkbox .hide {
- display: none; }
- /* / End Login / Register Forms */
- #newsletter .input-group {
- margin-bottom: 20px; }
- /* / End Forms */
- /* Labels Badges & Alerts */
- /* Labels */
- .label {
- font-weight: 400;
- padding: .2em .6em; }
- .label-pill {
- border-radius: 5em; }
- .label-default {
- color: #EB586F;
- background-color: transparent;
- border: 2px solid #EB586F; }
- .label-default-filled {
- color: #fff;
- background-color: #EB586F;
- border: 2px solid #EB586F; }
- .label-primary {
- color: #EB586F;
- background-color: transparent;
- border: 2px solid #EB586F; }
- .label-primary-filled {
- color: #fff;
- background-color: #EB586F;
- border: 2px solid #EB586F; }
- .label-success {
- color: #87c056;
- background-color: transparent;
- border: 2px solid #87c056; }
- .label-success-filled {
- color: #fff;
- background-color: #87c056;
- border: 2px solid #87c056; }
- .label-info {
- color: #4da5e2;
- background-color: transparent;
- border: 2px solid #4da5e2; }
- .label-info-filled {
- color: #fff;
- background-color: #4da5e2;
- border: 2px solid #4da5e2; }
- .label-warning {
- color: #ffcc66;
- background-color: transparent;
- border: 2px solid #ffcc66; }
- .label-warning-filled {
- color: #fff;
- background-color: #ffcc66;
- border: 2px solid #ffcc66; }
- .label-danger {
- color: #ec7160;
- background-color: transparent;
- border: 2px solid #ec7160; }
- .label-danger-filled {
- color: #fff;
- background-color: #ec7160;
- border: 2px solid #ec7160; }
- /* / End Labels */
- /* Badges */
- .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
- color: #fff;
- background-color: #EB586F; }
- .nav-pills > li > a:hover {
- color: #fff;
- background-color: #EB586F; }
- .nav-pills > li > a {
- border-radius: 5px;
- padding: 10px;
- margin-right: 20px; }
- .badge {
- color: #fff;
- background-color: #EB586F;
- font-size: 10px;
- font-weight: 400;
- border-radius: 5px;
- padding: 6px 7px; }
- .active .badge {
- color: #fff !important; }
- /* / End Badges */
- /* Alerts */
- .alert {
- border: 2px solid transparent;
- border-radius: 5px; }
- .alert-success {
- color: #fff;
- background-color: #87c056;
- border-color: #74a44a; }
- .alert-success .close {
- color: #74a44a; }
- .alert-info {
- color: #fff;
- background-color: #4da5e2;
- border-color: #428fc4; }
- .alert-info .close {
- color: #428fc4; }
- .alert-warning {
- color: #fff;
- background-color: #ffcc66;
- border-color: #e1b459; }
- .alert-warning .close {
- color: #e1b459; }
- .alert-danger {
- color: #fff;
- background-color: #ec7160;
- border-color: #cd6254; }
- .alert-danger .close {
- color: #cd6254; }
- .alert-dismissible .close {
- font-size: 16px;
- top: -14px;
- right: -31px;
- text-shadow: none;
- opacity: 1; }
- .alert-dismissible .close:hover {
- opacity: 0.8; }
- .alert-sm {
- font-size: 14px;
- padding: 5px; }
- .alert i {
- margin: 0 10px 0 5px; }
- .alert-sm.alert-dismissible .close {
- top: -5px;
- right: -2px; }
- /* / End Alerts */
- /* / End Labels Badges & Alerts */
- /* Listgroups & Panels */
- /* Listgroups */
- .list-group-item {
- color: #444;
- background-color: #fff;
- font-size: 14px;
- position: relative;
- display: block;
- padding: 10px 15px;
- margin-bottom: -1px; }
- .list-group-item p {
- font-size: 14px; }
- .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
- color: #fff;
- background-color: #EB586F;
- border-color: #EB586F; }
- a.list-group-item:hover {
- color: #EB586F; }
- a.list-group-item, button.list-group-item {
- color: #444; }
- .list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
- color: #fff; }
- a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
- color: #444; }
- /* / End Listgroups */
- /* Well */
- .well {
- min-height: 20px;
- padding: 20px;
- margin-bottom: 20px;
- background-color: #ddd;
- border: 1px solid #ccc;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-radius: 0; }
- .rounded-well {
- border-radius: 5px; }
- /* / End Well */
- /* Jumbotron */
- .jumbotron {
- background: #f1f1f1;
- border: 1px solid #ccc;
- border-radius: 0 !important; }
- .rounded-jumbotron {
- border-radius: 5px !important; }
- .jumbotron h1 {
- color: #EB586F;
- font-weight: 400;
- margin-top: 0;
- margin-bottom: 25px; }
- .jumbotron p {
- font-size: 18px;
- font-weight: 400;
- margin-bottom: 25px; }
- /* / End Jumbotron */
- /* / End Listgroups & Panels */
- #portfolio {
- background: #F6F6F6;
- padding: 60px 0; }
- #portfolio .mix {
- padding: 0; }
- #portfolio .mix {
- display: none; }
- .controls {
- text-align: center;
- padding: 20px; }
- a:not([href]):not([tabindex]) {
- color: #222; }
- a:focus:not([href]):not([tabindex]), a:hover:not([href]):not([tabindex]) {
- color: #fff; }
- .controls .active {
- color: #fff !important;
- background: #EB586F; }
- #portfolio-list {
- margin-top: 15px;
- display: inline-block; }
- .portfolio-img {
- overflow: hidden;
- display: block;
- position: relative; }
- .portfolio-img img {
- width: 100%; }
- .portfoli-content {
- width: 100%;
- position: absolute;
- height: 100%;
- opacity: 0;
- top: 0;
- -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
- transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
- .portfoli-content:before {
- background-color: RGBA(235, 88, 111, 0.7);
- top: 15px;
- left: 15px;
- bottom: 15px;
- right: 15px;
- content: '';
- position: absolute;
- -webkit-transform: scale(0.8);
- -moz-transform: scale(0.8);
- -ms-transform: scale(0.8);
- -o-transform: scale(0.8);
- transform: scale(0.8);
- -webkit-transition: all 400ms ease;
- transition: all 400ms ease; }
- .sup-desc-wrap {
- display: table;
- width: 100%;
- height: 100%; }
- .sup-desc-wrap .sup-desc-inner {
- display: table-cell;
- text-align: center;
- vertical-align: middle;
- padding: 0 35px; }
- .sup-desc-wrap .sup-link {
- margin-bottom: 20px; }
- .sup-desc-wrap .sup-link .left-link,
- .sup-desc-wrap .sup-link .right-link {
- font-size: 14px;
- line-height: normal;
- outline: none;
- border-radius: 50%;
- color: #fff;
- border: 1px solid #fff;
- width: 42px;
- height: 42px;
- opacity: 0;
- line-height: 42px;
- text-align: center;
- display: inline-block;
- -webkit-transform: translateY(-50px);
- transform: translateY(-50px);
- margin-right: 5px; }
- .sup-desc-wrap .sup-link .left-link {
- -webkit-transition: all 400ms ease;
- transition: all 400ms ease; }
- .sup-desc-wrap .sup-link .right-link {
- -webkit-transition: all 500ms ease;
- transition: all 500ms ease; }
- .sup-desc-wrap .sup-link a:hover {
- background: #EB586F;
- border-color: #EB586F; }
- .sup-desc-wrap .sup-meta-wrap .sup-title {
- display: block;
- outline: none;
- margin-bottom: 10px;
- -webkit-transform: scale(0);
- -moz-transform: scale(0);
- -ms-transform: scale(0);
- -o-transform: scale(0);
- transform: scale(0);
- opacity: 0;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- transition: all 0.5s ease; }
- .sup-desc-wrap .sup-meta-wrap .sup-title h4 {
- font-size: 18px;
- color: #fff;
- line-height: 22px;
- text-transform: uppercase;
- font-weight: 300; }
- .sup-desc-wrap .sup-meta-wrap .sup-description {
- font-size: 13px;
- line-height: 18px;
- color: #fff;
- text-align: center;
- -webkit-transform: translateY(40px);
- transform: translateY(40px);
- opacity: 0;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- transition: all 0.5s ease; }
- .portfolio-item:hover .portfoli-content,
- .portfolio-item:hover .portfoli-content:before {
- opacity: 1;
- -webkit-transform: scale(1);
- -moz-transform: scale(1);
- -ms-transform: scale(1);
- -o-transform: scale(1);
- transform: scale(1); }
- .portfolio-item:hover .sup-title {
- -webkit-transform: scale(1);
- -moz-transform: scale(1);
- -ms-transform: scale(1);
- -o-transform: scale(1);
- transform: scale(1);
- opacity: 1; }
- .portfolio-item:hover .sup-description {
- opacity: 1;
- -webkit-transform: translateY(0px);
- transform: translateY(0px); }
- .portfolio-item:hover .sup-link .right-link,
- .portfolio-item:hover .sup-link .left-link {
- opacity: 1;
- webkit-transform: translateY(0px);
- transform: translateY(0px); }
- /* Portfolio */
- #portfolio ul.portfolio {
- margin-bottom: 0 !important; }
- .hovereffect {
- width: 100%;
- height: 100%;
- float: left;
- overflow: hidden;
- position: relative;
- text-align: center;
- cursor: default; }
- .hovereffect .overlay {
- width: 100%;
- height: 100%;
- position: absolute;
- overflow: hidden;
- top: 0;
- left: 0;
- opacity: 0;
- background-color: RGBA(235, 88, 111, 0.7);
- -webkit-transition: all .2s ease-in-out;
- transition: all 0.2s ease-in-out; }
- .hovereffect img {
- display: block;
- position: relative;
- -webkit-transition: all .5s linear;
- transition: all .2s linear; }
- .hovereffect-title h6, .hovereffect-title h5 {
- color: #fff;
- background: transparent;
- text-align: center;
- position: absolute;
- top: 40%;
- width: 100%;
- -webkit-transition: all .5s ease-in-out;
- transition: all .5s ease-in-out;
- padding: 10px; }
- .hovereffect-title h5 {
- color: #fff;
- background: transparent;
- text-align: center;
- position: absolute;
- top: 43%;
- width: 100%;
- -webkit-transition: all .5s ease-in-out;
- transition: all .5s ease-in-out;
- padding: 10px; }
- .hovereffect-title h4 {
- color: #fff;
- background: transparent;
- text-align: center;
- position: absolute;
- top: 44%;
- width: 100%;
- -webkit-transition: all .5s ease-in-out;
- transition: all .5s ease-in-out;
- padding: 10px; }
- .hovereffect:hover img {
- -ms-transform: scale(1.1);
- -webkit-transform: scale(1.1);
- transform: scale(1.1); }
- .hovereffect:hover .overlay {
- opacity: 1;
- filter: alpha(opacity=100); }
- .hovereffect:hover h6, .hovereffect:hover a.info {
- opacity: 1;
- filter: alpha(opacity=100);
- -ms-transform: translatey(0);
- -webkit-transform: translatey(0);
- transform: translatey(0); }
- .hovereffect:hover a.info {
- -webkit-transition-delay: .2s;
- transition-delay: .2s; }
- #portfolio .portfolio.block {
- position: relative;
- top: 15px; }
- #portfolio .portfolio.block h5 {
- margin-bottom: 10px;
- color: #444; }
- #portfolio .project {
- padding-top: 15px;
- padding-bottom: 15px; }
- #portfolio .project-description {
- font-size: 14px;
- color: #444; }
- .table-1 {
- color: #fff; }
- .table-bordered.table-2 > thead > tr > th {
- background: #232833;
- font-weight: 700;
- color: #EB586F; }
- .table-bordered.table-3 > thead > tr > th {
- background: #EB586F;
- font-weight: 700;
- color: #fff; }
- .table-bordered > thead > tr > th {
- text-align: center;
- background: #373d4a;
- font-size: 16px;
- font-weight: 700;
- padding: 26px 10px; }
- .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 {
- border: 1px solid #f1f1f1; }
- .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
- padding: 18px 20px;
- color: #444;
- text-align: center;
- font-size: 14px; }
- .table-striped > tbody > tr:nth-of-type(2n+1) {
- background-color: #e3e3e3; }
- /* Tabs */
- #default-tab ul.nav-tabs {
- border-bottom: 1px solid #f1f1f1;
- margin-bottom: 10px;
- padding-bottom: 5px; }
- ul.nav-tabs li {
- float: left;
- margin-top: 0; }
- ul.nav-tabs li a {
- border: medium none !important;
- color: #444;
- font-size: 16px;
- font-weight: 400;
- line-height: 18px;
- margin-bottom: 10px;
- padding: 10px 15px;
- text-transform: uppercase; }
- #default-tab .nav-tabs > li > a.active, #default-tab .nav-tabs > li a.active:focus, #default-tab .nav-tabs > li a.active:hover {
- border: 0 none;
- position: relative;
- color: #EB586F; }
- #default-tab ul.nav-tabs > li a.active::before {
- bottom: -14px;
- content: "";
- height: 3px;
- left: 0;
- background-color: #EB586F;
- position: absolute;
- width: 100%; }
- #round-tab ul.nav-tabs {
- margin-bottom: 10px; }
- #round-tab ul li a.active {
- border-radius: 0;
- border-image: none !important;
- margin-bottom: 0;
- color: #fff;
- background: #EB586F; }
- #round-tab ul li a {
- margin-bottom: 0;
- padding: 15px !important; }
- .nav-bg > li > a {
- color: #444;
- text-transform: uppercase;
- border: 1px solid transparent;
- margin-right: 10px; }
- .nav-bg > li > a.active, .nav-bg > li a.active:focus, .nav-bg > li a:hover {
- color: #EB586F !important;
- border: 1px solid #EB586F !important;
- border-radius: 0; }
- .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
- color: #EB586F; }
- .tab-content {
- padding-top: 15px; }
- /* / End Tabs */
- /* Accordions */
- .panel-group .panel {
- background: none;
- -webkit-box-shadow: none;
- box-shadow: none;
- margin-bottom: 10px;
- border: 0;
- border-radius: 0; }
- .panel-group .panel-heading {
- padding: 15px;
- background: #EB586F; }
- .panel-group .panel-title {
- font-size: 16px;
- color: #fff;
- font-weight: 700; }
- .panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
- border-top: none; }
- .panel-group .panel-heading > a:after {
- float: right; }
- .panel-group .panel-heading .panel-title.collapsed:after {
- float: right; }
- .panel-group .panel-heading > a:after {
- display: inline-block;
- vertical-align: middle;
- font-family: "FontAwesome";
- font-size: 16px;
- content: "\f0d8";
- margin-top: -2px;
- margin-left: 10px;
- -webkit-transform: rotate(0);
- -moz-transform: rotate(0);
- -ms-transform: rotate(0);
- -o-transform: rotate(0);
- transform: rotate(0);
- -webkit-transition: all 0.3s;
- -o-transition: all 0.3s;
- transition: all 0.3s; }
- .panel-group .panel-heading .panel-title.collapsed:after {
- -webkit-transform: rotate(180deg);
- -moz-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg); }
- .panel-group .panel-body {
- padding: 15px;
- border: 1px solid #ddd; }
- .panel-group.tabbed .panel-heading {
- background: transparent;
- padding: 15px;
- border: 1px solid #ccc; }
- .panel-group.tabbed a {
- color: #444; }
- .panel-group.tabbed .panel-heading > a:after {
- float: right; }
- .panel-group.tabbed .panel-heading .panel-title.collapsed:after {
- float: right; }
- /* / End Accordions */
- /* / End Tabs & Accordions */
- @media (min-width: 768px) and (max-width: 1024px) {
- .fact-title {
- font-size: 14px; }
- #single-testimonial-item .owl-controls .owl-buttons div.owl-prev {
- margin-left: 0px; }
- #single-testimonial-item .owl-controls .owl-buttons div.owl-next {
- margin-right: 0px; }
- .blog-item-wrapper .blog-item-text h3 a {
- font-size: 14px; }
- .blog-post-small img {
- max-width: 100%; }
- .contact-info-title {
- font-size: 18px; }
- .featured-box .featured-content h4 {
- font-size: 13px; }
- footer #copyright .copyright-text, footer #copyright .nav-inline {
- line-height: 24px; }
- .nav-link {
- padding: 8px 3px; }
- .social-footer a .fa {
- margin: 0px; }
- .hero-content-v2 {
- margin-top: 0; }
- .list-title {
- font-size: 20px; }
- .list-style li i {
- margin-right: 5px; }
- .sub-title {
- font-size: 14px; }
- .bs-example {
- margin-bottom: 30px; }
- .bs-example .nav > li > a {
- padding: 10px 19px; }
- .pricing-table-block .plan-list li {
- font-size: 12px; }
- .pricing-table .table-header h3 {
- font-size: 15px; }
- .button-area .btn {
- padding: 11px 12px; }
- .service-box .service-content h4 {
- font-size: 14px; }
- #carousel-area .carousel-item .carousel-caption {
- top: 5%; }
- #carousel-area .carousel-item .carousel-caption h3 {
- font-size: 26px; }
- #carousel-area .carousel-item .carousel-caption h5 {
- margin-bottom: 3px; }
- #carousel-area .carousel-item .btn-lg {
- padding: 7px 10px;
- min-width: 150px; }
- .sup-desc-wrap .sup-meta-wrap .sup-description {
- display: none; }
- .label {
- padding: 0; } }
- @media (max-width: 640px) {
- .page-header-title .heading-title {
- font-size: 24px; }
- .navbar-light .navbar-toggler {
- float: right;
- margin: 24px; }
- .blog-item-wrapper {
- margin-bottom: 30px; }
- .blog-item-wrapper .blog-item-text h3 a {
- font-size: 12px; }
- .contact-form {
- margin-bottom: 30px; }
- .contact-info {
- margin-bottom: 30px; }
- .featured-box .featured-content h4 {
- font-size: 14px; }
- .footer-info .pull-right {
- float: left !important; }
- .footer-widget {
- margin-bottom: 30px; }
- .nav-link {
- padding: 8px 3px; }
- .hero-content-v2 {
- margin-top: 0; }
- .hero-content-v2 h3 {
- font-size: 22px; }
- .hero-content-v2 h3 strong {
- font-size: 32px;
- line-height: 38px; }
- .store-btn-wrap li {
- margin-bottom: 20px; }
- .team-members-tow figure {
- margin-bottom: 30px; }
- .bs-example {
- margin-bottom: 30px; }
- .bs-example .nav > li > a {
- padding: 10px 19px; }
- .tab-content .tabbing-content {
- width: 100%;
- padding-left: 0; }
- .pricing-table {
- margin-bottom: 30px; }
- .pricing-table-block {
- margin-bottom: 30px; }
- .service-box .service-content h4 {
- font-size: 14px; }
- #carousel-area .carousel-item .carousel-caption {
- top: 5%; }
- #carousel-area .carousel-item .carousel-caption h3 {
- font-size: 26px; }
- #carousel-area .carousel-item .carousel-caption h5 {
- margin-bottom: 0px; }
- #carousel-area .carousel-item .btn-lg {
- padding: 7px 10px;
- min-width: 150px; }
- .controls .btn {
- padding: 7px 14px;
- margin: 5px 0; }
- .list-group {
- margin-bottom: 30px; } }
- @media (max-width: 480px) {
- .sub-title {
- font-size: 20px; }
- .top-menu {
- height: 70px; }
- .top-menu .right {
- float: left; }
- .page-header-title .heading-title {
- font-size: 16px; }
- .title-head {
- font-size: 20px; }
- .about {
- margin-bottom: 30px; }
- #single-testimonial-item .owl-controls .owl-buttons {
- display: none; }
- .blog-item-wrapper {
- margin-bottom: 30px; }
- .contact-form {
- margin-bottom: 30px; }
- .contact-info {
- margin-bottom: 30px; }
- .contact-info-title {
- font-size: 18px; }
- footer ul li a {
- font-size: 12px; }
- header h3 {
- font-size: 18px; }
- .hero-content-v2 {
- margin-top: 0; }
- .hero-content-v2 h3 {
- font-size: 22px; }
- .hero-content-v2 h3 strong {
- font-size: 32px;
- line-height: 38px; }
- .store-btn-wrap li {
- margin-bottom: 20px; }
- .team-members-tow figure {
- margin-bottom: 30px; }
- .bs-example {
- margin-bottom: 30px; }
- .tab-content .tabbing-content {
- width: 100%;
- margin-top: 10px;
- padding-left: 0; }
- .pricing-table {
- margin-bottom: 30px; }
- .pricing-table-block {
- margin-bottom: 30px; }
- .service-box .service-content h4 {
- font-size: 14px; }
- .count-one {
- margin-top: 40px;
- margin-bottom: 40px; }
- .carousel-inner {
- height: 175px; }
- #carousel-area .carousel-item .carousel-caption {
- top: 2%; }
- #carousel-area .carousel-item .carousel-caption h3 {
- font-size: 14px; }
- #carousel-area .carousel-item .carousel-caption h5 {
- margin-bottom: 3px;
- font-size: 12px;
- line-height: 15px; }
- #carousel-area .carousel-item .btn-lg {
- padding: 7px 10px;
- min-width: 150px; }
- .carousel-indicators {
- display: none; }
- .controls .btn {
- font-size: 13px;
- padding: 7px 8px;
- margin: 5px 0; }
- .list-group {
- margin-bottom: 30px; } }
- /* Custom CSS */
- body {
- color: #444;
- background: #ffffff;
- font-family: "Lato", sans-serif;
- font-weight: 400;
- font-size: 14px;
- line-height: 20px;
- letter-spacing: 0.5px; }
- html, body {
- height: 100%;
- margin: 0; }
- img {
- width: 100%; }
- .page-header {
- font-size: 30px;
- font-weight: 700;
- border: none;
- padding-top: 50px;
- text-transform: uppercase;
- margin: 0 0 20px 0; }
- /*# sourceMappingURL=main.css.map */
|