| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898 |
- /*MAIN PAGE*/
- /*HEADER*/
- header{
- position: fixed;
- height: 45px;
- width: 100%;
- background: #3b434d;
- z-index: 99999999;
- }
- a:focus{
- text-decoration: none;
- }
- /*
- header .active{
- color: #929093;
- }*/
- header .menu{
- position: relative;
- height: 100%;
- width: 100%;
- }
- header .menu ul li a{
- height: 100%;
- color: #fff;
- font-family: Cuprum, sans-serif;
- font-size: 16px;
- }
- header .menu ul li a:hover{
- text-decoration: none;
- color: #5597d1;
- }
- header .menu ul{
- padding: 0;
- margin-bottom:0;
- height: 100%;
- width: 100%;
- list-style: none;
- top: 0;
- left: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- overflow: hidden;
- }
- header .menu ul li{
- padding-top: 13px;
- margin:0 10px;
- height: 100%;
- float: left;
- }
- header .menu .circles{
- right: 0;
- position: absolute;
- padding-top: 5px ;
- }
- header .circles .circle{
- margin: 5px 2px;
- float: left;
- width: 30px;
- height: 30px;
- background:url(../images/circle-1.png);
- }
- header .circles .circle:nth-child(2){
- background:url(../images/circle-2.png);
- }
- header .circles .circle:nth-child(3){
- background:url(../images/circle-3.png);
- }
- header .burger{
- display: none;
- width: 30px;
- height: 30px;
- background: url(../images/menu-burger.png) center no-repeat;
- cursor: pointer;
- }
- header .menu-mobile{
- list-style: none;
- text-align: center;
- color: #000;
- background: #3b434d;
- }
- header .menu-mobile ul{
- list-style: none;
- }
- header .menu-mobile ul li{
- margin-top: 10px;
- }
- header .menu-mobile ul li a{
- color: #fff;
- font-family: Cuprum, sans-serif;
- font-size: 18px;
- }
- header .menu-mobile ul li a:hover{
- text-decoration: none;
- cursor: pointer;
- color: #5597d1;
- }
- /*HEADER END*/
- .main-container{
- padding-top: 60px;
- }
- /*LEFT SIDE*/
- .left-side{
- font-family: Cuprum, sans-serif;
- font-weight: 400;
- width: 20%;
- }
- @media (min-width: 992px){
- .left-side{
- padding-right: 20px;
- }
- }
- @media (min-width: 768px){
- .left-side{
- padding: 0 2px;
- }
- }
- .left-side .info{
- /*padding: 0 10px;*/
- margin-bottom: 20px;
- }
- .left-side .logo{
- text-align: center;
- margin-bottom: 15px
- }
- .left-side .logo-subtitle{
- line-height: 16px;
- font-size: 14px;
- text-align: center;
- color:#a1a1a1;
- }
- .left-side .howtoget_button{
- font-size: 16px;
- display: block;
- cursor: pointer;
- padding: 10px 0;
- text-align: center;
- text-decoration: underline;
- color:#929292;
- background: #ebebeb;
- margin: 10px 0;
- }
- /*
- .left-side .contacts{
- padding-left: 10px;
- }*/
- .left-side .contact{
- color:#929292;
- font-size: 14px;
- }
- .left-side .value{
- font-size: 16px;
- margin-bottom: 5px;
- }
- .left-side .all-phones{
- display: inline-block;
- text-decoration: underline;
- }
- .left-side .all-phones img{
- margin-left: 5px;
- }
- .left-side .specializations .spec-header{
- padding: 6px 10px;
- font-size: 22px;
- font-weight: 700;
- background: #929292;
- color: #fff;
- }
- .left-side .specializations .spec-header a{
- display: inline-block;
- float: right;
- }
- .left-side .spec{
- display: block;
- color: inherit;
- text-decoration: none;
- margin-top: 10px;
- min-height: 54px;
- background: #ebebeb;
- border-radius: 32px 0 0 32px;
- position: relative;
- }
- .left-side .spec .spec-avatar{
- width: 50px;
- height: 50px;
- border-radius: 50%;
- display: block;
- position: absolute;
- margin-left: -10px;
- z-index: 10;
- left: 12px;
- top: 2px;
- }
- .left-side .spec .text{
- margin-left: 55px;
- padding-top: 5px;
- }
- .left-side .spec .text .subtitle{
- font-size: 14px;
- color: #929292;
- }
- .left-side .spec .text .title{
- font-size: 16px;
- }
- .left-side .more{
- text-align: right;
- margin-top: 10px;
- }
- .left-side .more a{
- font-size: 14px;
- color:#929292;
- }
- .left-side .add-info{
- width: 100%;
- display: inline-block;
- margin-top: 40px;
- }
- .left-side .add-info .info{
- padding-top: 20px;
- height: 90px;
- font-size: 20px;
- line-height: 20px;
- font-weight: 700;
- background: #ebd0ce;
- text-align: center;
- color: #fff;
- }
- /*LEFT-SIDE END*/
- /*MAIN TITLE*/
- .main-title{
- position: relative;
- }
- .main-title .title{
- font-family: Cuprum;
- font-weight: 700;
- color: #004d7b;
- }
- .main-title .subtitle{
- font-family: Cuprum;
- font-weight: 700;
- font-size: 16px;
- color: #929292;
- margin-bottom: 20px;
- }
- .soc{
- position: absolute;
- right: 60px;
- top: 30px;
- }
- .soc .social{
- float: left;
- width: 25px;
- height: 25px;
- margin-right: 4px;
- border-radius: 50%;
- background: blue;
- display: block;
- }
- .soc .fb{
- background: url(../images/soc-fb.png)
- }
- .soc .vk{
- background: url(../images/soc-vk.png)
- }
- .soc .ok{
- background: url(../images/soc-ok.png)
- }
- .soc .tw{
- background: url(../images/soc-twitter.png)
- }
- .soc .fb:hover{
- background: url(../images/soc-fb-hover.png)
- }
- .soc .vk:hover{
- background: url(../images/soc-vk-hover.png)
- }
- .soc .ok:hover{
- background: url(../images/soc-ok-hover.png)
- }
- .soc .tw:hover{
- background: url(../images/soc-twitter-hover.png)
- }
- /*MAIN TITLE END*/
- /*MAIN CONTENT*/
- .main-container .col-lg-10{
- width: 80%;
- }
- /*.main-container .content{
- padding-right: 0;
- }*/
- .content-left{
- padding-right: 0;
- }
- .content-left .slider{
- position: relative;
- }
- .content-left .arrow{
- width: 10px;
- height: 16px;
- position: absolute;
- z-index: 10;
- top: 50%;
- cursor: pointer;
- }
- .content-left .arrow-left{
- background: url(../images/slide-arrow-left.png);
- left: 10px;
- }
- .content-left .arrow-right{
- background: url(../images/slider-arrow-right.png);
- right: 10px;
- }
- .content-left .swiper-slide img{
- display: block;
- }
- .content-left .about{
- display: inline-block;
- margin-top: 40px;
- }
- .content-left .about .block-header{
- padding: 6px 10px;
- font-size: 22px;
- font-weight: 700;
- font-family: Cuprum, sans-serif;
- background: #929292;
- color: #fff;
- margin-bottom: 10px;
- }
- .content-left .about .block-header img{
- float: right;
- margin-top: 3px;
- }
- .about .doctor{
- font-family: Cuprum, sans-serif;
- font-weight: 400;
- }
- .about .doctor .doctor-avatar{
- margin-bottom: 8px;
- text-align: center;
- }
- .about .doctor .doctor-name{
- text-align: center;
- font-size: 22px;
- color: #004d7b;
- line-height: 22px;
- margin-bottom: 4px;
- }
- .about .doctor .doctor-desc{
- text-align: center;
- color: #929292;
- }
- .about .doctor .doctor-link{
- padding: 9px 0;
- font-size: 14px;
- margin-top: 15px;
- text-align: center;
- background: #ebebeb;
- }
- .about .doctor .doctor-link a{
- color: #929292;
- text-decoration: underline;
- }
- .about .about-text .title{
- font-family: Cuprum, sans-serif;
- font-weight: 700;
- font-size: 16px;
- }
- .about .about-text .text{
- font-family: Open Sans, sans-serif;
- font-size: 16px;
- color: #3b434d;
- }
- .content-left .about .more-text{
- font-family: Open Sans, sans-serif;
- margin-top: 10px;
- }
- .about .more{
- margin-top: 10px;
- text-align: right;
- }
- .about .more a{
- font-size: 14px;
- color:#929292;
- }
- .content-left .clinics{
- margin-top: 40px;
- }
- .content-left .clinics .clinic{
- min-height: 75px;
- width: 100%;
- position: relative;
- display: inline-block;
- margin-bottom: 10px;
- border: 1px solid #ebebeb;
- }
- .content-left .clinics .block-header{
- padding: 6px 10px;
- font-size: 22px;
- font-weight: 700;
- font-family: Cuprum, sans-serif;
- background: #929292;
- color: #fff;
- margin-bottom: 10px;
- }
- .content-left .clinics .block-header img{
- float: right;
- margin-top: 3px;
- }
- .content-left .clinics .clinic-image{
- margin-right: 15px;
- display: block;
- float: left;
- height: 100%;
- }
- .content-left .clinics .text{
- /*padding-left: 115px;*/
- }
- .content-left .clinics .text .title{
- padding-top: 10px;
- font-size: 18px;
- line-height: 18px;
- font-family: Cuprum, sans-serif;
- }
- .content-left .clinics .text .subtitle{
- font-family: Open Sans, sans-serif;
- color: #a1a1a1;
- padding-left: 10px;
- }
- .content-left .clinics .clinic .recomended{
- position: absolute;
- left: -7px;
- bottom: 5px;
- height: 36px;
- width: 196px;
- padding-top: 6px;
- font-family: Cuprum, sans-serif;
- font-size: 16px;
- color: #fff;
- padding-left: 6px;
- background:url(../images/green-recomended.png) no-repeat;
- }
- .clinics .arrow-right-blue{
- cursor: pointer;
- position: absolute;
- background: url(../images/arrow-right-blue.png) no-repeat center;
- right: 0;
- top: 0;
- width: 20px;
- height: 75px;
- }
- .content-left .clinics .more{
- text-align: right;
- margin-top: 10px;
- }
- .content-left .clinics .more a{
- font-size: 14px;
- color:#929292;
- }
- .content-right{
- padding-left: 0;
- }
- /*.content*/ .importants{
- font-family: Open Sans, sans-serif;
- }
- .content-right .importants .important{
- margin-left: 10px;
- }
- /*.content*/ .importants .important{
- height: 90px;
- margin-bottom: 10px;
- padding:0;
- display: block;
- background: #d7d7d7;
- }
- /*.content */.importants .important:hover{
- text-decoration: none;
- background: #004d7b;
- }
- /*.content*/ .importants .important:focus{
- text-decoration: none;
- }
- /*.content*/ .importants .important:nth-child(1) .description{
- padding-top: 20px;
- }
- /*.content*/ .importants .important:nth-child(2) .description{
- padding-top: 15px;
- padding-left: 0;
- }
- /*.content*/ .importants .important:nth-child(4) .description{
- padding-top: 10px;
- }
- /*.content*/ .importants .important:nth-child(6) .description{
- padding-top: 20px;
- }
- /*.content*/ .importants .important .important-image{
- padding-top: 20px;
- margin-left: 5px;
- height: 100%;
- width: 25%;
- display: block;
- float: left;
- }
- /*.content*/ .importants .important .description{
- color: #fff;
- font-weight: 700;
- height: 100%;
- font-size: 15px;
- padding-left: 65px;
- }
- .content-right .today{
- margin-top: 25px;
- padding-left: 15px;
- display: inline-block;
- }
- .content-right .today .today-item .head{
- display: block;
- cursor: pointer;
- background: #929292;
- padding: 12px 5px;
- font-size: 13px;
- font-family: Cuprum;
- text-align: right;
- height: 40px;
- color: #fff;
- border-radius: 10px 0 0 0;
- }
- .content-right .today .today-item .head:hover{
- text-decoration: none;
- }
- .content-right .today .today-item .head-blue{
- background: #5597d1;
- }
- .content-right .today .today-item .head .date{
- float: left;
- display: block;
- }
- .content-right .today .today-item .head .name{
- float: right;
- display: block;
- }
- .content-right .today .today-item{
- padding-right: 0;
- }
- .content-right .today .block-header{
- padding: 6px 10px;
- font-size: 22px;
- font-weight: 700;
- font-family: Cuprum, sans-serif;
- background: #929292;
- color: #fff;
- margin-bottom: 10px;
- }
- .content-right .today .block-header img{
- float: right;
- margin-top: 3px;
- }
- .content-right .today .image{
- position: relative;
- margin-top: 10px;
- }
- .content-right .today .image img{
- display: block;
- width: 200px;
- margin: 0 auto;
- }
- .content-right .today .logo{
- border-radius: 50px;
- position: absolute;
- top: 0;
- font-family: Cuprum, sans-serif;
- right: 15px;
- width: 60px;
- height: 60px;
- }
- .content-right .today .logo img{
- border-radius: 50%;
- width: 60px;
- height: 60px;
- }
- .content-right .today .free{
- position: absolute;
- padding-top: 5px;
- padding-left: 7px;
- top: 60px;
- left: -5px;
- font-family: Cuprum, sans-serif;
- color: #fff;
- width: 200px;
- height: 40px;
- background: url(../images/free-bg.png) no-repeat;
- }
- .content-right .today .desc{
- margin-top:10px;
- margin-bottom: 10px;
- font-family: Cuprum, sans-serif;
- padding-left: 5px;
- font-size: 14px;
- }
- .content-right .today .org{
- cursor: pointer;
- display: block;
- font-family: Cuprum, sans-serif;
- font-weight: 600;
- text-align: center;
- border-top:1px solid #ebebeb;
- padding-top: 5px;
- color: #004d7b;
- }
- .content-right .today .org:hover{
- text-decoration: none;
- }
- .content-right .today .adress{
- margin-top: 5px;
- font-family: Cuprum, sans-serif;
- font-size: 14px;
- padding: 15px 0;
- background: #ebebeb;
- color: #929292;
- text-align: center;
- }
- .content-right .news .block-header{
- padding: 6px 10px;
- font-size: 22px;
- font-weight: 700;
- font-family: Cuprum, sans-serif;
- background: #929292;
- color: #fff;
- margin-bottom: 10px;
- }
- .content-right .news .block-header img{
- float: right;
- margin-top: 3px;
- }
- .content-right .news-item{
- height: 320px;
- display: block;
- color: inherit;
- cursor: pointer;
- padding: 0 10px;
- padding-right: 0;
- margin-bottom: 20px;
- }
- .content-right .news-item:hover{
- text-decoration: none;
- }
- .content-right .news-item .inner{
- height: inherit;
- background: #ebebeb;
- border-radius: 10px 0 0 0;
- overflow: hidden;
- }
- .content-right .news{
- display: inline-block;
- margin-top: 25px;
- padding-left: 15px;
- }
- .content-right .news .image{
- font-family: Cuprum, sans-serif;
- margin-bottom: 20px;
- color:#fff;
- height: 160px;
- /* width: 205px;*/
- margin: 0 auto;
- position: relative;
- }
- .content-right .news .image img{
- display: block;
- margin: 0 auto;
- }
- .content-right .news .image .title{
- font-size: 16px;
- font-weight: 400;
- position: absolute;
- bottom: 10px;
- display: block;
- color: #fff;
- left: 20%;
- }
- .content-right .news .desc{
- font-family: Open Sans, sans-serif;
- padding-left: 10px;
- font-size: 14px;
- line-height: 17px;
- }
- .content-right .news .data{
- padding: 10px 0;
- margin:10px;
- margin-top:20px;
- color: #929292;
- text-align: right;
- border-top: 1px solid #d4d4d4;
- }
- /*footer*/
- footer{
- position: absolute;
- margin-top: 40px;
- width: 100%;
- padding-top: 40px;
- padding-bottom: 20px;
- display: inline-block;
- background: #3b434d;
- }
- footer .list{
- position: relative;
- list-style: none;
- float: left;
- width: 20%;
- font-family: Cuprum, sans-serif;
- font-size: 16px;
- }
- footer .list a{
- color: #f2f2f3
- }
- footer .list li:nth-child(1){
- }
- footer .list li:nth-child(1) a{
- color: #75787b;
- font-weight: 700;
- font-size: 18px;
- }
- footer .admin-button{
- background: #ebebeb;
- margin-top: 25px;
- padding: 10px 5px;
- text-align: center;
- display: block !important;
- }
- footer .admin-button a{
- font-size: 14px;
- color: #929292;
- text-decoration: underline;
- }
- footer .admin-button a:hover{
- text-decoration: underline;
- }
- footer .copyright{
- float: right;
- height: auto;
- margin-top: 40px;
- }
- footer .copyright .text{
- color: #919293;
- font-family: Open Sans, sans-serif;
- float: left;
- width: 60%;
- text-align: right;
- }
- footer .copyright a{
- font-family: Open Sans, sans-serif;
- padding-left: 8px;
- text-decoration: underline;
- color: #9e9e9e;
- }
- footer .copyright a:hover{
- color: #9e9e9e;
- text-decoration: underline;
- }
- footer .copyright .logo{
- text-align: center;
- float: left;
- margin-left: 20px;
- }
- /**/
- @media (min-width: 1200px){
- .important{
- width: 47%;
- }
- }
- @media (min-width: 992px){
- .content-right .today .today-item{
- width: 50%;
- margin-top: 20px;
- }
- .content-right .news-item{
- width: 50%;
- }
- }
- @media (min-width: 768px){
- .content-right .today .today-item{
- float: left;
- width: 50%;
- }
- .content-right .news-item{
- float: left;
- width: 50%;
- }
- }
- @media (max-width: 992px){
- .left-side{
- width: 27% !important;
- }
- .content-a-lot{
- padding-right: 0;
- }
- .main-container .col-lg-10{
- width: 73% !important;
- }
- header .circles{
- position: static !important;
- }
- header .menu ul li a{
- font-size: 14.5px ;
- }
- }
- @media (max-width: 1200px){
- .main-title .soc{
- display: none;
- }
- footer .admin-button{
- width: 100%;
- }
- footer .list{
- width: 100%;
- padding-right: 40px;
- }
- footer .list li{
- display: none;
- }
- footer .list li:nth-child(1){
- display: block;
- }
- }
- @media (max-width: 1200px){
- .left-side{
- width: 20%;
- }
- .content-left{
- width: 100%;
- }
- .content-left .clinic{
- width: 100%;
- }
- .content-right{
- width: 100%;
- }
- .content-right .importants .important .description{
- padding-top: 30px !important;
- }
- .content-right .importants .important .important-image{
- width: 10%;
- }
- }
- @media (max-width: 768px){
- .left-side .specializations .spec{
- display: none;
- }
- .left-side .specializations .more{
- display: none;
- }
- .left-side .add-info{
- display: none;
- }
- .main-container .main-title{
- display: none;
- }
- .content .clinics{
- display: none;
- }
- .content-right{
- padding-right: 0;
- }
- .content-right .importants{
- display: none;
- }
- .left-side{
- width: 100% !important;
- margin-bottom: 40px;
- }
- .main-container .col-lg-10 {
- width: 100% !important;
- }
- .main-container .main-title{
- width: 100% !important;
- }
- .main-container .content-right{
- width: 100% !important;
- }
- .main-container .content-right .today{
- width: 100% !important;
- }
- .importants{
- width: 100% !important;
- }
- .main-container .content-left{
- width: 100% !important;
- }
- .main-container .content-left .clinic{
- width: 100% !important;
- }
- .main-container .mobile{
- display: block;
- }
- .left-side .title{
- font-size: 32px;
- }
- .left-side .main-title{
- padding: 0;
- }
- .left-side{
- padding-right: 15px;
- }
- .left-side .logo-subtitle{
- width: 50%;
- margin: 0 auto;
- }
- .left-side .specializations .spec-header a{
- transform: rotate(90deg);
- }
- .content-left .doctor{
- margin-bottom: 30px;
- }
- .content-left .about .about-text{
- margin-bottom: 30px;
- }
- .main-container .content-a-lot{
- padding-right: 0;
- }
- .content-right .today .today-item{
- width: 50%;
- float: left;
- }
- .content-right .news .news-item{
- width: 50%;
- float: left;
- }
- header .menu li{
- display: none;
- }
- header .menu ul .circles{
- display: block;
- position: absolute !important;
- }
- header .menu ul .burger{
- left: 0;
- }
- header .menu-mobile{
- position: absolute;
- width: 100%;
- }
- header .menu-mobile ul{
- padding: 0;
- }
- }
- @media(max-width: 485px){
- .content-right .news .news-item{
- width: 100%
- }
- .content-right .today .today-item{
- margin: 0 auto;
- width: 100%;
- margin-bottom: 10px;
- }
- }
- .mobile{
- display: none;
- }
- /*MAIN CONTENT END*/
- /*END MAIN PAGE*/
- /*CONTACTS PAGE*/
- .contacts-container .side-bar .logo{
- margin-bottom: 50px;
- }
- .contacts-container .main-title{
- padding-left: 40px;
- }
- .contacts-container .main-title .title{
- font-size: 34px;
- }
- .side-bar ul{
- list-style: none;
- padding-left: 0;
- }
- .side-bar li{
- padding: 7px 0;
- text-align: right;
- border-bottom: 1px solid #ebebeb;
- }
- .side-bar li:first-child{
- border-top: 1px solid #ebebeb;
- }
- .side-bar li a{
- color: #004d7b;
- font-family: Cuprum, sans-serif;
- font-weight: 600;
- font-size: 17px;
- }
- .side-bar li a:hover{
- text-decoration: none;
- }
- .contacts-container .map{
- margin-bottom: 50px;
- }
- .contacts-container #map{
- height: 345px;
- margin: auto;
- }
- .contacts-container .right-side-bar .info{
- margin-bottom: 10px;
- }
- .contacts-container .right-side-bar .soc{
- position: static;
- display: inline-block;
- text-align: center;
- /*padding: 0 10px;*/
- margin-top: 0;
- margin-bottom: 20px;
- }
- .contacts-container .center-content .work-time{
- margin-bottom: 40px;
- }
- .contacts-container .center-content .work-time .min-title{
- margin-bottom: 20px;
- font-family: Cuprum, sans-serif;
- font-size: 20px;
- font-weight: 700;
- }
- .contacts-container .center-content .work-time .text{
- font-size: 16px;
- }
- .contacts-container .center-content .to-doctors{
- display: inline-block;
- }
- .contacts-container .center-content .to-doctors .min-title{
- margin-bottom: 20px;
- font-family: Cuprum, sans-serif;
- font-size: 18px;
- font-weight: 700;
- }
- .contacts-container .center-content .callback .min-title-text{
- font-size: 16px;
- font-family: Cuprum;
- font-weight: 700;
- }
- .contacts-container .center-content .to-doctors .personal-doctor{
- width: 33.33333333332%;
- display: inline-block;
- color: #000;
- padding: 0;
- padding-right: 10px;
- text-decoration: none;
- margin-bottom: 40px;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-type{
- font-size: 14px;
- font-family: Cuprum, sans-serif;
- color: #929292;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-header{
- display: inline-block;
- width: 100%;
- background: #ebebeb;
- border-radius: 30px 0 0 30px;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-image{
- float: left;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-name{
- padding-top: 10px;
- padding-left: 65px;
- font-family: Cuprum, sans-serif;
- color: #004d7b;
- font-size: 18px;
- line-height: 18px;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
- width: 13%;
- float: left;
- padding-top: 70px;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text{
- padding-top: 10px;
- width: 87%;
- float: left;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .category{
- color: #929292;
- margin-bottom: 10px;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .otdels{
- color: #004d7b;
- font-family: Open Sans, sans-serif;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .contacts{
- display: inline-block;
- margin-top: 10px;
- width: 100%;
- background: #ebebeb;
- padding-top: 10px;
- padding-left: 5px;
- padding-right: 5px;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .contact{
- color:#929292;
- font-size: 14px;
- font-family: Cuprum, sans-serif;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .value{
- font-size: 16px;
- margin-bottom: 5px;
- font-family: Cuprum, sans-serif;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .value a {
- font-size: 15px;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .priem{
- margin-top: 10px;
- font-weight: 700;
- font-size: 16px;
- font-family: Cuprum, sans-serif;
- }
- .contacts-container .center-content .callback{
- width: 100%;
- display: inline-block;
- }
- .contacts-container .center-content .callback .min-title{
- margin-bottom: 20px;
- font-family: Cuprum, sans-serif;
- font-size: 20px;
- font-weight: 700;
- }
- .contacts-container .center-content .callback .min-title-text{
- font-size: 19px;
- margin-bottom: 30px;
- }
- .contacts-container .center-content .callback form p{
- font-size: 12px;
- color: #929292;
- }
- .contacts-container .center-content .callback form input{
- margin-bottom: 10px;
- padding-left: 5px;
- font-family: Open Sans, sans-serif;
- font-size: 14px;
- font-weight: 400;
- width: 100%;
- height: 30px;
- color: #929292;
- background: #ebebeb;
- border: none;
- }
- .contacts-container .center-content .callback form input[type = "checkbox"]{
- width: 20px;
- height: inherit;
- }
- .contacts-container .center-content .callback form span{
- font-size: 12px;
- color: #929292;
- }
- .contacts-container .center-content .callback form textarea{
- width: 100%;
- height: 110px;
- padding-left: 5px;
- font-family: Open Sans, sans-serif;
- font-size: 14px;
- color: #929292;
- background: #ebebeb;
- border: none;
- resize: none;
- }
- .contacts-container .center-content .callback form .form-button{
- margin-top: 10px;
- cursor: pointer;
- padding: 7px 0;
- color: #fff;
- text-align: center;
- font-family: Cuprum , sans-serif;
- font-weight: 700;
- background: #004d7b;
- border: 0;
- }
- .contacts-container .center-content .to-doctors .doctor-button{
- display: inline-block;
- width: 100%;
- margin-top: 10px;
- text-align: center;
- text-decoration: underline;
- font-family: Cuprum, sans-serif;
- padding: 7px 0;
- color: #929292;
- background: #ebebeb;
- }
- .contacts-container .center-content .to-doctors .doctor-button:hover{
- color: #fff;
- background: #004d7b;
- }
- /*
- .contacts-container .center-content .*/
- @media (max-width: 1200px){
- .contacts-container .left-side {
- width: 20% !important;
- }
- .contacts-container .importants .important:nth-child(2) .description{
- padding-left:58px;
- }
- }
- @media (min-width: 1200px){
- .contacts-container .main-title {
- width: 60%;
- padding-left: 40px;
- }
- .contacts-container .focus-content {
- width: 60%;
- padding-left: 40px;
- }
- .contacts-container .important{
- width: 100%;
- }
- }
- @media (max-width: 1200px){
- .contacts-container .center-content .callback{
- margin-bottom: 40px;
- }
- .contacts-container .left-side {
- width: 100% !important;
- margin-bottom: 40px;
- }
- .contacts-container .left-side .main-title{
- float: none;
- width: 100% !important;
- }
- .contacts-container .center-content{
- width: 100%;
- }
- .contacts-container .center-content .to-doctors .personal-doctor{
- width: 100%;
- }
- .contacts-container .center-content .callback form .form-button{
- width: 100%;
- }
- .contacts-container .main-title{
- padding-left: 15px;
- }
- .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
- width: 10%;
- padding-top: 20px;
- }
- .contacts-container .left-side .importants .important-image{
- width: 10%;
- }
- .contacts-container .left-side .importants .description{
- padding-top: 20px !important;
- }
- .contacts-container .right-side-bar .info .logo{
- display: none;
- }
- .contacts-container .main-title{
- display: block;
- }
- .contacts-container .center-content .title{
- display: none;
- }
- .contacts-container .center-content .subtitle{
- display: none;
- }
- }
- /*CONTACTS PAGE END*/
- /*SPECIALISTS PAGE*/
- .specs-container .center-content .classes{
- margin-bottom: 15px;
- }
- .specs-container .center-content .classes a{
- display: block;
- color: #004d7b;
- }
- .specs-container .center-content .text{
- font-family: Open Sans, sans-serif;
- margin-bottom: 20px;
- }
- .specs-container .today{
- width: 100%;
- margin-top: 25px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- display: inline-block;
- }
- .specs-container .today .today-item{
- padding-left: 0;
- margin-bottom: 20px;
- }
- .specs-container .today .today-item .head{
- display: block;
- cursor: pointer;
- background: #929292;
- padding: 12px 5px;
- font-size: 13px;
- font-family: Cuprum;
- text-align: right;
- height: 40px;
- color: #fff;
- border-radius: 10px 0 0 0;
- }
- .specs-container .today .today-item .head:hover{
- text-decoration: none;
- }
- .specs-container .today .today-item .head-blue{
- background: #5597d1;
- }
- .specs-container .today .today-item .head .date{
- float: left;
- display: block;
- }
- .specs-container .today .today-item .head .name{
- float: right;
- display: block;
- }
- /*.contacts-container .today .today-item{
- padding-right: 0;
- }
- */
- .specs-container .today .block-header{
- padding: 6px 10px;
- font-size: 22px;
- font-weight: 700;
- font-family: Cuprum, sans-serif;
- background: #929292;
- color: #fff;
- margin-bottom: 10px;
- }
- .specs-container .today .block-header img{
- float: right;
- margin-top: 3px;
- }
- .specs-container .today .image{
- position: relative;
- margin-top: 10px;
- }
- .specs-container .today .image img{
- display: block;
- width: 200px;
- margin: 0 auto;
- }
- .specs-container .today .logo{
- position: absolute;
- top: 0;
- font-family: Cuprum, sans-serif;
- right: 15px;
- width: 60px;
- height: 60px;
- }
- .specs-container .today .logo img{
- width: 60px;
- height: 60px;
- }
- .specs-container .today .free{
- position: absolute;
- padding-top: 5px;
- padding-left: 7px;
- top: 60px;
- left: -5px;
- font-family: Cuprum, sans-serif;
- color: #fff;
- width: 200px;
- height: 40px;
- background: url(../images/free-bg.png) no-repeat;
- }
- .specs-container .today .desc{
- margin-top:10px;
- margin-bottom: 10px;
- font-family: Cuprum, sans-serif;
- padding-left: 5px;
- font-size: 14px;
- }
- .specs-container .today .org{
- font-family: Cuprum, sans-serif;
- font-weight: 600;
- text-align: center;
- border-top:1px solid #ebebeb;
- padding-top: 5px;
- color: #004d7b;
- }
- .specs-container .today .adress{
- margin-top: 5px;
- font-family: Cuprum, sans-serif;
- font-size: 14px;
- padding: 15px 0;
- background: #ebebeb;
- color: #929292;
- text-align: center;
- }
- .specs-container .center-content .vacancies{
- margin-bottom: 40px;
- }
- .specs-container .center-content .vacan-table{
- border-top: 1px solid #ebebeb;
- }
- .specs-container .center-content .vacancies .vac{
- padding: 7px 10px;
- }
- .specs-container .center-content .vacancies .vac:nth-child(even){
- background: #ebebeb;
- }
- .specs-container .center-content .vacancies .vacation{
- float: left;
- }
- .specs-container .center-content .vacancies .vacation a{
- color:#004d7b;
- }
- .specs-container .center-content .vacancies .value{
- text-align: right;
- }
- @media (min-width: 768px){
- .specs-container .today .today-item {
- float: left;
- width: 33.333332%;
- }
- }
- /*SPECIALISTS PAGE END*/
- /*NEWS*/
- .left-side .add-info-news{
- margin-top: 15px;
- }
- .right-side-bar .today{
- width: 100% ;
- margin-top: 25px;
- display: inline-block;
- }
- .right-side-bar .today .today-item{
- padding: 0 10px;
- }
- .right-side-bar .today .today-item .head{
- display: block;
- background: #929292;
- padding: 12px 5px;
- font-size: 13px;
- font-family: Cuprum;
- text-align: right;
- height: 40px;
- color: #fff;
- border-radius: 10px 0 0 0;
- }
- .right-side-bar .today .today-item .head-blue{
- background: #5597d1;
- }
- .right-side-bar .today .today-item .head .date{
- float: left;
- display: block;
- }
- .right-side-bar .today .today-item .head .name{
- float: right;
- display: block;
- }
- .right-side-bar .today .today-item{
- margin-bottom: 15px;
- }
- .right-side-bar .today .block-header{
- padding: 6px 10px;
- font-size: 22px;
- font-weight: 700;
- font-family: Cuprum, sans-serif;
- background: #929292;
- color: #fff;
- margin-bottom: 10px;
- }
- .right-side-bar .today .block-header img{
- float: right;
- margin-top: 3px;
- }
- .right-side-bar .today .image{
- position: relative;
- margin-top: 10px;
- }
- .right-side-bar .today .image img{
- display: block;
- width: 200px;
- margin: 0 auto;
- }
- .right-side-bar .today .logo{
- position: absolute;
- top: 0;
- font-family: Cuprum, sans-serif;
- right: 15px;
- width: 60px;
- height: 60px;
- }
- .right-side-bar .today .logo img{
- width: 60px;
- height: 60px;
- }
- .right-side-bar .today .free{
- position: absolute;
- padding-top: 5px;
- padding-left: 7px;
- top: 60px;
- left: -5px;
- font-family: Cuprum, sans-serif;
- color: #fff;
- width: 200px;
- height: 40px;
- background: url(../images/free-bg.png) no-repeat;
- }
- .right-side-bar .today .desc{
- margin-top:10px;
- margin-bottom: 10px;
- font-family: Cuprum, sans-serif;
- padding-left: 5px;
- font-size: 14px;
- }
- .right-side-bar .today .org{
- cursor: pointer;
- text-decoration: none;
- display: block;
- font-family: Cuprum, sans-serif;
- font-weight: 600;
- text-align: center;
- border-top:1px solid #ebebeb;
- padding-top: 5px;
- color: #004d7b;
- }
- .right-side-bar .today .adress{
- margin-top: 5px;
- font-family: Cuprum, sans-serif;
- font-size: 14px;
- padding: 15px 0;
- background: #ebebeb;
- color: #929292;
- text-align: center;
- }
- .contacts-container .center-content .news .block-header{
- padding: 6px 10px;
- font-size: 22px;
- font-weight: 700;
- font-family: Cuprum, sans-serif;
- background: #929292;
- color: #fff;
- margin-bottom: 10px;
- }
- .contacts-container .center-content .news .block-header img{
- float: right;
- margin-top: 3px;
- }
- .contacts-container .center-content .news-item{
- display: block;
- color: inherit;
- cursor: pointer;
- text-decoration: none;
- height: 320px;
- padding: 0 10px;
- padding-right: 0;
- margin-bottom: 20px;
- }
- .contacts-container .center-content .news-item .inner{
- height: inherit;
- background: #ebebeb;
- border-radius: 10px 0 0 0;
- overflow: hidden;
- }
- .contacts-container .center-content .news{
- display: inline-block;
- margin-top: 25px;
- padding-left: 0px;
- }
- .contacts-container .center-content .news .image{
- font-family: Cuprum, sans-serif;
- margin-bottom: 20px;
- color:#fff;
- height: 160px;
- /* width: 205px;*/
- margin: 0 auto;
- position: relative;
- }
- .contacts-container .center-content .news .image img{
- display: block;
- margin: 0 auto;
- }
- .contacts-container .center-content .news .image .title{
- font-size: 16px;
- font-weight: 400;
- position: absolute;
- bottom: 10px;
- display: block;
- color: #fff;
- left: 20%;
- }
- .contacts-container .center-content .news .desc{
- font-family: Open Sans, sans-serif;
- padding-left: 10px;
- font-size: 14px;
- line-height: 17px;
- }
- .contacts-container .center-content .news .data{
- padding: 10px 0;
- margin:10px;
- margin-top:20px;
- color: #929292;
- text-align: right;
- border-top: 1px solid #d4d4d4;
- }
- .center-content .pagination-container{
- /*background: #ebebeb;*/
- padding-left: 10px;
- }
- .center-content .pagination{
- font-family: Open Sans, sans-serif;
- font-weight: 500;
- width: 100%;
- height: 40px;
- background: #ebebeb;
- }
- .center-content .pagination .number{
- cursor: pointer;
- padding-top: 10px;
- /*margin: 0 10px;*/
- }
- .center-content .pagination .number:hover{
- color:#e77140;
- }
- .center-content .pagination .active{
- color: #e77140;
- border-bottom:2px solid #e55e26;
- }
- .center-content .pagination .arrow-left{
- background: url(../images/pagination-left.png) no-repeat center;
- cursor: pointer;
- }
- .center-content .pagination .arrow-right{
- background: url(../images/pagination-right.png) no-repeat center;
- cursor: pointer;
- }
- .center-content .pagination div{
- height: 40px;
- float: left;
- width: 7.14%;
- text-align: center;
- }
- @media(max-width: 1200px){
- .right-side-bar .today .today-item{
- width: 33.33333%;
- float: left;
- }
- .left-side .news-importants{
- display: none;
- }
- }
- @media(min-width: 992px){
- .left-side .new-importants{
- display: none;
- }
- }
- @media(max-width: 768px){
- .right-side-bar .today .today-item{
- width: 100%;
- float: left;
- }
- .right-side-bar .today{
- display: none;
- }
- .center-content .pagination{
- display: none;
- }
- .left-side .add-info {
- display: block;
- }
- }
- @media(max-width: 550px){
- .center-content .news{
- padding-left: 0;
- }
- .center-content .news .news-item{
- padding-left: 0;
- width: 93%;
- float: none;
- margin: 0 auto;
- margin-bottom: 20px;
- }
- .center-content .news .news-item .image{
- padding-left: 0;
- width:100%;
- margin: 0 auto;
- }
- .center-content .news .news-item .image img{
- margin: 0 auto;
- }
- }
- /*NEWS END*/
- /*ABOUT*/
- /*.center-content .about{
- display: inline-block;
- }*/
- .center-content .about .doctor{
- padding-left: 0;
- }
- .center-content .about .about-text .title{
- font-family: Cuprum, sans-serif;
- font-weight: 700;
- font-size: 24px;
- }
- .center-content .about-main-text{
- display: inline-block;
- margin-top: 20px;
- font-size: 16px;
- }
- .center-content .about-main-text .image{
- text-align: center;
- float: right;
- margin-top: 20px;
- margin-left: 20px;
- margin-bottom: 20px;
- }
- .center-content .youtube{
- width: 100%;
- margin-top: 20px;
- text-align: center;
- }
- .center-content .to-doctors-about{
- padding-left: 0;
- margin-bottom: 0 !important;
- margin-top: 40px;
- }
- .center-content .to-doctors-about .personal-doctor .doctor-name span{
- display: block;
- float: left;
- }
- .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
- font-size: 14px;
- float: right;
- padding-right: 20px;
- }
- .center-content .to-doctors-about .personal-doctor{
- width: 100% !important;
- border-bottom: 1px solid #ebebeb;
- }
- .center-content .to-doctors-about .doctor-header{
- height: 40px;
- border-radius: 70px 0 0 30px;
- }
- .center-content .to-doctors-about .personal-doctor .image{
- padding-top: 30px !important;
- }
- .center-content .equip{
- margin-bottom: 40px;
- }
- .center-content .media{
- margin-bottom: 40px;
- overflow: visible;
- position: relative;
- padding-top: 30px;
- border-top: 1px solid #ebebeb;
- }
- .center-content .media .swiper-button-next{
- background: url(../images/media-arrow-right.png) no-repeat center;
- top: 60%;
- right: -25px;
- }
- .center-content .media .swiper-button-prev{
- background: url(../images/media-arrow-left.png) no-repeat center;
- top: 60%;
- left: -30px;
- }
- .center-content .media .swiper-container {
- width: inherit;
- height: 140px;
- margin: 20px auto;
- }
- .center-content .media .swiper-container iframe{
- width: 100%;
- height: 100%;
- }
- .center-content .media .swiper-slide {
- width: 30% !important;
- text-align: center;
- font-size: 18px;
- background: #fff;
-
- /* Center slide text vertically */
- display: -webkit-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .center-content .media-text{
- line-height: 20px;
- font-size: 15px;
- }
- .center-content .pagination .show-all{
- text-align: center;
- padding-top: 10px;
- font-size: 13px;
- display:inline-block;
- color: #fff;
- background: #3b434d;
- width: 20%;
- height: 100%;
- float: right;
- }
- .center-content .pagination .show-all:hover{
- text-decoration: none;
- background: #e65e26;
- }
- .center-content .pagination .show-all:focus{
- text-decoration: none;
- }
- .center-content .documents{
- font-family: Open Sans, sans-serif;
- color: #3b434d;
- background: #ebebeb;
- }
- .center-content .documents .row{
- margin-right: 0;
- margin-left: 0;
- }
- .center-content .documents .doc-item{
- width: 20%;
- float: left;
- padding: 5px;
- }
- .center-content .documents .year{
- width: 8%;
- }
- .center-content .documents .doc-name{
- color: #004d7b;
- width: 22%;
- }
- .center-content .documents .doc-data{
- width: 14%;
- }
- .center-content .documents .doc-desc{
- width: 25%;
- }
- .center-content .documents .doc-org{
- width: 25%;
- }
- @media (max-width: 1200px){
- .center-content .about{
- margin-bottom: 20px;
- }
- .center-content .about .doctor{
- margin-bottom: 20px;
- }
- .center-content .about .about-text .title{
- display: block;
- }
- }
- @media (max-width: 768px){
-
- .center-content .documents .doc-item{
- width: 100%;
- float: none;
- padding: 5px;
- }
- .center-content .documents .row{
- margin: 20px 0;
- }
- .center-content .about-main-text .image{
- display: none;
- }
- .center-content .about .youtube iframe{
- width: 100%;
- }
- .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
- display: none;
- }
- .center-content .to-doctors-about .personal-doctor .doctor-image{
- display: none;
- }
- .center-content .to-doctors .personal-doctor .doctor-header{
- border-radius: 0 !important;
- }
- .center-content .to-doctors .personal-doctor .doctor-header .doctor-name{
- padding-left: 15px !important;
- }
- }
- @media (max-width: 768px){
- .smi{
- display: none;
- }
- }
- /*ABOUT END*/
- /*SERVICES*/
- .service-text{
- font-family: Open Sans, sans-serif;
- }
- .service-title{
- font-family: Cuprum ,sans-serif;
- font-weight: 600;
- font-size: 26px;
- margin: 30px 0;
- }
- .service-item{
- font-family: Open Sans, sans-serif;
- color :#404040;
- border-top: 1px solid #ebebeb;
- border-bottom: 1px solid #ebebeb;
- width: 100%;
- display: inline-block;
- }
- .service-row{
- display: inline-block;
- width: 100%;
- padding: 4px 5px;
- }
- .service-row:nth-child(even){
- background: #ebebeb;
- }
- .service-item .service-unit{
- width: 11%;
- float: left;
- }
- .service-item .service-unit:nth-child(1){
- width: 9%;
- }
- .service-item .service-unit:nth-child(2){
- width: 50%;
- }
- .service-item .service-unit:nth-child(3){
- width:11%;
- }
- .service-item .service-unit:nth-child(4){
- width: 9%;
- text-align: center;
- }
- .service-item .service-unit:nth-child(5){
- width: 9%;
- text-align: center;
- }
- .service-more{
- display: none;
- text-align: right;
- margin-top: 10px;
- }
- .service-more a{
- font-size: 14px;
- color:#929292;
- }
- .service-more:last-child{
- margin-bottom: 60px;
- }
- @media(max-width: 768px){
- .service-more{
- display: block;
- }
-
- .service-item .service-unit{
- text-align: left !important;
- width: 100% !important;
- float: none;
- padding: 5px;
- }
- .service-row{
- margin: 20px 0;
- }
- .service-item .service-unit:nth-child(1){
- display: none;
- }
- }
- /*SERVICES END*/
- /*TODAY*/
- .today-page{
- width: 100%;
- margin-top: 25px;
- padding-left: 0px;
- display: inline-block;
- }
- .today-page .today-item .head{
- background: #929292;
- padding: 12px 5px;
- font-size: 13px;
- font-family: Cuprum;
- text-align: right;
- height: 40px;
- color: #fff;
- border-radius: 10px 0 0 0;
- }
- .today-page .today-item .head-blue{
- background: #5597d1;
- }
- .today-page .today-item .head .date{
- float: left;
- display: block;
- }
- .today-page .today-item .head .name{
- float: right;
- display: block;
- }
- .today-page .today-item{
- padding-right: 0;
- margin-bottom: 20px;
- }
- .today-page .image{
- position: relative;
- margin-top: 10px;
- }
- .today-page .image img{
- display: block;
- width: 200px;
- margin: 0 auto;
- }
- .today-page .logo{
- position: absolute;
- top: 0;
- font-family: Cuprum, sans-serif;
- right: 15px;
- width: 60px;
- height: 60px;
- }
- .today-page .logo img{
- width: 60px;
- height: 60px;
- }
- .today-page .free{
- position: absolute;
- padding-top: 5px;
- padding-left: 7px;
- top: 60px;
- left: -5px;
- font-family: Cuprum, sans-serif;
- color: #fff;
- width: 200px;
- height: 40px;
- background: url(../images/free-bg.png) no-repeat;
- }
- .today-page .desc{
- margin-top:10px;
- margin-bottom: 10px;
- font-family: Cuprum, sans-serif;
- padding-left: 5px;
- font-size: 14px;
- }
- .today-page .org{
- font-family: Cuprum, sans-serif;
- font-weight: 600;
- text-align: center;
- border-top:1px solid #ebebeb;
- padding-top: 5px;
- color: #004d7b;
- }
- .today-page .adress{
- margin-top: 5px;
- font-family: Cuprum, sans-serif;
- font-size: 14px;
- padding: 15px 0;
- background: #ebebeb;
- color: #929292;
- text-align: center;
- }
- .pagination-mobile{
- display: none;
- }
- @media (max-width: 768px){
- .center-content .pagination-mobile{
- display: block;
- }
- .center-content .pagination-mobile .pagination div{
- width: 16.66666%;
- }
- }
- /*TODAY END*/
- /*PATIENT*/
- .min-title{
- margin-bottom: 20px;
- font-family: Cuprum, sans-serif;
- font-size: 20px;
- font-weight: 700;
- }
- .patients-text{
- font-family: Open Sans, sans-serif;
- line-height: 22px;
- margin-bottom: 20px;
- }
- /*PATIENT END*/
- /*VACANCIES*/
- .vacancy .vacancy-header{
- font-family: Cuprum;
- display: inline-block;
- padding: 5px 12px;
- margin-bottom: 10px;
- background: #d7d7d7;
- width: 100%;
- }
- .vacancy-wrap {
- display: inline-block;
- margin-bottom: 15px;
- }
- .vacancy .vacancy-header .name{
- display: inline-block;
- font-family: Cuprum;
- font-weight: bold;
- width: 60%;
- float: left;
- font-size: 18px;
- }
- .vacancy .vacancy-header .date{
- padding-top: 5px;
- height: 20px;
- width: 40%;
- font-size: 13px;
- color: #929292;
- text-align: right;
- float: left;
- }
- .vacancy .vacancy-data{
- margin-bottom: 15px;
- padding-left: 0;
- }
- .vacancy-data .org .text{
- font-size: 14px;
- font-family: Cuprum;
- color: #929292;
- }
- .vacancy-data .org .org-name{
- font-size: 18px;
- font-family: Cuprum;
- font-weight: 400;
- color: #004d7b;
- margin-bottom: 15px;
- }
- .vacancy .vacancy-table{
- display: inline-block;
- border-top:1px solid #ebebeb;
- border-bottom:1px solid #ebebeb;
- }
- .vacancy .vacancy-table .vacancy-row{
- width: 100%;
- display:inline-block;
- padding: 5px 10px;
- }
- .vacancy .vacancy-table .vacancy-row:nth-child(even){
- background: #ebebeb;
- }
- .vacancy .vacancy-table .vacancy-row .name{
- width: 70%;
- float: left;
- }
- .vacancy .vacancy-table .vacancy-row .data{
- width: 30%;
- float: left;
- text-align: left;
- }
- .vacancy .contact{
- font-family: Cuprum;
- color:#929292;
- font-size: 14px;
- }
- .vacancy .contacts .otd a{
- font-size: 17px;
- color: #115984;
- }
- .vacancy .value{
- font-size: 16px;
- margin-bottom: 5px;
- }
- .vacancy .vacancy-contacts{
- padding-left: 0;
- }
- .vacancy .contacts .value{
- color: #004d7b;
- font-size: 16px;
- font-family: Cuprum;
- }
- @media(max-width: 420px){
- .vacancy .vacancy-data .vacancy-table .vacancy-row div{
- width: 100%;
- float: none;
- }
- }
- .mini-title-2{
- font-family: Cuprum;
- font-weight: 600;
- font-size: 18px;
- margin-bottom: 10px;
- }
- .vacancy-text{
- font-family: Open Sans;
- margin-bottom: 40px;
- }
- /*VACANCIES END*/
- /*UNITS*/
- .content-left .unit-clinics{
- margin-top: 0;
- }
- .soc .contact {
- font-family: Cuprum;
- color: #929292;
- font-size: 14px;
- }
- .soc .value {
- font-family: Cuprum;
- font-size: 16px;
- margin-bottom: 5px;
- }
- .under-title .soc{
- position: static;
- display: inline-block;
- text-align: center;
- padding: 0 10px;
- margin-top: 0;
- margin-bottom: 20px;
- }
- .content .more{
- margin-bottom: 10px;
- }
- .container .content .unit-clinics{
- display: block;
- }
- .container .importants-unit{
- display: block;
- }
- @media(max-width: 700px){
- .content .unit-clinics .clinic {
- padding-left: 15px;
- }
-
- .content .unit-clinics .clinic .title{
- margin-bottom: 10px;
- }
- .content .unit-clinics .clinic .subtitle{
- padding-left: 0;
- }
- .content .unit-clinics .clinic .clinic-image{
- display: none;
- }
- }
- @media(max-width: 400px){
- .container .importants-unit .important .description{
- font-size: 14px;
- }
- .container .importants-unit .important:nth-child(5) .description{
- padding-top: 15px !important;
- }
- .container .importants-unit .important:nth-child(3) .description{
- padding-top: 15px !important;
- }
- .container .importants-unit .important:nth-child(2) .description{
- padding-left: 55px !important;
- }
- }
- /*UNITS END*/
- /*CONTROLS-ORG-PAGE*/
- .control-org{
- width: 100%;
- margin-bottom: 40px;
- display: inline-block;
- border: 1px solid #ebebeb;
- }
- .control-org .col-md-4{
- height: 100%;
- padding-right: 0;
- }
- .control-org .col-md-4:last-child{
- padding-right: 15px;
- }
- .control-org .col-md-4:last-child .subtext{
- text-align: center;
- }
- .control-org .control-org-header{
- display: block;
- width: 100%;
- color: #000;
- margin-bottom: 10px;
- text-decoration: none;
- cursor: pointer;
- font-size: 18px;
- font-weight: 600;
- padding: 5px 10px;
- font-family: Cuprum;
- background: #ebebeb;
- }
- .control-org .control-org-header:hover{
- background: #004d7b;
- color: #fff;
- }
- .control-org .image{
- margin-bottom: 10px;
- }
- .control-org .value{
- font-family: Cuprum, sans-serif;
- margin-bottom: 5px;
- font-size: 15px;
- }
- .control-org .work-time .mini-title{
- font-size: 14px;
- font-family: Cuprum;
- color: #929292;
- }
- .control-org .work-time .text{
- margin-top: 2px;
- font-size: 18px ;
- font-family: Cuprum;
- font-weight: bold;
- }
- .control-org .subtext{
- font-size: 14px;
- font-family: Cuprum;
- color: #929292;
- line-height: 16px;
- }
- .control-org .howtoget_button{
- font-family: Cuprum, sans-serif;
- font-size: 16px;
- display: block;
- cursor: pointer;
- padding: 10px 0;
- text-align: center;
- text-decoration: underline;
- color:#929292;
- background: #ebebeb;
- margin: 10px 0;
- }
- .control-org .phone{
- font-family: Cuprum, sans-serif;
- font-weight: 600;
- font-size: 22px;
- padding: 7px 0;
- color: #004d7b;
- text-align:center;
- }
- @media(max-width: 991px){
- .control-org .image{
- text-align: center;
- }
-
- }
- /*CONTROLS-ORG-PAGE END*/
- /*FAQ*/
- .qa{
- padding:10px 10px;
- width: 100%;
- margin-bottom: 20px;
- font-family: Cuprum, sans-serif;
- }
- .qa .name{
- font-size: 16px;
- font-weight: 600;
- width: 50%;
- float: left;
- }
- .qa .date{
- font-size: 16px;
- text-align: right;
- width: 50%;
- color:#929292;
- float: left;
- }
- .qa .text{
- margin-top: 25px;
- font-family: Open Sans;
- }
- .question{
- background: #d7d7d7;
- }
- .answer {
- margin-left: 2%;
- width: 98%;
- border: 2px solid #d7d7d7;
- padding-top: 10px;
- position: relative;
- z-index: 0;
- background: #fff;
- color: #000;
- }
- .answer::after, .answer::before {
- content: '';
- position: absolute;
- background: #fff;
- border-bottom: 2px solid #d7d7d7;
- border-left: 2px solid #d7d7d7;
- left: 20px;
- top: -12px;
- width: 20px;
- height: 20px;
- z-index: -1;
- transform: rotate(45deg);
- -webkit-transform: rotate(135deg);
- }
- .answer::before {
- z-index: 1;
- }
- /*FAQ END*/
|