1
0

style.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  1. /*MAIN PAGE*/
  2. /*HEADER*/
  3. header{
  4. position: fixed;
  5. height: 45px;
  6. width: 100%;
  7. background: #3b434d;
  8. z-index: 99999999;
  9. }
  10. /*
  11. header .active{
  12. color: #929093;
  13. }*/
  14. header .menu{
  15. position: relative;
  16. height: 100%;
  17. width: 100%;
  18. }
  19. header .menu ul li a{
  20. height: 100%;
  21. color: #fff;
  22. font-family: Cuprum, sans-serif;
  23. font-size: 16px;
  24. }
  25. header .menu ul li a:hover{
  26. text-decoration: none;
  27. color: #5597d1;
  28. }
  29. header .menu ul{
  30. padding: 0;
  31. margin-bottom:0;
  32. height: 100%;
  33. width: 100%;
  34. list-style: none;
  35. top: 0;
  36. left: 0;
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. overflow: hidden;
  41. }
  42. header .menu ul li{
  43. padding-top: 13px;
  44. margin:0 10px;
  45. height: 100%;
  46. float: left;
  47. }
  48. header .menu .circles{
  49. right: 0;
  50. position: absolute;
  51. padding-top: 5px ;
  52. }
  53. header .circles .circle{
  54. margin: 5px 2px;
  55. float: left;
  56. width: 30px;
  57. height: 30px;
  58. background:url(../images/circle-1.png);
  59. }
  60. header .circles .circle:nth-child(2){
  61. background:url(../images/circle-2.png);
  62. }
  63. header .circles .circle:nth-child(3){
  64. background:url(../images/circle-3.png);
  65. }
  66. header .burger{
  67. display: none;
  68. width: 30px;
  69. height: 30px;
  70. background: url(../images/menu-burger.png) center no-repeat;
  71. cursor: pointer;
  72. }
  73. header .menu-mobile{
  74. list-style: none;
  75. text-align: center;
  76. color: #000;
  77. background: #3b434d;
  78. }
  79. header .menu-mobile ul{
  80. list-style: none;
  81. }
  82. header .menu-mobile ul li{
  83. margin-top: 10px;
  84. }
  85. header .menu-mobile ul li a{
  86. color: #fff;
  87. font-family: Cuprum, sans-serif;
  88. font-size: 18px;
  89. }
  90. header .menu-mobile ul li a:hover{
  91. text-decoration: none;
  92. cursor: pointer;
  93. color: #5597d1;
  94. }
  95. /*HEADER END*/
  96. .main-container{
  97. padding-top: 60px;
  98. }
  99. /*LEFT SIDE*/
  100. .left-side{
  101. font-family: Cuprum, sans-serif;
  102. font-weight: 400;
  103. width: 20%;
  104. }
  105. @media (min-width: 992px){
  106. .left-side{
  107. padding-right: 20px;
  108. }
  109. }
  110. @media (min-width: 768px){
  111. .left-side{
  112. padding: 0 2px;
  113. }
  114. }
  115. .left-side .info{
  116. padding: 0 10px;
  117. margin-bottom: 20px;
  118. }
  119. .left-side .logo{
  120. text-align: center;
  121. margin-bottom: 15px
  122. }
  123. .left-side .logo-subtitle{
  124. line-height: 16px;
  125. font-size: 14px;
  126. text-align: center;
  127. color:#a1a1a1;
  128. }
  129. .left-side .howtoget_button{
  130. font-size: 16px;
  131. display: block;
  132. cursor: pointer;
  133. padding: 10px 0;
  134. text-align: center;
  135. text-decoration: underline;
  136. color:#929292;
  137. background: #ebebeb;
  138. margin: 10px 0;
  139. }
  140. /*
  141. .left-side .contacts{
  142. padding-left: 10px;
  143. }*/
  144. .left-side .contact{
  145. color:#929292;
  146. font-size: 14px;
  147. }
  148. .left-side .value{
  149. font-size: 16px;
  150. margin-bottom: 5px;
  151. }
  152. .left-side .all-phones{
  153. display: inline-block;
  154. text-decoration: underline;
  155. }
  156. .left-side .all-phones img{
  157. margin-left: 5px;
  158. }
  159. .left-side .specializations .spec-header{
  160. padding: 6px 10px;
  161. font-size: 22px;
  162. font-weight: 700;
  163. background: #929292;
  164. color: #fff;
  165. }
  166. .left-side .specializations .spec-header a{
  167. display: inline-block;
  168. float: right;
  169. }
  170. .left-side .spec{
  171. margin-top: 10px;
  172. height: 54px;
  173. background: #ebebeb;
  174. border-radius: 32px 0 0 32px;
  175. position: relative;
  176. }
  177. .left-side .spec .spec-avatar{
  178. width: 50px;
  179. height: 50px;
  180. border-radius: 50%;
  181. display: block;
  182. position: absolute;
  183. margin-left: -10px;
  184. z-index: 10;
  185. left: 12px;
  186. top: 2px;
  187. }
  188. .left-side .spec .text{
  189. margin-left: 55px;
  190. padding-top: 5px;
  191. }
  192. .left-side .spec .text .subtitle{
  193. font-size: 14px;
  194. color: #929292;
  195. }
  196. .left-side .spec .text .title{
  197. font-size: 16px;
  198. }
  199. .left-side .more{
  200. text-align: right;
  201. margin-top: 10px;
  202. }
  203. .left-side .more a{
  204. font-size: 14px;
  205. color:#929292;
  206. }
  207. .left-side .add-info{
  208. width: 100%;
  209. display: inline-block;
  210. margin-top: 40px;
  211. }
  212. .left-side .add-info .info{
  213. padding-top: 20px;
  214. height: 90px;
  215. font-size: 20px;
  216. line-height: 20px;
  217. font-weight: 700;
  218. background: #ebd0ce;
  219. text-align: center;
  220. color: #fff;
  221. }
  222. /*LEFT-SIDE END*/
  223. /*MAIN TITLE*/
  224. .main-title{
  225. position: relative;
  226. }
  227. .main-title .title{
  228. font-family: Cuprum;
  229. font-weight: 700;
  230. color: #004d7b;
  231. }
  232. .main-title .subtitle{
  233. font-family: Cuprum;
  234. font-weight: 700;
  235. font-size: 16px;
  236. color: #929292;
  237. margin-bottom: 20px;
  238. }
  239. .soc{
  240. position: absolute;
  241. right: 60px;
  242. top: 30px;
  243. }
  244. .soc .social{
  245. float: left;
  246. width: 25px;
  247. height: 25px;
  248. margin-right: 4px;
  249. border-radius: 50%;
  250. background: blue;
  251. display: block;
  252. }
  253. .soc .fb{
  254. background: url(../images/soc-fb.png)
  255. }
  256. .soc .vk{
  257. background: url(../images/soc-vk.png)
  258. }
  259. .soc .ok{
  260. background: url(../images/soc-ok.png)
  261. }
  262. .soc .tw{
  263. background: url(../images/soc-twitter.png)
  264. }
  265. .soc .fb:hover{
  266. background: url(../images/soc-fb-hover.png)
  267. }
  268. .soc .vk:hover{
  269. background: url(../images/soc-vk-hover.png)
  270. }
  271. .soc .ok:hover{
  272. background: url(../images/soc-ok-hover.png)
  273. }
  274. .soc .tw:hover{
  275. background: url(../images/soc-twitter-hover.png)
  276. }
  277. /*MAIN TITLE END*/
  278. /*MAIN CONTENT*/
  279. .main-container .col-lg-10{
  280. width: 80%;
  281. }
  282. /*.main-container .content{
  283. padding-right: 0;
  284. }*/
  285. .content-left{
  286. padding-right: 0;
  287. }
  288. .content-left .slider{
  289. position: relative;
  290. }
  291. .content-left .arrow{
  292. width: 10px;
  293. height: 16px;
  294. position: absolute;
  295. z-index: 10;
  296. top: 50%;
  297. cursor: pointer;
  298. }
  299. .content-left .arrow-left{
  300. background: url(../images/slide-arrow-left.png);
  301. left: 10px;
  302. }
  303. .content-left .arrow-right{
  304. background: url(../images/slider-arrow-right.png);
  305. right: 10px;
  306. }
  307. .content-left .swiper-slide img{
  308. display: block;
  309. }
  310. .content-left .about{
  311. display: inline-block;
  312. margin-top: 40px;
  313. }
  314. .content-left .about .block-header{
  315. padding: 6px 10px;
  316. font-size: 22px;
  317. font-weight: 700;
  318. font-family: Cuprum, sans-serif;
  319. background: #929292;
  320. color: #fff;
  321. margin-bottom: 10px;
  322. }
  323. .content-left .about .block-header img{
  324. float: right;
  325. margin-top: 3px;
  326. }
  327. .about .doctor{
  328. font-family: Cuprum, sans-serif;
  329. font-weight: 400;
  330. }
  331. .about .doctor .doctor-avatar{
  332. margin-bottom: 8px;
  333. text-align: center;
  334. }
  335. .about .doctor .doctor-name{
  336. text-align: center;
  337. font-size: 22px;
  338. color: #004d7b;
  339. line-height: 22px;
  340. margin-bottom: 4px;
  341. }
  342. .about .doctor .doctor-desc{
  343. text-align: center;
  344. color: #929292;
  345. }
  346. .about .doctor .doctor-link{
  347. padding: 9px 0;
  348. font-size: 14px;
  349. margin-top: 15px;
  350. text-align: center;
  351. background: #ebebeb;
  352. }
  353. .about .doctor .doctor-link a{
  354. color: #929292;
  355. text-decoration: underline;
  356. }
  357. .about .about-text .title{
  358. font-family: Cuprum, sans-serif;
  359. font-weight: 700;
  360. font-size: 16px;
  361. }
  362. .about .about-text .text{
  363. font-family: Open Sans, sans-serif;
  364. font-size: 16px;
  365. color: #3b434d;
  366. }
  367. .content-left .about .more-text{
  368. font-family: Open Sans, sans-serif;
  369. margin-top: 10px;
  370. }
  371. .about .more{
  372. margin-top: 10px;
  373. text-align: right;
  374. }
  375. .about .more a{
  376. font-size: 14px;
  377. color:#929292;
  378. }
  379. .content-left .clinics{
  380. margin-top: 40px;
  381. }
  382. .content-left .clinics .clinic{
  383. position: relative;
  384. display: inline-block;
  385. margin-bottom: 10px;
  386. border: 1px solid #ebebeb;
  387. }
  388. .content-left .clinics .block-header{
  389. padding: 6px 10px;
  390. font-size: 22px;
  391. font-weight: 700;
  392. font-family: Cuprum, sans-serif;
  393. background: #929292;
  394. color: #fff;
  395. margin-bottom: 10px;
  396. }
  397. .content-left .clinics .block-header img{
  398. float: right;
  399. margin-top: 3px;
  400. }
  401. .content-left .clinics .clinic-image{
  402. margin-right: 15px;
  403. display: block;
  404. float: left;
  405. height: 100%;
  406. }
  407. .content-left .clinics .text{
  408. /*padding-left: 115px;*/
  409. }
  410. .content-left .clinics .text .title{
  411. font-size: 18px;
  412. line-height: 18px;
  413. font-family: Cuprum, sans-serif;
  414. }
  415. .content-left .clinics .text .subtitle{
  416. font-family: Open Sans, sans-serif;
  417. color: #a1a1a1;
  418. padding-left: 10px;
  419. }
  420. .content-left .clinics .clinic .recomended{
  421. position: absolute;
  422. left: -7px;
  423. bottom: 5px;
  424. height: 36px;
  425. width: 196px;
  426. padding-top: 6px;
  427. font-family: Cuprum, sans-serif;
  428. font-size: 16px;
  429. color: #fff;
  430. padding-left: 6px;
  431. background:url(../images/green-recomended.png) no-repeat;
  432. }
  433. .content-left .clinics .more{
  434. text-align: right;
  435. margin-top: 10px;
  436. }
  437. .content-left .clinics .more a{
  438. font-size: 14px;
  439. color:#929292;
  440. }
  441. .content-right{
  442. padding-left: 0;
  443. }
  444. /*.content*/ .importants{
  445. font-family: Open Sans, sans-serif;
  446. }
  447. /*.content*/ .importants .important{
  448. height: 90px;
  449. margin-left: 10px;
  450. margin-bottom: 10px;
  451. padding:0;
  452. display: block;
  453. background: #d7d7d7;
  454. }
  455. /*.content */.importants .important:hover{
  456. text-decoration: none;
  457. background: #004d7b;
  458. }
  459. /*.content*/ .importants .important:focus{
  460. text-decoration: none;
  461. }
  462. /*.content*/ .importants .important:nth-child(1) .description{
  463. padding-top: 20px;
  464. }
  465. /*.content*/ .importants .important:nth-child(2) .description{
  466. padding-top: 15px;
  467. padding-left: 0;
  468. }
  469. /*.content*/ .importants .important:nth-child(4) .description{
  470. padding-top: 10px;
  471. }
  472. /*.content*/ .importants .important:nth-child(6) .description{
  473. padding-top: 20px;
  474. }
  475. /*.content*/ .importants .important .important-image{
  476. padding-top: 20px;
  477. margin-left: 5px;
  478. height: 100%;
  479. width: 25%;
  480. display: block;
  481. float: left;
  482. }
  483. /*.content*/ .importants .important .description{
  484. color: #fff;
  485. font-weight: 700;
  486. height: 100%;
  487. font-size: 15px;
  488. padding-left: 65px;
  489. }
  490. .content-right .today{
  491. margin-top: 25px;
  492. padding-left: 15px;
  493. display: inline-block;
  494. }
  495. .content-right .today .today-item .head{
  496. background: #929292;
  497. padding: 12px 5px;
  498. font-size: 13px;
  499. font-family: Cuprum;
  500. text-align: right;
  501. height: 40px;
  502. color: #fff;
  503. border-radius: 10px 0 0 0;
  504. }
  505. .content-right .today .today-item .head-blue{
  506. background: #5597d1;
  507. }
  508. .content-right .today .today-item .head .date{
  509. float: left;
  510. display: block;
  511. }
  512. .content-right .today .today-item .head .name{
  513. float: right;
  514. display: block;
  515. }
  516. .content-right .today .today-item{
  517. padding-right: 0;
  518. }
  519. .content-right .today .block-header{
  520. padding: 6px 10px;
  521. font-size: 22px;
  522. font-weight: 700;
  523. font-family: Cuprum, sans-serif;
  524. background: #929292;
  525. color: #fff;
  526. margin-bottom: 10px;
  527. }
  528. .content-right .today .block-header img{
  529. float: right;
  530. margin-top: 3px;
  531. }
  532. .content-right .today .image{
  533. position: relative;
  534. margin-top: 10px;
  535. }
  536. .content-right .today .image img{
  537. display: block;
  538. width: 200px;
  539. margin: 0 auto;
  540. }
  541. .content-right .today .logo{
  542. position: absolute;
  543. top: 0;
  544. font-family: Cuprum, sans-serif;
  545. right: 15px;
  546. width: 60px;
  547. height: 60px;
  548. }
  549. .content-right .today .logo img{
  550. width: 60px;
  551. height: 60px;
  552. }
  553. .content-right .today .free{
  554. position: absolute;
  555. padding-top: 5px;
  556. padding-left: 7px;
  557. top: 60px;
  558. left: -5px;
  559. font-family: Cuprum, sans-serif;
  560. color: #fff;
  561. width: 200px;
  562. height: 40px;
  563. background: url(../images/free-bg.png) no-repeat;
  564. }
  565. .content-right .today .desc{
  566. margin-top:10px;
  567. margin-bottom: 10px;
  568. font-family: Cuprum, sans-serif;
  569. padding-left: 5px;
  570. font-size: 14px;
  571. }
  572. .content-right .today .org{
  573. font-family: Cuprum, sans-serif;
  574. font-weight: 600;
  575. text-align: center;
  576. border-top:1px solid #ebebeb;
  577. padding-top: 5px;
  578. color: #004d7b;
  579. }
  580. .content-right .today .adress{
  581. margin-top: 5px;
  582. font-family: Cuprum, sans-serif;
  583. font-size: 14px;
  584. padding: 15px 0;
  585. background: #ebebeb;
  586. color: #929292;
  587. text-align: center;
  588. }
  589. .content-right .news .block-header{
  590. padding: 6px 10px;
  591. font-size: 22px;
  592. font-weight: 700;
  593. font-family: Cuprum, sans-serif;
  594. background: #929292;
  595. color: #fff;
  596. margin-bottom: 10px;
  597. }
  598. .content-right .news .block-header img{
  599. float: right;
  600. margin-top: 3px;
  601. }
  602. .content-right .news-item{
  603. height: 320px;
  604. padding: 0 10px;
  605. padding-right: 0;
  606. margin-bottom: 20px;
  607. }
  608. .content-right .news-item .inner{
  609. height: inherit;
  610. background: #ebebeb;
  611. }
  612. .content-right .news{
  613. display: inline-block;
  614. margin-top: 25px;
  615. padding-left: 15px;
  616. }
  617. .content-right .news .image{
  618. font-family: Cuprum, sans-serif;
  619. margin-bottom: 10px;
  620. color:#fff;
  621. height: 140px;
  622. width: 205px;
  623. margin: 0 auto;
  624. position: relative;
  625. }
  626. .content-right .news .image img{
  627. display: block;
  628. width: 200px;
  629. margin: 0 auto;
  630. }
  631. .content-right .news .image .title{
  632. font-size: 16px;
  633. position: absolute;
  634. bottom: 10px;
  635. left: 20%;
  636. }
  637. .content-right .news .desc{
  638. font-family: Open Sans, sans-serif;
  639. padding-left: 10px;
  640. font-size: 14px;
  641. line-height: 17px;
  642. }
  643. .content-right .news .data{
  644. padding: 10px 0;
  645. margin:10px;
  646. margin-top:20px;
  647. color: #929292;
  648. text-align: right;
  649. border-top: 1px solid #d4d4d4;
  650. }
  651. /*footer*/
  652. footer{
  653. position: absolute;
  654. margin-top: 40px;
  655. width: 100%;
  656. padding-top: 40px;
  657. padding-bottom: 20px;
  658. display: inline-block;
  659. background: #3b434d;
  660. }
  661. footer .list{
  662. position: relative;
  663. list-style: none;
  664. float: left;
  665. width: 20%;
  666. font-family: Cuprum, sans-serif;
  667. font-size: 16px;
  668. }
  669. footer .list a{
  670. color: #f2f2f3
  671. }
  672. footer .list li:nth-child(1){
  673. }
  674. footer .list li:nth-child(1) a{
  675. color: #75787b;
  676. font-weight: 700;
  677. font-size: 18px;
  678. }
  679. footer .admin-button{
  680. background: #ebebeb;
  681. margin-top: 25px;
  682. padding: 10px 5px;
  683. text-align: center;
  684. display: block !important;
  685. }
  686. footer .admin-button a{
  687. font-size: 14px;
  688. color: #929292;
  689. text-decoration: underline;
  690. }
  691. footer .admin-button a:hover{
  692. text-decoration: underline;
  693. }
  694. footer .copyright{
  695. float: right;
  696. height: auto;
  697. margin-top: 40px;
  698. }
  699. footer .copyright .text{
  700. color: #919293;
  701. font-family: Open Sans, sans-serif;
  702. float: left;
  703. width: 60%;
  704. text-align: right;
  705. }
  706. footer .copyright a{
  707. font-family: Open Sans, sans-serif;
  708. padding-left: 8px;
  709. text-decoration: underline;
  710. color: #9e9e9e;
  711. }
  712. footer .copyright a:hover{
  713. color: #9e9e9e;
  714. text-decoration: underline;
  715. }
  716. footer .copyright .logo{
  717. text-align: center;
  718. float: left;
  719. margin-left: 20px;
  720. }
  721. /**/
  722. @media (min-width: 1200px){
  723. .important{
  724. width: 47%;
  725. }
  726. }
  727. @media (min-width: 992px){
  728. .content-right .today .today-item{
  729. width: 50%;
  730. margin-top: 20px;
  731. }
  732. .content-right .news-item{
  733. width: 50%;
  734. }
  735. }
  736. @media (min-width: 768px){
  737. .content-right .today .today-item{
  738. float: left;
  739. width: 50%;
  740. }
  741. .content-right .news-item{
  742. float: left;
  743. width: 50%;
  744. }
  745. }
  746. @media (max-width: 992px){
  747. .left-side{
  748. width: 27% !important;
  749. }
  750. .content-a-lot{
  751. padding-right: 0;
  752. }
  753. .main-container .col-lg-10{
  754. width: 73% !important;
  755. }
  756. header .circles{
  757. position: static !important;
  758. }
  759. header .menu ul li a{
  760. font-size: 14.5px ;
  761. }
  762. }
  763. @media (max-width: 1200px){
  764. .main-title .soc{
  765. display: none;
  766. }
  767. footer .admin-button{
  768. width: 100%;
  769. }
  770. footer .list{
  771. width: 100%;
  772. padding-right: 40px;
  773. }
  774. footer .list li{
  775. display: none;
  776. }
  777. footer .list li:nth-child(1){
  778. display: block;
  779. }
  780. }
  781. @media (max-width: 1200px){
  782. .left-side{
  783. width: 20%;
  784. }
  785. .content-left{
  786. width: 100%;
  787. }
  788. .content-left .clinic{
  789. width: 100%;
  790. }
  791. .content-right{
  792. width: 100%;
  793. }
  794. .content-right .importants .important .description{
  795. padding-top: 30px !important;
  796. }
  797. .content-right .importants .important .important-image{
  798. width: 10%;
  799. }
  800. }
  801. @media (max-width: 768px){
  802. .left-side .specializations .spec{
  803. display: none;
  804. }
  805. .left-side .specializations .more{
  806. display: none;
  807. }
  808. .left-side .add-info{
  809. display: none;
  810. }
  811. .main-container .main-title{
  812. display: none;
  813. }
  814. .content .clinics{
  815. display: none;
  816. }
  817. .content-right{
  818. padding-right: 0;
  819. }
  820. .content-right .importants{
  821. display: none;
  822. }
  823. .left-side{
  824. width: 100% !important;
  825. margin-bottom: 40px;
  826. }
  827. .main-container .col-lg-10 {
  828. width: 100% !important;
  829. }
  830. .main-container .main-title{
  831. width: 100% !important;
  832. }
  833. .main-container .content-right{
  834. width: 100% !important;
  835. }
  836. .main-container .content-right .today{
  837. width: 100% !important;
  838. }
  839. .importants{
  840. width: 100% !important;
  841. }
  842. .main-container .content-left{
  843. width: 100% !important;
  844. }
  845. .main-container .content-left .clinic{
  846. width: 100% !important;
  847. }
  848. .main-container .mobile{
  849. display: block;
  850. }
  851. .left-side .title{
  852. font-size: 32px;
  853. }
  854. .left-side .main-title{
  855. padding: 0;
  856. }
  857. .left-side{
  858. padding-right: 15px;
  859. }
  860. .left-side .logo-subtitle{
  861. width: 50%;
  862. margin: 0 auto;
  863. }
  864. .left-side .specializations .spec-header a{
  865. transform: rotate(90deg);
  866. }
  867. .content-left .doctor{
  868. margin-bottom: 30px;
  869. }
  870. .content-left .about .about-text{
  871. margin-bottom: 30px;
  872. }
  873. .main-container .content-a-lot{
  874. padding-right: 0;
  875. }
  876. .content-right .today .today-item{
  877. width: 50%;
  878. float: left;
  879. }
  880. .content-right .news .news-item{
  881. width: 50%;
  882. float: left;
  883. }
  884. header .menu li{
  885. display: none;
  886. }
  887. header .menu ul .circles{
  888. display: block;
  889. position: absolute !important;
  890. }
  891. header .menu ul .burger{
  892. left: 0;
  893. }
  894. header .menu-mobile{
  895. position: absolute;
  896. width: 100%;
  897. }
  898. header .menu-mobile ul{
  899. padding: 0;
  900. }
  901. }
  902. @media(max-width: 485px){
  903. .content-right .news .news-item{
  904. width: 100%
  905. }
  906. .content-right .today .today-item{
  907. margin: 0 auto;
  908. width: 100%;
  909. margin-bottom: 10px;
  910. }
  911. }
  912. .mobile{
  913. display: none;
  914. }
  915. /*MAIN CONTENT END*/
  916. /*END MAIN PAGE*/
  917. /*CONTACTS PAGE*/
  918. .contacts-container .side-bar .logo{
  919. margin-bottom: 50px;
  920. }
  921. .contacts-container .main-title{
  922. padding-left: 40px;
  923. }
  924. .contacts-container .main-title .title{
  925. font-size: 34px;
  926. }
  927. .contacts-container .side-bar ul{
  928. list-style: none;
  929. padding-left: 0;
  930. }
  931. .contacts-container .side-bar li{
  932. padding: 7px 0;
  933. text-align: right;
  934. border-bottom: 1px solid #ebebeb;
  935. }
  936. .contacts-container .side-bar li:first-child{
  937. border-top: 1px solid #ebebeb;
  938. }
  939. .contacts-container .side-bar li a{
  940. color: #004d7b;
  941. font-family: Cuprum, sans-serif;
  942. font-weight: 600;
  943. font-size: 17px;
  944. }
  945. .contacts-container .side-bar li a:hover{
  946. text-decoration: none;
  947. }
  948. .contacts-container .map{
  949. margin-bottom: 50px;
  950. }
  951. .contacts-container #map{
  952. height: 345px;
  953. margin: auto;
  954. }
  955. .contacts-container .right-side-bar .info{
  956. margin-bottom: 10px;
  957. }
  958. .contacts-container .right-side-bar .soc{
  959. position: static;
  960. display: inline-block;
  961. text-align: center;
  962. padding: 0 10px;
  963. margin-top: 0;
  964. margin-bottom: 20px;
  965. }
  966. .contacts-container .center-content .work-time{
  967. margin-bottom: 40px;
  968. }
  969. .contacts-container .center-content .work-time .min-title{
  970. margin-bottom: 20px;
  971. font-family: Cuprum, sans-serif;
  972. font-size: 20px;
  973. font-weight: 700;
  974. }
  975. .contacts-container .center-content .work-time .text{
  976. font-size: 16px;
  977. }
  978. .contacts-container .center-content .to-doctors{
  979. display: inline-block;
  980. }
  981. .contacts-container .center-content .to-doctors .min-title{
  982. margin-bottom: 20px;
  983. font-family: Cuprum, sans-serif;
  984. font-size: 18px;
  985. font-weight: 700;
  986. }
  987. .contacts-container .center-content .callback .min-title-text{
  988. font-size: 16px;
  989. font-family: Cuprum;
  990. font-weight: 700;
  991. }
  992. .contacts-container .center-content .to-doctors .personal-doctor{
  993. width: 33.33333333332%;
  994. display: inline-block;
  995. color: #000;
  996. padding: 0;
  997. padding-right: 10px;
  998. text-decoration: none;
  999. margin-bottom: 40px;
  1000. }
  1001. .contacts-container .center-content .to-doctors .personal-doctor .doctor-type{
  1002. font-size: 14px;
  1003. font-family: Cuprum, sans-serif;
  1004. color: #929292;
  1005. }
  1006. .contacts-container .center-content .to-doctors .personal-doctor .doctor-header{
  1007. display: inline-block;
  1008. width: 100%;
  1009. background: #ebebeb;
  1010. border-radius: 30px 0 0 30px;
  1011. }
  1012. .contacts-container .center-content .to-doctors .personal-doctor .doctor-image{
  1013. float: left;
  1014. }
  1015. .contacts-container .center-content .to-doctors .personal-doctor .doctor-name{
  1016. padding-top: 10px;
  1017. padding-left: 65px;
  1018. font-family: Cuprum, sans-serif;
  1019. color: #004d7b;
  1020. font-size: 18px;
  1021. line-height: 18px;
  1022. }
  1023. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
  1024. width: 13%;
  1025. float: left;
  1026. padding-top: 70px;
  1027. }
  1028. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text{
  1029. padding-top: 10px;
  1030. width: 87%;
  1031. float: left;
  1032. }
  1033. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .category{
  1034. color: #929292;
  1035. margin-bottom: 10px;
  1036. }
  1037. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .otdels{
  1038. color: #004d7b;
  1039. font-family: Open Sans, sans-serif;
  1040. }
  1041. .contacts-container .center-content .to-doctors .personal-doctor .contacts{
  1042. display: inline-block;
  1043. margin-top: 10px;
  1044. width: 100%;
  1045. background: #ebebeb;
  1046. padding-top: 10px;
  1047. padding-left: 5px;
  1048. padding-right: 5px;
  1049. }
  1050. .contacts-container .center-content .to-doctors .personal-doctor .contact{
  1051. color:#929292;
  1052. font-size: 14px;
  1053. font-family: Cuprum, sans-serif;
  1054. }
  1055. .contacts-container .center-content .to-doctors .personal-doctor .value{
  1056. font-size: 16px;
  1057. margin-bottom: 5px;
  1058. font-family: Cuprum, sans-serif;
  1059. }
  1060. .contacts-container .center-content .to-doctors .personal-doctor .value a {
  1061. font-size: 15px;
  1062. }
  1063. .contacts-container .center-content .to-doctors .personal-doctor .priem{
  1064. margin-top: 10px;
  1065. font-weight: 700;
  1066. font-size: 16px;
  1067. font-family: Cuprum, sans-serif;
  1068. }
  1069. .contacts-container .center-content .callback{
  1070. display: inline-block;
  1071. }
  1072. .contacts-container .center-content .callback .min-title{
  1073. margin-bottom: 20px;
  1074. font-family: Cuprum, sans-serif;
  1075. font-size: 20px;
  1076. font-weight: 700;
  1077. }
  1078. .contacts-container .center-content .callback .min-title-text{
  1079. font-size: 19px;
  1080. margin-bottom: 30px;
  1081. }
  1082. .contacts-container .center-content .callback form p{
  1083. font-size: 12px;
  1084. color: #929292;
  1085. }
  1086. .contacts-container .center-content .callback form input{
  1087. margin-bottom: 10px;
  1088. padding-left: 5px;
  1089. font-family: Open Sans, sans-serif;
  1090. font-size: 14px;
  1091. font-weight: 400;
  1092. width: 100%;
  1093. height: 30px;
  1094. color: #929292;
  1095. background: #ebebeb;
  1096. border: none;
  1097. }
  1098. .contacts-container .center-content .callback form input[type = "checkbox"]{
  1099. width: 20px;
  1100. height: inherit;
  1101. }
  1102. .contacts-container .center-content .callback form span{
  1103. font-size: 12px;
  1104. color: #929292;
  1105. }
  1106. .contacts-container .center-content .callback form textarea{
  1107. width: 100%;
  1108. height: 110px;
  1109. padding-left: 5px;
  1110. font-family: Open Sans, sans-serif;
  1111. font-size: 14px;
  1112. color: #929292;
  1113. background: #ebebeb;
  1114. border: none;
  1115. resize: none;
  1116. }
  1117. .contacts-container .center-content .callback form .form-button{
  1118. margin-top: 10px;
  1119. cursor: pointer;
  1120. padding: 7px 0;
  1121. color: #fff;
  1122. text-align: center;
  1123. font-family: Cuprum , sans-serif;
  1124. font-weight: 700;
  1125. background: #004d7b;
  1126. border: 0;
  1127. }
  1128. .contacts-container .center-content .to-doctors .doctor-button{
  1129. display: inline-block;
  1130. width: 100%;
  1131. margin-top: 10px;
  1132. text-align: center;
  1133. text-decoration: underline;
  1134. font-family: Cuprum, sans-serif;
  1135. padding: 7px 0;
  1136. color: #929292;
  1137. background: #ebebeb;
  1138. }
  1139. .contacts-container .center-content .to-doctors .doctor-button:hover{
  1140. color: #fff;
  1141. background: #004d7b;
  1142. }
  1143. /*
  1144. .contacts-container .center-content .*/
  1145. @media (max-width: 1200px){
  1146. .contacts-container .left-side {
  1147. width: 20% !important;
  1148. }
  1149. .contacts-container .importants .important:nth-child(2) .description{
  1150. padding-left:58px;
  1151. }
  1152. }
  1153. @media (min-width: 1200px){
  1154. .contacts-container .main-title {
  1155. width: 60%;
  1156. padding-left: 40px;
  1157. }
  1158. .contacts-container .focus-content {
  1159. width: 60%;
  1160. padding-left: 40px;
  1161. }
  1162. .contacts-container .important{
  1163. width: 100%;
  1164. }
  1165. }
  1166. @media (max-width: 1200px){
  1167. .contacts-container .center-content .callback{
  1168. margin-bottom: 40px;
  1169. }
  1170. .contacts-container .left-side {
  1171. width: 100% !important;
  1172. margin-bottom: 40px;
  1173. }
  1174. .contacts-container .left-side .main-title{
  1175. float: none;
  1176. width: 100% !important;
  1177. }
  1178. .contacts-container .center-content{
  1179. width: 100%;
  1180. }
  1181. .contacts-container .center-content .to-doctors .personal-doctor{
  1182. width: 100%;
  1183. }
  1184. .contacts-container .center-content .callback form .form-button{
  1185. width: 100%;
  1186. }
  1187. .contacts-container .main-title{
  1188. padding-left: 15px;
  1189. }
  1190. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
  1191. width: 10%;
  1192. padding-top: 20px;
  1193. }
  1194. .contacts-container .left-side .importants .important-image{
  1195. width: 10%;
  1196. }
  1197. .contacts-container .left-side .importants .description{
  1198. padding-top: 20px !important;
  1199. }
  1200. .contacts-container .right-side-bar .info .logo{
  1201. display: none;
  1202. }
  1203. .contacts-container .main-title{
  1204. display: block;
  1205. }
  1206. .contacts-container .center-content .title{
  1207. display: none;
  1208. }
  1209. .contacts-container .center-content .subtitle{
  1210. display: none;
  1211. }
  1212. }
  1213. /*CONTACTS PAGE END*/
  1214. /*SPECIALISTS PAGE*/
  1215. .specs-container .center-content .classes{
  1216. margin-bottom: 15px;
  1217. }
  1218. .specs-container .center-content .classes a{
  1219. display: block;
  1220. color: #004d7b;
  1221. }
  1222. .specs-container .center-content .text{
  1223. font-family: Open Sans, sans-serif;
  1224. margin-bottom: 20px;
  1225. }
  1226. .specs-container .today{
  1227. width: 100%;
  1228. margin-top: 25px;
  1229. /* padding-left: 15px;
  1230. padding-right: 15px;*/
  1231. display: inline-block;
  1232. }
  1233. .specs-container .today .today-item{
  1234. padding-left: 0;
  1235. margin-bottom: 20px;
  1236. }
  1237. .specs-container .today .today-item .head{
  1238. background: #929292;
  1239. padding: 12px 5px;
  1240. font-size: 13px;
  1241. font-family: Cuprum;
  1242. text-align: right;
  1243. height: 40px;
  1244. color: #fff;
  1245. border-radius: 10px 0 0 0;
  1246. }
  1247. .specs-container .today .today-item .head-blue{
  1248. background: #5597d1;
  1249. }
  1250. .specs-container .today .today-item .head .date{
  1251. float: left;
  1252. display: block;
  1253. }
  1254. .specs-container .today .today-item .head .name{
  1255. float: right;
  1256. display: block;
  1257. }
  1258. /*.contacts-container .today .today-item{
  1259. padding-right: 0;
  1260. }
  1261. */
  1262. .specs-container .today .block-header{
  1263. padding: 6px 10px;
  1264. font-size: 22px;
  1265. font-weight: 700;
  1266. font-family: Cuprum, sans-serif;
  1267. background: #929292;
  1268. color: #fff;
  1269. margin-bottom: 10px;
  1270. }
  1271. .specs-container .today .block-header img{
  1272. float: right;
  1273. margin-top: 3px;
  1274. }
  1275. .specs-container .today .image{
  1276. position: relative;
  1277. margin-top: 10px;
  1278. }
  1279. .specs-container .today .image img{
  1280. display: block;
  1281. width: 200px;
  1282. margin: 0 auto;
  1283. }
  1284. .specs-container .today .logo{
  1285. position: absolute;
  1286. top: 0;
  1287. font-family: Cuprum, sans-serif;
  1288. right: 15px;
  1289. width: 60px;
  1290. height: 60px;
  1291. }
  1292. .specs-container .today .logo img{
  1293. width: 60px;
  1294. height: 60px;
  1295. }
  1296. .specs-container .today .free{
  1297. position: absolute;
  1298. padding-top: 5px;
  1299. padding-left: 7px;
  1300. top: 60px;
  1301. left: -5px;
  1302. font-family: Cuprum, sans-serif;
  1303. color: #fff;
  1304. width: 200px;
  1305. height: 40px;
  1306. background: url(../images/free-bg.png) no-repeat;
  1307. }
  1308. .specs-container .today .desc{
  1309. margin-top:10px;
  1310. margin-bottom: 10px;
  1311. font-family: Cuprum, sans-serif;
  1312. padding-left: 5px;
  1313. font-size: 14px;
  1314. }
  1315. .specs-container .today .org{
  1316. font-family: Cuprum, sans-serif;
  1317. font-weight: 600;
  1318. text-align: center;
  1319. border-top:1px solid #ebebeb;
  1320. padding-top: 5px;
  1321. color: #004d7b;
  1322. }
  1323. .specs-container .today .adress{
  1324. margin-top: 5px;
  1325. font-family: Cuprum, sans-serif;
  1326. font-size: 14px;
  1327. padding: 15px 0;
  1328. background: #ebebeb;
  1329. color: #929292;
  1330. text-align: center;
  1331. }
  1332. .specs-container .center-content .vacancies{
  1333. margin-bottom: 40px;
  1334. }
  1335. .specs-container .center-content .vacan-table{
  1336. border-top: 1px solid #ebebeb;
  1337. }
  1338. .specs-container .center-content .vacancies .vac{
  1339. padding: 7px 10px;
  1340. }
  1341. .specs-container .center-content .vacancies .vac:nth-child(even){
  1342. background: #ebebeb;
  1343. }
  1344. .specs-container .center-content .vacancies .vacation{
  1345. float: left;
  1346. }
  1347. .specs-container .center-content .vacancies .vacation a{
  1348. color:#004d7b;
  1349. }
  1350. .specs-container .center-content .vacancies .value{
  1351. text-align: right;
  1352. }
  1353. @media (min-width: 768px){
  1354. .specs-container .today .today-item {
  1355. float: left;
  1356. width: 33.333332%;
  1357. }
  1358. }
  1359. /*SPECIALISTS PAGE END*/
  1360. /*NEWS*/
  1361. .left-side .add-info-news{
  1362. margin-top: 15px;
  1363. }
  1364. .right-side-bar .today{
  1365. width: 100% ;
  1366. margin-top: 25px;
  1367. display: inline-block;
  1368. }
  1369. .right-side-bar .today .today-item{
  1370. padding: 0 10px;
  1371. }
  1372. .right-side-bar .today .today-item .head{
  1373. background: #929292;
  1374. padding: 12px 5px;
  1375. font-size: 13px;
  1376. font-family: Cuprum;
  1377. text-align: right;
  1378. height: 40px;
  1379. color: #fff;
  1380. border-radius: 10px 0 0 0;
  1381. }
  1382. .right-side-bar .today .today-item .head-blue{
  1383. background: #5597d1;
  1384. }
  1385. .right-side-bar .today .today-item .head .date{
  1386. float: left;
  1387. display: block;
  1388. }
  1389. .right-side-bar .today .today-item .head .name{
  1390. float: right;
  1391. display: block;
  1392. }
  1393. .right-side-bar .today .today-item{
  1394. margin-bottom: 15px;
  1395. }
  1396. .right-side-bar .today .block-header{
  1397. padding: 6px 10px;
  1398. font-size: 22px;
  1399. font-weight: 700;
  1400. font-family: Cuprum, sans-serif;
  1401. background: #929292;
  1402. color: #fff;
  1403. margin-bottom: 10px;
  1404. }
  1405. .right-side-bar .today .block-header img{
  1406. float: right;
  1407. margin-top: 3px;
  1408. }
  1409. .right-side-bar .today .image{
  1410. position: relative;
  1411. margin-top: 10px;
  1412. }
  1413. .right-side-bar .today .image img{
  1414. display: block;
  1415. width: 200px;
  1416. margin: 0 auto;
  1417. }
  1418. .right-side-bar .today .logo{
  1419. position: absolute;
  1420. top: 0;
  1421. font-family: Cuprum, sans-serif;
  1422. right: 15px;
  1423. width: 60px;
  1424. height: 60px;
  1425. }
  1426. .right-side-bar .today .logo img{
  1427. width: 60px;
  1428. height: 60px;
  1429. }
  1430. .right-side-bar .today .free{
  1431. position: absolute;
  1432. padding-top: 5px;
  1433. padding-left: 7px;
  1434. top: 60px;
  1435. left: -5px;
  1436. font-family: Cuprum, sans-serif;
  1437. color: #fff;
  1438. width: 200px;
  1439. height: 40px;
  1440. background: url(../images/free-bg.png) no-repeat;
  1441. }
  1442. .right-side-bar .today .desc{
  1443. margin-top:10px;
  1444. margin-bottom: 10px;
  1445. font-family: Cuprum, sans-serif;
  1446. padding-left: 5px;
  1447. font-size: 14px;
  1448. }
  1449. .right-side-bar .today .org{
  1450. font-family: Cuprum, sans-serif;
  1451. font-weight: 600;
  1452. text-align: center;
  1453. border-top:1px solid #ebebeb;
  1454. padding-top: 5px;
  1455. color: #004d7b;
  1456. }
  1457. .right-side-bar .today .adress{
  1458. margin-top: 5px;
  1459. font-family: Cuprum, sans-serif;
  1460. font-size: 14px;
  1461. padding: 15px 0;
  1462. background: #ebebeb;
  1463. color: #929292;
  1464. text-align: center;
  1465. }
  1466. .contacts-container .center-content .news .block-header{
  1467. padding: 6px 10px;
  1468. font-size: 22px;
  1469. font-weight: 700;
  1470. font-family: Cuprum, sans-serif;
  1471. background: #929292;
  1472. color: #fff;
  1473. margin-bottom: 10px;
  1474. }
  1475. .contacts-container .center-content .news .block-header img{
  1476. float: right;
  1477. margin-top: 3px;
  1478. }
  1479. .contacts-container .center-content .news-item{
  1480. height: 320px;
  1481. padding: 0 10px;
  1482. padding-right: 0;
  1483. margin-bottom: 20px;
  1484. }
  1485. .contacts-container .center-content .news-item .inner{
  1486. height: inherit;
  1487. background: #ebebeb;
  1488. border-radius: 10px 0 0 0;
  1489. overflow: hidden;
  1490. }
  1491. .contacts-container .center-content .news{
  1492. display: inline-block;
  1493. margin-top: 25px;
  1494. padding-left: 0px;
  1495. }
  1496. .contacts-container .center-content .news .image{
  1497. font-family: Cuprum, sans-serif;
  1498. margin-bottom: 20px;
  1499. color:#fff;
  1500. height: 160px;
  1501. /* width: 205px;*/
  1502. margin: 0 auto;
  1503. position: relative;
  1504. }
  1505. .contacts-container .center-content .news .image img{
  1506. display: block;
  1507. margin: 0 auto;
  1508. }
  1509. .contacts-container .center-content .news .image .title{
  1510. font-size: 16px;
  1511. font-weight: 400;
  1512. position: absolute;
  1513. bottom: 10px;
  1514. display: block;
  1515. color: #fff;
  1516. left: 20%;
  1517. }
  1518. .contacts-container .center-content .news .desc{
  1519. font-family: Open Sans, sans-serif;
  1520. padding-left: 10px;
  1521. font-size: 14px;
  1522. line-height: 17px;
  1523. }
  1524. .contacts-container .center-content .news .data{
  1525. padding: 10px 0;
  1526. margin:10px;
  1527. margin-top:20px;
  1528. color: #929292;
  1529. text-align: right;
  1530. border-top: 1px solid #d4d4d4;
  1531. }
  1532. .center-content .pagination-container{
  1533. /*background: #ebebeb;*/
  1534. padding-left: 10px;
  1535. }
  1536. .center-content .pagination{
  1537. font-family: Open Sans, sans-serif;
  1538. font-weight: 500;
  1539. width: 100%;
  1540. height: 40px;
  1541. background: #ebebeb;
  1542. }
  1543. .center-content .pagination .number{
  1544. cursor: pointer;
  1545. padding-top: 10px;
  1546. /*margin: 0 10px;*/
  1547. }
  1548. .center-content .pagination .number:hover{
  1549. color:#e77140;
  1550. }
  1551. .center-content .pagination .active{
  1552. color: #e77140;
  1553. border-bottom:2px solid #e55e26;
  1554. }
  1555. .center-content .pagination .arrow-left{
  1556. background: url(../images/pagination-left.png) no-repeat center;
  1557. cursor: pointer;
  1558. }
  1559. .center-content .pagination .arrow-right{
  1560. background: url(../images/pagination-right.png) no-repeat center;
  1561. cursor: pointer;
  1562. }
  1563. .center-content .pagination div{
  1564. height: 40px;
  1565. float: left;
  1566. width: 7.14%;
  1567. text-align: center;
  1568. }
  1569. @media(max-width: 1200px){
  1570. .right-side-bar .today .today-item{
  1571. width: 33.33333%;
  1572. float: left;
  1573. }
  1574. .left-side .news-importants{
  1575. display: none;
  1576. }
  1577. }
  1578. @media(min-width: 992px){
  1579. .left-side .new-importants{
  1580. display: none;
  1581. }
  1582. }
  1583. @media(max-width: 768px){
  1584. .right-side-bar .today .today-item{
  1585. width: 100%;
  1586. float: left;
  1587. }
  1588. .right-side-bar .today{
  1589. display: none;
  1590. }
  1591. .center-content .pagination{
  1592. display: none;
  1593. }
  1594. .left-side .add-info {
  1595. display: block;
  1596. }
  1597. }
  1598. @media(max-width: 550px){
  1599. .center-content .news{
  1600. padding-left: 0;
  1601. }
  1602. .center-content .news .news-item{
  1603. padding-left: 0;
  1604. width: 93%;
  1605. float: none;
  1606. margin: 0 auto;
  1607. margin-bottom: 20px;
  1608. }
  1609. .center-content .news .news-item .image{
  1610. padding-left: 0;
  1611. width:100%;
  1612. margin: 0 auto;
  1613. }
  1614. .center-content .news .news-item .image img{
  1615. margin: 0 auto;
  1616. }
  1617. }
  1618. /*NEWS END*/
  1619. /*ABOUT*/
  1620. /*.center-content .about{
  1621. display: inline-block;
  1622. }*/
  1623. .center-content .about .doctor{
  1624. padding-left: 0;
  1625. }
  1626. .center-content .about .about-text .title{
  1627. font-family: Cuprum, sans-serif;
  1628. font-weight: 700;
  1629. font-size: 24px;
  1630. }
  1631. .center-content .about-main-text{
  1632. display: inline-block;
  1633. margin-top: 20px;
  1634. font-size: 16px;
  1635. }
  1636. .center-content .about-main-text .image{
  1637. text-align: center;
  1638. float: right;
  1639. margin-top: 20px;
  1640. margin-left: 20px;
  1641. margin-bottom: 20px;
  1642. }
  1643. .center-content .youtube{
  1644. width: 100%;
  1645. margin-top: 20px;
  1646. text-align: center;
  1647. }
  1648. .center-content .to-doctors-about{
  1649. padding-left: 0;
  1650. margin-bottom: 0 !important;
  1651. margin-top: 40px;
  1652. }
  1653. .center-content .to-doctors-about .personal-doctor .doctor-name span{
  1654. display: block;
  1655. float: left;
  1656. }
  1657. .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
  1658. font-size: 14px;
  1659. float: right;
  1660. padding-right: 20px;
  1661. }
  1662. .center-content .to-doctors-about .personal-doctor{
  1663. width: 100% !important;
  1664. border-bottom: 1px solid #ebebeb;
  1665. }
  1666. .center-content .to-doctors-about .doctor-header{
  1667. height: 40px;
  1668. border-radius: 70px 0 0 30px;
  1669. }
  1670. .center-content .to-doctors-about .personal-doctor .image{
  1671. padding-top: 30px !important;
  1672. }
  1673. .center-content .equip{
  1674. margin-bottom: 40px;
  1675. }
  1676. .center-content .media{
  1677. margin-bottom: 40px;
  1678. overflow: visible;
  1679. position: relative;
  1680. padding-top: 30px;
  1681. border-top: 1px solid #ebebeb;
  1682. }
  1683. .center-content .media .swiper-button-next{
  1684. background: url(../images/media-arrow-right.png) no-repeat center;
  1685. top: 60%;
  1686. right: -25px;
  1687. }
  1688. .center-content .media .swiper-button-prev{
  1689. background: url(../images/media-arrow-left.png) no-repeat center;
  1690. top: 60%;
  1691. left: -30px;
  1692. }
  1693. .center-content .media .swiper-container {
  1694. width: inherit;
  1695. height: 140px;
  1696. margin: 20px auto;
  1697. }
  1698. .center-content .media .swiper-container iframe{
  1699. width: 100%;
  1700. height: 100%;
  1701. }
  1702. .center-content .media .swiper-slide {
  1703. width: 30% !important;
  1704. text-align: center;
  1705. font-size: 18px;
  1706. background: #fff;
  1707. /* Center slide text vertically */
  1708. display: -webkit-box;
  1709. display: -ms-flexbox;
  1710. display: -webkit-flex;
  1711. display: flex;
  1712. -webkit-box-pack: center;
  1713. -ms-flex-pack: center;
  1714. -webkit-justify-content: center;
  1715. justify-content: center;
  1716. -webkit-box-align: center;
  1717. -ms-flex-align: center;
  1718. -webkit-align-items: center;
  1719. align-items: center;
  1720. }
  1721. .center-content .media-text{
  1722. line-height: 20px;
  1723. font-size: 15px;
  1724. }
  1725. .center-content .pagination .show-all{
  1726. text-align: center;
  1727. padding-top: 10px;
  1728. font-size: 13px;
  1729. display:inline-block;
  1730. color: #fff;
  1731. background: #3b434d;
  1732. width: 20%;
  1733. height: 100%;
  1734. float: right;
  1735. }
  1736. .center-content .pagination .show-all:hover{
  1737. text-decoration: none;
  1738. background: #e65e26;
  1739. }
  1740. .center-content .pagination .show-all:focus{
  1741. text-decoration: none;
  1742. }
  1743. .center-content .documents{
  1744. font-family: Open Sans, sans-serif;
  1745. color: #3b434d;
  1746. background: #ebebeb;
  1747. }
  1748. .center-content .documents .row{
  1749. margin-right: 0;
  1750. margin-left: 0;
  1751. }
  1752. .center-content .documents .doc-item{
  1753. width: 20%;
  1754. float: left;
  1755. padding: 5px;
  1756. }
  1757. .center-content .documents .year{
  1758. width: 8%;
  1759. }
  1760. .center-content .documents .doc-name{
  1761. color: #004d7b;
  1762. width: 22%;
  1763. }
  1764. .center-content .documents .doc-data{
  1765. width: 14%;
  1766. }
  1767. .center-content .documents .doc-desc{
  1768. width: 25%;
  1769. }
  1770. .center-content .documents .doc-org{
  1771. width: 25%;
  1772. }
  1773. @media (max-width: 1200px){
  1774. .center-content .about{
  1775. margin-bottom: 20px;
  1776. }
  1777. .center-content .about .doctor{
  1778. margin-bottom: 20px;
  1779. }
  1780. .center-content .about .about-text .title{
  1781. display: block;
  1782. }
  1783. }
  1784. @media (max-width: 768px){
  1785. .center-content .documents .doc-item{
  1786. width: 100%;
  1787. float: none;
  1788. padding: 5px;
  1789. }
  1790. .center-content .documents .row{
  1791. margin: 20px 0;
  1792. }
  1793. .center-content .about-main-text .image{
  1794. display: none;
  1795. }
  1796. .center-content .about .youtube iframe{
  1797. width: 100%;
  1798. }
  1799. .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
  1800. display: none;
  1801. }
  1802. .center-content .to-doctors-about .personal-doctor .doctor-image{
  1803. display: none;
  1804. }
  1805. .center-content .to-doctors .personal-doctor .doctor-header{
  1806. border-radius: 0 !important;
  1807. }
  1808. .center-content .to-doctors .personal-doctor .doctor-header .doctor-name{
  1809. padding-left: 15px !important;
  1810. }
  1811. }
  1812. @media (max-width: 768px){
  1813. .smi{
  1814. display: none;
  1815. }
  1816. }
  1817. /*ABOUT END*/
  1818. /*SERVICES*/
  1819. .service-text{
  1820. font-family: Open Sans, sans-serif;
  1821. }
  1822. .service-title{
  1823. font-family: Cuprum ,sans-serif;
  1824. font-weight: 600;
  1825. font-size: 26px;
  1826. margin: 30px 0;
  1827. }
  1828. .service-item{
  1829. font-family: Open Sans, sans-serif;
  1830. color :#404040;
  1831. border-top: 1px solid #ebebeb;
  1832. border-bottom: 1px solid #ebebeb;
  1833. width: 100%;
  1834. display: inline-block;
  1835. }
  1836. .service-row{
  1837. display: inline-block;
  1838. width: 100%;
  1839. padding: 4px 5px;
  1840. }
  1841. .service-row:nth-child(even){
  1842. background: #ebebeb;
  1843. }
  1844. .service-item .service-unit{
  1845. width: 11%;
  1846. float: left;
  1847. }
  1848. .service-item .service-unit:nth-child(1){
  1849. width: 9%;
  1850. }
  1851. .service-item .service-unit:nth-child(2){
  1852. width: 50%;
  1853. }
  1854. .service-item .service-unit:nth-child(3){
  1855. width:11%;
  1856. }
  1857. .service-item .service-unit:nth-child(4){
  1858. width: 9%;
  1859. text-align: center;
  1860. }
  1861. .service-item .service-unit:nth-child(5){
  1862. width: 9%;
  1863. text-align: center;
  1864. }
  1865. .service-more{
  1866. display: none;
  1867. text-align: right;
  1868. margin-top: 10px;
  1869. }
  1870. .service-more a{
  1871. font-size: 14px;
  1872. color:#929292;
  1873. }
  1874. .service-more:last-child{
  1875. margin-bottom: 60px;
  1876. }
  1877. @media(max-width: 768px){
  1878. .service-more{
  1879. display: block;
  1880. }
  1881. .service-item .service-unit{
  1882. text-align: left !important;
  1883. width: 100% !important;
  1884. float: none;
  1885. padding: 5px;
  1886. }
  1887. .service-row{
  1888. margin: 20px 0;
  1889. }
  1890. .service-item .service-unit:nth-child(1){
  1891. display: none;
  1892. }
  1893. }
  1894. /*SERVICES END*/
  1895. /*TODAY*/
  1896. .today-page{
  1897. width: 100%;
  1898. margin-top: 25px;
  1899. padding-left: 0px;
  1900. display: inline-block;
  1901. }
  1902. .today-page .today-item .head{
  1903. background: #929292;
  1904. padding: 12px 5px;
  1905. font-size: 13px;
  1906. font-family: Cuprum;
  1907. text-align: right;
  1908. height: 40px;
  1909. color: #fff;
  1910. border-radius: 10px 0 0 0;
  1911. }
  1912. .today-page .today-item .head-blue{
  1913. background: #5597d1;
  1914. }
  1915. .today-page .today-item .head .date{
  1916. float: left;
  1917. display: block;
  1918. }
  1919. .today-page .today-item .head .name{
  1920. float: right;
  1921. display: block;
  1922. }
  1923. .today-page .today-item{
  1924. padding-right: 0;
  1925. margin-bottom: 20px;
  1926. }
  1927. .today-page .image{
  1928. position: relative;
  1929. margin-top: 10px;
  1930. }
  1931. .today-page .image img{
  1932. display: block;
  1933. width: 200px;
  1934. margin: 0 auto;
  1935. }
  1936. .today-page .logo{
  1937. position: absolute;
  1938. top: 0;
  1939. font-family: Cuprum, sans-serif;
  1940. right: 15px;
  1941. width: 60px;
  1942. height: 60px;
  1943. }
  1944. .today-page .logo img{
  1945. width: 60px;
  1946. height: 60px;
  1947. }
  1948. .today-page .free{
  1949. position: absolute;
  1950. padding-top: 5px;
  1951. padding-left: 7px;
  1952. top: 60px;
  1953. left: -5px;
  1954. font-family: Cuprum, sans-serif;
  1955. color: #fff;
  1956. width: 200px;
  1957. height: 40px;
  1958. background: url(../images/free-bg.png) no-repeat;
  1959. }
  1960. .today-page .desc{
  1961. margin-top:10px;
  1962. margin-bottom: 10px;
  1963. font-family: Cuprum, sans-serif;
  1964. padding-left: 5px;
  1965. font-size: 14px;
  1966. }
  1967. .today-page .org{
  1968. font-family: Cuprum, sans-serif;
  1969. font-weight: 600;
  1970. text-align: center;
  1971. border-top:1px solid #ebebeb;
  1972. padding-top: 5px;
  1973. color: #004d7b;
  1974. }
  1975. .today-page .adress{
  1976. margin-top: 5px;
  1977. font-family: Cuprum, sans-serif;
  1978. font-size: 14px;
  1979. padding: 15px 0;
  1980. background: #ebebeb;
  1981. color: #929292;
  1982. text-align: center;
  1983. }
  1984. .pagination-mobile{
  1985. display: none;
  1986. }
  1987. @media (max-width: 768px){
  1988. .center-content .pagination-mobile{
  1989. display: block;
  1990. }
  1991. .center-content .pagination-mobile .pagination div{
  1992. width: 16.66666%;
  1993. }
  1994. }
  1995. /*TODAY END*/
  1996. /*PATIENT*/
  1997. .min-title{
  1998. margin-bottom: 20px;
  1999. font-family: Cuprum, sans-serif;
  2000. font-size: 20px;
  2001. font-weight: 700;
  2002. }
  2003. .patients-text{
  2004. font-family: Open Sans, sans-serif;
  2005. line-height: 22px;
  2006. margin-bottom: 20px;
  2007. }
  2008. /*PATIENT END*/