| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283 |
- /* =================================== */
- /* Basic Style
- /* =================================== */
- body {
- background-color: #fff;
- font-family: 'Open Sans', sans-serif;
- line-height: 24px;
- font-size: 16px;
- color: #818181;
- }
- figure, p, address {
- margin: 0;
- }
- iframe {
- border: 0;
- }
- a {
- color: #0aa6bd;
- -webkit-transition: all 0.3s ease-out 0s;
- -moz-transition: all 0.3s ease-out 0s;
- -ms-transition: all 0.3s ease-out 0s;
- -o-transition: all 0.3s ease-out 0s;
- transition: all 0.3s ease-out 0s;
- }
- a, a:hover, a:focus, .btn:focus {
- text-decoration: none;
- outline: none;
- }
- h1, h2, h3, h4, h5, h6,
- .h1, .h2, .h3, .h4, .h5, .h6 {
- font-family: 'Open Sans', sans-serif;
- color: #252525;
- }
- p {
- font-size: 15px;
- }
- main > section {
- padding: 70px 0;
- }
- .btn {
- border-radius: 0;
- border: 0;
- position: relative;
- text-transform: uppercase;
- }
- .btn-blue {
- background-color: rgba(10, 166, 189, 0.75);
- box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
- padding: 15px 55px;
- color: #fff;
- }
- .btn-border {
- border: 2px solid #fff;
- color: #fff;
- padding: 12px 35px;
- }
- .bg-blue {
- background-color: #0aa6bd;
- }
- .logo-img {
- width: 120px;
- margin-top: -4px;
- }
- /* 遮罩 */
- .zhezhao {
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- background: #000;
- opacity: 0.8;
- z-index: 10000;
- }
- /* 登录弹窗 */
- .tishi {
- font-size: 12px;
- color: #FF6A1A;
- position: absolute;
- left: 42px;
- margin-top: -3px;
- }
- .tishi img {
- margin-top: -4px;
- margin-right: 10px;
- }
- .qiantao,.qiantaodl {
- display: none;
- position: fixed;
- top: 55%;
- left: 50%;
- z-index: 10;
- margin-left: -214px;
- margin-top: -219px;
- width: 428px;
- height: 438px;
- }
- .qiantaodl {
- height: 296px;
- margin-top: -148px;
- width: 350px;
- margin-left: -175px;
- }
- .box{
- width: 430px;
- height: 504px;
- position: fixed;
- background:white;
- top: 50%;
- left:50%;
- margin-left: -215px;
- margin-top: -252px;
- z-index: 10001;
- }
- .tc-login {
- text-align: center;
- color: black;
- margin: 24px;
- /* margin-top: -20px; */
- }
- .tc-logoimg {
- width: 123px;
- height: 53px;
- margin-top: 22px;
- }
- .tc-out {
- position: absolute;
- top: 24px;
- right: 24px;
- cursor:pointer;
- }
- /* .tc-logo {
- font-family: PingFangSC-Medium;
- font-size: 18px;
- color: #007FE6;
- letter-spacing: 0.34px;
- text-align: center;
- margin-top: 38px;
- } */
- .tc-title {
- font-family: PingFangSC-Regular;
- font-size: 14px;
- color: #999999;
- letter-spacing: 0.3px;
- text-align: center;
- margin-top: 10px;
- line-height: 30px;
- }
- .tc-hrleft {
- width: 60px;
- display: inline-block;
- margin-top: 0;
- margin-bottom: 5px;
- margin-right: 5px;
- }
- .tc-hrright {
- width: 50px;
- display: inline-block;
- margin-top: 0;
- margin-bottom: 5px;
- margin-left: 5px;
- }
- .tc-phone {
- background: rgba(32,53,128,0.01);
- border: 1px solid #D8DCE8;
- border-radius: 3px;
- /* width: 330px; */
- height: 40px;
- margin: 16px auto;
- }
- .tc-phonebox {
- line-height: 33px;
- margin-left: 10px;
- text-align: left;
- }
- .tc-phonecon {
- border: 0;
- width: 94%;
- height: 38px;
- }
- .tc-phonepwd {
- border: 0;
- width: 295px;
- height: 38px;
- }
- .tc-login-pwd {
- background-image: linear-gradient(-90deg, #007EE5 0%, #05B3FF 100%, #5533FF 100%);
- border-radius: 3px;
- border: 0;
- box-shadow: 0px 16px 22px -12px #05B3FF;
- width: 100%;
- height: 40px;
- margin-bottom: 12px;
- color: white;
- }
- .tc-duanxin {
- font-family: PingFangSC-Medium;
- font-size: 12px;
- color: #0080E6;
- letter-spacing: 0.26px;
- }
- .tc-over {
- overflow: hidden;
- }
- .tc-duanxin a {
- text-decoration:underline;
- }
- .tc-color {
- font-family: PingFangSC-Regular;
- font-size: 12px;
- color: #727272;
- letter-spacing: 0.26px;
- text-align: center;
- }
- .tc-weixin {
- font-family: PingFangSC-Regular;
- font-size: 12px;
- color: #999999;
- letter-spacing: 0.26px;
- }
- /* 短信登录 */
- .tc-yanzhengma {
- border: 0;
- height: 38px;
- }
- .tc-shibiema {
- width: 204px;
- margin-left: -10px;
- }
- .tc-huoqu {
- background-image: linear-gradient(-90deg, #007EE5 0%, #05B3FF 100%, #5533FF 100%);
- border-radius: 3px;
- border: 0;
- height: 40px;
- width: 115px;
- color: white;
- }
- /* 新注册 */
- .tc-yanzhengimg {
- width: 90px;
- height: 40px;
- margin-left: 10px;
- border: #0080E6 1px solid;
- }
- /* 11/12注册页面 ..........................................*/
- .login,.profile {
- color: white;
- font-size: 16px;
- /* font-weight: 600; */
- }
- .login {
- margin-top: 12px;
- }
- .profile .user-info {
- margin: 0 15px;
- }
- .login img,.profile img {
- width: 20px;
- margin-right: 5px;
- }
- .login > span:hover,.profile > span:hover{
- cursor:pointer;
- /* color: #0aa6bd; */
- }
- .my-label {
- float: left;
- line-height: 40px;
- color:#414141;
- }
- .my-ipt {
- width: 100%;
- }
- .zc-box {
- margin: 50px;
- }
- .xieyi {
- color: #999;
- float: left;
- font-size: 12px;
- }
- .form-buttom {
- float: right;
- font-family: PingFangSC-Regular;
- font-size: 12px;
- color: #727272;
- letter-spacing: 0.26px;
- }
- .form-buttom a{
- color: #5533FF;
- text-decoration: underline;
- }
- .back {
- background: #6f6f6f;
- }
- /* 首页内容 ..........................................*/
- .my-text {
- position: absolute;
- width: 13%;
- height: 6%;
- top: 64%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 1000;
- }
- .my-tiyan {
- background: #5172DD;
- border-radius: 4px;
- width: 100%;
- height: 100%;
- font-family: PingFangSC-Regular;
- font-size: 14px;
- color: #FFFFFF;
- border: 0;
- }
- /* 特色 .......................................*/
- .ts-worp {
- width: 100%;
- padding: 0;
- margin: 0;
- margin-top: 100px;
- }
- .ts-box {
- overflow: hidden;
- /* margin-top: 50px; */
- position: relative;
- padding: 150px 0;
- }
- .ts-boximg {
- position: absolute;
- top: 40px;
- }
- .ts-lefttext p {
- text-align: right;
- }
- .ts-title {
- font-family: PingFangSC-Regular !important;
- color: #0D253E !important;
- font-size: 24px !important;
- margin-bottom: 14px;
- font-weight: 600;
- }
- .left {
- float: left;
- }
- .right {
- float: right;
- }
- .ts-img {
- width: 100%;
- }
- .right-text {
- text-align: right;
- }
- .left-text {
- text-align: left;
- }
- .ts-text {
- font-family: PingFangSC-Regular !important;
- color: #9EA8B2 !important;
- }
- /* 功能 .........................................*/
- .gn-beijing {
- width: 100%;
- position: absolute;
- top: 247px;
- }
- .gn-img {
- width: 100px;
- height: 100px;
- border-radius: 50%;
- background: #1E88F5;
- text-align: center;
- line-height: 100px;
- margin: 0 auto;
- position: relative;
- margin-top: 12px;
- }
- .gn-img img {
- width: 50%;
- }
- .gn-huise {
- background: #F4F8FC;
- }
- .gn-xiaoqiu {
- width: 30px;
- height: 30px;
- border-radius: 50%;
- background: #FFCC01;
- box-shadow: 0 0 15px 0 rgba(255,204,1,0.40);
- position: absolute;
- top: 0;
- right: 0;
- }
- .gn-left {
- left: 0;
- }
- .gn-hei>div {
- height: 245px;
- }
- .service-item {
- margin-bottom: 60px;
- padding:0 14px;
- text-align: center;
- }
- .gn-text {
- font-family: PingFangSC-Regular;
- font-size: 18px;
- color: #0D253E;
- font-weight: 600;
- margin-top: 12px;
- }
- .gn-color {
- color: #1E88F5;
- }
- /* 帮助 ........................................*/
- .bz-worp {
- background: white;
- width: 90%;
- margin: 0 auto;
- padding: 40px;
- }
- .bz-box {
- border: 1px solid #1E88F5;
- border-radius: 5px;
- border-right: 0;
- }
- .bz-sskuang {
- width: 90%;
- float: left;
- line-height: 38px;
- }
- .bz-sousuo {
- width: 94%;
- margin: 0 -5px;
- border: 0;
- outline: none;
- }
- .bz-sousuoimg {
- margin: -3px 10px 0 14px;
- }
- .bz-btn {
- background: #1E88F5;
- border-radius: 0 5px 5px 0;
- width: 10%;
- border: 0;
- color: white;
- height: 40px;
- }
- .bz-content {
- margin-top: 30px;
- border: 0;
- }
- .bz-left {
- width: 100%;
- overflow: hidden;
- }
- .bz-ul {
- border-bottom: 1px solid #D8D8D8;
- overflow: hidden;
- margin-left: -40px;
- }
- .bz-left li {
- float: left;
- width: 50%;
- list-style: none;
- text-align: center;
- height: 40px;
- cursor:pointer;
- }
- .active {
- border-bottom: 5px solid #FFCC01;
- }
- .bz-right {
- width: 100%;
- background: white;
- }
- .bz-yuandian {
- background: #FFCC01;
- width: 16px;
- height: 16px;
- border-radius: 50%;
- margin: 4px 8px 0 0;
- }
- .bz-right-conent div {
- display: none;
- }
- .bz-right-conent li {
- margin-bottom: 14px;
- list-style: none;
- overflow: hidden;
- margin-left: -40px;
- }
- .bz-right-conent {
- /* margin: 30px; */
- }
- /* 底部 ...................................*/
- /*footer*/
- .footer{
- width: 100%;
- background: #383838;
- }
- .db-text {
- background: white;
- color: #000;
- }
- .footer .container{
- margin: 0 auto;
- width: 80%;
- height: 260px;
- overflow: hidden;
- text-align: center;
- }
- .footer-section .link{
- overflow: hidden;
- float: left;
- margin-right: 100px;
- }
- .footer-section ul{
- float: left;
- margin-right: 45px;
- }
- .footer-section ul:last-child {
- margin-right: 0;
- }
- .footer-section ul>li{
- list-style: none;
- }
- .footer-section ul>li span {
- display: inline-block;
- margin-bottom: 28px;
- font-size: 16px;
- color: #fff;
- }
- .footer-section ul>li a{
- display: inline-block;
- margin-bottom: 10px;
- font-size: 14px;
- color: #fff;
- cursor: pointer;
- }
- .footer-section ul>li:hover a{
- text-decoration: underline ;
- color: #e41f2b;
- }
- .footer-section ul>li:hover a.no-link{
- text-decoration: none;
- color: #fff;
- cursor: default;
- }
- .footer-section .about{
- float: left;
- margin-right: 30px;
- width: 245px;
- text-align: left;
- }
- .footer-section .about .logo{
- margin-bottom: 18px;
- }
- .footer-section .about .logo img{
- width: 150px;
- /* height: 44px; */
- }
- .footer-section .about .time{
- margin-bottom: 21px;
- font-size: 14px;
- color: #fff;
- }
- .footer-section .qr{
- overflow: hidden;
- text-align: right;
- float: right;
- }
- .footer-section .qr .qr-top{
- overflow: hidden;
- }
- .footer-section .qr .qr-code{
- width: 110px;
- font-size: 14px;
- color: #fff;
- text-align: center;
- }
- .footer-section .qr .qr-mall{
- margin-right: 21px;
- }
- .footer-section .qr .qr-code img{
- width: 100%;
- margin-bottom: 18px;
- }
- .footer-section .qr .qr-bottom{
- margin-top: 22px;
- line-height: 30px;
- text-align: right;
- font-size: 13px;
- color: #fff;
- }
- .footer .footer-list{
- margin: 55px auto 22px;
- }
- .friend-link{
- height: 100px;
- background: #000;
- width: 100%;
- line-height: 100px;
- text-align: center;
- }
- .friend-link span {
- opacity: 0.56;
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #FFFFFF;
- letter-spacing: 0;
- text-align: center;
- }
- .friend-link ul{
- overflow: hidden;
- list-style: none ;
- width: 80%;
- margin: 0 auto;
- padding: 0 15px;
- }
- .friend-link ul li{
- float: left;
- }
- .friend-link ul li span{
- font-size: 14px;
- color: #FFFFFF;
- }
- .friend-link ul li a{
- display: inline-block;
- margin-right: 20px;
- font-size: 14px;
- color: #FFFFFF;
- }
- .friend-link ul li a:hover{
- text-decoration: underline ;
- color: #e41f2b;
- }
- /* Sweep To Right */
- .btn-effect {
- vertical-align: middle;
- box-shadow: 0 0 1px rgba(0, 0, 0, 0);
- position: relative;
- display: inline-block;
- -webkit-transform: translateZ(0);
- -moz-transform: translateZ(0);
- -ms-transform: translateZ(0);
- -o-transform: translateZ(0);
- transform: translateZ(0);
- -webkit-backface-visibility: hidden;
- -moz-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-transition-property: color;
- -moz-transition-property: color;
- -ms-transition-property: color;
- transition-property: color;
- -webkit-transition-duration: 0.3s;
- -moz-transition-duration: 0.3s;
- -ms-transition-duration: 0.3s;
- transition-duration: 0.3s;
- -moz-osx-font-smoothing: grayscale;
- }
- .btn-effect:before {
- content: "";
- position: absolute;
- z-index: -1;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #fff;
- -webkit-transform: scaleX(0);
- -moz-transform: scaleX(0);
- -ms-transform: scaleX(0);
- transform: scaleX(0);
- -webkit-transform-origin: 0 50%;
- -moz-transform-origin: 0 50%;
- -ms-transform-origin: 0 50%;
- transform-origin: 0 50%;
- -webkit-transition-property: transform;
- -moz-transition-property: transform;
- -ms-transition-property: transform;
- transition-property: transform;
- -webkit-transition-duration: 0.3s;
- -moz-transition-duration: 0.3s;
- -ms-transition-duration: 0.3s;
- transition-duration: 0.3s;
- -webkit-transition-timing-function: ease-out;
- -moz-transition-timing-function: ease-out;
- -ms-transition-timing-function: ease-out;
- transition-timing-function: ease-out;
- }
- .btn-effect:hover, .btn-effect:focus, .btn-effect:active {
- color: rgb(9, 157, 178);
- }
- .btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
- -webkit-transform: scaleX(1);
- -moz-transform: scaleX(1);
- -ms-transform: scaleX(1);
- transform: scaleX(1);
- }
- .section-title {
- /* margin-bottom: 80px; */
- }
- .section-title.white {
- color: #fff;
- }
- .section-title h2 {
- color: #0aa6bd;
- font-size: 24px;
- font-weight: 700;
- line-height: 20px;
- margin-bottom: 25px;
- padding-bottom: 20px;
- position: relative;
- text-transform: uppercase;
- }
- .section-title p {
- color: #444;
- /* font-style: italic; */
- font-size: 13px;
- }
- .section-title.white p {
- color: #fff;
- }
- .section-title.white h2 {
- color: #fff;
- }
- .section-title h2:after {
- position: absolute;
- left: 50%;
- bottom: 0;
- height: 2px;
- width: 72px;
- margin-left: -36px;
- background: #636363;
- content: "";
- }
- .section-title.white h2:after {
- background: #fff;
- }
- .parallax {
- background-attachment: fixed;
- background-position: center top;
- background-repeat: no-repeat;
- background-size: cover;
- }
- /**
- /* Preloader
- /* ==========================================*/
- #preloader {
- background-color: #fff;
- position: fixed;
- width: 100%;
- height: 100%;
- z-index: 9999;
- }
- /*Battery*/
- .loder-box {
- background-color: rgba(0, 0, 0, 0.02);
- border-radius: 1px;
- height: 100px;
- left: 50%;
- margin-left: -64px;
- margin-top: -50px;
- position: absolute;
- top: 50%;
- width: 128px;
- }
- .battery{
- width: 60px;
- height: 25px;
- top: 35%;
- border: 1px #2E2E2E solid;
- border-radius: 2px;
- position: relative;
- -webkit-animation: charge 5s linear infinite;
- -moz-animation: charge 5s linear infinite;
- animation: charge 5s linear infinite;
- margin: 0 auto;
- }
- .battery:after {
- background-color: #2E2E2E;
- border-radius: 0 1px 1px 0;
- content: "";
- height: 10px;
- position: absolute;
- right: -5px;
- top: 7px;
- width: 3px;
- }
- @-webkit-keyframes charge{
- 0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
- 100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
- }
- @-moz-keyframes charge{
- 0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
- 100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
- }
- @keyframes charge{
- 0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
- 100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
- }
- /**
- /* Header
- /* ==========================================*/
- #navigation {
- -webkit-transition: all 0.8s ease 0s;
- -moz-transition: all 0.8s ease 0s;
- -ms-transition: all 0.8s ease 0s;
- -o-transition: all 0.8s ease 0s;
- transition: all 0.8s ease 0s;
- background-color: rgba(0, 0, 0, 0.77);
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
- /* padding: 5px 0; */
- }
- #navigation.animated-header {
- padding: 10px 0;
- }
- h1.navbar-brand {
- font-size: 20px;
- font-weight: 700;
- margin-top: -12px;
- text-transform: uppercase;
- }
- .navbar-inverse .navbar-nav > li > a {
- color: #fff;
- font-size: 16px;
- text-transform: uppercase;
- /* font-weight: bold; */
- }
- .menu {
- }
- .menu li a {
- display: inline-block;
- }
- .menu li a span {
- }
- .menu li a span:before {
- content: "";
- position: absolute;
- width: 100%;
- height: 2px;
- bottom: 0;
- left: 0;
- background-color: #0aa6bd;
- visibility: hidden;
- -webkit-transform: scaleX(0);
- -moz-transform: scaleX(0);
- -ms-transform: scaleX(0);
- -o-transform: scaleX(0);
- transform: scaleX(0);
- -webkit-transition: all 0.3s ease-in-out 0s;
- -moz-transition: all 0.3s ease-in-out 0s;
- -ms-transition: all 0.3s ease-in-out 0s;
- -o-transition: all 0.3s ease-in-out 0s;
- transition: all 0.3s ease-in-out 0s;
- }
- .menu li a:hover span:before {
- visibility: visible;
- -webkit-transform: scaleX(1);
- -moz-transform: scaleX(1);
- -ms-transform: scaleX(1);
- -o-transform: scaleX(1);
- transform: scaleX(1);
- }
- /*=================================================================
- Home Slider
- ==================================================================*/
- #home-slider {
- position: relative;
- padding: 0;
- }
- .mask-overly {
- /* background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0; */
- bottom: 0;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
- /* z-index: 9; */
- }
- #slider #nav-arrows > a {
- font-size: 40px;
- line-height: 1.5;
- }
- .slider-1 img{
- width: 100%;
- height: 100%;
- }
- .sl-slider-wrapper {
- width: 100%;
- margin: 0 auto;
- position: relative;
- overflow: hidden;
- }
- .sl-slider {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- /* Slide wrapper and slides */
- .sl-slide,
- .sl-slides-wrapper,
- .sl-slide-inner {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- }
- .sl-slide {
- z-index: 1;
- }
- .slide-caption {
- color: #fff;
- display: table;
- height: 100%;
- left: 0;
- min-height: 100%;
- position: absolute;
- text-align: center;
- top: 0;
- width: 60%;
- z-index: 999;
- left: 50%;
- transform: translateX(-50%);
- }
- .slide-caption .caption-content {
- vertical-align: middle;
- display: table-cell;
- }
- .caption-content h2 {
- color: #fff;
- font-size: 50px;
- font-weight: 900;
- margin-bottom: 25px;
- }
- .caption-content > p {
- display: block;
- font-size: 16px;
- margin-bottom: 45px;
- text-transform: capitalize;
- margin-bottom: 65px;
- font-weight: 200;
- }
- /*Slider Arrow Buttons*/
- #nav-arrows > a {
- border: 1px solid #fff;
- color: #fff;
- display: block;
- height: 60px;
- line-height: 76px;
- position: absolute;
- text-align: center;
- top: 50%;
- width: 60px;
- z-index: 20;
- margin-top: -30px;
- -webkit-transition: all 0.3s ease 0s;
- -moz-transition: all 0.3s ease 0s;
- -ms-transition: all 0.3s ease 0s;
- -o-transition: all 0.3s ease 0s;
- transition: all 0.3s ease 0s;
- }
- #nav-arrows > a.sl-prev {
- transform: translateX(-50px);
- opacity:0;
- }
- #slider:hover #nav-arrows > a.sl-prev {
- opacity: 1;
- transform: translateX(20px);
- }
- #nav-arrows > a.sl-next {
- right:0;
- transform: translateX(50px);
- opacity:0;
- }
- #slider:hover #nav-arrows > a.sl-next {
- opacity: 1;
- transform: translateX(-20px);
- }
- #nav-arrows > a.sl-next:hover ,#nav-arrows > a.sl-prev:hover {
- background-color: #0aa6bd;
- border-color: #0aa6bd;
- color: #fff;
- }
- /* The duplicate parts/slices */
- .sl-content-slice {
- overflow: hidden;
- position: absolute;
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- background: #fff;
- -webkit-backface-visibility: hidden;
- -moz-backface-visibility: hidden;
- -o-backface-visibility: hidden;
- -ms-backface-visibility: hidden;
- backface-visibility: hidden;
- opacity : 1;
- }
- /* Horizontal slice */
- .sl-slide-horizontal .sl-content-slice {
- width: 100%;
- height: 50%;
- left: -200px;
- -webkit-transform: translateY(0%) scale(1);
- -moz-transform: translateY(0%) scale(1);
- -o-transform: translateY(0%) scale(1);
- -ms-transform: translateY(0%) scale(1);
- transform: translateY(0%) scale(1);
- }
- .sl-slide-horizontal .sl-content-slice:first-child {
- top: -200px;
- padding: 200px 200px 0px 200px;
- }
- .sl-slide-horizontal .sl-content-slice:nth-child(2) {
- top: 50%;
- padding: 0px 200px 200px 200px;
- }
- /* Vertical slice */
- .sl-slide-vertical .sl-content-slice {
- width: 50%;
- height: 100%;
- top: -200px;
- -webkit-transform: translateX(0%) scale(1);
- -moz-transform: translateX(0%) scale(1);
- -o-transform: translateX(0%) scale(1);
- -ms-transform: translateX(0%) scale(1);
- transform: translateX(0%) scale(1);
- }
- .sl-slide-vertical .sl-content-slice:first-child {
- left: -200px;
- padding: 200px 0px 200px 200px;
- }
- .sl-slide-vertical .sl-content-slice:nth-child(2) {
- left: 50%;
- padding: 200px 200px 200px 0px;
- }
- /* Content wrapper */
- /* Width and height is set dynamically */
- .sl-content-wrapper {
- position: absolute;
- }
- .sl-content {
- width: 100%;
- height: 100%;
- }
- /* Project laughtbox setup */
- .fancybox-item.fancybox-close {
- background: url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
- height: 50px;
- right: 0;
- top: 0;
- width: 50px;
- }
- .fancybox-next span {
- background: url("../img/right.png") no-repeat scroll center center #0aa6bd;
- height: 50px;
- width: 50px;
- right: 0;
- }
- .fancybox-prev span {
- background: url("../img/left.png") no-repeat scroll center center #0aa6bd;
- height: 50px;
- width: 50px;
- left: 0;
- }
- /*=================================================================
- Feature
- ==================================================================*/
- .list-nav {
- padding:0;
- margin-top: 20px;
- }
- .list-nav li {
- list-style: none;
- margin: 0;
- padding: 0;
- font-size: 16px;
- padding-left: 30px;
- margin-bottom: 10px;
- position: relative;
- }
- .list-nav li i {
- position: absolute;
- left: 0;
- top: 4px;
- font-size: 28px;
- color: #1fb5f6;
- }
- /*=================================================================
- Prototype
- ==================================================================*/
- #prototype {
- background: #f1f1f1;
- }
- #prototype img {
- }
- #prototype .block {
- }
- #prototype .block img {
- width: 100%;
- height: auto;
- margin-bottom: 20px;
- }
- #prototype .block p {
- margin-top: 10px;
- }
- #prototype .block .btn {
- margin-top: 20px;
- }
- /*=================================================================
- Services
- ==================================================================*/
- .service-icon {
- border: 3px solid transparent;
- display: inline-block;
- line-height: 40px;
- -webkit-transition: all 0.3s ease 0s;
- -moz-transition: all 0.3s ease 0s;
- -ms-transition: all 0.3s ease 0s;
- -o-transition: all 0.3s ease 0s;
- transition: all 0.3s ease 0s;
- }
- .service-icon i {
- font-size: 60px;
- color: #0aa6bd;
- }
- /*=================================================================
- Video Section
- ==================================================================*/
- .video-bg {
- background: transparent url("../img/video-bg.jpg") no-repeat scroll center center / cover ;
- color: #fff;
- position: relative;
- text-align: center;
- z-index: 1;
- }
- .modal-section {
- }
- .modal-dialog {
- margin:100px auto;
- }
- .modal-header {
- border:none;
- }
- .video-bg .section-title p {
- color: #fff;
- }
- .video-bg .overlay {
- background-color: rgba(0, 0, 0, 0.5);
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 0;
- }
- .video-popup-button {
- background-color: #0aa6bd;
- border-radius: 50%;
- color: #fff;
- display: inline-block;
- font-size: 90px;
- height: 150px;
- line-height: 150px;
- margin-bottom: 80px;
- width: 150px;
- position: relative;
- }
- .video-popup-button i {
- margin-left: 15px;
- }
- .video-popup-button:hover,.video-popup-button:focus {
- background-color: transparent;
- color: #fff;
- }
- .video-popup-button:before {
- border: 2px solid #fff;
- border-radius: 50%;
- bottom: 0;
- content: "";
- left: 0;
- opacity: 0;
- position: absolute;
- right: 0;
- top: 0;
- transition: all 0.3s ease 0s;
- }
- .video-popup-button:hover:before {
- opacity: 1;
- }
- /*=================================================================
- Portfolio
- ==================================================================*/
- .project-wrapper {
- margin: 0;
- padding: 0;
- list-style: none;
- text-align: center;
- }
- .project-wrapper .row {
- margin: 0;
- }
- .project-wrapper [class^="col-"] {
- padding-left: 0;
- padding-right: 0;
- }
- .portfolio-filter {
- font-size: 0;
- list-style: outside none none;
- margin: 0 0 40px;
- padding: 0;
- }
- .portfolio-filter li {
- display: inline-block;
- }
- .portfolio-filter li a {
- color: #777;
- display: block;
- font-size: 14px;
- padding: 0 20px;
- position: relative;
- }
- .portfolio-filter li a.active {
- color: #0aa6bd;
- }
- .portfolio-filter li a::after {
- bottom: auto;
- content: "/";
- position: absolute;
- right: 0;
- top: auto;
- }
- .portfolio-filter li:last-child a::after {
- content: none;
- }
- .portfolio-item {
- cursor: pointer;
- overflow: hidden;
- position: relative;
- }
- .portfolio-item img {
- -webkit-transition: all 0.4s ease 0s;
- -moz-transition: all 0.4s ease 0s;
- -o-transition: all 0.4s ease 0s;
- transition: all 0.4s ease 0s;
- }
- .portfolio-item:hover img {
- -webkit-transform: translateY(-105px);
- -ms-transform: translateY(-105px);
- -o-transform: translateY(-105px);
- transform: translateY(-105px);
- }
- figcaption.mask {
- background-color: #f1f1f1;
- bottom: 0;
- color: #333;
- padding: 25px;
- position: absolute;
- width: 100%;
- text-align: left;
- -webkit-transform: translateY(100%);
- -ms-transform: translateY(100%);
- -o-transform: translateY(100%);
- transform: translateY(100%);
- -webkit-transition: all 0.4s ease 0s;
- -moz-transition: all 0.4s ease 0s;
- -o-transition: all 0.4s ease 0s;
- transition: all 0.4s ease 0s;
- }
- .portfolio-item:hover figcaption.mask {
- -webkit-transform: translateY(0px);
- -ms-transform: translateY(0px);
- -o-transform: translateY(0px);
- transform: translateY(0px);
- }
- figcaption.mask h3 {
- margin-top: 0;
- color: #333;
- font-size: 18px;
- margin-bottom:15px;
- opacity: 0;
- -webkit-transform: translateY(30px);
- -ms-transform: translateY(30px);
- -o-transform: translateY(30px);
- transform: translateY(30px);
- -webkit-transition: all 0.4s ease 0.1s;
- -moz-transition: all 0.4s ease 0.1s;
- -o-transition: all 0.4s ease 0.1s;
- transition: all 0.4s ease 0.1s;
- }
- figcaption.mask p {
- line-height: 1.3;
- -webkit-transform: translateY(30px);
- -ms-transform: translateY(30px);
- -o-transform: translateY(30px);
- transform: translateY(30px);
- opacity: 0;
- -webkit-transition: all 0.4s ease 0.3s;
- -moz-transition: all 0.4s ease 0.3s;
- -o-transition: all 0.4s ease 0.3s;
- transition: all 0.4s ease 0.3s;
- }
- .portfolio-item:hover figcaption.mask h3,
- .portfolio-item:hover figcaption.mask p {
- opacity: 1;
- -webkit-transform: translateY(0px);
- -ms-transform: translateY(0px);
- -o-transform: translateY(0px);
- transform: translateY(0px);
- }
- ul.external {
- list-style: outside none none;
- margin: 0;
- padding: 0;
- position: absolute;
- right: 0;
- top: -47px;
- -webkit-transition: all 0.4s ease 0s;
- -moz-transition: all 0.4s ease 0s;
- -ms-transition: all 0.4s ease 0s;
- -o-transition: all 0.4s ease 0s;
- transition: all 0.4s ease 0s;
- }
- ul.external li {
- display: inline-block;
- }
- ul.external li a {
- background-color: rgba(255, 255, 255, 0.9);
- color: #818181;
- display: block;
- padding: 10px 18px 13px;
- -webkit-transition: all 0.5s ease 0s;
- -moz-transition: all 0.5s ease 0s;
- -ms-transition: all 0.5s ease 0s;
- -o-transition: all 0.5s ease 0s;
- transition: all 0.5s ease 0s;
- }
- ul.external li a:hover {
- background-color: #0aa6bd;
- color: #fff;
- }
- .portfolio-item:hover ul.external {
- top: 0;
- }
- .fancybox-skin {
- border-radius: 0;
- }
- .fancybox-title.fancybox-title-inside-wrap {
- padding: 15px;
- }
- .fancybox-title h3 {
- margin: 0 0 15px;
- }
- .fancybox-title p {
- color: #818181;
- font-size: 16px;
- line-height: 22px;
- }
- .fancybox-title-inside-wrap {
- padding-top: 0;
- }
- /*=================================================================
- Testimonials
- ==================================================================*/
- #testimonials {
- background-image: url(../img/parallax/testimonial.jpg);
- /*padding: 0;*/
- color: #fff;
- position: relative;
- }
- #testimonials:before {
- background-color: rgba(10, 166, 189, 0.75);
- padding: 70px 0 40px;
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- content: '';
- }
- .testimonial-item {
- margin: 0 auto;
- padding-bottom: 50px;
- width: 64%;
- }
- .testimonial-item img {
- border: 3px solid #fff;
- border-radius: 50%;
- display: inline-block;
- height: auto;
- max-width: 100px;
- }
- .testimonial-item > div {
- line-height: 30px;
- position: relative;
- }
- .testimonial-item > div:before {
- background-image: url("../img/icons/quotes.png");
- background-repeat: no-repeat;
- bottom: 127px;
- height: 33px;
- left: -35px;
- position: absolute;
- width: 45px;
- }
- .testimonial-item > div:after {
- background-image: url("../img/icons/quotes.png");
- background-position: -58px 0;
- background-repeat: no-repeat;
- bottom: -50px;
- height: 33px;
- position: absolute;
- right: 0;
- width: 45px;
- }
- .testimonial-item > div > span {
- display: inline-block;
- font-weight: 700;
- margin: 40px 0 30px;
- text-transform: uppercase;
- }
- #testimonials .owl-controls.clickable {
- text-align: center;
- }
- #testimonials .owl-buttons {
- border: 2px solid #fff;
- float: inherit;
- border: 2px solid #fff;
- display: inline-block;
- padding: 0px 0px 0px;
- }
- .owl-controls .owl-page, .owl-controls .owl-buttons div {
- cursor: pointer;
- display: inline-block;
- margin: 0 8px;
- padding: 10px;
- }
- #testimonials .owl-prev:hover,
- #testimonials .owl-next:hover {
- color: #fff;
- }
- .price-table {
- border: 1px solid #e3e3e3;
- }
- .price-table.featured {
- border-color: #e3e3e3;
- border-style: solid;
- border-width: 1px 1px 0 1px;
- -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
- -moz-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
- box-shadow: 0 4px 5px rgba(0,0,0,0.19);
- }
- .price-table > span {
- color: #444;
- display: block;
- font-size: 24px;
- padding: 30px 0;
- text-transform: uppercase;
- font-weight: bold;
- letter-spacing: 2px;
- }
- .price-table .value {
- background-color: #f8f8f8;
- color: #727272;
- padding: 20px 0;
- -webkit-transition: all 0.7s ease 0s;
- -moz-transition: all 0.7s ease 0s;
- -ms-transition: all 0.7s ease 0s;
- -o-transition: all 0.7s ease 0s;
- transition: all 0.7s ease 0s;
- }
- .price-table.featured .value {
- background-color: #0aa6bd;
- color: #fff;
- }
- .price-table .value span {
- display: inline-block;
- }
- .price-table .value span:first-child {
- font-size: 32px;
- line-height: 32px;
- }
- .price-table .value span:nth-child(2) {
- font-size: 40px;
- line-height: 40px;
- margin-bottom: 10px;
- }
- .price-table .value span:last-child {
- font-size: 16px;
- }
- .price-table ul {
- margin: 0;
- padding: 0;
- list-style: none;
- text-align: center;
- }
- .price-table ul li {
- border-top: 1px solid #e3e3e3;
- display: block;
- padding: 15px 0;
- -webkit-transition: all 0.7s ease 0s;
- -moz-transition: all 0.7s ease 0s;
- -ms-transition: all 0.7s ease 0s;
- -o-transition: all 0.7s ease 0s;
- transition: all 0.7s ease 0s;
- }
- .price-table ul li a {
- display: block;
- text-transform: uppercase;
- }
- .price-table.featured ul li:last-child,
- .price-table ul li:last-child:hover {
- background-color: #0aa6bd;
- }
- .price-table.featured ul li:last-child a,
- .price-table ul li:last-child:hover a {
- color: #fff;
- }
- /*=================================================================
- Price
- ==================================================================*/
- #social .overlay {
- background: url("../img/slide_bg.png") repeat scroll 0 0 transparent;
- padding: 100px 0 120px;
- }
- .social-button {
- margin: 0;
- padding: 0;
- list-style: none;
- text-align: center;
- }
- .social-button li {
- display: inline-block;
- margin:0 20px;
- }
- .social-button li a {
- border: 2px solid #fff;
- border-radius: 50%;
- color: #fff;
- display: block;
- height: 90px;
- line-height: 96px;
- width: 90px;
- font-size: 40px;
- line-height: 90px;
- -webkit-transition: all 0.2s ease 0s;
- -moz-transition: all 0.2s ease 0s;
- -ms-transition: all 0.2s ease 0s;
- -o-transition: all 0.2s ease 0s;
- transition: all 0.2s ease 0s;
- }
- .social-button li a:hover {
- border: 2px solid #0aa6bd;
- background: #0aa6bd;
- color: #fff;
- }
- /*=================================================================
- Contact
- ==================================================================*/
- .input-field {
- margin-bottom: 10px;
- }
- .form-control {
- border: 1px solid #ececec;
- border-radius: 0;
- box-shadow: none;
- color: #818181;
- font-size: 14px;
- height: 40px;
- }
- .form-control:focus {
- box-shadow: none;
- border-color: #0aa6bd;
- }
- textarea.form-control {
- width: 100%;
- height: 165px;
- }
- .input-field label.error {
- color: red;
- display: block;
- font-size: 13px;
- font-weight: 400;
- }
- #submit:hover {
- color: #fff;
- }
- #submit:before {
- background-color: rgba(10, 166, 189, 0.75);
- }
- #submit.btn-effect:after {
- background: #2E2E2E;
- }
- .contact-details h3 {
- border-bottom: 1px solid #dedede;
- font-weight: 600;
- margin-bottom: 15px;
- padding-bottom: 15px;
- text-transform: uppercase;
- font-size: 16px;
- margin-top: 0;
- color: #666;
- }
- .contact-details p {
- line-height: 30px;
- }
- .contact-details p i {
- margin-right: 15px;
- font-size: 25px;
- color: #000;
- }
- .contact-details span {
- display: block;
- margin-left: 24px;
- }
- /*============================================================
- Google Maps
- ==============================================================*/
- #google-map {
- padding: 0;
- }
- #map-canvas {
- width: 100%;
- height: 300px;
- }
- /*============================================================
- Footer
- ==============================================================*/
- #footer {
- background-color: #2E2E2E;
- padding: 70px 0;
- color: #fff;
- }
- .footer-content {
- width: 390px;
- margin: 0 auto;
- }
- .footer-content > div {
- margin-bottom: 40px;
- }
- .footer-content > div > p:first-child {
- margin-bottom: 15px;
- text-transform: uppercase;
- }
- .subscribe-form {
- position: relative;
- }
- .subscribe.form-control {
- background-color: transparent;
- border: 1px solid #7f7f7f;
- }
- .subscribe.form-control:focus {
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .submit-icon {
- background-color: #7f7f7f;
- border: 0 none;
- border-radius: 0;
- color: #c1c1c1;
- padding: 8px 20px;
- position: absolute;
- overflow: hidden;
- right: 0;
- top: 0;
- }
- .submit-icon .fa-paper-plane {
- position: relative;
- top: 0;
- -webkit-transform: translateX(0);
- -moz-transform: translateX(0);
- -ms-transform: translateX(0);
- -o-transform: translateX(0);
- transform: translateX(0);
- -webkit-transition: all 0.3s ease 0.2s;
- -moz-transition: all 0.3s ease 0.2s;
- -ms-transition: all 0.3s ease 0.2s;
- -o-transition: all 0.3s ease 0.2s;
- transition: all 0.3s ease 0.2s;
- }
- .submit-icon:hover .fa-paper-plane {
- position: relative;
- top: -37px;
- -webkit-transform: translateX(30px);
- -moz-transform: translateX(30px);
- -ms-transform: translateX(30px);
- -o-transform: translateX(30px);
- transform: translateX(30px);
- }
- .footer-content .footer-social {
- margin: 40px 0 35px;
- }
- .footer-social ul {
- list-style: outside none none;
- margin: 0;
- padding: 0;
- text-align: center;
- }
- .footer-social ul li {
- display: inline-block;
- margin: 0 10px;
- }
- .footer-social ul li a {
- color: #7f7f7f;
- display: block;
- -webkit-transition: all 0.2s ease 0s;
- -moz-transition: all 0.2s ease 0s;
- -ms-transition: all 0.2s ease 0s;
- -o-transition: all 0.2s ease 0s;
- transition: all 0.2s ease 0s;
- }
- .footer-social ul li a:hover {
- color: #0aa6bd;
- }
- .footer-content > p {
- color: #ababab;
- font-size: 12px;
- }
- /*============================================================
- Responsive Styles
- ============================================================*/
- /*============================================================
- For Small Desktop
- ==============================================================*/
- @media (min-width: 980px) and (max-width: 1150px) {
- /*about*/
- #about .welcome-block img {
- margin-bottom: 30px;
- }
- }
- /*============================================================
- Tablet (Portrait) Design for a width of 768px
- ==============================================================*/
- @media (min-width: 768px) and (max-width: 979px) {
- /* home slider */
- .caption-content h2 {
- font-size: 40px;
- }
- .caption-content p {
- font-size: 25px;
- }
- .caption-content strong {
- font-size: 45px;
- }
- /* about */
- .recent-works {
- margin-bottom: 50px;
- }
- /* .service-item {
- margin-bottom: 50px;
- } */
- /* testimonial */
- .testimonial-item {
- width: 100%;
- }
- .testimonial-item {
- width: 80%;
- }
- .testimonial-item > div:after {
- bottom: -35px;
- }
- /* price */
- .price-table {
- margin-bottom: 50px;
- }
- /* contact form */
- .contact-form {
- margin-bottom: 50px;
- }
- }
- /*============================================================
- Mobile (Portrait) Design for a width of 320px
- ==============================================================*/
- @media only screen and (max-width: 767px) {
- body {
- font-size: 14px;
- }
- .parallax {
- background-position: centet tip !important;
- }
- .section-title h2 {
- font-size: 25px;
- }
- .section-title h2:after {
- left: 30%;
- }
- /*navigation*/
- .navbar-inverse .navbar-toggle {
- border-color: #fff;
- }
- .navbar-inverse .navbar-toggle:hover,
- .navbar-inverse .navbar-toggle:focus {
- background-color: transparent;
- }
- /* slider */
- .caption-content h2 {
- font-size: 18px;
- }
- .caption-content > span {
- font-size: 16px;
- margin-bottom: 20px;
- }
- .caption-content p {
- font-size: 16px;
- margin-bottom: 30px;
- }
- .caption-content strong {
- font-size: 22px;
- }
- /* about */
- .recent-works {
- margin-bottom: 85px;
- }
- #about h3 {
- font-size: 18px;
- margin: 0 0 35px !important;
- }
- #about .owl-buttons {
- margin-top: 20px;
- }
- #about .message-body {
- margin-bottom: 45px;
- }
- #about .welcome-block img {
- margin: 0 25px 15px 0;
- }
- /* service */
- .service-item {
- width: 100%;
- }
- /*portfolio*/
- /* lightbox */
- .fancybox-title h3 {
- font-size: 20px;
- }
- .fancybox-title p {
- font-size: 14px;
- }
- /* testimonial */
- .testimonial-item {
- width: 95%;
- }
- .testimonial-item > div:before,
- .testimonial-item > div:after {
- background-image: none;
- }
- .testimonial-item > div > span {
- margin: 30px 0 20px;
- }
- /* price */
- .price-table {
- margin-bottom: 50px;
- }
- /* follow us */
- .social-button li a {
- height: 65px;
- line-height: 71px;
- width: 65px;
- }
- /* contact form */
- .contact-form {
- margin-bottom: 50px;
- }
- /* footer */
- .footer-content {
- width: 100%;
- }
- .footer-social ul li {
- margin: 0 7px;
- }
- }
- /*============================================================
- Mobile (Landscape) Design for a width of 480px
- ==============================================================*/
- @media only screen and (min-width: 480px) and (max-width: 767px) {
- .section-title h2:after {
- left: 38%;
- }
- /* home slider */
- .caption-content h2 {
- font-size: 35px;
- }
- .caption-content p {
- font-size: 25px;
- }
- .caption-content strong {
- font-size: 35px;
- }
- /*about*/
- #about .welcome-block h3 {
- margin: 0 0 35px;
- }
- /* service */
- .service-item {
- margin: 0 auto 50px;
- width: 55%;
- }
- /* portfolio */
- .portfolio-item {
- width: 48%;
- }
- figcaption.mask {
- bottom: -132px;
- }
- /* testimonial */
- .testimonial-item {
- width: 80%;
- }
- .testimonial-item > div:before {
- bottom: 160px;
- }
- /* social */
- .social-button li a {
- height: 90px;
- line-height: 96px;
- width: 90px;
- }
- /* price */
- .price-table {
- margin-bottom: 50px;
- }
- /* contact form */
- .contact-form {
- margin-bottom: 50px;
- }
- /* footer */
- .footer-content {
- width: 380px;
- }
- }
- /*Bottom Footer*/
- #footer p {
- color: #6f6f6f;
- }
- #footer form {
- margin-top: 20px;
- }
- #footer ul {
- padding-left: 0;
- }
- #footer ul li {
- list-style: none;
- margin-bottom: 5px;
- }
- #footer ul li a {
- color: #6f6f6f;
- display: block;
- }
- #footer ul li a:hover {
- color: rgb(9, 157, 178);
- }
- #footer h4 {
- color: #fff;
- text-transform: uppercase;
- font-weight: 500;
- margin-top: 0;
- margin-bottom: 30px;
- letter-spacing: 2px;
- font-size: 16px;
- }
- #footer-bottom {
- background:#2A2A2A;
- padding:20px 0;
- }
- #footer-bottom p {
- font-size: 13px;
- }
|