style.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349
  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 .social:nth-child(1){
  254. background: url(../images/soc-fb.png)
  255. }
  256. .soc .social:nth-child(2){
  257. background: url(../images/soc-vk.png)
  258. }
  259. .soc .social:nth-child(3){
  260. background: url(../images/soc-ok.png)
  261. }
  262. .soc .social:nth-child(4){
  263. background: url(../images/soc-twitter.png)
  264. }
  265. .soc .social:nth-child(1):hover{
  266. background: url(../images/soc-fb-hover.png)
  267. }
  268. .soc .social:nth-child(2):hover{
  269. background: url(../images/soc-vk-hover.png)
  270. }
  271. .soc .social:nth-child(3):hover{
  272. background: url(../images/soc-ok-hover.png)
  273. }
  274. .soc .social:nth-child(4):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. margin-bottom: 60px;
  980. display: inline-block;
  981. }
  982. .contacts-container .center-content .to-doctors .min-title{
  983. margin-bottom: 20px;
  984. font-family: Cuprum, sans-serif;
  985. font-size: 18px;
  986. font-weight: 700;
  987. }
  988. .contacts-container .center-content .callback .min-title-text{
  989. font-size: 16px;
  990. font-family: Cuprum;
  991. font-weight: 700;
  992. }
  993. .contacts-container .center-content .to-doctors .personal-doctor{
  994. width: 33.33333333332%;
  995. display: inline-block;
  996. color: #000;
  997. padding: 0;
  998. padding-right: 10px;
  999. text-decoration: none;
  1000. margin-bottom: 40px;
  1001. }
  1002. .contacts-container .center-content .to-doctors .personal-doctor .doctor-type{
  1003. font-size: 14px;
  1004. font-family: Cuprum, sans-serif;
  1005. color: #929292;
  1006. }
  1007. .contacts-container .center-content .to-doctors .personal-doctor .doctor-header{
  1008. display: inline-block;
  1009. width: 100%;
  1010. background: #ebebeb;
  1011. border-radius: 30px 0 0 30px;
  1012. }
  1013. .contacts-container .center-content .to-doctors .personal-doctor .doctor-image{
  1014. float: left;
  1015. }
  1016. .contacts-container .center-content .to-doctors .personal-doctor .doctor-name{
  1017. padding-top: 10px;
  1018. padding-left: 65px;
  1019. font-family: Cuprum, sans-serif;
  1020. color: #004d7b;
  1021. font-size: 18px;
  1022. line-height: 18px;
  1023. }
  1024. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
  1025. width: 13%;
  1026. float: left;
  1027. padding-top: 70px;
  1028. }
  1029. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text{
  1030. padding-top: 10px;
  1031. width: 87%;
  1032. float: left;
  1033. }
  1034. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .category{
  1035. color: #929292;
  1036. margin-bottom: 10px;
  1037. }
  1038. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .otdels{
  1039. color: #004d7b;
  1040. font-family: Open Sans, sans-serif;
  1041. }
  1042. .contacts-container .center-content .to-doctors .personal-doctor .contacts{
  1043. display: inline-block;
  1044. margin-top: 10px;
  1045. width: 100%;
  1046. background: #ebebeb;
  1047. padding-top: 10px;
  1048. padding-left: 5px;
  1049. padding-right: 5px;
  1050. }
  1051. .contacts-container .center-content .to-doctors .personal-doctor .contact{
  1052. color:#929292;
  1053. font-size: 14px;
  1054. font-family: Cuprum, sans-serif;
  1055. }
  1056. .contacts-container .center-content .to-doctors .personal-doctor .value{
  1057. font-size: 16px;
  1058. margin-bottom: 5px;
  1059. font-family: Cuprum, sans-serif;
  1060. }
  1061. .contacts-container .center-content .to-doctors .personal-doctor .value a {
  1062. font-size: 15px;
  1063. }
  1064. .contacts-container .center-content .to-doctors .personal-doctor .priem{
  1065. margin-top: 10px;
  1066. font-weight: 700;
  1067. font-size: 16px;
  1068. font-family: Cuprum, sans-serif;
  1069. }
  1070. .contacts-container .center-content .callback{
  1071. display: inline-block;
  1072. }
  1073. .contacts-container .center-content .callback .min-title{
  1074. margin-bottom: 20px;
  1075. font-family: Cuprum, sans-serif;
  1076. font-size: 20px;
  1077. font-weight: 700;
  1078. }
  1079. .contacts-container .center-content .callback .min-title-text{
  1080. font-size: 19px;
  1081. margin-bottom: 30px;
  1082. }
  1083. .contacts-container .center-content .callback form p{
  1084. font-size: 12px;
  1085. color: #929292;
  1086. }
  1087. .contacts-container .center-content .callback form input{
  1088. margin-bottom: 10px;
  1089. padding-left: 5px;
  1090. font-family: Open Sans, sans-serif;
  1091. font-size: 14px;
  1092. font-weight: 400;
  1093. width: 100%;
  1094. height: 30px;
  1095. color: #929292;
  1096. background: #ebebeb;
  1097. border: none;
  1098. }
  1099. .contacts-container .center-content .callback form input[type = "checkbox"]{
  1100. width: 20px;
  1101. height: inherit;
  1102. }
  1103. .contacts-container .center-content .callback form span{
  1104. font-size: 12px;
  1105. color: #929292;
  1106. }
  1107. .contacts-container .center-content .callback form textarea{
  1108. width: 100%;
  1109. height: 110px;
  1110. padding-left: 5px;
  1111. font-family: Open Sans, sans-serif;
  1112. font-size: 14px;
  1113. color: #929292;
  1114. background: #ebebeb;
  1115. border: none;
  1116. resize: none;
  1117. }
  1118. .contacts-container .center-content .callback form .form-button{
  1119. margin-top: 10px;
  1120. cursor: pointer;
  1121. padding: 7px 0;
  1122. color: #fff;
  1123. text-align: center;
  1124. font-family: Cuprum , sans-serif;
  1125. font-weight: 700;
  1126. background: #004d7b;
  1127. border: 0;
  1128. }
  1129. .contacts-container .center-content .to-doctors .doctor-button{
  1130. display: inline-block;
  1131. width: 100%;
  1132. margin-top: 10px;
  1133. text-align: center;
  1134. text-decoration: underline;
  1135. font-family: Cuprum, sans-serif;
  1136. padding: 7px 0;
  1137. color: #929292;
  1138. background: #ebebeb;
  1139. }
  1140. .contacts-container .center-content .to-doctors .doctor-button:hover{
  1141. color: #fff;
  1142. background: #004d7b;
  1143. }
  1144. /*
  1145. .contacts-container .center-content .*/
  1146. @media (max-width: 1200px){
  1147. .contacts-container .left-side {
  1148. width: 20% !important;
  1149. }
  1150. .contacts-container .importants .important:nth-child(2) .description{
  1151. padding-left:58px;
  1152. }
  1153. }
  1154. @media (min-width: 1200px){
  1155. .contacts-container .main-title {
  1156. width: 60%;
  1157. padding-left: 40px;
  1158. }
  1159. .contacts-container .focus-content {
  1160. width: 60%;
  1161. padding-left: 40px;
  1162. }
  1163. .contacts-container .important{
  1164. width: 100%;
  1165. }
  1166. }
  1167. @media (max-width: 1200px){
  1168. .contacts-container .center-content .callback{
  1169. margin-bottom: 40px;
  1170. }
  1171. .contacts-container .left-side {
  1172. width: 100% !important;
  1173. margin-bottom: 40px;
  1174. }
  1175. .contacts-container .left-side .main-title{
  1176. float: none;
  1177. width: 100% !important;
  1178. }
  1179. .contacts-container .center-content{
  1180. width: 100%;
  1181. }
  1182. .contacts-container .center-content .to-doctors .personal-doctor{
  1183. width: 100%;
  1184. }
  1185. .contacts-container .center-content .callback form .form-button{
  1186. width: 100%;
  1187. }
  1188. .contacts-container .main-title{
  1189. padding-left: 15px;
  1190. }
  1191. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
  1192. width: 10%;
  1193. padding-top: 20px;
  1194. }
  1195. .contacts-container .left-side .importants .important-image{
  1196. width: 10%;
  1197. }
  1198. .contacts-container .left-side .importants .description{
  1199. padding-top: 20px !important;
  1200. }
  1201. .contacts-container .right-side-bar .info .logo{
  1202. display: none;
  1203. }
  1204. .contacts-container .main-title{
  1205. display: block;
  1206. }
  1207. .contacts-container .center-content .title{
  1208. display: none;
  1209. }
  1210. .contacts-container .center-content .subtitle{
  1211. display: none;
  1212. }
  1213. }
  1214. /*CONTACTS PAGE END*/
  1215. /*SPECIALISTS PAGE*/
  1216. .specs-container .center-content .mini-title{
  1217. font-family: Cuprum, sans-serif;
  1218. font-size: 20px;
  1219. font-weight: 600;
  1220. margin-bottom: 15px;
  1221. }
  1222. .specs-container .center-content .mini-title-2{
  1223. padding-left: 12px;
  1224. font-family: Cuprum, sans-serif;
  1225. font-size: 18px;
  1226. font-weight: 600;
  1227. margin-bottom: 15px;
  1228. }
  1229. .specs-container .center-content .classes{
  1230. margin-bottom: 15px;
  1231. }
  1232. .specs-container .center-content .classes a{
  1233. display: block;
  1234. color: #004d7b;
  1235. }
  1236. .specs-container .center-content .text{
  1237. font-family: Open Sans, sans-serif;
  1238. margin-bottom: 20px;
  1239. }
  1240. .specs-container .today{
  1241. width: 100%;
  1242. margin-top: 25px;
  1243. /* padding-left: 15px;
  1244. padding-right: 15px;*/
  1245. display: inline-block;
  1246. }
  1247. .specs-container .today .today-item{
  1248. padding-left: 0;
  1249. margin-bottom: 20px;
  1250. }
  1251. .specs-container .today .today-item .head{
  1252. background: #929292;
  1253. padding: 12px 5px;
  1254. font-size: 13px;
  1255. font-family: Cuprum;
  1256. text-align: right;
  1257. height: 40px;
  1258. color: #fff;
  1259. border-radius: 10px 0 0 0;
  1260. }
  1261. .specs-container .today .today-item .head-blue{
  1262. background: #5597d1;
  1263. }
  1264. .specs-container .today .today-item .head .date{
  1265. float: left;
  1266. display: block;
  1267. }
  1268. .specs-container .today .today-item .head .name{
  1269. float: right;
  1270. display: block;
  1271. }
  1272. /*.contacts-container .today .today-item{
  1273. padding-right: 0;
  1274. }
  1275. */
  1276. .specs-container .today .block-header{
  1277. padding: 6px 10px;
  1278. font-size: 22px;
  1279. font-weight: 700;
  1280. font-family: Cuprum, sans-serif;
  1281. background: #929292;
  1282. color: #fff;
  1283. margin-bottom: 10px;
  1284. }
  1285. .specs-container .today .block-header img{
  1286. float: right;
  1287. margin-top: 3px;
  1288. }
  1289. .specs-container .today .image{
  1290. position: relative;
  1291. margin-top: 10px;
  1292. }
  1293. .specs-container .today .image img{
  1294. display: block;
  1295. width: 200px;
  1296. margin: 0 auto;
  1297. }
  1298. .specs-container .today .logo{
  1299. position: absolute;
  1300. top: 0;
  1301. font-family: Cuprum, sans-serif;
  1302. right: 15px;
  1303. width: 60px;
  1304. height: 60px;
  1305. }
  1306. .specs-container .today .logo img{
  1307. width: 60px;
  1308. height: 60px;
  1309. }
  1310. .specs-container .today .free{
  1311. position: absolute;
  1312. padding-top: 5px;
  1313. padding-left: 7px;
  1314. top: 60px;
  1315. left: -5px;
  1316. font-family: Cuprum, sans-serif;
  1317. color: #fff;
  1318. width: 200px;
  1319. height: 40px;
  1320. background: url(../images/free-bg.png) no-repeat;
  1321. }
  1322. .specs-container .today .desc{
  1323. margin-top:10px;
  1324. margin-bottom: 10px;
  1325. font-family: Cuprum, sans-serif;
  1326. padding-left: 5px;
  1327. font-size: 14px;
  1328. }
  1329. .specs-container .today .org{
  1330. font-family: Cuprum, sans-serif;
  1331. font-weight: 600;
  1332. text-align: center;
  1333. border-top:1px solid #ebebeb;
  1334. padding-top: 5px;
  1335. color: #004d7b;
  1336. }
  1337. .specs-container .today .adress{
  1338. margin-top: 5px;
  1339. font-family: Cuprum, sans-serif;
  1340. font-size: 14px;
  1341. padding: 15px 0;
  1342. background: #ebebeb;
  1343. color: #929292;
  1344. text-align: center;
  1345. }
  1346. .specs-container .center-content .vacancies{
  1347. margin-bottom: 40px;
  1348. }
  1349. .specs-container .center-content .vacan-table{
  1350. border-top: 1px solid #ebebeb;
  1351. }
  1352. .specs-container .center-content .vacancies .vac{
  1353. padding: 7px 10px;
  1354. }
  1355. .specs-container .center-content .vacancies .vac:nth-child(even){
  1356. background: #ebebeb;
  1357. }
  1358. .specs-container .center-content .vacancies .vacation{
  1359. float: left;
  1360. }
  1361. .specs-container .center-content .vacancies .vacation a{
  1362. color:#004d7b;
  1363. }
  1364. .specs-container .center-content .vacancies .value{
  1365. text-align: right;
  1366. }
  1367. @media (min-width: 768px){
  1368. .specs-container .today .today-item {
  1369. float: left;
  1370. width: 33.333332%;
  1371. }
  1372. }
  1373. /*SPECIALISTS PAGE END*/
  1374. /*NEWS*/
  1375. .left-side .add-info-news{
  1376. margin-top: 15px;
  1377. }
  1378. .right-side-bar .today{
  1379. width: 100% ;
  1380. margin-top: 25px;
  1381. display: inline-block;
  1382. }
  1383. .right-side-bar .today .today-item{
  1384. padding: 0 10px;
  1385. }
  1386. .right-side-bar .today .today-item .head{
  1387. background: #929292;
  1388. padding: 12px 5px;
  1389. font-size: 13px;
  1390. font-family: Cuprum;
  1391. text-align: right;
  1392. height: 40px;
  1393. color: #fff;
  1394. border-radius: 10px 0 0 0;
  1395. }
  1396. .right-side-bar .today .today-item .head-blue{
  1397. background: #5597d1;
  1398. }
  1399. .right-side-bar .today .today-item .head .date{
  1400. float: left;
  1401. display: block;
  1402. }
  1403. .right-side-bar .today .today-item .head .name{
  1404. float: right;
  1405. display: block;
  1406. }
  1407. .right-side-bar .today .today-item{
  1408. margin-bottom: 15px;
  1409. }
  1410. .right-side-bar .today .block-header{
  1411. padding: 6px 10px;
  1412. font-size: 22px;
  1413. font-weight: 700;
  1414. font-family: Cuprum, sans-serif;
  1415. background: #929292;
  1416. color: #fff;
  1417. margin-bottom: 10px;
  1418. }
  1419. .right-side-bar .today .block-header img{
  1420. float: right;
  1421. margin-top: 3px;
  1422. }
  1423. .right-side-bar .today .image{
  1424. position: relative;
  1425. margin-top: 10px;
  1426. }
  1427. .right-side-bar .today .image img{
  1428. display: block;
  1429. width: 200px;
  1430. margin: 0 auto;
  1431. }
  1432. .right-side-bar .today .logo{
  1433. position: absolute;
  1434. top: 0;
  1435. font-family: Cuprum, sans-serif;
  1436. right: 15px;
  1437. width: 60px;
  1438. height: 60px;
  1439. }
  1440. .right-side-bar .today .logo img{
  1441. width: 60px;
  1442. height: 60px;
  1443. }
  1444. .right-side-bar .today .free{
  1445. position: absolute;
  1446. padding-top: 5px;
  1447. padding-left: 7px;
  1448. top: 60px;
  1449. left: -5px;
  1450. font-family: Cuprum, sans-serif;
  1451. color: #fff;
  1452. width: 200px;
  1453. height: 40px;
  1454. background: url(../images/free-bg.png) no-repeat;
  1455. }
  1456. .right-side-bar .today .desc{
  1457. margin-top:10px;
  1458. margin-bottom: 10px;
  1459. font-family: Cuprum, sans-serif;
  1460. padding-left: 5px;
  1461. font-size: 14px;
  1462. }
  1463. .right-side-bar .today .org{
  1464. font-family: Cuprum, sans-serif;
  1465. font-weight: 600;
  1466. text-align: center;
  1467. border-top:1px solid #ebebeb;
  1468. padding-top: 5px;
  1469. color: #004d7b;
  1470. }
  1471. .right-side-bar .today .adress{
  1472. margin-top: 5px;
  1473. font-family: Cuprum, sans-serif;
  1474. font-size: 14px;
  1475. padding: 15px 0;
  1476. background: #ebebeb;
  1477. color: #929292;
  1478. text-align: center;
  1479. }
  1480. .contacts-container .center-content .news .block-header{
  1481. padding: 6px 10px;
  1482. font-size: 22px;
  1483. font-weight: 700;
  1484. font-family: Cuprum, sans-serif;
  1485. background: #929292;
  1486. color: #fff;
  1487. margin-bottom: 10px;
  1488. }
  1489. .contacts-container .center-content .news .block-header img{
  1490. float: right;
  1491. margin-top: 3px;
  1492. }
  1493. .contacts-container .center-content .news-item{
  1494. height: 320px;
  1495. padding: 0 10px;
  1496. padding-right: 0;
  1497. margin-bottom: 20px;
  1498. }
  1499. .contacts-container .center-content .news-item .inner{
  1500. height: inherit;
  1501. background: #ebebeb;
  1502. border-radius: 10px 0 0 0;
  1503. overflow: hidden;
  1504. }
  1505. .contacts-container .center-content .news{
  1506. display: inline-block;
  1507. margin-top: 25px;
  1508. padding-left: 0px;
  1509. }
  1510. .contacts-container .center-content .news .image{
  1511. font-family: Cuprum, sans-serif;
  1512. margin-bottom: 20px;
  1513. color:#fff;
  1514. height: 160px;
  1515. /* width: 205px;*/
  1516. margin: 0 auto;
  1517. position: relative;
  1518. }
  1519. .contacts-container .center-content .news .image img{
  1520. display: block;
  1521. margin: 0 auto;
  1522. }
  1523. .contacts-container .center-content .news .image .title{
  1524. font-size: 16px;
  1525. font-weight: 400;
  1526. position: absolute;
  1527. bottom: 10px;
  1528. display: block;
  1529. color: #fff;
  1530. left: 20%;
  1531. }
  1532. .contacts-container .center-content .news .desc{
  1533. font-family: Open Sans, sans-serif;
  1534. padding-left: 10px;
  1535. font-size: 14px;
  1536. line-height: 17px;
  1537. }
  1538. .contacts-container .center-content .news .data{
  1539. padding: 10px 0;
  1540. margin:10px;
  1541. margin-top:20px;
  1542. color: #929292;
  1543. text-align: right;
  1544. border-top: 1px solid #d4d4d4;
  1545. }
  1546. .center-content .pagination-container{
  1547. /*background: #ebebeb;*/
  1548. padding-left: 10px;
  1549. }
  1550. .center-content .pagination{
  1551. font-family: Open Sans, sans-serif;
  1552. font-weight: 500;
  1553. width: 100%;
  1554. height: 40px;
  1555. background: #ebebeb;
  1556. }
  1557. .center-content .pagination .number{
  1558. cursor: pointer;
  1559. padding-top: 10px;
  1560. /*margin: 0 10px;*/
  1561. }
  1562. .center-content .pagination .number:hover{
  1563. color:#e77140;
  1564. }
  1565. .center-content .pagination .active{
  1566. color: #e77140;
  1567. border-bottom:2px solid #e55e26;
  1568. }
  1569. .center-content .pagination .arrow-left{
  1570. background: url(../images/pagination-left.png) no-repeat center;
  1571. cursor: pointer;
  1572. }
  1573. .center-content .pagination .arrow-right{
  1574. background: url(../images/pagination-right.png) no-repeat center;
  1575. cursor: pointer;
  1576. }
  1577. .center-content .pagination div{
  1578. height: 40px;
  1579. float: left;
  1580. width: 7.14%;
  1581. text-align: center;
  1582. }
  1583. @media(max-width: 1200px){
  1584. .right-side-bar .today .today-item{
  1585. width: 33.33333%;
  1586. float: left;
  1587. }
  1588. .left-side .news-importants{
  1589. display: none;
  1590. }
  1591. }
  1592. @media(min-width: 992px){
  1593. .left-side .new-importants{
  1594. display: none;
  1595. }
  1596. }
  1597. @media(max-width: 768px){
  1598. .right-side-bar .today .today-item{
  1599. width: 100%;
  1600. float: left;
  1601. }
  1602. .right-side-bar .today{
  1603. display: none;
  1604. }
  1605. .center-content .pagination{
  1606. display: none;
  1607. }
  1608. .left-side .add-info {
  1609. display: block;
  1610. }
  1611. }
  1612. @media(max-width: 550px){
  1613. .center-content .news{
  1614. padding-left: 0;
  1615. }
  1616. .center-content .news .news-item{
  1617. padding-left: 0;
  1618. width: 93%;
  1619. float: none;
  1620. margin: 0 auto;
  1621. margin-bottom: 20px;
  1622. }
  1623. .center-content .news .news-item .image{
  1624. padding-left: 0;
  1625. width:100%;
  1626. margin: 0 auto;
  1627. }
  1628. .center-content .news .news-item .image img{
  1629. margin: 0 auto;
  1630. }
  1631. }
  1632. /*NEWS END*/
  1633. /*ABOUT*/
  1634. /*.center-content .about{
  1635. display: inline-block;
  1636. }*/
  1637. .center-content .about .doctor{
  1638. padding-left: 0;
  1639. }
  1640. .center-content .about .about-text .title{
  1641. font-family: Cuprum, sans-serif;
  1642. font-weight: 700;
  1643. font-size: 24px;
  1644. }
  1645. .center-content .about-main-text{
  1646. display: inline-block;
  1647. margin-top: 20px;
  1648. font-size: 16px;
  1649. }
  1650. .center-content .about-main-text .image{
  1651. text-align: center;
  1652. float: right;
  1653. margin-top: 20px;
  1654. margin-left: 20px;
  1655. margin-bottom: 20px;
  1656. }
  1657. .center-content .youtube{
  1658. width: 100%;
  1659. margin-top: 20px;
  1660. text-align: center;
  1661. }
  1662. .center-content .to-doctors-about{
  1663. padding-left: 0;
  1664. margin-bottom: 0 !important;
  1665. margin-top: 40px;
  1666. }
  1667. .center-content .to-doctors-about .personal-doctor .doctor-name span{
  1668. display: block;
  1669. float: left;
  1670. }
  1671. .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
  1672. font-size: 14px;
  1673. float: right;
  1674. padding-right: 20px;
  1675. }
  1676. .center-content .to-doctors-about .personal-doctor{
  1677. width: 100% !important;
  1678. border-bottom: 1px solid #ebebeb;
  1679. }
  1680. .center-content .to-doctors-about .doctor-header{
  1681. height: 40px;
  1682. border-radius: 70px 0 0 30px;
  1683. }
  1684. .center-content .to-doctors-about .personal-doctor .image{
  1685. padding-top: 30px !important;
  1686. }
  1687. .center-content .equip{
  1688. margin-bottom: 40px;
  1689. }
  1690. .center-content .media{
  1691. margin-bottom: 40px;
  1692. overflow: visible;
  1693. position: relative;
  1694. padding-top: 30px;
  1695. border-top: 1px solid #ebebeb;
  1696. }
  1697. .center-content .media .swiper-button-next{
  1698. background: url(../images/media-arrow-right.png) no-repeat center;
  1699. top: 60%;
  1700. right: -25px;
  1701. }
  1702. .center-content .media .swiper-button-prev{
  1703. background: url(../images/media-arrow-left.png) no-repeat center;
  1704. top: 60%;
  1705. left: -30px;
  1706. }
  1707. .center-content .media .swiper-container {
  1708. width: inherit;
  1709. height: 140px;
  1710. margin: 20px auto;
  1711. }
  1712. .center-content .media .swiper-container iframe{
  1713. width: 100%;
  1714. height: 100%;
  1715. }
  1716. .center-content .media .swiper-slide {
  1717. width: 30% !important;
  1718. text-align: center;
  1719. font-size: 18px;
  1720. background: #fff;
  1721. /* Center slide text vertically */
  1722. display: -webkit-box;
  1723. display: -ms-flexbox;
  1724. display: -webkit-flex;
  1725. display: flex;
  1726. -webkit-box-pack: center;
  1727. -ms-flex-pack: center;
  1728. -webkit-justify-content: center;
  1729. justify-content: center;
  1730. -webkit-box-align: center;
  1731. -ms-flex-align: center;
  1732. -webkit-align-items: center;
  1733. align-items: center;
  1734. }
  1735. .center-content .media-text{
  1736. line-height: 20px;
  1737. font-size: 15px;
  1738. }
  1739. .center-content .pagination .show-all{
  1740. text-align: center;
  1741. padding-top: 10px;
  1742. font-size: 13px;
  1743. display:inline-block;
  1744. color: #fff;
  1745. background: #3b434d;
  1746. width: 20%;
  1747. height: 100%;
  1748. float: right;
  1749. }
  1750. .center-content .pagination .show-all:hover{
  1751. text-decoration: none;
  1752. background: #e65e26;
  1753. }
  1754. .center-content .pagination .show-all:focus{
  1755. text-decoration: none;
  1756. }
  1757. .center-content .documents{
  1758. font-family: Open Sans, sans-serif;
  1759. color: #3b434d;
  1760. background: #ebebeb;
  1761. }
  1762. .center-content .documents .row{
  1763. margin-right: 0;
  1764. margin-left: 0;
  1765. }
  1766. .center-content .documents .doc-item{
  1767. width: 20%;
  1768. float: left;
  1769. padding: 5px;
  1770. }
  1771. .center-content .documents .year{
  1772. width: 8%;
  1773. }
  1774. .center-content .documents .doc-name{
  1775. color: #004d7b;
  1776. width: 22%;
  1777. }
  1778. .center-content .documents .doc-data{
  1779. width: 14%;
  1780. }
  1781. .center-content .documents .doc-desc{
  1782. width: 25%;
  1783. }
  1784. .center-content .documents .doc-org{
  1785. width: 25%;
  1786. }
  1787. @media (max-width: 1200px){
  1788. .center-content .about{
  1789. margin-bottom: 20px;
  1790. }
  1791. .center-content .about .doctor{
  1792. margin-bottom: 20px;
  1793. }
  1794. .center-content .about .about-text .title{
  1795. display: block;
  1796. }
  1797. }
  1798. @media (max-width: 768px){
  1799. .center-content .documents .doc-item{
  1800. width: 100%;
  1801. float: none;
  1802. padding: 5px;
  1803. }
  1804. .center-content .documents .row{
  1805. margin: 20px 0;
  1806. }
  1807. .center-content .about-main-text .image{
  1808. display: none;
  1809. }
  1810. .center-content .about .youtube iframe{
  1811. width: 100%;
  1812. }
  1813. .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
  1814. display: none;
  1815. }
  1816. .center-content .to-doctors-about .personal-doctor .doctor-image{
  1817. display: none;
  1818. }
  1819. .center-content .to-doctors .personal-doctor .doctor-header{
  1820. border-radius: 0 !important;
  1821. }
  1822. .center-content .to-doctors .personal-doctor .doctor-header .doctor-name{
  1823. padding-left: 15px !important;
  1824. }
  1825. }
  1826. @media (max-width: 768px){
  1827. .smi{
  1828. display: none;
  1829. }
  1830. }
  1831. /*ABOUT END*/
  1832. /*SERVICES*/
  1833. .service-text{
  1834. font-family: Open Sans, sans-serif;
  1835. }
  1836. .service-title{
  1837. font-family: Cuprum ,sans-serif;
  1838. font-weight: 600;
  1839. font-size: 26px;
  1840. margin: 30px 0;
  1841. }
  1842. .service-item{
  1843. font-family: Open Sans, sans-serif;
  1844. color :#404040;
  1845. border-top: 1px solid #ebebeb;
  1846. border-bottom: 1px solid #ebebeb;
  1847. width: 100%;
  1848. display: inline-block;
  1849. }
  1850. .service-row{
  1851. display: inline-block;
  1852. width: 100%;
  1853. padding: 4px 5px;
  1854. }
  1855. .service-row:nth-child(even){
  1856. background: #ebebeb;
  1857. }
  1858. .service-item .service-unit{
  1859. width: 11%;
  1860. float: left;
  1861. }
  1862. .service-item .service-unit:nth-child(1){
  1863. width: 9%;
  1864. }
  1865. .service-item .service-unit:nth-child(2){
  1866. width: 50%;
  1867. }
  1868. .service-item .service-unit:nth-child(3){
  1869. width:11%;
  1870. }
  1871. .service-item .service-unit:nth-child(4){
  1872. width: 9%;
  1873. text-align: center;
  1874. }
  1875. .service-item .service-unit:nth-child(5){
  1876. width: 9%;
  1877. text-align: center;
  1878. }
  1879. .service-more{
  1880. display: none;
  1881. text-align: right;
  1882. margin-top: 10px;
  1883. }
  1884. .service-more a{
  1885. font-size: 14px;
  1886. color:#929292;
  1887. }
  1888. .service-more:last-child{
  1889. margin-bottom: 60px;
  1890. }
  1891. @media(max-width: 768px){
  1892. .service-more{
  1893. display: block;
  1894. }
  1895. .service-item .service-unit{
  1896. text-align: left !important;
  1897. width: 100% !important;
  1898. float: none;
  1899. padding: 5px;
  1900. }
  1901. .service-row{
  1902. margin: 20px 0;
  1903. }
  1904. .service-item .service-unit:nth-child(1){
  1905. display: none;
  1906. }
  1907. }
  1908. /*SERVICES END*/