123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754 |
- /*Import Global Compulsory CSS Files*/
- @import url(app.css);
- /*Boxed Layout
- ------------------------------------*/
- body {
- font-family: NotoSansHans-Regular, AvenirNext-Regular, "proxima-nova", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", "Open Sans", "Helvetica Neue", Arial, sans-serif;
- }
- .wrapper {
- background: #fff;
- }
- .boxed-layout {
- padding: 0;
- box-shadow: 0 0 5px #ccc;
- margin-left: auto !important;
- margin-right: auto !important;
- background: url(../images/15.png) repeat;
- }
- /*Parallax Backgrounds
- ------------------------------------*/
- .parallax-bg {
- background: url(../images/img1.jpg) 50% 0 repeat fixed;
- }
- /*Parallax Counter Block*/
- .parallax-counter {
- padding: 60px 0;
- background: url(../images/9.jpg) 50% 0 no-repeat fixed;
- }
- .parallax-counter h4 {
- color: #fff;
- font-size: 18px;
- }
- .parallax-counter .counters {
- color: #fff;
- padding: 20px 0;
- font-weight: 200;
- background: rgba(0, 0, 0, 0.6);
- }
- /*Parallax Team*/
- .parallax-team {
- background: url(../images/faces.jpg) 50% 0 repeat fixed;
- }
- .parallax-team,
- .parallax-team .title-box-v2 {
- position: relative;
- }
- .parallax-team:before {
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- content: " ";
- position: absolute;
- background: rgba(255, 255, 255, 0.9);
- }
- /*Top Bar (login, search etc.)
- ------------------------------------*/
- .topbar {
- z-index: 12;
- padding: 8px 0 16px 0;
- position: relative;
- }
- .topbar ul.loginbar {
- margin: 0;
- }
- .topbar ul.loginbar > li {
- display: inline;
- list-style: none;
- position: relative;
- padding-bottom: 15px;
- }
- .topbar ul.loginbar > li > a,
- .topbar ul.loginbar > li > a:hover {
- color: #7c8082;
- /* font-size: 11px; */
- /* text-transform: uppercase; */
- }
- .topbar ul.loginbar li i.fa {
- color: #bbb;
- }
- .topbar ul.loginbar li.topbar-devider {
- top: -1px;
- padding: 0;
- font-size: 8px;
- position: relative;
- margin: 0 9px 0 5px;
- font-family: Tahoma;
- border-right: solid 1px #bbb;
- }
- /*Lenguages*/
- .topbar ul.lenguages {
- top: 25px;
- left: -5px;
- display: none;
- padding: 4px 0;
- padding-left: 0;
- list-style: none;
- min-width: 100px;
- position: absolute;
- background: #f0f0f0;
- }
- .topbar li:hover ul.lenguages {
- display: block;
- }
- .topbar ul.lenguages:after {
- top: -4px;
- width: 0;
- height: 0;
- left: 8px;
- content: " ";
- display: block;
- position: absolute;
- border-bottom: 6px solid #f0f0f0;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-left-style: inset; /*FF fixes*/
- border-right-style: inset; /*FF fixes*/
- }
- .topbar ul.lenguages li a {
- color: #555;
- display: block;
- font-size: 12px;
- padding: 2px 12px;
- margin-bottom: 1px;
- text-transform: uppercase;
- }
- .topbar ul.lenguages li.active a i {
- color: #999;
- float: right;
- margin-top: 2px;
- }
- .topbar ul.lenguages li a:hover,
- .topbar ul.lenguages li.active a {
- background: #fafafa;
- }
- .topbar ul.lenguages li a:hover {
- text-decoration: none;
- }
- /*Top Bar v1 (login, search etc.)
- ------------------------------------*/
- .topbar-v1 {
- background: #fdfdfd;
- border-bottom: solid 1px #f0f0f0;
- }
- /*Top Contacts*/
- .topbar-v1 ul {
- margin: 0;
- }
- .topbar-v1 .top-v1-contacts li {
- color: #666;
- padding: 5px 0;
- font-size: 12px;
- margin-right: 15px;
- display: inline-block;
- }
- .topbar-v1 .top-v1-contacts i {
- color: #999;
- font-size: 13px;
- margin-right: 3px;
- }
- /*Top Data*/
- .topbar-v1 .top-v1-data {
- text-align: right;
- }
- .topbar-v1 .top-v1-data li {
- padding: 5px 11px;
- display: inline-block;
- border-right: solid 1px #eee;
- }
- .topbar-v1 .top-v1-data li:first-child {
- border-left: solid 1px #eee;
- }
- .topbar-v1 .top-v1-data li a {
- font-size: 12px;
- }
- .topbar-v1 .top-v1-data li a:hover {
- text-decoration: none;
- }
- .topbar-v1 .top-v1-data li i {
- color: #777;
- font-size: 13px;
- }
- .topbar-v1 .top-v1-data li a:hover i {
- color: #72c02c;
- }
- /*Responsive Topbar v1*/
- @media (max-width: 992px) {
- .topbar-v1 ul {
- text-align: center !important;
- }
- .topbar-v1 .top-v1-contacts {
- margin: 10px 0;
- }
- .topbar-v1 .top-v1-data li {
- top: 1px;
- padding: 6px 16px;
- margin-left: -5px;
- position: relative;
- border: solid 1px #eee;
- }
- }
- /*Header Default
- ------------------------------------*/
- .header {
- z-index: 99;
- position: relative;
- border-bottom: solid 2px #eee;
- }
- .header .navbar {
- margin: 0;
- min-height: inherit;
- }
- .header .navbar-default {
- border: none;
- background: none;
- }
- .header .navbar-collapse {
- position: relative;
- /*max-height: inherit;*/
- }
- /*Brand*/
- .header .navbar-brand {
- z-index: 1;
- top: -8px;
- position: relative;
- padding: 0 10px 10px;
- }
- @media (max-width: 992px) {
- .header .navbar-brand {
- top: 0;
- height: 40px;
- }
- }
- /*Navbar*/
- @media (min-width: 992px) {
- .header .navbar-nav {
- float: right;
- }
- }
- .header .navbar-default .navbar-nav > li > a {
- color: #687074;
- font-size: 15px;
- font-weight: 400;
- text-transform: uppercase;
- }
- .header .navbar-default .navbar-nav > .active > a {
- color: #72c02c;
- }
- /*Dropdown*/
- .header .navbar-right .dropdown-menu {
- right: inherit;
- }
- /*Navbar Toggle*/
- /*.navbar-toggle,
- .navbar-default .navbar-toggle:hover,
- .navbar-default .navbar-toggle:focus {
- background: #72c02c;
- padding: 6px 10px 2px;
- }
- .navbar-default .navbar-toggle {
- border-color: #5fb611;
- }
- .navbar-default .navbar-toggle:hover {
- background: #5fb611;
- }
- .navbar-default .navbar-toggle .fa {
- color: #fff;
- font-size: 19px;
- }
- */
- /*Responsive Navbar*/
- @media (max-width: 767px) {
- .header .navbar-default .navbar-nav > li > a {
- font-size: 14px;
- padding: 9px 10px;
- }
- .header .navbar-default .navbar-nav > li a {
- /*margin-bottom: 1px;*/
- border-bottom: solid 1px #eee;
- }
- .header .navbar-default .navbar-nav > li > a:focus {
- background: none;
- }
- .header .navbar-default .navbar-nav > li > a:hover {
- color: #72c02c;
- }
- .header .navbar-default .navbar-nav > .active > a,
- .header .navbar-default .navbar-nav > .active > a:hover,
- .header .navbar-default .navbar-nav > .active > a:focus {
- color: #fff;
- background: #72c02c;
- /*border-bottom: solid 2px #72c02c;*/
- }
- }
- @media (min-width: 767px) {
- /*Navbar Collapse*/
- .header .navbar-collapse {
- padding: 0;
- }
- /*Navbar*/
- .header .navbar-nav {
- top: 2px;
- position: relative;
- }
- .header .navbar-default .navbar-nav > li > a {
- padding: 9px 30px 9px 20px;
- }
- .header .navbar-default .navbar-nav > li > a,
- .header .navbar-default .navbar-nav > li > a:focus {
- border-bottom: solid 2px transparent;
- }
- .header .navbar-default .navbar-nav > li > a:hover,
- .header .navbar-default .navbar-nav > .active > a {
- border-bottom: solid 2px #72c02c;
- }
- .header .navbar-default .navbar-nav > li > a,
- .header .navbar-default .navbar-nav > li > a:hover,
- .header .navbar-default .navbar-nav > li > a:focus,
- .header .navbar-default .navbar-nav > .active > a,
- .header .navbar-default .navbar-nav > .active > a:hover,
- .header .navbar-default .navbar-nav > .active > a:focus {
- background: none;
- }
- .header .navbar-default .navbar-nav > .open > a,
- .header .navbar-default .navbar-nav > .open > a:hover,
- .header .navbar-default .navbar-nav > .open > a:focus {
- color: #687074;
- }
- }
- /*Search Box*/
- .header .navbar .nav > li > .search {
- color: #aaa;
- cursor: pointer;
- min-width: 35px;
- font-size: 15px;
- text-align: center;
- background: #f7f7f7;
- padding: 11px 0 12px;
- display: inline-block;
- border-bottom: solid 2px #aaa;
- }
- .header .navbar .nav > li > .search:hover {
- color: #72c02c;
- background: #f7f7f7;
- border-bottom-color: #72c02c;
- }
- .header .navbar .search-open {
- right: 0;
- top: 38px;
- display: none;
- padding: 14px;
- position: absolute;
- background: #fcfcfc;
- border-top: solid 2px #eee;
- box-shadow: 0 1px 3px #ddd;
- }
- .header .navbar .search-open form {
- margin: 0;
- }
- @media (min-width: 767px) {
- .header .navbar .search-open {
- width: 330px;
- }
- }
- @media (max-width: 767px) {
- .header .navbar .nav > li > .search {
- color: #999;
- width: 35px;
- height: 34px;
- line-height: 12px;
- text-align: left;
- text-align: center;
- margin: 5px 10px 0;
- background: #eee;
- border-bottom: none;
- }
- .header .navbar .nav > li > .search:hover {
- background: #5fb611;
- color: #fff !important;
- }
- .header .navbar .search-open {
- top: 5px;
- padding: 0;
- left: 48px;
- border-top: none;
- box-shadow: none;
- background: none;
- margin-right: 10px;
- }
- }
- /*Header v1
- ------------------------------------*/
- .header-v1 {
- border-bottom: none;
- }
- /*Brand*/
- .header-v1 .navbar-brand {
- top: 2px;
- padding: 0 10px 10px;
- }
- /*Search Box*/
- .header-v1 .navbar .search-open {
- background: #f8f8f8;
- }
- @media (max-width: 767px) {
- .header-v1 .navbar .search-open {
- bottom: -6px;
- }
- }
- .header-v1 .navbar .nav > li > .search {
- padding: 11px;
- border: none;
- min-width: 37px;
- }
- .header-v1 .navbar .nav > li > .search:hover {
- background: #72c02c;
- color: #fff !important;
- }
- /*Toggle*/
- .header-v1 .navbar-toggle {
- margin-top: 3px;
- }
- /*Responsive Header v1*/
- @media (min-width: 767px) and (max-width: 992px) {
- /*Brand*/
- .header-v1 .navbar-brand {
- margin-bottom: 15px;
- }
- }
- @media (min-width: 767px) {
- /*Navbar*/
- .header-v1 .navbar-default .navbar-nav > li {
- margin-left: 1px;
- }
- .header-v1 .navbar-default .navbar-nav > li > a {
- padding: 9px 30px 6px 20px;
- }
- .header-v1 .navbar-default .navbar-nav > .active > a,
- .header-v1 .navbar-default .navbar-nav > li > a:hover,
- .header-v1 .navbar-default .navbar-nav > li > a:focus {
- color: #fff !important;
- background: #72c02c !important;
- }
- .header-v1 .navbar-default .navbar-nav > .open > a,
- .header-v1 .navbar-default .navbar-nav > .open > a:hover,
- .header-v1 .navbar-default .navbar-nav > .open > a:focus {
- color: #fff;
- background: #72c02c;
- }
- /*Dropdown Menu*/
- .header-v1 .dropdown-menu {
- background: #fafafa;
- }
- }
- /*Header Fixed
- ------------------------------------*/
- /*Header*/
- .header-fixed .header {
- height: 78px;
- }
- .header-fixed .header.header-fixed-shrink {
- top: 0;
- left: 0;
- width: 100%;
- height: 95px;
- z-index: 9999;
- position: fixed;
- margin-top: -35px;
- background: rgba(255, 255, 255, 0.9);
- border-bottom-color: #f5f5f5;
- -webkit-transition: height 0.6s;
- -moz-transition: height 0.6s;
- transition: height 0.6s;
- }
- /*Brand*/
- .header-fixed .header.header-fixed-shrink .navbar-brand {
- top: 10px;
- z-index: 1;
- position: relative;
- padding: 0 10px 10px;
- }
- .header-fixed .header.header-fixed-shrink .navbar-brand img {
- width: 90%;
- }
- .header-fixed .header.header-fixed-shrink .search,
- .header-fixed .header.header-fixed-shrink .active a {
- border-bottom: none !important;
- }
- .header-fixed .header.header-fixed-shrink .dropdown > a:after {
- top: 19px;
- }
- /*Toggle*/
- .header-fixed .navbar-toggle {
- margin-top: 5px;
- }
- /*Search Bar*/
- .header-fixed .header.header-fixed-shrink .search {
- margin-top: 12px;
- padding: 8px !important;
- color: #585f69 !important;
- background: none !important;
- }
- .header-fixed .header.header-fixed-shrink .search-open {
- border-top: none;
- background: rgba(255, 255, 255, 0.9);
- }
- /*Responsive Fixed Header*/
- @media (max-width: 992px) {
- /*Header*/
- .header-fixed .header {
- height: 118px;
- }
- .header-fixed .header.header-fixed-shrink {
- height: 135px;
- }
- }
- @media (max-width: 767px) {
- /*Header*/
- .header-fixed .header,
- .header-fixed .header.header-fixed-shrink {
- height: 88px;
- }
- /*Navbar*/
- .header-fixed .header .navbar-nav {
- background: #fff;
- padding: 6px 0;
- margin-top: 0px;
- border: solid 1px #eee;
- }
- .header-fixed .header .navbar-default .navbar-collapse,
- .header-fixed .header .navbar-default .navbar-form {
- border: none;
- }
- /*Toggle*/
- .header-fixed .navbar-toggle {
- margin-top: 9px;
- }
- /*Search*/
- .header-fixed .header.header-fixed-shrink .navbar .nav > li > .search {
- top: 5px;
- position: relative;
- }
- }
- @media (min-width: 767px) {
- /*Navbar*/
- .header-fixed .header.header-fixed-shrink .navbar-nav > li > a {
- padding: 19px 30px 18px 20px;
- border-bottom: solid 1px transparent !important;
- }
- /*Search Bar*/
- .header-fixed .header.header-fixed-shrink .search-open {
- top: 56px;
- }
- }
- /*Dropdown Submenu for BS3
- ------------------------------------*/
- .dropdown-submenu {
- position: relative;
- }
- .dropdown > a:after,
- .dropdown-submenu > a:after {
- top: 8px;
- right: 9px;
- font-size: 11px;
- content: "\f105";
- position: absolute;
- font-weight: normal;
- display: inline-block;
- font-family: FontAwesome;
- }
- @media (max-width: 767px) {
- .dropdown-submenu > a:after {
- content: " ";
- }
- }
- .dropdown > a:after {
- top: 9px;
- right: 15px;
- content: "\f107";
- }
- .dropdown-submenu > .dropdown-menu {
- top: 0;
- left: 100%;
- margin-top: -5px;
- margin-left: 0px;
- }
- .dropdown-submenu:hover > .dropdown-menu {
- display: block;
- }
- @media (max-width: 767px) {
- .dropdown-submenu > .dropdown-menu {
- display: block;
- margin-left: 15px;
- }
- }
- .dropdown-submenu.pull-left {
- float: none;
- }
- .dropdown-submenu.pull-left > .dropdown-menu {
- left: -100%;
- margin-left: 10px;
- }
- .dropdown-menu li [class^="fa-"],
- .dropdown-menu li [class*=" fa-"] {
- left: -3px;
- width: 1.25em;
- margin-right: 1px;
- position: relative;
- text-align: center;
- display: inline-block;
- }
- .dropdown-menu li [class^="fa-"].fa-lg,
- .dropdown-menu li [class*=" fa-"].fa-lg {
- /* increased font size for fa-lg */
- width: 1.5625em;
- }
- /*Menu Icons*/
- .menu-icon {
- margin-right: 10px;
- font-weight: 200;
- }
- /*Dropdown Show*/
- .dropdown-show {
- position: relative;
- display: inline-block;
- box-shadow: 0 0 4px #eee;
- }
- /*Main Styles
- ------------------------------------*/
- /*Purchase Block*/
- .purchase {
- padding: 25px 0 30px;
- border-bottom: solid 1px #eee;
- }
- .purchase p {
- margin-bottom: 0;
- }
- .purchase span {
- color: #666;
- display: block;
- font-size: 24px;
- line-height: 35px;
- font-weight: normal;
- margin-bottom: 12px;
- font-family: 'Open Sans', sans-serif;
- }
- .purchase .btn-buy {
- text-align: center;
- }
- .purchase .btn-buy a {
- margin-top: 27px;
- }
- .purchase .btn-buy a i {
- margin-right: 5px;
- }
- @media (max-width: 992px) {
- .purchase {
- text-align: center;
- }
- .purchase span {
- font-size: 22px;
- line-height: 29px;
- }
- .purchase .btn-buy a {
- margin-top: 25px;
- font-size: 16px;
- }
- }
- /*Service*/
- .service {
- overflow: hidden;
- margin-bottom: 10px;
- padding: 15px 15px 10px;
- }
- .service:hover {
- background: #fcfcfc;
- box-shadow: 0 0 5px #ddd;
- -webkit-transition: box-shadow 0.2s ease-in-out;
- -moz-transition: box-shadow 0.2s ease-in-out;
- -o-transition: box-shadow 0.2s ease-in-out;
- transition: box-shadow 0.2s ease-in-out;
- }
- .service:hover i {
- color: #656565;
- }
- .service .desc {
- padding: 0 15px;
- overflow: hidden;
- }
- .service .desc h4 {
- font-size: 22px;
- line-height: 25px;
- }
- .service .service-icon {
- float: left;
- padding: 10px;
- color: #72c02c;
- font-size: 35px;
- text-align: center;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- transition: all 0.4s ease-in-out;
- }
- .service .service-icon.icon-cogs {
- font-size: 37px;
- }
- .service .service-icon.icon-plane {
- font-size: 43px;
- }
- /* Recent Work */
- .recent-work a {
- text-align: center;
- background: #fcfcfc;
- display: inline-block;
- }
- .recent-work a:hover {
- text-decoration: none;
- }
- .recent-work a:hover strong {
- color: #555;
- }
- .recent-work em.overflow-hidden {
- display: block;
- }
- .recent-work a span {
- display: block;
- padding: 10px;
- border-bottom: solid 2px #eee;
- }
- .recent-work a strong {
- color: #555;
- display: block;
- }
- .recent-work a i {
- color: #777;
- }
- .recent-work a img {
- -webkit-transition: all 0.8s ease-in-out;
- -moz-transition: all 0.8s ease-in-out;
- -o-transition: all 0.8s ease-in-out;
- -ms-transition: all 0.8s ease-in-out;
- transition: all 0.8s ease-in-out;
- }
- .recent-work a:hover img {
- opacity: 0.8;
- -webkit-transform: scale(1.2) rotate(3deg);
- -moz-transform: scale(1.2) rotate(3deg);
- -o-transform: scale(1.0) rotate(3deg);
- -ms-transform: scale(1.2) rotate(3deg);
- transform: scale(1.2) rotate(3deg);
- }
- .recent-work a:hover span {
- border-bottom: solid 2px #72c02c;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.3s ease-in-out;
- }
- /* Work */
- .work {
- margin-top: 6px;
- }
- .work .details {
- padding: 10px;
- }
- .work .caption {
- display: block;
- padding-top: 5px;
- color: #585f69 !important;
- font-size: 18px !important;
- }
- .work .caption:hover {
- cursor: pointer;
- color: #444 !important;
- text-decoration: underline;
- }
- /*Footer*/
- .footer {
- color: #dadada;
- background: #585f69;
- padding: 20px 0 30px;
- font-size: 14px;
- line-height: 25px;
- }
- .footer.margin-top-0 {
- margin-top: 0;
- }
- .footer p,
- .footer a {
- font-size: 14px;
- }
- .footer p {
- color: #dadada;
- }
- .footer a {
- color: #72c02c;
- font-size: 14px;
- }
- .footer a:hover {
- color: #a8f85f;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- transition: all 0.4s ease-in-out;
- }
- .footer ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
- .footer li {
- color: #dadada;
- }
- .footer h2,
- .footer h3,
- .footer h4 {
- color: #e4e4e4;
- background: none;
- text-shadow: none;
- }
- .footer .headline {
- border-bottom: none;
- margin: 10px 0 15px 0;
- }
- .footer .headline h2 {
- font-size: 14px;
- border-bottom: none;
- font-weight: bold;
- }
- /*Footer Subsribe*/
- .footer .footer-subsribe {
- width: 85%;
- }
- /*Footer Blog Posts*/
- .footer .blog-list {
- margin: 0;
- padding: 0;
- color: #dadada;
- list-style: none;
- }
- .footer .blog-list li {
- padding: 0 0;
- margin-bottom: 7px;
- }
- .footer .blog-list li span {
- color: #818488;
- }
- .footer .dl-horizontal,
- .footer .dl-horizontal:hover {
- border: none !important;
- background: none !important;
- }
- .footer .posts .dl-horizontal a {
- color: #dadada;
- }
- .footer .dl-horizontal a:hover {
- color: #a8f85f !important;
- }
- .footer .dl-horizontal img {
- border-color: #888 !important;
- }
- /*Copyright*/
- .copyright {
- color: #777 !important;
- font-size: 14px;
- padding: 30px 0;
- background: #f4f4f4;
- border-top: solid 1px #e5e5e5;
- }
- .copyright p {
- color: #dadada;
- margin-top: 12px;
- }
- .copyright a {
- margin: 0px;
- color: #116dfe !important;
- }
- .copyright a:hover {
- color: #1989fa;
- }
- .copyright a img {
- margin-top: -2px;
- }
- /*Breadcrumbs
- ------------------------------------*/
- /*Default Breadcrumbs*/
- .breadcrumbs {
- overflow: hidden;
- padding: 10px 0 6px;
- border-bottom: solid 1px #eee;
- }
- .breadcrumbs h1 {
- color: #666;
- font-size: 22px;
- margin-top: 8px;
- }
- .breadcrumb {
- top: 10px;
- padding-right: 0;
- background: none;
- position: relative;
- }
- .breadcrumb a {
- color: #777;
- }
- .breadcrumb li.active,
- .breadcrumb li a:hover {
- color: #72c02c;
- text-decoration: none;
- }
- @media (max-width: 550px) {
- .breadcrumbs h1.pull-left,
- .breadcrumbs ul.pull-right {
- width: 100%;
- text-align: center;
- }
- .breadcrumbs h1.pull-left {
- margin-bottom: 0;
- }
- .breadcrumbs .breadcrumb {
- top: 0;
- margin-bottom: 10px;
- }
- }
- /*Thumbnails
- ------------------------------------*/
- a.thumbnail {
- padding: 0;
- border: none;
- margin-bottom: 15px;
- }
- .thumbnail-style {
- padding: 7px;
- margin-bottom: 20px;
- }
- .thumbnail-style:hover {
- /*
- box-shadow: 0 0 8px #ddd;
- -webkit-transition: box-shadow 0.2s ease-in-out;
- -moz-transition: box-shadow 0.2s ease-in-out;
- -o-transition: box-shadow 0.2s ease-in-out;
- transition: box-shadow 0.2s ease-in-out;
- */
- }
- .thumbnail h3,
- .thumbnail-style h3 {
- margin: 6px 0 8px 0;
- }
- .thumbnail h3 a,
- .thumbnail-style h3 a {
- color: #585f69;
- font-size: 16px;
- }
- .thumbnail h3 a:hover,
- .thumbnail-style h3 a:hover {
- color: #72c02c;
- text-decoration: none;
- }
- .thumbnail-style .thumbnail-img {
- position: relative;
- margin-bottom: 11px;
- }
- .thumbnail-style a.btn-more {
- right: -10px;
- bottom: 10px;
- color: #fff;
- padding: 1px 6px;
- position: absolute;
- background: #72c02c;
- display: inline-block;
- }
- .thumbnail-style a.btn-more:hover {
- text-decoration: none;
- box-shadow: 0 0 0 2px #377500;
- }
- .thumbnail-style:hover a.btn-more {
- right: 10px;
- }
- .thumbnail-kenburn img {
- left: 10px;
- margin-left: -10px;
- position: relative;
- -webkit-transition: all 0.8s ease-in-out;
- -moz-transition: all 0.8s ease-in-out;
- -o-transition: all 0.8s ease-in-out;
- -ms-transition: all 0.8s ease-in-out;
- transition: all 0.8s ease-in-out;
- }
- .thumbnail-kenburn:hover img {
- -webkit-transform: scale(1.2) rotate(2deg);
- -moz-transform: scale(1.2) rotate(2deg);
- -o-transform: scale(1.2) rotate(2deg);
- -ms-transform: scale(1.2) rotate(2deg);
- transform: scale(1.2) rotate(2deg);
- }
- /*Servive Blocks
- ------------------------------------*/
- /*Service Alternative Block*/
- .service-alternative .service:hover {
- background: #76ca2c;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- transition: all 0.4s ease-in-out;
- }
- .service-alternative .service:hover i,
- .service-alternative .service:hover p,
- .service-alternative .service:hover h4 {
- color: #fff;
- }
- /*Servive Block Versions*/
- .service-v1 h2 {
- margin: 15px 0 10px;
- font-size: 20px;
- line-height: 28px;
- }
- .service-v1 p {
- text-align: justify;
- }
- /*Blog Posts
- ------------------------------------*/
- .posts .dl-horizontal a {
- color: #555;
- }
- .posts .dl-horizontal {
- margin-bottom: 15px;
- overflow: hidden;
- }
- .posts .dl-horizontal dt {
- width: 60px;
- float: left;
- }
- .posts .dl-horizontal dt img {
- width: 60px;
- height: 60px;
- padding: 2px;
- margin-top: 2px;
- border: solid 1px #ddd;
- }
- .posts .dl-horizontal dd {
- margin-left: 70px;
- }
- .posts .dl-horizontal dd p {
- margin: 0;
- }
- .posts .dl-horizontal dd a {
- font-size: 14px;
- line-height: 16px !important;
- }
- .posts .dl-horizontal dd a:hover {
- color: #72c02c;
- text-decoration: none;
- }
- .posts .dl-horizontal:hover dt img,
- .posts .dl-horizontal:hover dd a {
- color: #72c02c;
- border-color: #72c02c !important;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- transition: all 0.4s ease-in-out;
- }
- /*About Page
- ------------------------------------*/
- .team ul.team-socail {
- text-align: right;
- }
- .team ul.team-socail li {
- padding: 0 !important;
- margin: 0 !important;
- }
- .team ul.team-socail li a,
- .team ul.team-socail li a:hover {
- text-decoration: none;
- }
- .team ul.team-socail li i {
- color: #aaa;
- padding: 3px;
- min-width: 30px;
- font-size: 20px;
- text-align: center;
- background: #f7f7f7;
- display: inline-block;
- }
- .team ul.team-socail li i:hover {
- color: #fff;
- background: #72c02c;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- .team .thumbnail-style {
- padding: 12px;
- }
- .team .thumbnail-style img {
- margin-bottom: 7px;
- }
- .team .thumbnail-style h3 {
- margin-bottom-bottom: 5px;
- }
- .team .thumbnail-style:hover h3 a {
- color: #72c02c !important;
- }
- .team .thumbnail-style small {
- display: block;
- margin-top: 5px;
- font-size: 12px;
- }
- /*About Me Page
- ------------------------------------*/
- .about-me {
- overflow: hidden;
- }
- .about-me h2 {
- margin: 0;
- font-size: 20px;
- text-transform: uppercase;
- }
- .about-me span {
- color: #999;
- display: block;
- font-size: 14px;
- margin-bottom: 10px;
- }
- .about-me .social-icons {
- margin-top: 7px;
- }
- /*About My Goals*/
- .about-my-goals h2 {
- text-transform: uppercase;
- }
- /*About Skills*/
- .about-skills {
- padding: 40px 0;
- border-top: 1px solid #eee;
- border-bottom: 1px solid #eee;
- }
- /*Gallery Page
- ------------------------------------*/
- .gallery-page .thumbnail,
- .gallery-page .thumbnail:hover {
- padding: 0;
- border: none;
- box-shadow: none;
- }
- .gallery-page .thumbnails {
- margin-bottom: 6px;
- }
- /*Privacy Page
- ------------------------------------*/
- .privacy a {
- text-decoration: underline;
- }
- .privacy a:hover {
- color: #72c02c;
- text-decoration: none;
- }
- /*Portfolio Item Page v1
- ------------------------------------*/
- .portfolio-item h2 {
- color: #555;
- font-size: 24px;
- margin: 0 0 15px;
- }
- .portfolio-item li {
- padding: 3px 0;
- }
- .portfolio-item p a {
- text-decoration: underline;
- }
- .portfolio-item p a:hover {
- text-decoration: none;
- }
- /*Portfolio Item v1*/
- .portfolio-item1 ul {
- margin: 10px 0 20px;
- }
- .portfolio-item1 li {
- font-size: 16px;
- margin-bottom: 3px;
- }
- .portfolio-item1 li i {
- font-size: 18px;
- margin-right: 4px;
- }
- /*Sidebar Features
- ------------------------------------*/
- /*Blog Tags*/
- ul.blog-tags li {
- display: inline-block;
- }
- ul.blog-tags a {
- font-size: 13px;
- padding: 2px 7px;
- background: #f7f7f7;
- margin: 0 3px 6px 0;
- display: inline-block;
- }
- ul.blog-tags a i {
- color: #666;
- }
- ul.blog-tags a:hover {
- background: #72c02c;
- }
- ul.blog-tags a:hover,
- ul.blog-tags a:hover i {
- color: #fff !important;
- text-decoration: none;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- /*Blog Photo Stream*/
- .blog-photos li {
- display: inline;
- }
- .blog-photos li img {
- opacity: 0.6;
- width: 58px;
- height: 58px;
- margin: 0 2px 8px;
- }
- .blog-photos li img:hover {
- opacity: 1;
- box-shadow: 0 0 0 2px #72c02c;
- }
- /*Blog Latest Tweets*/
- .blog-twitter .blog-twitter-inner {
- padding: 10px;
- background: #f7f7f7;
- position: relative;
- margin-bottom: 10px;
- /*border-top: solid 2px #eee;*/
- }
- .blog-twitter .blog-twitter-inner,
- .blog-twitter .blog-twitter-inner:after,
- .blog-twitter .blog-twitter-inner:before {
- transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- -ms-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -webkit-transition: all 0.3s ease-in-out;
- }
- .blog-twitter .blog-twitter-inner:after,
- .blog-twitter .blog-twitter-inner:before {
- width: 0;
- height: 0;
- right: 0px;
- bottom: 0px;
- content: " ";
- display: block;
- position: absolute;
- }
- .blog-twitter .blog-twitter-inner:after {
- border-top: 15px solid #eee;
- border-right: 15px solid transparent;
- border-left: 0px solid transparent;
- border-left-style: inset; /*FF fixes*/
- border-right-style: inset; /*FF fixes*/
- }
- .blog-twitter .blog-twitter-inner:before {
- border-bottom: 15px solid #fff;
- border-right: 0 solid transparent;
- border-left: 15px solid transparent;
- border-left-style: inset; /*FF fixes*/
- border-bottom-style: inset; /*FF fixes*/
- }
- .blog-twitter .blog-twitter-inner:hover {
- border-color: #72c02c;
- border-top-color: #72c02c;
- }
- .blog-twitter .blog-twitter-inner:hover:after {
- border-top-color: #72c02c;
- }
- .blog-twitter .blog-twitter-inner span.twitter-time {
- color: #777;
- display: block;
- font-size: 11px;
- }
- .blog-twitter .blog-twitter-inner a {
- color: #72c02c;
- text-decoration: none;
- }
- .blog-twitter .blog-twitter-inner a:hover {
- text-decoration: underline;
- }
- .blog-twitter .blog-twitter-inner i.fa {
- top: 2px;
- color: #bbb;
- font-size: 18px;
- position: relative;
- }
- /*Choose Block*/
- .who li {
- margin-bottom: 6px;
- }
- .who li i {
- color: #72c02c;
- font-size: 13px;
- margin-right: 8px;
- position: relative;
- }
- .who li:hover i,
- .who li:hover a {
- color: #777;
- }
- .who li:hover a:hover {
- text-decoration: none;
- }
- /*Promo Page
- ------------------------------------*/
- /*Slider Part*/
- .fullwidthbanner-container.slider-promo {
- max-height: 460px !important;
- }
- .slider-promo-info-bg {
- padding: 25px 20px 20px;
- background: url(../images/bg-black.png) repeat;
- }
- .slider-promo-info span.big-size {
- color: #fff;
- display: block;
- font-size: 30px;
- margin-bottom: 25px;
- text-shadow: 0 !important;
- }
- .slider-promo-info p {
- color: #fff;
- font-size: 16px;
- margin-bottom: 0;
- }
- /*Promo Box*/
- .promo-box {
- padding: 20px;
- margin: 25px 0 20px;
- text-align: center;
- }
- .promo-box i {
- display: block;
- font-size: 50px;
- }
- .promo-box p {
- font-size: 14px;
- margin-bottom: 0;
- }
- .promo-box strong,
- .promo-box strong a {
- color: #555;
- display: block;
- font-size: 20px;
- font-weight: 200;
- margin: 20px 0 15px;
- }
- .promo-box:hover strong,
- .promo-box:hover strong a {
- color: #72c02c;
- }
- /*Promo Service*/
- .promo-service {
- margin-bottom: 20px;
- }
- .promo-service li {
- margin-bottom: 5px;
- }
- .promo-service a.btn-u {
- margin: 0 20px 10px 0;
- }
- /*Promo Elements*/
- .title-box {
- font-size: 16px;
- text-align: center;
- padding: 10px 0 10px;
- }
- .title-box .title-box-text {
- color: #555;
- display: block;
- font-size: 35px;
- font-weight: 200;
- }
- @media (max-width: 768px) {
- .title-box .title-box-text {
- font-size: 26px;
- line-height: 34px;
- margin-bottom: 10px;
- }
- .title-box p {
- font-size: 15px;
- }
- }
- .block-blockquote {
- margin: 20px 0;
- text-align: center;
- border: dashed 1px #ccc;
- }
- .block-blockquote-inner {
- padding: 15px;
- }
- .block-blockquote p {
- font-size: 26px;
- margin-bottom: 0;
- }
- /*Info Blocks*/
- .info-blocks {
- margin-bottom: 15px;
- }
- .info-blocks:hover i.icon-info-blocks {
- color: #72c02c;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- .info-blocks i.icon-info-blocks {
- float: left;
- color: #777;
- font-size: 30px;
- min-width: 50px;
- margin-top: 10px;
- text-align: center;
- }
- .info-blocks .info-blocks-in {
- padding: 0 10px;
- overflow: hidden;
- }
- .info-blocks .info-blocks-in h3 {
- color: #555;
- font-size: 20px;
- line-height: 28px;
- }
- .info-blocks .info-blocks-in p {
- font-size: 12px;
- }
- /*Brand Page
- ------------------------------------*/
- .brand-page .btn {
- margin-bottom: 10px;
- }
- /*Form Pages
- ------------------------------------*/
- .form-page input,
- .form-page select {
- margin-bottom: 10px;
- }
- /*Labels and Badges Page
- ------------------------------------*/
- ul.labels-demo {
- margin: 5px 0;
- }
- ul.labels-demo li {
- list-style: none;
- display: inline-block;
- margin: 0 5px 2px 0;
- }
- .badge-sidebar {
- border-left: solid 1px #eee;
- }
- @media (max-width: 991px) {
- .badge-sidebar {
- border-left: none;
- }
- }
- /*Line Icon Page
- ------------------------------------*/
- .line-icon-page .item-box {
- width: 25%;
- float: left;
- height: 90px;
- text-align: center;
- padding: 20px 10px;
- margin: 0 -1px -1px 0;
- border: 1px solid #ddd;
- word-wrap: break-word;
- }
- @media (max-width: 768px) {
- .line-icon-page .item-box {
- height: 115px;
- }
- }
- @media (max-width: 450px) {
- .line-icon-page .item-box {
- height: 130px;
- }
- }
- .line-icon-page .item-box:hover {
- background: #fafafa;
- }
- .line-icon-page .item span {
- display: block;
- font-size: 28px;
- margin-bottom: 10px;
- }
- .line-icon-page .item:hover {
- color: #72c02c;
- }
- /*GLYPHICONS Icons Page
- ------------------------------------*/
- /*Special styles for displaying the icons and their classes*/
- .bs-glyphicons {
- padding-left: 0;
- list-style: none;
- overflow: hidden;
- padding-bottom: 1px;
- margin-bottom: 20px;
- }
- .bs-glyphicons li {
- width: 25%;
- float: left;
- height: 115px;
- padding: 10px;
- font-size: 12px;
- line-height: 1.4;
- text-align: center;
- margin: 0 -1px -1px 0;
- border: 1px solid #ddd;
- }
- .bs-glyphicons .glyphicon {
- display: block;
- font-size: 24px;
- margin: 5px auto 10px;
- }
- .bs-glyphicons li:hover {
- color: #72c02c;
- background-color: #fafafa;
- }
- @media (min-width: 768px) {
- .bs-glyphicons li {
- width: 12.5%;
- }
- }
- /*Contact Pages
- ------------------------------------*/
- .map {
- width: 100%;
- height: 350px;
- border-top: solid 1px #eee;
- border-bottom: solid 1px #eee;
- }
- .gm-style-iw {
- /*overflow: inherit !important;*/
- }
- .map-box {
- height: 250px;
- }
- .map-box-space {
- margin-top: 15px;
- }
- .map-box-space1 {
- margin-top: 7px;
- }
- /*Background Opacity
- ------------------------------------*/
- .service-or {
- overflow: hidden;
- position: relative;
- }
- .service-bg {
- background-color: rgba(255, 255, 255, 0.1);
- width: 250px;
- padding: 60px;
- position: absolute;
- top: -10px;
- right: -100px;
- transform: rotate(55deg);
- -o-transform: rotate(55deg);
- -ms-transform: rotate(55deg);
- -moz-transform: rotate(55deg);
- -webkit-transform: rotate(55deg);
- }
- /*Service Block v2
- ------------------------------------*/
- .servive-block-v2 .servive-block-in {
- padding: 20px 30px;
- text-align: center;
- margin-bottom: 15px;
- background: rgba(255, 255, 255, 0.2);
- }
- .servive-block-v2 .servive-block-in img {
- width: 100%;
- margin-bottom: 15px;
- }
- .servive-block-v2 .servive-block-in i {
- font-size: 40px;
- }
- .servive-block-v2 .servive-block-in h4 {
- line-height: 25px;
- }
- .servive-block-v2 .servive-block-in p {
- margin-bottom: 20px;
- }
- .servive-block-v2 .servive-block-in i,
- .servive-block-v2 .servive-block-in h4,
- .servive-block-v2 .servive-block-in p {
- color: #fff;
- }
- /*Easy Block
- ------------------------------------*/
- .easy-block-v1 {
- position: relative;
- }
- .easy-block-v1 img {
- width: 100%;
- }
- .easy-block-v1 .overflow-h h3 {
- width: 60%;
- float: left;
- font-size: 18px;
- line-height: 24px;
- margin-bottom: 5px;
- }
- .easy-block-v1 .easy-block-v1-badge {
- left: 0px;
- top: 10px;
- z-index: 1;
- color: #fff;
- padding: 4px 10px;
- position: absolute;
- }
- /*Easy Block v2
- ------------------------------------*/
- .easy-block-v2 {
- overflow: hidden;
- position: relative;
- margin-bottom: 20px;
- }
- .easy-block-v2 img {
- width: 100%;
- }
- .easy-bg-v2 {
- top: 5px;
- color: #fff;
- width: 100px;
- padding: 5px;
- right: -32px;
- font-size: 13px;
- position: absolute;
- text-align: center;
- letter-spacing: 2px;
- transform: rotate(45deg);
- -o-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -webkit-transform: rotate(45deg);
- }
- .rgba-red {
- background-color: rgba(231, 76, 60, 0.8);
- }
- .rgba-blue {
- background-color: rgba(52, 152, 219, 0.8);
- }
- .rgba-default {
- background-color: rgba(114, 192, 44, 0.8);
- }
- .rgba-purple {
- background-color: rgba(155, 107, 204, 0.8);
- }
- /*Easy Block v3
- ------------------------------------*/
- .easy-block-v3 {
- text-align: left;
- background: #585f69;
- margin-bottom: 10px;
- padding: 30px 20px 20px;
- }
- .easy-block-v3.first {
- background: #696f77;
- }
- .easy-block-v3.second {
- background: #707780;
- }
- .easy-block-v3.third {
- background: #787f88;
- }
- .easy-block-v3 i {
- color: #fff;
- float: left;
- font-size: 30px;
- min-width: 45px;
- padding-top: 10px;
- }
- .easy-block-v3 .inner-faq-b {
- overflow: hidden;
- }
- .easy-block-v3 .inner-faq-b h2,
- .easy-block-v3 .inner-faq-b h3 {
- font-size: 21px;
- margin-bottom: 8px;
- }
- .easy-block-v3 .inner-faq-b h4 {
- color: #fff;
- font-size: 17px;
- margin-bottom: 2px;
- }
- .easy-block-v3 .inner-faq-b h2,
- .easy-block-v3 .inner-faq-b h3,
- .easy-block-v3 .inner-faq-b p {
- color: #fff;
- }
- /*Full Width Block
- ------------------------------------*/
- .full-w-block {
- padding: 30px 0;
- background: #282828;
- }
- .full-w-block .info-blocks i,
- .full-w-block .info-blocks-in h3 {
- color: #fff;
- }
- .full-w-block .info-blocks-in p {
- color: #ccc;
- }
- .full-w-block .info-blocks:hover i.icon-info-blocks {
- color: #fff;
- }
- /*Team v2
- ------------------------------------*/
- .team-v2 {
- position: relative;
- margin-bottom: 20px;
- }
- .team-v2 img {
- width: 100%;
- }
- .team-v2 .inner-team {
- padding: 20px;
- background: #fff;
- text-align: center;
- }
- .team-v2 .inner-team h3 {
- margin: 0;
- }
- .team-v2 .inner-team small {
- display: block;
- font-size: 12px;
- margin-bottom: 7px;
- }
- .team-v2 .inner-team p {
- font-size: 13px;
- }
- .team-v2 .inner-team hr {
- margin: 10px 0 15px;
- }
- /*Team-Social ---- Temporary*/
- .team-social {
- margin-bottom: 0;
- }
- .team-social li {
- padding: 0 2px;
- }
- .team-social li a {
- font-size: 14px;
- padding: 6px 4px;
- border-radius: 50% !important;
- }
- .team-social li i {
- min-width: 20px;
- }
- .team-social li a.fb {
- color: #4862a3;
- border: 1px solid #4862a3;
- }
- .team-social li a.tw {
- color: #159ceb;
- border: 1px solid #159ceb;
- }
- .team-social li a.gp {
- color: #dc4a38;
- border: 1px solid #dc4a38;
- }
- .team-social li a:hover {
- text-decoration: none;
- }
- .team-social li a.fb:hover {
- color: #fff;
- background: #4862a3;
- }
- .team-social li a.tw:hover {
- color: #fff;
- background: #159ceb;
- }
- .team-social li a.gp:hover {
- color: #fff;
- background: #dc4a38;
- }
- /*Simple Block
- ------------------------------------*/
- .simple-block {
- margin-bottom: 20px;
- }
- .simple-block img {
- width: 100%;
- }
- .simple-block p {
- text-align: center;
- }
- .simple-block .carousel-indicators {
- top: 10px;
- left: 65%;
- text-align: right;
- }
- .simple-block .carousel-indicators .active {
- background: #555;
- }
- .simple-block .carousel-indicators li {
- border-color: #555;
- }
- .simple-block .carousel-inner > .item {
- margin: 0;
- }
- /*Two Blocks
- ------------------------------------*/
- .two-blocks {
- text-align: center;
- }
- .two-blocks-in {
- margin-bottom: 30px;
- }
- .two-blocks-in i {
- color: #fff;
- padding: 11px;
- font-size: 30px;
- min-width: 50px;
- text-align: center;
- background: #585f69;
- margin-bottom: 10px;
- display: inline-block;
- }
- /*Three Blocks
- ------------------------------------*/
- .three-blocks {
- text-align: center;
- }
- .three-blocks-in {
- margin-bottom: 30px;
- }
- .three-blocks-in i {
- color: #777;
- padding: 9px 6px;
- font-size: 20px;
- min-width: 40px;
- margin-bottom: 10px;
- border: 1px solid #777;
- }
- .three-blocks-in h3 {
- font-size: 20px;
- margin-bottom: 7px;
- }
- /*Temperory Classes
- ------------------------------------*/
- /*Banner-info*/
- .banner-info {
- margin-bottom: 10px;
- }
- .banner-info i {
- float: left;
- color: #fff;
- padding: 11px;
- /*min-width works with line-icon*/
- min-width: 40px;
- font-size: 22px;
- text-align: center;
- margin: 7px 20px 0 0;
- }
- /*min-width works with FontAwesome*/
- .banner-info i.fa {
- min-width: 46px;
- }
- .banner-info.light i {
- border: 1px solid #fff;
- }
- .banner-info.dark i {
- background: #585f69;
- }
- .banner-info h3 {
- font-size: 21px;
- margin-bottom: 5px;
- }
- .banner-info.light h3 {
- color: #fff;
- }
- .banner-info.light p {
- color: #eee;
- }
- /*Breadcrumb-V2*/
- .breadcrumbs-v2 {
- text-align: center;
- position: relative;
- background: url(../images/11.jpg) no-repeat center;
- }
- .breadcrumbs-v2-in {
- padding: 60px 0;
- position: relative;
- }
- .breadcrumbs-v2 h1 {
- color: #fff;
- text-transform: uppercase;
- }
- .breadcrumb-v2 li a,
- .breadcrumb-v2 li.active {
- color: #fff;
- }
- .breadcrumb-v2 li i {
- color: #fff;
- min-width: 19px;
- padding: 3px 7px;
- margin-right: 5px;
- text-align: center;
- border: 1px solid #fff;
- }
- /*Breadcrumbs-v3*/
- .breadcrumbs-v3 {
- padding: 10px 0;
- background: #585f69;
- border-bottom: 1px solid #eee;
- }
- .breadcrumbs-v3 h1 {
- color: #fff;
- margin: 3px 0;
- font-size: 22px;
- font-weight: 200;
- }
- .breadcrumbs-v3 .breadcrumb {
- padding: 0;
- margin-top: 2px;
- margin-bottom: 0;
- }
- .breadcrumbs-v3 .breadcrumb li a {
- color: #fff;
- }
- /*Title-Box-V2*/
- .title-box-v2 {
- text-align: center;
- margin-bottom: 40px;
- }
- .title-box-v2 h2 {
- font-size: 25px;
- text-transform: uppercase;
- }
- .title-box-v2 p {
- font-size: 13px;
- }
- /*remove padding from "Col-"*/
- .no-space {
- padding: 0;
- }
- /*List Style v1*/
- .list-style-v1 li {
- margin-bottom: 7px;
- }
- .list-style-v1 i {
- margin-right: 5px;
- }
- .editableform-loading {
- background: url(../images/loading.gif) center center no-repeat;
- height: 25px;
- width: auto;
- min-width: 25px;
- }
- /* Recent */
- .recent .titles {
- text-align: center;
- text-align: center;
- padding: 20px 0;
- font-size: 20px;
- }
- .recent .titles a {
- color: #585f69;
- margin: 0 10px;
- }
- .recent .titles a.selected {
- color: #72c02c;
- }
- /************fashion-footer***************/
- .bacgrey {
- background: #eeeeee;
- }
- .pading-b80 {
- padding-bottom: 80px;
- }
- .font-18 {
- font-size: 18px;
- }
- .mt-10 {
- margin-top: 10px;
- }
- .container .about .mt-35 {
- margin-top: 35px;
- }
- .container .about p {
- text-align: left;
- color: #555;
- }
- .container .about p span {
- border-bottom: 2px solid #1abc9c;
- padding: 5px 0;
- }
- .container .about ul {
- list-style: none;
- text-align: left;
- margin: 0;
- padding: 0;
- margin-top: 20px;
- width: 40%;
- float: left;
- }
- .container .about ul li {
- line-height: 26px;
- font-size: 14px;
- color: #555 !important;
- text-align: left;
- line-height: 26px;
- }
- .padding-tb55 {
- padding: 55px 0;
- }
- .container .about ul li a {
- color: #777;
- font-size: 14px;
- text-decoration: none !important;
- }
- .container .about ul li a:hover {
- color: #1abc9c;
- }
- .container .about ul li .btn-default {
- background: #aaa;
- border: #aaa;
- color: #fff !important;
- font-size: 14px;
- padding: 3px 15px;
- }
- .container .about ul li .btn-default:hover {
- background: #1abc9c;
- }
- .container .about ul li a img {
- margin-bottom: 3px;
- margin-right: 5px;
- }
- footer .container {
- border-top: 1px solid #3a3a3a;
- padding: 0px;
- padding-top: 15px;
- padding-bottom: 10px;
- }
- footer a.pgy {
- color: #1abc9c !important;
- text-decoration: none !important;
- }
- footer p {
- font-size: 14px !important;
- color: #555 !important;
- }
- .container .about .f-chat {
- width: 48px;
- height: 48px;
- background: url(../images/footer_wechat.png) no-repeat;
- display: inline-block;
- }
- .container .about .f-chat:hover {
- width: 48px;
- height: 48px;
- background: url(../images/footer_wechat_hover.png) no-repeat;
- }
- .container .about .f-sina {
- width: 48px;
- height: 48px;
- background: url(../images/footer_sina.png) no-repeat;
- display: inline-block;
- margin-left: 10px;
- }
- .container .about .f-sina:hover {
- width: 48px;
- height: 48px;
- background: url(../images/footer_sina_hover.png) no-repeat;
- }
- /**********fashion_header**********/
- .topbar {
- z-index: 12;
- padding: 8px 30px 0px 0px;
- position: relative;
- }
- .topbar ul.loginbar {
- margin: 0;
- }
- .topbar ul.loginbar li {
- display: inline;
- list-style: none;
- position: relative;
- padding-bottom: 15px;
- }
- .topbar ul li i {
- color: #555 !important;
- }
- .topbar ul.loginbar li.Iota {
- padding: 0 5px;
- color: #555 !important;
- }
- .topbar ul.loginbar li a {
- color: #555;
- font-size: 14px;
- text-decoration: none;
- }
- .topbar ul.loginbar li a:hover {
- color: #1abc9c;
- }
- header .container {
- padding-right: 0px;
- padding-left: 0px;
- }
- .navbar .nav li a {
- font-size: 15px;
- color: #555;
- display: block;
- height: 50px;
- }
- .navbar .nav li a:hover, .navbar .nav li.active a:hover {
- background: none;
- color: #1abc9c !important;
- border-bottom: 2px solid #1abc9c;
- }
- .navbar .nav li.active a {
- background: none;
- font-size: 15px;
- color: #1abc9c !important;
- border-bottom: 2px solid #1abc9c;
- }
- .navbar-default {
- background: #fff;
- border: none;
- }
- .navbar {
- margin-bottom: 0px;
- margin-top: 20px;
- padding-bottom: 0px;
- }
- @media screen and (max-width: 768px) {
- .navbar .nav li a {
- min-height: 45px;
- line-height: 45px;
- padding-bottom: 0px;
- padding-top: 0px;
- font-size: 15px;
- color: #555;
- }
- .navbar-header {
- padding-left: 30px;
- padding-top: 10px;
- margin-left: 0px !important;
- margin-right: 0px !important;
- }
- .navbar-header a img {
- margin-bottom: 10px;
- }
- .navbar-toggle {
- margin-right: 32px !important;
- }
- }
- .navbar-toggle {
- background: #1abc9c !important;
- color: #fff;
- padding: 5px 10px;
- border: none;
- margin-right: 35px;
- margin-top: 0px;
- }
- .navbar-toggle:hover {
- background: #56bc94 !important;
- }
- .navbar .nav li {
- text-align: center;
- }
- .navbar .nav li a:hover {
- color: #1abc9c;
- }
- .breadcrumbs {
- border-top: 2px solid #eee;
- }
- .back-333 {
- background: #333;
- }
- .mt-70 {
- margin-top: 70px;
- }
- .color-wthite {
- color: #fff !important;
- }
- .color-777 {
- color: #777 !important;
- }
- .back-333 .container .row ul {
- list-style: none;
- padding-left: 0;
- padding-right: 0;
- }
- .back-333 .container .row ul li {
- color: #777;
- font-size: 14px;
- }
- .back-333 .container .row ul li a {
- color: #777;
- text-decoration: none;
- }
- .back-333 .container .row ul li a:hover {
- color: #1abc9c;
- }
- .back-333 .container .row p a:hover {
- color: #777;
- }
- .back-333 .row p.font-14 {
- font-size: 14px !important;
- }
- .back-333 .row div {
- padding-left: 25px;
- padding-right: 25px;
- }
- a.color-1abc9c {
- color: #1abc9c;
- text-decoration: none !important;
- }
- .back-2f2f2f {
- background: #2f2f2f;
- }
- .mt-25 {
- margin-top: 25px;
- }
- /*****install-loading******/
- @-webkit-keyframes rotate {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0)
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg)
- }
- }
- @keyframes rotate {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0)
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg)
- }
- }
- .loading {
- display: none;
- background-color: transparent;
- width: 45px;
- height: 45px;
- border: 1px solid #1abc9c;
- border-radius: 50%;
- border-top-color: transparent;
- border-left-color: transparent;
- -webkit-transition: all .25s;
- transition: all .25s;
- -webkit-animation: rotate .6s linear infinite;
- animation: rotate .6s linear infinite
- }
- #showtext {
- display: none;
- text-align: center;
- color: #1abc9c;
- font-size: 14px;
- }
- .spinner {
- height: 45px;
- text-align: center;
- }
- .browser_notice {
- background-color: #d9534f;
- padding: 10px;
- color: #fff;
- text-align: center;
- }
- @media screen and (max-width: 768px) {
- .copyright .container .row div.col-md-6 {
- /* padding-left:5px !important;
- padding-right:5px !important;*/
- text-align: center;
- margin-bottom: 10px;
- }
- }
|