style.css 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132
  1. /*MAIN PAGE*/
  2. header{
  3. position: fixed;
  4. height: 45px;
  5. width: 100%;
  6. background: #3b434d;
  7. z-index: 99999999;
  8. }
  9. a:focus{
  10. text-decoration: none;
  11. }
  12. header .menu{
  13. position: relative;
  14. height: 100%;
  15. width: 100%;
  16. }
  17. header .menu ul li a{
  18. height: 100%;
  19. color: #fff;
  20. font-family: Cuprum, sans-serif;
  21. font-size: 16px;
  22. }
  23. header .menu ul li a:hover{
  24. text-decoration: none;
  25. color: #5597d1;
  26. }
  27. header .menu ul{
  28. padding: 0;
  29. margin-bottom:0;
  30. height: 100%;
  31. width: 100%;
  32. list-style: none;
  33. top: 0;
  34. left: 0;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. overflow: hidden;
  39. }
  40. header .menu ul li{
  41. padding-top: 13px;
  42. margin:0 10px;
  43. height: 100%;
  44. float: left;
  45. }
  46. header .menu .circles{
  47. right: 0;
  48. position: absolute;
  49. padding-top: 5px ;
  50. }
  51. header .circles .circle{
  52. margin: 5px 2px;
  53. float: left;
  54. width: 30px;
  55. height: 30px;
  56. background:url(../images/circle-1.png);
  57. }
  58. header .circles .circle:nth-child(2){
  59. background:url(../images/circle-2.png);
  60. }
  61. header .circles .circle:nth-child(3){
  62. background:url(../images/circle-3.png);
  63. }
  64. header .burger{
  65. display: none;
  66. width: 30px;
  67. height: 30px;
  68. background: url(../images/menu-burger.png) center no-repeat;
  69. cursor: pointer;
  70. }
  71. header .menu-mobile{
  72. list-style: none;
  73. text-align: center;
  74. color: #000;
  75. background: #3b434d;
  76. }
  77. header .menu-mobile ul{
  78. list-style: none;
  79. }
  80. header .menu-mobile ul li{
  81. margin-top: 10px;
  82. }
  83. header .menu-mobile ul li a{
  84. color: #fff;
  85. font-family: Cuprum, sans-serif;
  86. font-size: 18px;
  87. }
  88. header .menu-mobile ul li a:hover{
  89. text-decoration: none;
  90. cursor: pointer;
  91. color: #5597d1;
  92. }
  93. .main-container{
  94. padding-top: 60px;
  95. }
  96. .left-side{
  97. font-family: Cuprum, sans-serif;
  98. font-weight: 400;
  99. width: 20%;
  100. }
  101. @media (min-width: 992px){
  102. .left-side{
  103. padding-right: 20px;
  104. }
  105. }
  106. @media (min-width: 768px){
  107. .left-side{
  108. padding: 0 2px;
  109. }
  110. }
  111. .left-side .info{
  112. /*padding: 0 10px;*/
  113. margin-bottom: 20px;
  114. }
  115. .left-side .logo{
  116. text-align: center;
  117. margin-bottom: 15px
  118. }
  119. .left-side .logo-subtitle{
  120. line-height: 16px;
  121. font-size: 14px;
  122. text-align: center;
  123. color:#a1a1a1;
  124. }
  125. .left-side .howtoget_button{
  126. font-size: 14px;
  127. display: block;
  128. cursor: pointer;
  129. padding: 5px 0;
  130. text-align: center;
  131. text-decoration: underline;
  132. color:#929292;
  133. background: #ebebeb;
  134. margin: 10px 0;
  135. }
  136. /*.howtoget_button:hover{
  137. background: #004d7b;
  138. color: #fff;
  139. }
  140. */
  141. .left-side .contact{
  142. color:#929292;
  143. font-size: 14px;
  144. }
  145. .left-side .value{
  146. font-size: 16px;
  147. margin-bottom: 5px;
  148. }
  149. .left-side .all-phones{
  150. display: inline-block;
  151. text-decoration: underline;
  152. }
  153. .left-side .all-phones img{
  154. margin-left: 5px;
  155. }
  156. .left-side .specializations .spec-header{
  157. padding: 6px 10px;
  158. font-size: 22px;
  159. font-weight: 700;
  160. background: #929292;
  161. color: #fff;
  162. }
  163. .left-side .specializations .spec-header a{
  164. display: inline-block;
  165. float: right;
  166. }
  167. .left-side .spec{
  168. display: block;
  169. color: inherit;
  170. text-decoration: none;
  171. margin-top: 10px;
  172. min-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. .main-title{
  223. position: relative;
  224. }
  225. .main-title .title{
  226. font-family: Cuprum;
  227. font-weight: 700;
  228. color: #004d7b;
  229. }
  230. .main-title .subtitle{
  231. font-family: Cuprum;
  232. font-weight: 700;
  233. font-size: 16px;
  234. color: #929292;
  235. margin-bottom: 20px;
  236. }
  237. .soc{
  238. position: absolute;
  239. right: 60px;
  240. top: 30px;
  241. }
  242. .soc .social{
  243. float: left;
  244. width: 25px;
  245. height: 25px;
  246. margin-right: 4px;
  247. border-radius: 50%;
  248. background: blue;
  249. display: block;
  250. }
  251. .soc .fb{
  252. background: url(../images/soc-fb.png)
  253. }
  254. .soc .vk{
  255. background: url(../images/soc-vk.png)
  256. }
  257. .soc .ok{
  258. background: url(../images/soc-ok.png)
  259. }
  260. .soc .tw{
  261. background: url(../images/soc-twitter.png)
  262. }
  263. .soc .fb:hover{
  264. background: url(../images/soc-fb-hover.png)
  265. }
  266. .soc .vk:hover{
  267. background: url(../images/soc-vk-hover.png)
  268. }
  269. .soc .ok:hover{
  270. background: url(../images/soc-ok-hover.png)
  271. }
  272. .soc .tw:hover{
  273. background: url(../images/soc-twitter-hover.png)
  274. }
  275. .main-container .col-lg-10{
  276. width: 80%;
  277. }
  278. /*.main-container .content{
  279. padding-right: 0;
  280. }*/
  281. .content-left{
  282. padding-right: 0;
  283. }
  284. .content-left .slider{
  285. position: relative;
  286. }
  287. .content-left .arrow{
  288. width: 10px;
  289. height: 16px;
  290. position: absolute;
  291. z-index: 10;
  292. top: 50%;
  293. cursor: pointer;
  294. }
  295. .content-left .arrow-left{
  296. background: url(../images/slide-arrow-left.png);
  297. left: 10px;
  298. }
  299. .content-left .arrow-right{
  300. background: url(../images/slider-arrow-right.png);
  301. right: 10px;
  302. }
  303. .content-left .swiper-slide img{
  304. display: block;
  305. }
  306. .content-left .about{
  307. display: inline-block;
  308. margin-top: 35px;
  309. }
  310. .content-left .about .block-header{
  311. padding: 6px 10px;
  312. font-size: 22px;
  313. font-weight: 700;
  314. font-family: Cuprum, sans-serif;
  315. background: #929292;
  316. color: #fff;
  317. margin-bottom: 10px;
  318. }
  319. .content-left .about .block-header img{
  320. float: right;
  321. margin-top: 3px;
  322. }
  323. .about .doctor{
  324. font-family: Cuprum, sans-serif;
  325. font-weight: 400;
  326. }
  327. .about .doctor .doctor-avatar{
  328. margin-bottom: 8px;
  329. text-align: center;
  330. }
  331. .about .doctor .doctor-name{
  332. text-align: center;
  333. font-size: 20px;
  334. color: #004d7b;
  335. line-height: 22px;
  336. margin-bottom: 4px;
  337. }
  338. .about .doctor .doctor-desc{
  339. line-height: 15px;
  340. text-align: center;
  341. color: #929292;
  342. }
  343. .about .doctor .doctor-link{
  344. padding: 9px 0;
  345. font-size: 14px;
  346. margin-top: 15px;
  347. text-align: center;
  348. background: #ebebeb;
  349. }
  350. .about .doctor .doctor-link a{
  351. color: #929292;
  352. text-decoration: underline;
  353. }
  354. .about .about-text .title{
  355. color: #3b434d;
  356. font-family: Cuprum, sans-serif;
  357. font-weight: 700;
  358. line-height: 20px;
  359. font-size: 20px;
  360. margin-bottom: 10px;
  361. }
  362. .about .about-text .text{
  363. font-family: Open Sans, sans-serif;
  364. font-size: 16px;
  365. color: #626971;
  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. min-height: 75px;
  384. width: 100%;
  385. position: relative;
  386. display: inline-block;
  387. margin-bottom: 10px;
  388. border: 1px solid #ebebeb;
  389. }
  390. .content-left .clinics .block-header{
  391. padding: 6px 10px;
  392. font-size: 22px;
  393. font-weight: 700;
  394. font-family: Cuprum, sans-serif;
  395. background: #929292;
  396. color: #fff;
  397. margin-bottom: 10px;
  398. }
  399. .content-left .clinics .block-header img{
  400. float: right;
  401. margin-top: 3px;
  402. }
  403. .content-left .clinics .clinic-image{
  404. margin-right: 15px;
  405. display: block;
  406. float: left;
  407. height: 100%;
  408. }
  409. .content-left .clinics .text{
  410. /*padding-left: 115px;*/
  411. }
  412. .content-left .clinics .text .title{
  413. color: #3b434d;
  414. padding-top: 10px;
  415. padding-right: 10px;
  416. font-size: 19px;
  417. line-height: 18px;
  418. font-family: Cuprum, sans-serif;
  419. }
  420. .content-left .clinics .text .subtitle{
  421. font-family: Open Sans, sans-serif;
  422. color: #a1a1a1;
  423. font-size: 13px;
  424. padding-left: 10px;
  425. }
  426. .content-left .clinics .clinic .recomended{
  427. position: absolute;
  428. left: -7px;
  429. bottom: 5px;
  430. height: 36px;
  431. width: 196px;
  432. padding-top: 6px;
  433. font-family: Cuprum, sans-serif;
  434. font-size: 16px;
  435. color: #fff;
  436. padding-left: 6px;
  437. background:url(../images/green-recomended.png) no-repeat;
  438. }
  439. .clinics .arrow-right-blue{
  440. cursor: pointer;
  441. position: absolute;
  442. background: url(../images/arrow-right-blue.png) no-repeat center;
  443. right: 0;
  444. top: 0;
  445. width: 20px;
  446. height: 75px;
  447. }
  448. .content-left .clinics .more{
  449. font-family: Cuprum;
  450. text-align: right;
  451. }
  452. .content-left .clinics .more a{
  453. font-size: 16px;
  454. color:#929292;
  455. }
  456. .content-right{
  457. padding-left: 0;
  458. }
  459. /*.content*/ .importants{
  460. font-family: Open Sans, sans-serif;
  461. }
  462. .content-right .importants .important{
  463. margin-left: 10px;
  464. }
  465. /*.content*/ .importants .important{
  466. height: 90px;
  467. margin-bottom: 10px;
  468. padding:0;
  469. display: block;
  470. background: #d7d7d7;
  471. }
  472. /*.content */.importants .important:hover{
  473. text-decoration: none;
  474. background: #004d7b;
  475. }
  476. /*.content*/ .importants .important:focus{
  477. text-decoration: none;
  478. }
  479. /*.content*/ .importants .important:nth-child(1) .description{
  480. padding-top: 20px;
  481. }
  482. /*.content*/ .importants .important:nth-child(2) .description{
  483. padding-top: 15px;
  484. padding-left: 0;
  485. }
  486. /*.content*/ .importants .important:nth-child(4) .description{
  487. padding-top: 10px;
  488. }
  489. /*.content*/ .importants .important:nth-child(6) .description{
  490. padding-top: 20px;
  491. }
  492. /*.content*/ .importants .important .important-image{
  493. padding-top: 20px;
  494. margin-left: 5px;
  495. height: 100%;
  496. width: 25%;
  497. display: block;
  498. float: left;
  499. }
  500. /*.content*/ .importants .important .description{
  501. color: #fff;
  502. font-weight: 700;
  503. height: 100%;
  504. font-size: 15px;
  505. padding-left: 65px;
  506. }
  507. .today{
  508. margin-top: 25px;
  509. padding-left: 15px;
  510. display: inline-block;
  511. }
  512. .today .today-item .inner{
  513. border-left:1px solid #ebebeb;
  514. border-right:1px solid #ebebeb;
  515. border-radius: 10px 0 0 0;
  516. }
  517. .today .today-item .head{
  518. display: block;
  519. cursor: pointer;
  520. background: #929292;
  521. padding: 12px 5px;
  522. font-size: 13px;
  523. font-family: Cuprum;
  524. text-align: right;
  525. height: 40px;
  526. color: #fff;
  527. border-radius: 10px 0 0 0;
  528. }
  529. .today .today-item .head:hover{
  530. text-decoration: none;
  531. }
  532. .today .today-item .head-blue{
  533. background: #5597d1;
  534. }
  535. .today .today-item .head .date{
  536. float: left;
  537. display: block;
  538. }
  539. .today .today-item .head .name{
  540. float: right;
  541. display: block;
  542. }
  543. .today .today-item{
  544. padding-right: 0px;
  545. padding-left: 8px;
  546. }
  547. .today .block-header{
  548. padding: 6px 10px;
  549. font-size: 22px;
  550. font-weight: 700;
  551. font-family: Cuprum, sans-serif;
  552. background: #929292;
  553. color: #fff;
  554. margin-bottom: 10px;
  555. }
  556. .today .block-header img{
  557. float: right;
  558. margin-top: 3px;
  559. }
  560. .today .image{
  561. position: relative;
  562. margin-top: 10px;
  563. }
  564. .today .image img{
  565. display: block;
  566. width: 200px;
  567. margin: 0 auto;
  568. }
  569. .today .logo{
  570. border-radius: 50px;
  571. position: absolute;
  572. top: 7px;
  573. font-family: Cuprum, sans-serif;
  574. right: 10px;
  575. width: 60px;
  576. height: 60px;
  577. }
  578. .today .logo img{
  579. border-radius: 50%;
  580. width: 60px;
  581. height: 60px;
  582. }
  583. .today .free{
  584. position: absolute;
  585. padding-top: 5px;
  586. padding-left: 7px;
  587. top: 60px;
  588. left: -7px;
  589. font-family: Cuprum, sans-serif;
  590. color: #fff;
  591. width: 200px;
  592. height: 40px;
  593. background: url(../images/free-bg.png) no-repeat;
  594. }
  595. .today .desc{
  596. margin-top:10px;
  597. margin-bottom: 10px;
  598. font-family: Cuprum, sans-serif;
  599. padding-left: 5px;
  600. font-size: 14px;
  601. line-height: 15px;
  602. }
  603. .today .org{
  604. cursor: pointer;
  605. display: block;
  606. font-family: Cuprum, sans-serif;
  607. font-weight: 600;
  608. text-align: center;
  609. border-top:1px solid #ebebeb;
  610. padding-top: 5px;
  611. color: #004d7b;
  612. }
  613. .today .org:hover{
  614. text-decoration: none;
  615. }
  616. .today .adress{
  617. margin-top: 5px;
  618. font-family: Cuprum, sans-serif;
  619. font-size: 14px;
  620. padding: 15px 0;
  621. background: #ebebeb;
  622. color: #929292;
  623. text-align: center;
  624. }
  625. .content-right .news .block-header{
  626. padding: 6px 10px;
  627. font-size: 22px;
  628. font-weight: 700;
  629. font-family: Cuprum, sans-serif;
  630. background: #929292;
  631. color: #fff;
  632. margin-bottom: 10px;
  633. }
  634. .content-right .news .block-header img{
  635. float: right;
  636. margin-top: 3px;
  637. }
  638. .content-right .news-item{
  639. /*height: 320px;*/
  640. display: block;
  641. color: inherit;
  642. cursor: pointer;
  643. padding: 0 10px;
  644. padding-right: 0;
  645. margin-bottom: 20px;
  646. }
  647. .content-right .news-item:hover{
  648. text-decoration: none;
  649. }
  650. .content-right .news-item .inner{
  651. height: inherit;
  652. background: #ebebeb;
  653. border-radius: 10px 0 0 0;
  654. overflow: hidden;
  655. }
  656. .content-right .news{
  657. display: inline-block;
  658. margin-top: 25px;
  659. padding-left: 15px;
  660. }
  661. .content-right .news .image{
  662. font-family: Cuprum, sans-serif;
  663. margin-bottom: 20px;
  664. color:#fff;
  665. height: 160px;
  666. /* width: 205px;*/
  667. margin: 0 auto;
  668. position: relative;
  669. }
  670. .content-right .news .image img{
  671. display: block;
  672. margin: 0 auto;
  673. }
  674. .content-right .news .image .title{
  675. font-size: 16px;
  676. font-weight: 400;
  677. position: absolute;
  678. bottom: 10px;
  679. display: block;
  680. color: #fff;
  681. left: 5%;
  682. }
  683. .content-right .news .desc{
  684. font-family: Open Sans, sans-serif;
  685. padding-top: 7px;
  686. padding-left: 10px;
  687. padding-bottom: 40px;
  688. font-size: 14px;
  689. line-height: 17px;
  690. border-bottom: 1px solid #d4d4d4;
  691. }
  692. .content-right .news .data{
  693. padding: 5px 0;
  694. padding-right: 10px;
  695. color: #929292;
  696. text-align: right;
  697. }
  698. @media (min-width: 1200px){
  699. .swiper-container{
  700. height: 290px;
  701. }
  702. }
  703. /*footer*/
  704. footer{
  705. position: absolute;
  706. margin-top: 40px;
  707. width: 100%;
  708. padding-top: 40px;
  709. padding-bottom: 20px;
  710. display: inline-block;
  711. background: #3b434d;
  712. }
  713. footer .list{
  714. position: relative;
  715. list-style: none;
  716. float: left;
  717. width: 20%;
  718. font-family: Cuprum, sans-serif;
  719. font-size: 16px;
  720. }
  721. footer .list a{
  722. color: #f2f2f3
  723. }
  724. footer .list li{
  725. margin-bottom: 5px;
  726. }
  727. footer .list li:nth-child(1) a{
  728. color: #75787b;
  729. font-weight: 700;
  730. font-size: 20px;
  731. }
  732. footer .admin-button{
  733. background: #ebebeb;
  734. margin-top: 25px;
  735. padding: 10px 5px;
  736. text-align: center;
  737. display: block !important;
  738. }
  739. footer .admin-button a{
  740. font-size: 14px;
  741. color: #929292;
  742. text-decoration: underline;
  743. }
  744. footer .admin-button a:hover{
  745. text-decoration: underline;
  746. }
  747. footer .copyright{
  748. float: right;
  749. height: auto;
  750. margin-top: 40px;
  751. }
  752. footer .copyright .text{
  753. color: #919293;
  754. font-family: Open Sans, sans-serif;
  755. float: left;
  756. width: 60%;
  757. text-align: right;
  758. }
  759. footer .copyright a{
  760. font-family: Open Sans, sans-serif;
  761. padding-left: 8px;
  762. text-decoration: underline;
  763. color: #9e9e9e;
  764. }
  765. footer .copyright a:hover{
  766. color: #9e9e9e;
  767. text-decoration: underline;
  768. }
  769. footer .copyright .logo{
  770. text-align: center;
  771. float: left;
  772. margin-left: 20px;
  773. }
  774. /**/
  775. @media (min-width: 1200px){
  776. .important{
  777. width: 47%;
  778. }
  779. }
  780. @media (min-width: 992px){
  781. .today .today-item{
  782. width: 50%;
  783. }
  784. .content-right .news-item{
  785. width: 50%;
  786. }
  787. }
  788. @media (min-width: 768px){
  789. .today .today-item{
  790. float: left;
  791. width: 50%;
  792. }
  793. .content-right .news-item{
  794. float: left;
  795. width: 50%;
  796. }
  797. }
  798. @media (max-width: 992px){
  799. .left-side{
  800. width: 27% !important;
  801. }
  802. .content-a-lot{
  803. padding-right: 0;
  804. }
  805. .main-container .col-lg-10{
  806. width: 73% !important;
  807. }
  808. header .circles{
  809. position: static !important;
  810. }
  811. header .menu ul li a{
  812. font-size: 14.5px ;
  813. }
  814. }
  815. @media (max-width: 1200px){
  816. .main-title .soc{
  817. display: none;
  818. }
  819. footer .admin-button{
  820. width: 100%;
  821. }
  822. footer .list{
  823. width: 100%;
  824. padding-right: 40px;
  825. }
  826. footer .list li{
  827. display: none;
  828. }
  829. footer .list li:nth-child(1){
  830. display: block;
  831. }
  832. }
  833. @media (max-width: 1200px){
  834. .left-side{
  835. width: 20%;
  836. }
  837. .content-left{
  838. width: 100%;
  839. }
  840. .content-right .news .news-item .title{
  841. left :20%;
  842. }
  843. .contacts-container .center-content .news-item .inner .image .title{
  844. left: 25%;
  845. }
  846. .content-left .clinic{
  847. width: 100%;
  848. }
  849. .content-right{
  850. width: 100%;
  851. }
  852. .content-right .importants .important .description{
  853. padding-top: 30px !important;
  854. }
  855. .content-right .importants .important .important-image{
  856. width: 10%;
  857. }
  858. }
  859. @media (max-width: 768px){
  860. .left-side .specializations .spec{
  861. display: none;
  862. }
  863. .left-side .specializations .more{
  864. display: none;
  865. }
  866. .left-side .add-info{
  867. display: none;
  868. }
  869. .main-container .main-title{
  870. display: none;
  871. }
  872. .content .clinics{
  873. display: none;
  874. }
  875. .content-right{
  876. padding-right: 0;
  877. }
  878. .content-right .importants{
  879. display: none;
  880. }
  881. .left-side{
  882. width: 100% !important;
  883. margin-bottom: 40px;
  884. }
  885. .main-container .col-lg-10 {
  886. width: 100% !important;
  887. }
  888. .main-container .main-title{
  889. width: 100% !important;
  890. }
  891. .main-container .content-right{
  892. width: 100% !important;
  893. }
  894. .main-container .today{
  895. width: 100% !important;
  896. }
  897. .importants{
  898. width: 100% !important;
  899. }
  900. .main-container .content-left{
  901. width: 100% !important;
  902. }
  903. .main-container .content-left .clinic{
  904. width: 100% !important;
  905. }
  906. .main-container .mobile{
  907. display: block;
  908. }
  909. .left-side .title{
  910. font-size: 32px;
  911. }
  912. .left-side .main-title{
  913. padding: 0;
  914. }
  915. .left-side{
  916. padding-right: 15px;
  917. }
  918. .left-side .logo-subtitle{
  919. width: 50%;
  920. margin: 0 auto;
  921. }
  922. .left-side .specializations .spec-header a{
  923. transform: rotate(90deg);
  924. }
  925. .content-left .doctor{
  926. margin-bottom: 30px;
  927. }
  928. .content-left .about .about-text{
  929. margin-bottom: 30px;
  930. }
  931. .main-container .content-a-lot{
  932. padding-right: 0;
  933. }
  934. .today .today-item{
  935. width: 50%;
  936. float: left;
  937. }
  938. .content-right .news .news-item{
  939. width: 50%;
  940. float: left;
  941. }
  942. .content-right .news .news-item .title{
  943. left: 20%;
  944. }
  945. header .menu li{
  946. display: none;
  947. }
  948. header .menu ul .circles{
  949. display: block;
  950. position: absolute !important;
  951. }
  952. header .menu ul .burger{
  953. left: 0;
  954. }
  955. header .menu-mobile{
  956. position: absolute;
  957. width: 100%;
  958. }
  959. header .menu-mobile ul{
  960. padding: 0;
  961. }
  962. }
  963. @media(max-width: 485px){
  964. .content-right .news .news-item{
  965. width: 100%
  966. }
  967. .today .today-item{
  968. margin: 0 auto;
  969. width: 100%;
  970. margin-bottom: 10px;
  971. }
  972. .content-right .news .news-item .title{
  973. left: 25%;
  974. }
  975. }
  976. .mobile{
  977. display: none;
  978. }
  979. /*MAIN CONTENT END*/
  980. /*END MAIN PAGE*/
  981. /*CONTACTS PAGE*/
  982. .contacts-container .side-bar .logo{
  983. margin-bottom: 50px;
  984. }
  985. .contacts-container .main-title{
  986. padding-left: 40px;
  987. }
  988. .contacts-container .main-title .title{
  989. font-size: 34px;
  990. }
  991. .side-bar ul{
  992. list-style: none;
  993. padding-left: 0;
  994. }
  995. .side-bar li{
  996. padding: 7px 0;
  997. text-align: right;
  998. border-bottom: 1px solid #ebebeb;
  999. }
  1000. .side-bar li:first-child{
  1001. border-top: 1px solid #ebebeb;
  1002. }
  1003. .side-bar li a{
  1004. color: #004d7b;
  1005. font-family: Cuprum, sans-serif;
  1006. font-weight: 600;
  1007. font-size: 17px;
  1008. }
  1009. .side-bar li a:hover{
  1010. text-decoration: none;
  1011. }
  1012. .contacts-container .map{
  1013. margin-bottom: 50px;
  1014. }
  1015. .contacts-container #map{
  1016. height: 345px;
  1017. margin: auto;
  1018. }
  1019. .contacts-container .right-side-bar .info{
  1020. margin-bottom: 10px;
  1021. }
  1022. .contacts-container .right-side-bar .soc{
  1023. position: static;
  1024. display: inline-block;
  1025. text-align: center;
  1026. /*padding: 0 10px;*/
  1027. margin-top: 0;
  1028. margin-bottom: 20px;
  1029. }
  1030. .contacts-container .center-content .work-time{
  1031. margin-bottom: 40px;
  1032. }
  1033. .contacts-container .center-content .work-time .min-title{
  1034. margin-bottom: 20px;
  1035. font-family: Cuprum, sans-serif;
  1036. font-size: 20px;
  1037. font-weight: 700;
  1038. }
  1039. .contacts-container .center-content .work-time .text{
  1040. font-size: 16px;
  1041. }
  1042. .contacts-container .center-content .to-doctors{
  1043. display: inline-block;
  1044. }
  1045. .contacts-container .center-content .to-doctors .min-title{
  1046. margin-bottom: 20px;
  1047. font-family: Cuprum, sans-serif;
  1048. font-size: 18px;
  1049. font-weight: 700;
  1050. }
  1051. .contacts-container .center-content .callback .min-title-text{
  1052. font-size: 16px;
  1053. font-family: Cuprum;
  1054. font-weight: 700;
  1055. }
  1056. .contacts-container .center-content .to-doctors .personal-doctor{
  1057. width: 33.33333333332%;
  1058. display: inline-block;
  1059. color: #000;
  1060. padding: 0;
  1061. padding-right: 10px;
  1062. text-decoration: none;
  1063. margin-bottom: 40px;
  1064. }
  1065. .contacts-container .center-content .to-doctors .personal-doctor .doctor-type{
  1066. font-size: 14px;
  1067. font-family: Cuprum, sans-serif;
  1068. color: #929292;
  1069. }
  1070. .contacts-container .center-content .to-doctors .personal-doctor .doctor-header{
  1071. display: inline-block;
  1072. width: 100%;
  1073. background: #ebebeb;
  1074. border-radius: 30px 0 0 30px;
  1075. }
  1076. .contacts-container .center-content .to-doctors .personal-doctor .doctor-image{
  1077. float: left;
  1078. }
  1079. .contacts-container .center-content .to-doctors .personal-doctor .doctor-name{
  1080. padding-top: 10px;
  1081. padding-left: 65px;
  1082. font-family: Cuprum, sans-serif;
  1083. color: #004d7b;
  1084. font-size: 18px;
  1085. line-height: 18px;
  1086. }
  1087. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
  1088. width: 13%;
  1089. float: left;
  1090. padding-top: 70px;
  1091. }
  1092. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text{
  1093. padding-top: 10px;
  1094. width: 87%;
  1095. float: left;
  1096. }
  1097. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .category{
  1098. color: #929292;
  1099. margin-bottom: 10px;
  1100. }
  1101. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .text .otdels{
  1102. color: #004d7b;
  1103. font-family: Open Sans, sans-serif;
  1104. }
  1105. .contacts-container .center-content .to-doctors .personal-doctor .contacts{
  1106. display: inline-block;
  1107. margin-top: 10px;
  1108. width: 100%;
  1109. background: #ebebeb;
  1110. padding-top: 10px;
  1111. padding-left: 5px;
  1112. padding-right: 5px;
  1113. }
  1114. .contacts-container .center-content .to-doctors .personal-doctor .contact{
  1115. color:#929292;
  1116. font-size: 14px;
  1117. font-family: Cuprum, sans-serif;
  1118. }
  1119. .contacts-container .center-content .to-doctors .personal-doctor .value{
  1120. font-size: 16px;
  1121. margin-bottom: 5px;
  1122. font-family: Cuprum, sans-serif;
  1123. }
  1124. .contacts-container .center-content .to-doctors .personal-doctor .value a {
  1125. font-size: 15px;
  1126. }
  1127. .contacts-container .center-content .to-doctors .personal-doctor .priem{
  1128. margin-top: 10px;
  1129. font-weight: 700;
  1130. font-size: 16px;
  1131. font-family: Cuprum, sans-serif;
  1132. }
  1133. .contacts-container .center-content .callback{
  1134. width: 100%;
  1135. display: inline-block;
  1136. }
  1137. .contacts-container .center-content .callback .min-title{
  1138. margin-bottom: 20px;
  1139. font-family: Cuprum, sans-serif;
  1140. font-size: 20px;
  1141. font-weight: 700;
  1142. }
  1143. .contacts-container .center-content .callback .min-title-text{
  1144. font-size: 19px;
  1145. margin-bottom: 30px;
  1146. }
  1147. .contacts-container .center-content .callback form p{
  1148. font-size: 12px;
  1149. color: #929292;
  1150. }
  1151. .contacts-container .center-content .callback form input{
  1152. margin-bottom: 10px;
  1153. padding-left: 5px;
  1154. font-family: Open Sans, sans-serif;
  1155. font-size: 14px;
  1156. font-weight: 400;
  1157. width: 100%;
  1158. height: 30px;
  1159. color: #929292;
  1160. background: #ebebeb;
  1161. border: none;
  1162. }
  1163. .contacts-container .center-content .callback form input[type = "checkbox"]{
  1164. width: 20px;
  1165. height: inherit;
  1166. }
  1167. .contacts-container .center-content .callback form span{
  1168. font-size: 12px;
  1169. color: #929292;
  1170. }
  1171. .contacts-container .center-content .callback form textarea{
  1172. width: 100%;
  1173. height: 110px;
  1174. padding-left: 5px;
  1175. font-family: Open Sans, sans-serif;
  1176. font-size: 14px;
  1177. color: #929292;
  1178. background: #ebebeb;
  1179. border: none;
  1180. resize: none;
  1181. }
  1182. .contacts-container .center-content .callback form .form-button{
  1183. margin-top: 10px;
  1184. cursor: pointer;
  1185. padding: 7px 0;
  1186. color: #fff;
  1187. text-align: center;
  1188. font-family: Cuprum , sans-serif;
  1189. font-weight: 700;
  1190. background: #004d7b;
  1191. border: 0;
  1192. }
  1193. .contacts-container .center-content .to-doctors .doctor-button{
  1194. display: inline-block;
  1195. width: 100%;
  1196. margin-top: 10px;
  1197. text-align: center;
  1198. text-decoration: underline;
  1199. font-family: Cuprum, sans-serif;
  1200. padding: 7px 0;
  1201. color: #929292;
  1202. background: #ebebeb;
  1203. }
  1204. .contacts-container .center-content .to-doctors .doctor-button:hover{
  1205. color: #fff;
  1206. background: #004d7b;
  1207. }
  1208. /*
  1209. .contacts-container .center-content .*/
  1210. @media (max-width: 1200px){
  1211. .contacts-container .left-side {
  1212. width: 20% !important;
  1213. }
  1214. .contacts-container .importants .important:nth-child(2) .description{
  1215. padding-left:58px;
  1216. }
  1217. }
  1218. @media (min-width: 1200px){
  1219. .contacts-container .main-title {
  1220. width: 60%;
  1221. padding-left: 40px;
  1222. }
  1223. .contacts-container .focus-content {
  1224. width: 60%;
  1225. padding-left: 40px;
  1226. }
  1227. .contacts-container .important{
  1228. width: 100%;
  1229. }
  1230. }
  1231. @media (max-width: 1200px){
  1232. .contacts-container .center-content .callback{
  1233. margin-bottom: 40px;
  1234. }
  1235. .contacts-container .left-side {
  1236. width: 100% !important;
  1237. margin-bottom: 40px;
  1238. }
  1239. .contacts-container .left-side .main-title{
  1240. float: none;
  1241. width: 100% !important;
  1242. }
  1243. .contacts-container .center-content{
  1244. width: 100%;
  1245. }
  1246. .contacts-container .center-content .to-doctors .personal-doctor{
  1247. width: 100%;
  1248. }
  1249. .contacts-container .center-content .callback form .form-button{
  1250. width: 100%;
  1251. }
  1252. .contacts-container .main-title{
  1253. padding-left: 15px;
  1254. }
  1255. .contacts-container .center-content .to-doctors .personal-doctor .doctor-category .image{
  1256. width: 10%;
  1257. padding-top: 20px;
  1258. }
  1259. .contacts-container .left-side .importants .important-image{
  1260. width: 10%;
  1261. }
  1262. .contacts-container .left-side .importants .description{
  1263. padding-top: 20px !important;
  1264. }
  1265. .contacts-container .right-side-bar .info .logo{
  1266. display: none;
  1267. }
  1268. .contacts-container .main-title{
  1269. display: block;
  1270. }
  1271. .contacts-container .center-content .title{
  1272. display: none;
  1273. }
  1274. .contacts-container .center-content .subtitle{
  1275. display: none;
  1276. }
  1277. }
  1278. /*CONTACTS PAGE END*/
  1279. /*SPECIALISTS PAGE*/
  1280. .specs-container .center-content .classes{
  1281. margin-bottom: 15px;
  1282. }
  1283. .specs-container .center-content .classes a{
  1284. display: block;
  1285. color: #004d7b;
  1286. }
  1287. .specs-container .center-content .text{
  1288. font-family: Open Sans, sans-serif;
  1289. margin-bottom: 20px;
  1290. }
  1291. .specs-container .adds .today{
  1292. padding-left: 0px;
  1293. }
  1294. .specs-container .today{
  1295. width: 100%;
  1296. margin-top: 25px;
  1297. /* padding-left: 15px;
  1298. padding-right: 15px;*/
  1299. display: inline-block;
  1300. }
  1301. .specs-container .today .today-item{
  1302. padding-left: 8px;
  1303. padding-right: 8px;
  1304. margin-bottom: 20px;
  1305. }
  1306. .specs-container .today .today-item .head{
  1307. display: block;
  1308. cursor: pointer;
  1309. background: #929292;
  1310. padding: 12px 5px;
  1311. font-size: 13px;
  1312. font-family: Cuprum;
  1313. text-align: right;
  1314. height: 40px;
  1315. color: #fff;
  1316. border-radius: 10px 0 0 0;
  1317. }
  1318. .specs-container .today .today-item .head:hover{
  1319. text-decoration: none;
  1320. }
  1321. .specs-container .today .today-item .head-blue{
  1322. background: #5597d1;
  1323. }
  1324. .specs-container .today .today-item .head .date{
  1325. float: left;
  1326. display: block;
  1327. }
  1328. .specs-container .today .today-item .head .name{
  1329. float: right;
  1330. display: block;
  1331. }
  1332. /*.contacts-container .today .today-item{
  1333. padding-right: 0;
  1334. }
  1335. */
  1336. .specs-container .today .block-header{
  1337. padding: 6px 10px;
  1338. font-size: 22px;
  1339. font-weight: 700;
  1340. font-family: Cuprum, sans-serif;
  1341. background: #929292;
  1342. color: #fff;
  1343. margin-bottom: 10px;
  1344. }
  1345. .specs-container .today .block-header img{
  1346. float: right;
  1347. margin-top: 3px;
  1348. }
  1349. .specs-container .today .image{
  1350. position: relative;
  1351. margin-top: 10px;
  1352. }
  1353. .specs-container .today .image img{
  1354. display: block;
  1355. width: 200px;
  1356. margin: 0 auto;
  1357. }
  1358. .specs-container .today .logo{
  1359. position: absolute;
  1360. top: 0;
  1361. font-family: Cuprum, sans-serif;
  1362. right: 15px;
  1363. width: 60px;
  1364. height: 60px;
  1365. }
  1366. .specs-container .today .logo img{
  1367. width: 60px;
  1368. height: 60px;
  1369. }
  1370. .specs-container .today .free{
  1371. position: absolute;
  1372. padding-top: 5px;
  1373. padding-left: 7px;
  1374. top: 60px;
  1375. left: -5px;
  1376. font-family: Cuprum, sans-serif;
  1377. color: #fff;
  1378. width: 200px;
  1379. height: 40px;
  1380. background: url(../images/free-bg.png) no-repeat;
  1381. }
  1382. .specs-container .today .desc{
  1383. margin-top:10px;
  1384. margin-bottom: 10px;
  1385. font-family: Cuprum, sans-serif;
  1386. padding-left: 5px;
  1387. font-size: 14px;
  1388. }
  1389. .specs-container .today .org{
  1390. font-family: Cuprum, sans-serif;
  1391. font-weight: 600;
  1392. text-align: center;
  1393. border-top:1px solid #ebebeb;
  1394. padding-top: 5px;
  1395. color: #004d7b;
  1396. }
  1397. .specs-container .today .adress{
  1398. margin-top: 5px;
  1399. font-family: Cuprum, sans-serif;
  1400. font-size: 14px;
  1401. padding: 10px 0;
  1402. background: #ebebeb;
  1403. color: #929292;
  1404. text-align: center;
  1405. }
  1406. .specs-container .center-content .vacancies{
  1407. margin-bottom: 40px;
  1408. }
  1409. .specs-container .center-content .vacan-table{
  1410. border-top: 1px solid #ebebeb;
  1411. }
  1412. .specs-container .center-content .vacancies .vac{
  1413. padding: 7px 10px;
  1414. }
  1415. .specs-container .center-content .vacancies .vac:nth-child(even){
  1416. background: #ebebeb;
  1417. }
  1418. .specs-container .center-content .vacancies .vacation{
  1419. float: left;
  1420. }
  1421. .specs-container .center-content .vacancies .vacation a{
  1422. color:#004d7b;
  1423. }
  1424. .specs-container .center-content .vacancies .value{
  1425. text-align: right;
  1426. }
  1427. @media (min-width: 768px){
  1428. .specs-container .today .today-item {
  1429. float: left;
  1430. width: 33.333332%;
  1431. }
  1432. }
  1433. /*SPECIALISTS PAGE END*/
  1434. /*NEWS*/
  1435. .left-side .add-info-news{
  1436. margin-top: 15px;
  1437. }
  1438. .right-side-bar .today{
  1439. width: 100% ;
  1440. margin-top: 25px;
  1441. display: inline-block;
  1442. }
  1443. .right-side-bar .today .today-item{
  1444. padding-left: 15px;
  1445. padding-right: 0px;
  1446. }
  1447. .right-side-bar .today .today-item .head{
  1448. display: block;
  1449. background: #929292;
  1450. padding: 12px 5px;
  1451. font-size: 13px;
  1452. font-family: Cuprum;
  1453. text-align: right;
  1454. height: 40px;
  1455. color: #fff;
  1456. border-radius: 10px 0 0 0;
  1457. }
  1458. .right-side-bar .today .today-item .head-blue{
  1459. background: #5597d1;
  1460. }
  1461. .right-side-bar .today .today-item .head .date{
  1462. float: left;
  1463. display: block;
  1464. }
  1465. .right-side-bar .today .today-item .head .name{
  1466. float: right;
  1467. display: block;
  1468. }
  1469. .right-side-bar .today .today-item{
  1470. margin-bottom: 15px;
  1471. }
  1472. .right-side-bar .today .today-item .inner{
  1473. border: 1px solid #ebebeb;
  1474. border-radius: 10px 0 0 0;
  1475. }
  1476. .right-side-bar .today .block-header{
  1477. padding: 6px 10px;
  1478. font-size: 22px;
  1479. font-weight: 700;
  1480. font-family: Cuprum, sans-serif;
  1481. background: #929292;
  1482. color: #fff;
  1483. margin-bottom: 10px;
  1484. }
  1485. .right-side-bar .today .block-header img{
  1486. float: right;
  1487. margin-top: 3px;
  1488. }
  1489. .right-side-bar .today .image{
  1490. position: relative;
  1491. margin-top: 10px;
  1492. }
  1493. .right-side-bar .today .image img{
  1494. display: block;
  1495. width: 200px;
  1496. margin: 0 auto;
  1497. }
  1498. .right-side-bar .today .logo{
  1499. position: absolute;
  1500. top: 10px;
  1501. font-family: Cuprum, sans-serif;
  1502. right: 20px;
  1503. width: 60px;
  1504. height: 60px;
  1505. }
  1506. .right-side-bar .today .logo img{
  1507. width: 60px;
  1508. height: 60px;
  1509. }
  1510. .right-side-bar .today .free{
  1511. position: absolute;
  1512. padding-top: 5px;
  1513. padding-left: 7px;
  1514. top: 60px;
  1515. left: -5px;
  1516. font-family: Cuprum, sans-serif;
  1517. color: #fff;
  1518. width: 200px;
  1519. height: 40px;
  1520. background: url(../images/free-bg.png) no-repeat;
  1521. }
  1522. .right-side-bar .today .desc{
  1523. margin-top:10px;
  1524. margin-bottom: 10px;
  1525. font-family: Cuprum, sans-serif;
  1526. padding-left: 5px;
  1527. font-size: 14px;
  1528. }
  1529. .right-side-bar .today .org{
  1530. cursor: pointer;
  1531. text-decoration: none;
  1532. display: block;
  1533. font-family: Cuprum, sans-serif;
  1534. font-weight: 600;
  1535. text-align: center;
  1536. border-top:1px solid #ebebeb;
  1537. padding-top: 5px;
  1538. color: #004d7b;
  1539. }
  1540. .right-side-bar .today .adress{
  1541. margin-top: 5px;
  1542. font-family: Cuprum, sans-serif;
  1543. font-size: 14px;
  1544. padding: 10px 0;
  1545. background: #ebebeb;
  1546. color: #929292;
  1547. text-align: center;
  1548. }
  1549. .contacts-container .center-content .news .block-header{
  1550. padding: 6px 10px;
  1551. font-size: 22px;
  1552. font-weight: 700;
  1553. font-family: Cuprum, sans-serif;
  1554. background: #929292;
  1555. color: #fff;
  1556. margin-bottom: 10px;
  1557. }
  1558. .contacts-container .center-content .news .block-header img{
  1559. float: right;
  1560. margin-top: 3px;
  1561. }
  1562. .contacts-container .center-content .news-item{
  1563. display: block;
  1564. color: inherit;
  1565. cursor: pointer;
  1566. text-decoration: none;
  1567. height: 320px;
  1568. padding: 0 10px;
  1569. padding-right: 0;
  1570. margin-bottom: 20px;
  1571. }
  1572. .contacts-container .center-content .news-item .inner{
  1573. height: inherit;
  1574. background: #ebebeb;
  1575. border-radius: 10px 0 0 0;
  1576. overflow: hidden;
  1577. }
  1578. .contacts-container .center-content .news{
  1579. display: inline-block;
  1580. margin-top: 25px;
  1581. padding-left: 0px;
  1582. }
  1583. .contacts-container .center-content .news .image{
  1584. font-family: Cuprum, sans-serif;
  1585. margin-bottom: 20px;
  1586. color:#fff;
  1587. height: 160px;
  1588. /* width: 205px;*/
  1589. margin: 0 auto;
  1590. position: relative;
  1591. }
  1592. .contacts-container .center-content .news .image img{
  1593. display: block;
  1594. margin: 0 auto;
  1595. }
  1596. .contacts-container .center-content .news .image .title{
  1597. font-size: 16px;
  1598. font-weight: 400;
  1599. position: absolute;
  1600. bottom: 10px;
  1601. display: block;
  1602. color: #fff;
  1603. left: 5%;
  1604. }
  1605. .contacts-container .center-content .news .desc{
  1606. font-family: Open Sans, sans-serif;
  1607. padding-top: 7px;
  1608. padding-left: 10px;
  1609. padding-bottom: 40px;
  1610. font-size: 14px;
  1611. line-height: 17px;
  1612. border-bottom: 1px solid #d4d4d4;
  1613. }
  1614. .contacts-container .center-content .news .data{
  1615. padding: 5px 0;
  1616. padding-right: 10px;
  1617. color: #929292;
  1618. text-align: right;
  1619. }
  1620. .center-content .pagination-container{
  1621. /*background: #ebebeb;*/
  1622. padding-left: 10px;
  1623. }
  1624. .center-content .pagination{
  1625. font-family: Open Sans, sans-serif;
  1626. font-weight: 500;
  1627. width: 100%;
  1628. height: 40px;
  1629. background: #ebebeb;
  1630. }
  1631. .center-content .pagination .number{
  1632. cursor: pointer;
  1633. padding-top: 10px;
  1634. /*margin: 0 10px;*/
  1635. }
  1636. .center-content .pagination .number:hover{
  1637. color:#e77140;
  1638. }
  1639. .center-content .pagination .active{
  1640. color: #e77140;
  1641. border-bottom:2px solid #e55e26;
  1642. }
  1643. .center-content .pagination .arrow-left{
  1644. background: url(../images/pagination-left.png) no-repeat center;
  1645. cursor: pointer;
  1646. }
  1647. .center-content .pagination .arrow-right{
  1648. background: url(../images/pagination-right.png) no-repeat center;
  1649. cursor: pointer;
  1650. }
  1651. .center-content .pagination div{
  1652. height: 40px;
  1653. float: left;
  1654. width: 7.14%;
  1655. text-align: center;
  1656. }
  1657. @media(max-width: 1200px){
  1658. .right-side-bar .today .today-item{
  1659. width: 33.33333%;
  1660. float: left;
  1661. }
  1662. .left-side .news-importants{
  1663. display: none;
  1664. }
  1665. }
  1666. @media(min-width: 992px){
  1667. .left-side .new-importants{
  1668. display: none;
  1669. }
  1670. }
  1671. @media(max-width: 768px){
  1672. .right-side-bar .today .today-item{
  1673. width: 100%;
  1674. float: left;
  1675. }
  1676. .right-side-bar .today{
  1677. display: none;
  1678. }
  1679. .center-content .pagination{
  1680. display: none;
  1681. }
  1682. .left-side .add-info {
  1683. display: block;
  1684. }
  1685. }
  1686. @media(max-width: 550px){
  1687. .center-content .news{
  1688. padding-left: 0;
  1689. }
  1690. .center-content .news .news-item{
  1691. padding-left: 0;
  1692. width: 93%;
  1693. float: none;
  1694. margin: 0 auto;
  1695. margin-bottom: 20px;
  1696. }
  1697. .center-content .news .news-item .title{
  1698. left: 30%;
  1699. }
  1700. .center-content .news .news-item .image{
  1701. padding-left: 0;
  1702. width:100%;
  1703. margin: 0 auto;
  1704. }
  1705. .center-content .news .news-item .image img{
  1706. margin: 0 auto;
  1707. }
  1708. }
  1709. /*NEWS END*/
  1710. /*ABOUT*/
  1711. /*.center-content .about{
  1712. display: inline-block;
  1713. }*/
  1714. .center-content .about .doctor{
  1715. padding-left: 0;
  1716. }
  1717. .center-content .about .about-text .title{
  1718. font-family: Cuprum, sans-serif;
  1719. font-weight: 700;
  1720. font-size: 24px;
  1721. }
  1722. .center-content .about-main-text{
  1723. display: inline-block;
  1724. margin-top: 20px;
  1725. font-size: 16px;
  1726. }
  1727. .center-content .about-main-text .image{
  1728. text-align: center;
  1729. float: right;
  1730. margin-top: 20px;
  1731. margin-left: 20px;
  1732. margin-bottom: 20px;
  1733. }
  1734. .center-content .youtube{
  1735. width: 100%;
  1736. margin-top: 20px;
  1737. text-align: center;
  1738. }
  1739. .center-content .to-doctors-about{
  1740. padding-left: 0;
  1741. margin-bottom: 0 !important;
  1742. margin-top: 40px;
  1743. }
  1744. .center-content .to-doctors-about .personal-doctor .doctor-name span{
  1745. display: block;
  1746. float: left;
  1747. }
  1748. .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
  1749. font-size: 14px;
  1750. float: right;
  1751. padding-right: 20px;
  1752. }
  1753. .center-content .to-doctors-about .personal-doctor{
  1754. width: 100% !important;
  1755. border-bottom: 1px solid #ebebeb;
  1756. }
  1757. .center-content .to-doctors-about .doctor-header{
  1758. height: 40px;
  1759. border-radius: 70px 0 0 30px;
  1760. }
  1761. .center-content .to-doctors-about .personal-doctor .image{
  1762. padding-top: 30px !important;
  1763. }
  1764. .center-content .equip{
  1765. margin-bottom: 40px;
  1766. }
  1767. .center-content .media{
  1768. margin-bottom: 40px;
  1769. overflow: visible;
  1770. position: relative;
  1771. padding-top: 30px;
  1772. border-top: 1px solid #ebebeb;
  1773. }
  1774. .center-content .media .swiper-button-next{
  1775. background: url(../images/media-arrow-right.png) no-repeat center;
  1776. top: 60%;
  1777. right: -25px;
  1778. }
  1779. .center-content .media .swiper-button-prev{
  1780. background: url(../images/media-arrow-left.png) no-repeat center;
  1781. top: 60%;
  1782. left: -30px;
  1783. }
  1784. .center-content .media .swiper-container {
  1785. width: inherit;
  1786. height: 140px;
  1787. margin: 20px auto;
  1788. }
  1789. .center-content .media .swiper-container iframe{
  1790. width: 100%;
  1791. height: 100%;
  1792. }
  1793. .center-content .media .swiper-slide {
  1794. width: 30% !important;
  1795. text-align: center;
  1796. font-size: 18px;
  1797. background: #fff;
  1798. /* Center slide text vertically */
  1799. display: -webkit-box;
  1800. display: -ms-flexbox;
  1801. display: -webkit-flex;
  1802. display: flex;
  1803. -webkit-box-pack: center;
  1804. -ms-flex-pack: center;
  1805. -webkit-justify-content: center;
  1806. justify-content: center;
  1807. -webkit-box-align: center;
  1808. -ms-flex-align: center;
  1809. -webkit-align-items: center;
  1810. align-items: center;
  1811. }
  1812. .center-content .media-text{
  1813. line-height: 20px;
  1814. font-size: 15px;
  1815. }
  1816. .center-content .pagination .show-all{
  1817. text-align: center;
  1818. padding-top: 10px;
  1819. font-size: 13px;
  1820. display:inline-block;
  1821. color: #fff;
  1822. background: #3b434d;
  1823. width: 20%;
  1824. height: 100%;
  1825. float: right;
  1826. }
  1827. .center-content .pagination .show-all:hover{
  1828. text-decoration: none;
  1829. background: #e65e26;
  1830. }
  1831. .center-content .pagination .show-all:focus{
  1832. text-decoration: none;
  1833. }
  1834. .center-content .documents{
  1835. font-family: Open Sans, sans-serif;
  1836. color: #3b434d;
  1837. background: #ebebeb;
  1838. }
  1839. .center-content .documents .row{
  1840. margin-right: 0;
  1841. margin-left: 0;
  1842. }
  1843. .center-content .documents .doc-item{
  1844. width: 20%;
  1845. float: left;
  1846. padding: 5px;
  1847. }
  1848. .center-content .documents .year{
  1849. width: 8%;
  1850. }
  1851. .center-content .documents .doc-name{
  1852. color: #004d7b;
  1853. width: 22%;
  1854. }
  1855. .center-content .documents .doc-data{
  1856. width: 14%;
  1857. }
  1858. .center-content .documents .doc-desc{
  1859. width: 25%;
  1860. }
  1861. .center-content .documents .doc-org{
  1862. width: 25%;
  1863. }
  1864. @media (max-width: 1200px){
  1865. .center-content .about{
  1866. margin-bottom: 20px;
  1867. }
  1868. .center-content .about .doctor{
  1869. margin-bottom: 20px;
  1870. }
  1871. .center-content .about .about-text .title{
  1872. display: block;
  1873. }
  1874. }
  1875. @media (max-width: 768px){
  1876. .center-content .documents .doc-item{
  1877. width: 100%;
  1878. float: none;
  1879. padding: 5px;
  1880. }
  1881. .center-content .documents .row{
  1882. margin: 20px 0;
  1883. }
  1884. .center-content .about-main-text .image{
  1885. display: none;
  1886. }
  1887. .center-content .about .youtube iframe{
  1888. width: 100%;
  1889. }
  1890. .center-content .to-doctors-about .personal-doctor .doctor-name .span-cat{
  1891. display: none;
  1892. }
  1893. .center-content .to-doctors-about .personal-doctor .doctor-image{
  1894. display: none;
  1895. }
  1896. .center-content .to-doctors .personal-doctor .doctor-header{
  1897. border-radius: 0 !important;
  1898. }
  1899. .center-content .to-doctors .personal-doctor .doctor-header .doctor-name{
  1900. padding-left: 15px !important;
  1901. }
  1902. }
  1903. @media (max-width: 768px){
  1904. .smi{
  1905. display: none;
  1906. }
  1907. }
  1908. /*ABOUT END*/
  1909. /*SERVICES*/
  1910. .service-text{
  1911. font-family: Open Sans, sans-serif;
  1912. }
  1913. .service-title{
  1914. font-family: Cuprum ,sans-serif;
  1915. font-weight: 600;
  1916. font-size: 26px;
  1917. margin: 30px 0;
  1918. }
  1919. .service-item{
  1920. font-family: Open Sans, sans-serif;
  1921. color :#404040;
  1922. border-top: 1px solid #ebebeb;
  1923. border-bottom: 1px solid #ebebeb;
  1924. width: 100%;
  1925. display: inline-block;
  1926. }
  1927. .service-row{
  1928. display: inline-block;
  1929. width: 100%;
  1930. padding: 4px 5px;
  1931. }
  1932. .service-row:nth-child(even){
  1933. background: #ebebeb;
  1934. }
  1935. .service-item .service-unit{
  1936. width: 11%;
  1937. float: left;
  1938. }
  1939. .service-item .service-unit:nth-child(1){
  1940. width: 9%;
  1941. }
  1942. .service-item .service-unit:nth-child(2){
  1943. width: 50%;
  1944. }
  1945. .service-item .service-unit:nth-child(3){
  1946. width:11%;
  1947. }
  1948. .service-item .service-unit:nth-child(4){
  1949. width: 9%;
  1950. text-align: center;
  1951. }
  1952. .service-item .service-unit:nth-child(5){
  1953. width: 9%;
  1954. text-align: center;
  1955. }
  1956. .service-more{
  1957. display: none;
  1958. text-align: right;
  1959. margin-top: 10px;
  1960. }
  1961. .service-more a{
  1962. font-size: 14px;
  1963. color:#929292;
  1964. }
  1965. .service-more:last-child{
  1966. margin-bottom: 60px;
  1967. }
  1968. @media(max-width: 768px){
  1969. .service-more{
  1970. display: block;
  1971. }
  1972. .service-item .service-unit{
  1973. text-align: left !important;
  1974. width: 100% !important;
  1975. float: none;
  1976. padding: 5px;
  1977. }
  1978. .service-row{
  1979. margin: 20px 0;
  1980. }
  1981. .service-item .service-unit:nth-child(1){
  1982. display: none;
  1983. }
  1984. }
  1985. /*SERVICES END*/
  1986. /*TODAY*/
  1987. .today-page{
  1988. width: 100%;
  1989. margin-top: 25px;
  1990. padding-left: 0px;
  1991. display: inline-block;
  1992. }
  1993. .today-page .today-item .head{
  1994. background: #929292;
  1995. padding: 12px 5px;
  1996. font-size: 13px;
  1997. font-family: Cuprum;
  1998. text-align: right;
  1999. height: 40px;
  2000. color: #fff;
  2001. border-radius: 10px 0 0 0;
  2002. }
  2003. .today-page .today-item .head-blue{
  2004. background: #5597d1;
  2005. }
  2006. .today-page .today-item .head .date{
  2007. float: left;
  2008. display: block;
  2009. }
  2010. .today-page .today-item .head .name{
  2011. float: right;
  2012. display: block;
  2013. }
  2014. .today-page .today-item{
  2015. padding-right: 8px;
  2016. padding-left: 8px;
  2017. margin-bottom: 20px;
  2018. }
  2019. .today-page .image{
  2020. position: relative;
  2021. margin-top: 10px;
  2022. }
  2023. .today-page .image img{
  2024. display: block;
  2025. width: 200px;
  2026. margin: 0 auto;
  2027. }
  2028. .today-page .logo{
  2029. position: absolute;
  2030. top: 0;
  2031. font-family: Cuprum, sans-serif;
  2032. right: 15px;
  2033. width: 60px;
  2034. height: 60px;
  2035. }
  2036. .today-page .logo img{
  2037. width: 60px;
  2038. height: 60px;
  2039. }
  2040. .today-page .free{
  2041. position: absolute;
  2042. padding-top: 5px;
  2043. padding-left: 7px;
  2044. top: 60px;
  2045. left: -5px;
  2046. font-family: Cuprum, sans-serif;
  2047. color: #fff;
  2048. width: 200px;
  2049. height: 40px;
  2050. background: url(../images/free-bg.png) no-repeat;
  2051. }
  2052. .today-page .desc{
  2053. margin-top:10px;
  2054. margin-bottom: 10px;
  2055. font-family: Cuprum, sans-serif;
  2056. padding-left: 5px;
  2057. font-size: 14px;
  2058. }
  2059. .today-page .org{
  2060. font-family: Cuprum, sans-serif;
  2061. font-weight: 600;
  2062. text-align: center;
  2063. border-top:1px solid #ebebeb;
  2064. padding-top: 5px;
  2065. color: #004d7b;
  2066. }
  2067. .today-page .adress{
  2068. margin-top: 5px;
  2069. font-family: Cuprum, sans-serif;
  2070. font-size: 14px;
  2071. padding: 10px 0;
  2072. background: #ebebeb;
  2073. color: #929292;
  2074. text-align: center;
  2075. }
  2076. .pagination-mobile{
  2077. display: none;
  2078. }
  2079. @media (max-width: 768px){
  2080. .center-content .pagination-mobile{
  2081. display: block;
  2082. }
  2083. .center-content .pagination-mobile .pagination div{
  2084. width: 16.66666%;
  2085. }
  2086. }
  2087. /*TODAY END*/
  2088. /*PATIENT*/
  2089. .min-title{
  2090. margin-bottom: 20px;
  2091. font-family: Cuprum, sans-serif;
  2092. font-size: 20px;
  2093. font-weight: 700;
  2094. }
  2095. .patients-text{
  2096. font-family: Open Sans, sans-serif;
  2097. line-height: 22px;
  2098. margin-bottom: 20px;
  2099. }
  2100. /*PATIENT END*/
  2101. /*PATIENTS*/
  2102. .left-side .today{
  2103. padding-left: 0;
  2104. }
  2105. .left-side .today .today-item{
  2106. width: 100%;
  2107. }
  2108. /*PATIENTS END*/
  2109. /*VACANCIES*/
  2110. .vacancy .vacancy-header{
  2111. font-family: Cuprum;
  2112. display: inline-block;
  2113. padding: 5px 12px;
  2114. margin-bottom: 10px;
  2115. background: #d7d7d7;
  2116. width: 100%;
  2117. }
  2118. .vacancy-wrap {
  2119. display: inline-block;
  2120. margin-bottom: 15px;
  2121. }
  2122. .vacancy .vacancy-header .name{
  2123. display: inline-block;
  2124. font-family: Cuprum;
  2125. font-weight: bold;
  2126. width: 60%;
  2127. float: left;
  2128. font-size: 18px;
  2129. }
  2130. .vacancy .vacancy-header .date{
  2131. padding-top: 5px;
  2132. height: 20px;
  2133. width: 40%;
  2134. font-size: 13px;
  2135. color: #929292;
  2136. text-align: right;
  2137. float: left;
  2138. }
  2139. .vacancy .vacancy-data{
  2140. margin-bottom: 15px;
  2141. padding-left: 0;
  2142. }
  2143. .vacancy-data .org .text{
  2144. font-size: 14px;
  2145. font-family: Cuprum;
  2146. color: #929292;
  2147. }
  2148. .vacancy-data .org .org-name{
  2149. font-size: 18px;
  2150. font-family: Cuprum;
  2151. font-weight: 400;
  2152. color: #004d7b;
  2153. margin-bottom: 15px;
  2154. }
  2155. .vacancy .vacancy-table{
  2156. display: inline-block;
  2157. border-top:1px solid #ebebeb;
  2158. border-bottom:1px solid #ebebeb;
  2159. }
  2160. .vacancy .vacancy-table .vacancy-row{
  2161. width: 100%;
  2162. display:inline-block;
  2163. padding: 5px 10px;
  2164. }
  2165. .vacancy .vacancy-table .vacancy-row:nth-child(even){
  2166. background: #ebebeb;
  2167. }
  2168. .vacancy .vacancy-table .vacancy-row .name{
  2169. width: 70%;
  2170. float: left;
  2171. }
  2172. .vacancy .vacancy-table .vacancy-row .data{
  2173. width: 30%;
  2174. float: left;
  2175. text-align: left;
  2176. }
  2177. .vacancy .contact{
  2178. font-family: Cuprum;
  2179. color:#929292;
  2180. font-size: 14px;
  2181. }
  2182. .vacancy .contacts .otd a{
  2183. font-size: 17px;
  2184. color: #115984;
  2185. }
  2186. .vacancy .value{
  2187. font-size: 16px;
  2188. margin-bottom: 5px;
  2189. }
  2190. .vacancy .vacancy-contacts{
  2191. padding-left: 0;
  2192. }
  2193. .vacancy .contacts .value{
  2194. color: #004d7b;
  2195. font-size: 16px;
  2196. font-family: Cuprum;
  2197. }
  2198. @media(max-width: 420px){
  2199. .vacancy .vacancy-data .vacancy-table .vacancy-row div{
  2200. width: 100%;
  2201. float: none;
  2202. }
  2203. }
  2204. .mini-title-2{
  2205. font-family: Cuprum;
  2206. font-weight: 600;
  2207. font-size: 18px;
  2208. margin-bottom: 10px;
  2209. }
  2210. .vacancy-text{
  2211. font-family: Open Sans;
  2212. margin-bottom: 40px;
  2213. }
  2214. /*VACANCIES END*/
  2215. /*UNITS*/
  2216. .content-left .unit-clinics{
  2217. margin-top: 0;
  2218. }
  2219. .soc .contact {
  2220. font-family: Cuprum;
  2221. color: #929292;
  2222. font-size: 14px;
  2223. }
  2224. .soc .value {
  2225. font-family: Cuprum;
  2226. font-size: 16px;
  2227. margin-bottom: 5px;
  2228. }
  2229. .under-title .soc{
  2230. position: static;
  2231. display: inline-block;
  2232. text-align: center;
  2233. padding: 0 10px;
  2234. margin-top: 0;
  2235. margin-bottom: 20px;
  2236. }
  2237. .content .more{
  2238. margin-bottom: 10px;
  2239. }
  2240. .container .content .unit-clinics{
  2241. display: block;
  2242. }
  2243. .container .importants-unit{
  2244. display: block;
  2245. }
  2246. @media(max-width: 700px){
  2247. .content .unit-clinics .clinic {
  2248. padding-left: 15px;
  2249. }
  2250. .content .unit-clinics .clinic .title{
  2251. margin-bottom: 10px;
  2252. }
  2253. .content .unit-clinics .clinic .subtitle{
  2254. padding-left: 0;
  2255. }
  2256. .content .unit-clinics .clinic .clinic-image{
  2257. display: none;
  2258. }
  2259. }
  2260. @media(max-width: 400px){
  2261. .container .importants-unit .important .description{
  2262. font-size: 14px;
  2263. }
  2264. .container .importants-unit .important:nth-child(5) .description{
  2265. padding-top: 15px !important;
  2266. }
  2267. .container .importants-unit .important:nth-child(3) .description{
  2268. padding-top: 15px !important;
  2269. }
  2270. .container .importants-unit .important:nth-child(2) .description{
  2271. padding-left: 55px !important;
  2272. }
  2273. }
  2274. /*UNITS END*/
  2275. /*CONTROLS-ORG-PAGE*/
  2276. .control-org{
  2277. width: 100%;
  2278. margin-bottom: 40px;
  2279. display: inline-block;
  2280. border: 1px solid #ebebeb;
  2281. }
  2282. .control-org .col-lg-4{
  2283. height: 100%;
  2284. padding-right: 0;
  2285. }
  2286. .control-org .col-md-3:first-child{
  2287. padding-left: 0;
  2288. }
  2289. .control-org .col-md-4:last-child{
  2290. padding-right: 15px;
  2291. }
  2292. .control-org .col-md-4:last-child .subtext{
  2293. text-align: center;
  2294. }
  2295. .control-org .control-org-header{
  2296. display: block;
  2297. width: 100%;
  2298. color: #000;
  2299. margin-bottom: 10px;
  2300. text-decoration: none;
  2301. cursor: pointer;
  2302. font-size: 18px;
  2303. font-weight: 600;
  2304. padding: 5px 10px;
  2305. font-family: Cuprum;
  2306. background: #ebebeb;
  2307. }
  2308. .control-org .control-org-header:hover{
  2309. background: #004d7b;
  2310. color: #fff;
  2311. }
  2312. .control-org .image{
  2313. text-align: center;
  2314. margin-bottom: 10px;
  2315. }
  2316. .control-org .value{
  2317. font-family: Cuprum, sans-serif;
  2318. margin-bottom: 5px;
  2319. font-size: 15px;
  2320. }
  2321. .control-org .work-time .mini-title{
  2322. font-size: 14px;
  2323. font-family: Cuprum;
  2324. color: #929292;
  2325. }
  2326. .control-org .work-time .text{
  2327. margin-top: 2px;
  2328. font-size: 18px ;
  2329. font-family: Cuprum;
  2330. font-weight: bold;
  2331. }
  2332. .control-org .subtext{
  2333. font-size: 14px;
  2334. font-family: Cuprum;
  2335. color: #929292;
  2336. line-height: 16px;
  2337. }
  2338. .control-org .howtoget_button{
  2339. font-family: Cuprum, sans-serif;
  2340. font-size: 14px;
  2341. display: block;
  2342. cursor: pointer;
  2343. padding: 5px 0;
  2344. text-align: center;
  2345. text-decoration: underline;
  2346. color:#929292;
  2347. background: #ebebeb;
  2348. margin: 10px 0;
  2349. }
  2350. .howtoget_button:hover{
  2351. background: #004d7b;
  2352. color: #fff;
  2353. }
  2354. .control-org .phone{
  2355. font-family: Cuprum, sans-serif;
  2356. font-weight: 600;
  2357. font-size: 22px;
  2358. padding: 7px 0;
  2359. color: #004d7b;
  2360. text-align:center;
  2361. }
  2362. @media(max-width: 991px){
  2363. .control-org .image{
  2364. text-align: center;
  2365. }
  2366. .control-org .col-lg-4{
  2367. padding-right: 15px;
  2368. }
  2369. }
  2370. /*CONTROLS-ORG-PAGE END*/
  2371. /*UNIT*/
  2372. .control-org-unit{
  2373. border: none;
  2374. margin-bottom: 0;
  2375. }
  2376. .control-org-unit .subtext{
  2377. text-align: center;
  2378. }
  2379. .control-org-unit .all-phones{
  2380. font-family: Cuprum;
  2381. margin-bottom: 5px;
  2382. color:#929292;
  2383. display: inline-block;
  2384. text-decoration: underline;
  2385. }
  2386. .control-org-unit .all-phones img{
  2387. margin-left: 5px;
  2388. }
  2389. .control-org-unit .contact{
  2390. font-family: Cuprum;
  2391. color: #929292;
  2392. }
  2393. .control-org-unit .col-md-4:last-child{
  2394. padding-right: 0;
  2395. }
  2396. .control-org-unit .personal-doctor{
  2397. width: 100%;
  2398. display: inline-block;
  2399. color: #000;
  2400. padding: 0;
  2401. padding-right: 0;
  2402. text-decoration: none;
  2403. margin-bottom: 40px;
  2404. }
  2405. .control-org-unit .personal-doctor .doctor-type{
  2406. font-size: 14px;
  2407. font-family: Cuprum, sans-serif;
  2408. color: #929292;
  2409. }
  2410. .control-org-unit .personal-doctor .doctor-header{
  2411. display: inline-block;
  2412. width: 100%;
  2413. background: #ebebeb;
  2414. border-radius: 30px 0 0 30px;
  2415. }
  2416. .control-org-unit .personal-doctor .doctor-image{
  2417. float: left;
  2418. }
  2419. .control-org-unit .personal-doctor .doctor-name{
  2420. padding-top: 10px;
  2421. padding-left: 65px;
  2422. font-family: Cuprum, sans-serif;
  2423. color: #004d7b;
  2424. font-size: 18px;
  2425. line-height: 18px;
  2426. }
  2427. .control-org-unit .personal-doctor .doctor-category .image{
  2428. width: 13%;
  2429. float: left;
  2430. padding-top: 70px;
  2431. }
  2432. .control-org-unit .personal-doctor .doctor-category .text{
  2433. padding-top: 10px;
  2434. width: 87%;
  2435. float: left;
  2436. }
  2437. .control-org-unit .personal-doctor .doctor-category .text .category{
  2438. color: #929292;
  2439. margin-bottom: 10px;
  2440. }
  2441. .control-org-unit .personal-doctor .doctor-category .text .otdels{
  2442. color: #004d7b;
  2443. font-family: Open Sans, sans-serif;
  2444. }
  2445. .control-org-unit .personal-doctor .contacts{
  2446. display: inline-block;
  2447. margin-top: 10px;
  2448. width: 100%;
  2449. background: #ebebeb;
  2450. padding-top: 10px;
  2451. padding-left: 5px;
  2452. padding-right: 5px;
  2453. }
  2454. .control-org-unit .personal-doctor .contact{
  2455. color:#929292;
  2456. font-size: 14px;
  2457. font-family: Cuprum, sans-serif;
  2458. }
  2459. .control-org-unit .personal-doctor .value{
  2460. font-size: 16px;
  2461. margin-bottom: 5px;
  2462. font-family: Cuprum, sans-serif;
  2463. }
  2464. .control-org-unit .personal-doctor .value a {
  2465. font-size: 15px;
  2466. }
  2467. .control-org-unit .personal-doctor .priem{
  2468. margin-top: 10px;
  2469. font-weight: 700;
  2470. font-size: 16px;
  2471. font-family: Cuprum, sans-serif;
  2472. }
  2473. .center-content .more{
  2474. text-align: right;
  2475. margin-top: 10px;
  2476. }
  2477. .center-content .more a{
  2478. font-family: Cuprum;
  2479. font-size: 14px;
  2480. color:#929292;
  2481. }
  2482. .center-content .youtube-unit{
  2483. display: none;
  2484. }
  2485. .control-org-unit .soc{
  2486. margin-top:40px;
  2487. position: static;
  2488. }
  2489. .documents-unit{
  2490. margin-bottom: 30px;
  2491. }
  2492. @media(max-width: 1200px){
  2493. .content .today-unit{
  2494. display: none;
  2495. }
  2496. .control-org-unit .youtube-unit{
  2497. display: block;
  2498. }
  2499. .mobile-invisible-doctors{
  2500. display: none;
  2501. }
  2502. }
  2503. /*UNIT END*/
  2504. /*FAQ*/
  2505. .qa{
  2506. padding:10px 10px;
  2507. width: 100%;
  2508. margin-bottom: 20px;
  2509. font-family: Cuprum, sans-serif;
  2510. }
  2511. .qa .name{
  2512. font-size: 16px;
  2513. font-weight: 600;
  2514. width: 50%;
  2515. float: left;
  2516. }
  2517. .qa .date{
  2518. font-size: 16px;
  2519. text-align: right;
  2520. width: 50%;
  2521. color:#929292;
  2522. float: left;
  2523. }
  2524. .qa .text{
  2525. margin-top: 25px;
  2526. font-family: Open Sans;
  2527. }
  2528. .question{
  2529. background: #d7d7d7;
  2530. }
  2531. .answer {
  2532. margin-left: 2%;
  2533. width: 98%;
  2534. border: 2px solid #d7d7d7;
  2535. padding-top: 10px;
  2536. position: relative;
  2537. z-index: 0;
  2538. background: #fff;
  2539. color: #000;
  2540. }
  2541. .answer::after, .answer::before {
  2542. content: '';
  2543. position: absolute;
  2544. background: #fff;
  2545. border-bottom: 2px solid #d7d7d7;
  2546. border-left: 2px solid #d7d7d7;
  2547. left: 20px;
  2548. top: -12px;
  2549. width: 20px;
  2550. height: 20px;
  2551. z-index: -1;
  2552. transform: rotate(45deg);
  2553. -webkit-transform: rotate(135deg);
  2554. }
  2555. .answer::before {
  2556. z-index: 1;
  2557. }
  2558. /*FAQ END*/