style.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970
  1. html { overflow-y: scroll; }
  2. body { position: absolute; }
  3. .main-unregistered {
  4. flex-direction: column;
  5. background-color: #fffdf9;
  6. color: #3f3f3f;
  7. width: 100%;
  8. }
  9. .main-unregistered .intro {
  10. display: flex;
  11. flex-direction: row;
  12. justify-content: center;
  13. width: 100%;
  14. }
  15. .main-unregistered .menu {
  16. position: fixed;
  17. justify-content: center;
  18. top: 0;
  19. width: 39.313vw;
  20. height: 3.544vw;
  21. background-color: #deeaec;
  22. border-radius: 1.636vw;
  23. border: 0.109vw solid;
  24. border-color: #97b8a5;
  25. display: flex;
  26. justify-content: space-around;
  27. align-items: center;
  28. z-index: 1000;
  29. }
  30. .main-unregistered .text-menu {
  31. font-family: "Commissioner-SemiBold", Helvetica;
  32. font-weight: 600;
  33. font-size: 1.091vw;
  34. background-color: #deeaec;
  35. border: none;
  36. transition: border 0.1s ease-in;
  37. }
  38. .main-unregistered .text-menu:hover{
  39. border: 0.2vw solid #97b8a5;
  40. border-radius: 1.636vw;
  41. }
  42. .main-unregistered .heads-intro {
  43. position: relative;
  44. display: flex;
  45. flex-direction: column;
  46. justify-content: center;
  47. width: 100%;
  48. text-align: center;
  49. top: 5.453vw;
  50. align-items: center;
  51. }
  52. .main-unregistered .text-head {
  53. font-family: "Commissioner-SemiBold", Helvetica;
  54. font-weight: 800;
  55. font-size: 5.016vw;
  56. }
  57. .main-unregistered .text-subhead {
  58. font-family: "Commissioner-SemiBold", Helvetica;
  59. font-weight: 800;
  60. font-size: 2.017vw;
  61. }
  62. .main-unregistered .image-intro-pets {
  63. display: block;
  64. margin-top: 3.272vw;
  65. width: 23.501vw;
  66. height: 18.92vw;
  67. }
  68. .main-unregistered .miniinfo {
  69. margin-top: 19.502vw;
  70. width: 100%;
  71. display: flex;
  72. justify-content: center;
  73. }
  74. .main-unregistered .subminiinfo {
  75. display: flex;
  76. justify-content: center;
  77. align-items: center;
  78. width: 68.43vw;
  79. }
  80. .main-unregistered .text-miniinfo-head {
  81. font-family: "Commissioner-SemiBold", Helvetica;
  82. font-weight: 800;
  83. font-size: 2.617vw;
  84. margin-left: 4.089vw;
  85. }
  86. .main-unregistered .text-miniinfo-subhead {
  87. font-family: "Abhaya Libre Medium-Regular", Helvetica;
  88. font-weight: 500;
  89. font-size: 1.745vw;
  90. width: 41.712vw;
  91. margin-left: 4.089vw;
  92. }
  93. .main-unregistered .miniinfo-img {
  94. width: 22.465vw;
  95. height: 33.751vw;
  96. }
  97. .main-unregistered .services {
  98. width: 100%;
  99. height: 50.436vw;
  100. margin-top: 9.051vw;
  101. background-color: #97b8a5;
  102. flex-direction: column;
  103. margin-left: -0.5vw;
  104. }
  105. .main-unregistered .subservices {
  106. display: flex;
  107. justify-content: space-around;
  108. margin-top: 3.162vw;
  109. }
  110. .main-unregistered .services-part {
  111. align-items: end;
  112. display: grid;
  113. justify-content: center;
  114. -webkit-transition: all 0.2s ease;
  115. transition: all 0.2s ease;
  116. }
  117. .main-unregistered .services-part:hover{
  118. color: #fffdf9;
  119. background-color: #FFD87E;
  120. }
  121. .main-unregistered .text-services-head {
  122. font-family: "Commissioner-SemiBold", Helvetica;
  123. font-weight: 800;
  124. font-size: 2.617vw;
  125. padding-top: 4.798vw;
  126. text-align: center;
  127. color: #fffdf9;
  128. margin-bottom: 0.763vw;
  129. }
  130. .main-unregistered .for-services-img {
  131. justify-content: center;
  132. width: 100%;
  133. display: grid;
  134. align-items: center;
  135. margin-top: 1.927vw;
  136. }
  137. .main-unregistered .services-img {
  138. width: 4.471vw;
  139. height: 4.471vh;
  140. justify-content: center;
  141. align-items: center;
  142. display: flex;
  143. }
  144. .main-unregistered .text-services {
  145. text-align: center;
  146. font-family: "Abhaya Libre Medium-Regular", Helvetica;
  147. font-weight: 500;
  148. font-size: 1.527vw;
  149. margin-top: 4.635vw;
  150. margin-bottom: 1.254vw;
  151. width: 12.865vw;
  152. height: 3.125vw;
  153. text-align: center;
  154. }
  155. .main-unregistered .services-part {
  156. background-color: #fffdf9;
  157. width: 14.395vw;
  158. height: 15.812vw;
  159. }
  160. .main-unregistered .doctors {
  161. width: 100%;
  162. justify-content: center;
  163. align-items: center;
  164. flex-direction: column;
  165. display: flex;
  166. padding-top: 3.907vw;
  167. }
  168. .main-unregistered .doctors-head {
  169. font-family: "Commissioner-SemiBold", Helvetica;
  170. font-weight: 800;
  171. font-size: 2.617vw;
  172. text-align: center;
  173. color: #3f3f3f;
  174. margin-bottom: 2.453vw;
  175. }
  176. .main-unregistered .pets {
  177. width: 100%;
  178. height: 50.436vw;
  179. background-color: #FFE4DD;
  180. margin-top: 4.744vw;
  181. margin-left: -0.5vw;
  182. }
  183. .main-unregistered .pets-head {
  184. font-family: "Commissioner-SemiBold", Helvetica;
  185. font-weight: 800;
  186. font-size: 2.617vw;
  187. padding-top: 3.599vw;
  188. text-align: center;
  189. color: #fffdf9;
  190. margin-bottom: 5.889vw;
  191. text-shadow: 0 0 1px #3f3f3f, 0 0 1px #3f3f3f, 0 0 1px #3f3f3f;
  192. }
  193. .main-unregistered .subpets {
  194. display: flex;
  195. justify-content: space-between;
  196. }
  197. .main-unregistered .pets-part-background {
  198. width: 33.697vw;
  199. height: 28.353vw;
  200. background-color: #FFFDF9;
  201. margin-right: 1.472vw;
  202. align-items: center;
  203. justify-content: center;
  204. display: flex;
  205. position: relative;
  206. }
  207. .main-unregistered .pets-parts-text {
  208. width: 29.171vw;
  209. height: 16.303vw;
  210. font-size: 1.745vw;
  211. text-align: center;
  212. font-family: "Abhaya Libre Medium-Regular", Helvetica;
  213. position: absolute;
  214. top: 50%;
  215. transform: translate(0, -50%);
  216. }
  217. .main-unregistered .podval {
  218. width: 100%;
  219. height: 22.028vw;
  220. margin-top: 2.963vw;
  221. }
  222. .main-unregistered .podval-str1, .podval-str2 {
  223. justify-content: space-between;
  224. display: flex;
  225. }
  226. .main-unregistered .podval-str2 {
  227. margin-top: 3.708vw;
  228. }
  229. .main-unregistered .podval-text-col2 {
  230. text-align: right;
  231. font-family: "Commissioner-SemiBold", Helvetica;
  232. font-weight: 800;
  233. font-size: 2.617vw;
  234. margin-right: 2.181vw;
  235. }
  236. .main-unregistered .podval-text-col1 {
  237. text-align: right;
  238. font-family: "Commissioner-SemiBold", Helvetica;
  239. font-weight: 500;
  240. font-size: 2.617vw;
  241. margin-left: 2.181vw;
  242. }
  243. .link {
  244. text-decoration: none;
  245. color: #3f3f3f;
  246. }
  247. .registration_form .button-back {
  248. font-family: "Abhaya Libre", Helvetica;
  249. font-weight: 600;
  250. font-style: normal;
  251. font-size: 1.5vw;
  252. background-color: #DEEAEC;
  253. color: #3f3f3f;
  254. height: 4vw;
  255. width: 9vw;
  256. border: 2px solid #97B8A5;
  257. border-radius: 30px;
  258. text-align: center;
  259. margin-top: 1vw;
  260. margin-left: 2vw;
  261. vertical-align: middle;
  262. }
  263. .registration_form .button-back-p {
  264. font-family: "Abhaya Libre", Helvetica;
  265. font-weight: 600;
  266. font-style: normal;
  267. font-size: 1.5vw;
  268. background-color: #DEEAEC;
  269. color: #3f3f3f;
  270. height: 4vw;
  271. width: 9vw;
  272. border: 2px solid #97B8A5;
  273. border-radius: 30px;
  274. text-align: center;
  275. margin-top: 1vw;
  276. margin-left: 1vw;
  277. vertical-align: middle;
  278. }
  279. .registration_form .button-edit {
  280. font-family: "Abhaya Libre", Helvetica;
  281. font-weight: 600;
  282. font-style: normal;
  283. font-size: 1.5vw;
  284. background-color: #DEEAEC;
  285. color: #3f3f3f;
  286. height: 4vw;
  287. width: 18vw;
  288. padding-left: 3vw;
  289. border: 2px solid #97B8A5;
  290. border-radius: 30px;
  291. text-align: center;
  292. margin-top: 1vw;
  293. margin-left: 68vw;
  294. vertical-align: middle;
  295. background-image: url(img/edit.png);
  296. background-size: 2vw;
  297. background-repeat: no-repeat;
  298. background-position: left 1.5vw center;
  299. }
  300. .line-user {
  301. margin-top: 3.217vw;
  302. border: 0.055vw solid #97B8A5;
  303. width: 80.261vw;
  304. position: absolute;
  305. top: 500%;
  306. left: 50%;
  307. transform: translate(-50%, -50%);
  308. }
  309. .icon-user{
  310. background-color: #97B8A5;
  311. border-radius: 8vw;
  312. width: 13vw;
  313. height: 13vw;
  314. transform: translate(-50%, -50%);
  315. position: absolute;
  316. top: 10vw;
  317. left: 50%;
  318. }
  319. .info-user{
  320. width: auto;
  321. height: auto;
  322. transform: translate(-50%, -50%);
  323. position: absolute;
  324. top: 22vw;
  325. left: 50%;
  326. display:grid;
  327. text-align: center;
  328. justify-content: center;
  329. align-items: center;
  330. }
  331. .pets-user{
  332. font-family: "Commissioner-SemiBold", Helvetica;
  333. font-weight: 800;
  334. font-style: normal;
  335. font-size: 2vw;
  336. transform: translate(-50%, -50%);
  337. position: absolute;
  338. top: 30vw;
  339. left: 50%;
  340. width: 23vw;
  341. height: 5vw;
  342. text-align: center;
  343. }
  344. .pets-add{
  345. margin-top: 24vw;
  346. margin-left: 58vw;
  347. }
  348. .name-user{
  349. font-family: "Commissioner-SemiBold", Helvetica;
  350. font-weight: 800;
  351. font-style: normal;
  352. font-size: 2vw;
  353. }
  354. .email-user{
  355. font-family: "Abhaya Libre", Helvetica;
  356. font-weight: 600;
  357. font-style: normal;
  358. font-size: 2vw;
  359. margin-top: 0.1vw;
  360. }
  361. #out{
  362. background-color: #fffdf9;
  363. color: #97b8a5;
  364. }
  365. .registration_form {
  366. flex-direction: column;
  367. background-color: #fffdf9;
  368. color: #3f3f3f;
  369. width: 100%;
  370. }
  371. .registration_form .heads-form {
  372. font-family: "Abhaya Libre", Helvetica;
  373. font-weight: 600;
  374. font-style: normal;
  375. font-size: 2.617vw;
  376. text-align: center;
  377. color: #3f3f3f;
  378. margin-bottom: 0.273vw;
  379. }
  380. .registration_form .form-position {
  381. display:grid;
  382. text-align: center;
  383. justify-content: center;
  384. align-items: center;
  385. }
  386. .registration_form .element{
  387. display: block;
  388. text-align: justify;
  389. margin-top: 1.091vw;
  390. }
  391. .registration_form .lable{
  392. font-family: "Abhaya Libre", Helvetica;
  393. font-weight: 600;
  394. font-style: normal;
  395. font-size: 1.617vw;
  396. color: #3f3f3f;
  397. }
  398. .registration_form .input{
  399. font-family: "Abhaya Libre", Helvetica;
  400. font-weight: 600;
  401. font-style: normal;
  402. width: 57.088vw;
  403. height: 3.871vw;
  404. border-radius: 0.818vw;
  405. background-color: #97B8A5;
  406. border: none;
  407. padding-left: 1.091vw;
  408. font-size: 1.617vw;
  409. color: #FFFDF9;
  410. margin-top: 1.091vw;
  411. }
  412. .textarea{
  413. font-family: "Abhaya Libre", Helvetica;
  414. font-weight: 600;
  415. font-style: normal;
  416. width: 57.088vw;
  417. height: 3.871vw;
  418. border-radius: 0.818vw;
  419. background-color: #97B8A5;
  420. border: none;
  421. padding-left: 1.091vw;
  422. font-size: 1.617vw;
  423. color: #FFFDF9;
  424. margin-top: 1.091vw;
  425. resize: vertical;
  426. max-height: 8.088vw;
  427. min-height:3.871vw;
  428. padding-top: 0.5vw;
  429. }
  430. .textarea::-webkit-resizer{
  431. background: linear-gradient(315deg,
  432. #0000 16% 26%,
  433. #FFFDF9 26% 33%,
  434. #0000 33% 43%,
  435. #FFFDF9 43% 50%,
  436. #0000 50% 100%) no-repeat;
  437. background-size: 80% 80%;
  438. }
  439. .registration_form .input:focus{
  440. outline: none;
  441. }
  442. .registration_form .input::placeholder{
  443. color: #3F3F3F;
  444. }
  445. .textarea:focus{
  446. outline: none;
  447. }
  448. .textarea::placeholder{
  449. color: #3F3F3F;
  450. }
  451. .registration_form .container {
  452. font-family: "Abhaya Libre", Helvetica;
  453. font-weight: 600;
  454. font-style: normal;
  455. display: block;
  456. position: relative;
  457. text-align: left;
  458. padding-left: 3.272vw;
  459. margin-top: 1.091vw;
  460. cursor: pointer;
  461. font-size: 1.363vw;
  462. padding-top: 0.436vw;
  463. }
  464. .registration_form .checkmark {
  465. width: 2.072vw;
  466. height: 2.072vw;
  467. border: 0.164vw solid #97B8A5;
  468. border-radius: 0.818vw;
  469. cursor: pointer;
  470. display: inline-block;
  471. text-align: left;
  472. position: absolute;
  473. top: 0;
  474. left: 0;
  475. }
  476. .registration_form .checkmark:after {
  477. content: "";
  478. position: absolute;
  479. display: none;
  480. }
  481. .container input:checked ~ .checkmark:after {
  482. display: block;
  483. }
  484. .container .checkmark:after {
  485. left: 0.709vw;
  486. top: 0.382vw;
  487. width: 0.545vw;
  488. height: 0.818vw;
  489. border:solid #3F3F3F;
  490. border-radius: 0.109vw;
  491. border-width: 0 0.191vw 0.191vw 0;
  492. transform: rotate(45deg);
  493. }
  494. .registration_form .button{
  495. text-align: center;
  496. display: block;
  497. margin-top: 2.181vw;
  498. align-items: center;
  499. justify-content: center;
  500. }
  501. .registration_form .button-text{
  502. font-family: "Abhaya Libre", Helvetica;
  503. font-weight: 600;
  504. font-style: normal;
  505. font-size: 3.272vw;
  506. width: 50.6vw;
  507. height: 5.18vw;
  508. border-radius: 0.818vw;
  509. background-color: #97B8A5;
  510. border: none;
  511. padding-left: 1.091vw;
  512. color: #FFFDF9;
  513. margin-top: 1.091vw;
  514. }
  515. .registration_form .footer-form {
  516. font-family: "Abhaya Libre", Helvetica;
  517. font-weight: 600;
  518. font-style: normal;
  519. font-size: 1.500vw;
  520. text-align: center;
  521. color: #3f3f3f;
  522. margin-top: 0.545vw;
  523. }
  524. .registration_form .appointment-position {
  525. display:grid;
  526. text-align: center;
  527. justify-content: center;
  528. align-items: center;
  529. }
  530. .registration_form .head-appointment {
  531. font-family: "Commissioner-SemiBold", Helvetica;
  532. font-weight: 800;
  533. font-style: normal;
  534. font-size: 2.617vw;
  535. text-align: center;
  536. color: #3f3f3f;
  537. margin-bottom: 0.273vw;
  538. }
  539. .registration_form .input-appointment{
  540. font-family: "Abhaya Libre", Helvetica;
  541. font-weight: 600;
  542. font-style: normal;
  543. width: 47.088vw;
  544. height: 3.871vw;
  545. border-radius: 0.818vw;
  546. background-color: #FFD87E;
  547. border: none;
  548. padding-left: 1.091vw;
  549. font-size: 1.617vw;
  550. color: #FFFDF9;
  551. margin-top: 1.091vw;
  552. margin-left: 2vw;
  553. appearance: none;
  554. -webkit-appearance: none;
  555. -moz-appearance: none;
  556. background-image: url(img/strelka.png);
  557. background-size: 2vw;
  558. background-repeat: no-repeat;
  559. background-position: right 1vw center;
  560. }
  561. .registration_form .datetime-appointment{
  562. font-family: "Abhaya Libre", Helvetica;
  563. font-weight: 600;
  564. font-style: normal;
  565. width: 46.088vw;
  566. height: 3.871vw;
  567. border-radius: 0.818vw;
  568. background-color: #FFD87E;
  569. border: none;
  570. padding-left: 1.091vw;
  571. font-size: 1.617vw;
  572. color: #FFFDF9;
  573. margin-top: 1.091vw;
  574. margin-left: 2vw;
  575. }
  576. input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  577. opacity: 1;
  578. display: block;
  579. background: url(img/datetime.png) no-repeat;
  580. width: 3vw;
  581. height: 2vw;
  582. border-width: thin;
  583. background-size: 2vw;
  584. }
  585. *:focus {
  586. outline: none;
  587. }
  588. .datetime-appointment:focus{
  589. outline: none;
  590. }
  591. .input-appointment:focus{
  592. outline: none;
  593. }
  594. .registration_form .button-appointment{
  595. font-family: "Abhaya Libre", Helvetica;
  596. font-weight: 600;
  597. font-style: normal;
  598. font-size: 3.272vw;
  599. width: 50.6vw;
  600. height: 5.18vw;
  601. border-radius: 0.818vw;
  602. background-color: #FFD87E;
  603. border: none;
  604. padding-left: 1.091vw;
  605. color: #FFFDF9;
  606. margin-top: 1.091vw;
  607. }
  608. .registration_form .container-appointment {
  609. font-family: "Abhaya Libre", Helvetica;
  610. font-weight: 600;
  611. font-style: normal;
  612. display: block;
  613. position: relative;
  614. text-align: left;
  615. padding-left: 3.272vw;
  616. margin-top: 1.091vw;
  617. cursor: pointer;
  618. font-size: 1.363vw;
  619. padding-top: 0.436vw;
  620. margin-left: 2vw;
  621. }
  622. .registration_form .checkmark-appointment {
  623. width: 2.072vw;
  624. height: 2.072vw;
  625. border: 0.164vw solid #FFD87E;
  626. border-radius: 0.818vw;
  627. cursor: pointer;
  628. display: inline-block;
  629. text-align: left;
  630. position: absolute;
  631. top: 0;
  632. left: 0;
  633. }
  634. .registration_form .checkmark-appointment:after {
  635. content: "";
  636. position: absolute;
  637. display: none;
  638. }
  639. .container-appointment input:checked ~ .checkmark-appointment:after {
  640. display: block;
  641. }
  642. .container-appointment .checkmark-appointment:after {
  643. left: 0.709vw;
  644. top: 0.382vw;
  645. width: 0.545vw;
  646. height: 0.818vw;
  647. border:solid #3F3F3F;
  648. border-radius: 0.109vw;
  649. border-width: 0 0.191vw 0.191vw 0;
  650. transform: rotate(45deg);
  651. }
  652. .services {
  653. justify-content: center;
  654. display: flex;
  655. width: 100%;
  656. background-color: #fffdf9;
  657. }
  658. .services .services-page {
  659. flex-direction: column;
  660. width: 100%;
  661. margin-top: 9.017vw;
  662. justify-content: center;
  663. align-items: center;
  664. display: flex;
  665. }
  666. .services .services-head {
  667. font-family: "Abhaya Libre", Helvetica;
  668. font-weight: 600;
  669. font-style: normal;
  670. font-size: 3.272vw;
  671. text-align: center;
  672. color: #3f3f3f;
  673. margin-top: 0.8.179vw;
  674. }
  675. .services .menu {
  676. position: fixed;
  677. justify-content: center;
  678. top: 0;
  679. width: 39.313vw;
  680. height: 3.544vw;
  681. background-color: #deeaec;
  682. border-radius: 1.636vw;
  683. border: 0.109vw solid;
  684. border-color: #97b8a5;
  685. display: flex;
  686. justify-content: space-around;
  687. align-items: center;
  688. z-index: 1000;
  689. }
  690. .services .text-menu {
  691. font-family: "Commissioner", Helvetica;
  692. font-weight: 600;
  693. font-size: 1.091vw;
  694. background-color: #deeaec;
  695. border: none;
  696. transition: border 0.1s ease-in;
  697. }
  698. .services .text-menu:hover{
  699. border: 0.2vw solid #97b8a5;
  700. border-radius: 1.636vw;
  701. }
  702. .services .make-app {
  703. position: fixed;
  704. top: 0;
  705. width: 39.313vw;
  706. height: 5.344vw;
  707. background-color: #FFE4DD;
  708. border-radius: 1.636vw;
  709. border: 0.050vw solid;
  710. border-color: #97b8a5;
  711. display: flex;
  712. justify-content: center;
  713. align-items: end;
  714. z-index: 1000;
  715. margin-top: 1.091vw;
  716. }
  717. .services .make-app-text {
  718. font-family: "Commissioner", Helvetica;
  719. font-weight: 700;
  720. font-size: 1.527vw;
  721. margin-bottom: 0.354vw;
  722. color: #3F3F3F;
  723. }
  724. .services .line1 {
  725. margin-top: 3.217vw;
  726. border: 0.055vw solid #97B8A5;
  727. width: 63.261vw;
  728. }
  729. .services .services-section {
  730. margin-top: 3.762vw;
  731. margin-bottom: 3.326vw;
  732. width: 83.937vw;
  733. height: 22.465vw;
  734. display: flex;
  735. justify-content: space-between;
  736. }
  737. .services .service {
  738. background-image: url("img/service2.png");
  739. background-size: cover;
  740. border: 0.164vw solid #97b8a5;
  741. width: 22.901vw;
  742. height: 100%;
  743. display: flex;
  744. justify-content: center;
  745. flex-direction: column;
  746. align-items: center;
  747. text-align: center;
  748. }
  749. .services .line2 {
  750. border: 0.056vw solid #97B8A5;
  751. width: 14.286vw;
  752. margin-top: 1.418vw;
  753. }
  754. .services .service-head {
  755. margin-top: 2.236vw;
  756. margin-bottom: auto;
  757. position: static;
  758. font-family: "Commissioner", Helvetica;
  759. font-weight: 400;
  760. font-size: 1.854vw;
  761. width: 20.011vw;
  762. }
  763. .services .service-desc {
  764. margin-top: 1.527vw;
  765. margin-bottom: 1.472vw - 1.418vw;
  766. font-family: "Commissioner", Helvetica;
  767. font-weight: 400;
  768. font-size: 1.527vw;
  769. width: 20.011vw;
  770. }
  771. .services .service-price {
  772. margin-top: 1.963vw;
  773. margin-bottom: 2.672vw;
  774. font-family: "Commissioner", Helvetica;
  775. font-weight: 600;
  776. font-size: 1.527vw;
  777. }
  778. .doctors {
  779. justify-content: center;
  780. display: flex;
  781. width: 100%;
  782. height: auto;
  783. background-color: #fffdf9;
  784. }
  785. .doctors .docs {
  786. width: 68.542vw;
  787. height: auto;
  788. display: flex;
  789. justify-content: center;
  790. flex-direction: column;
  791. }
  792. .doctors .subdocs {
  793. display: flex;
  794. width: 68.542vw;
  795. margin-bottom: 5.453vw;
  796. justify-content: space-between;
  797. align-items: center;
  798. }
  799. .doctors .text-docs-head-left {
  800. font-family: "Commissioner", Helvetica;
  801. font-weight: 800;
  802. font-size: 1.363vw;
  803. width: 47.708vw;
  804. margin-left: 2.181vw;
  805. }
  806. .doctors .text-docs-head-right {
  807. font-family: "Commissioner", Helvetica;
  808. font-weight: 800;
  809. font-size: 1.363vw;
  810. width: 47.708vw;
  811. }
  812. .doctors .text-docs-subhead-left {
  813. font-family: "Commissioner", Helvetica;
  814. font-weight: 500;
  815. font-size: 1.363vw;
  816. width: 47.708vw;
  817. margin-left: 2.181vw;
  818. }
  819. .doctors .text-docs-subhead-right {
  820. font-family: "Commissioner", Helvetica;
  821. font-weight: 500;
  822. font-size: 1.363vw;
  823. width: 47.708vw;
  824. }
  825. .doctors .doc-img {
  826. width: 17.986vw;
  827. height: 17.986vw;
  828. }
  829. .doctors .menu {
  830. position: fixed;
  831. justify-content: center;
  832. top: 0;
  833. width: 39.313vw;
  834. height: 3.544vw;
  835. background-color: #deeaec;
  836. border-radius: 1.636vw;
  837. border: 0.109vw solid;
  838. border-color: #97b8a5;
  839. display: flex;
  840. justify-content: space-around;
  841. align-items: center;
  842. z-index: 1000;
  843. }
  844. .doctors .text-menu {
  845. font-family: "Commissioner-SemiBold", Helvetica;
  846. font-weight: 600;
  847. font-size: 1.091vw;
  848. background-color: #deeaec;
  849. border: none;
  850. transition: border 0.1s ease-in;
  851. }
  852. .doctors .text-menu:hover{
  853. border: 0.2vw solid #97b8a5;
  854. border-radius: 1.636vw;
  855. }
  856. .docs .doctors-head {
  857. font-family: "Abhaya Libre", Helvetica;
  858. font-weight: 600;
  859. font-style: normal;
  860. font-size: 3.272vw;
  861. text-align: center;
  862. color: #3f3f3f;
  863. margin-top: 6.107vw;
  864. margin-bottom: 5.507vw;
  865. width: 100%;
  866. text-align: center;
  867. }
  868. .shelter {
  869. justify-content: center;
  870. display: flex;
  871. width: 100%;
  872. background-color: #fffdf9;
  873. }
  874. .shelter .pets {
  875. width: 100%;
  876. height: 183.403vw;
  877. display: flex;
  878. justify-content: center;
  879. flex-direction: column;
  880. align-items: center;
  881. }
  882. .shelter .subdocs {
  883. width: 85.347vw;
  884. display: flex;
  885. margin-bottom: 5.453vw;
  886. }
  887. .shelter .text-docs-head-left {
  888. font-family: "Commissioner", Helvetica;
  889. font-weight: 800;
  890. font-size: 1.363vw;
  891. width: 62.569vw;
  892. margin-left: 2.181vw;
  893. }
  894. .shelter .text-docs-head-right {
  895. font-family: "Commissioner", Helvetica;
  896. font-weight: 800;
  897. font-size: 1.363vw;
  898. width: 62.569vw;
  899. }
  900. .shelter .text-docs-subhead-left {
  901. font-family: "Commissioner", Helvetica;
  902. font-weight: 500;
  903. font-size: 1.363vw;
  904. width: 62.569vw;
  905. margin-left: 2.181vw;
  906. }
  907. .shelter .text-docs-subhead-right {
  908. font-family: "Commissioner", Helvetica;
  909. font-weight: 500;
  910. font-size: 1.363vw;
  911. width: 62.569vw;
  912. }
  913. .shelter .doc-img {
  914. width: auto;
  915. height: 21.528vw;
  916. }
  917. .shelter .menu {
  918. position: fixed;
  919. justify-content: center;
  920. top: 0;
  921. width: 39.313vw;
  922. height: 3.544vw;
  923. background-color: #deeaec;
  924. border-radius: 1.636vw;
  925. border: 0.109vw solid;
  926. border-color: #97b8a5;
  927. display: flex;
  928. justify-content: space-around;
  929. align-items: center;
  930. z-index: 1000;
  931. }
  932. .shelter .text-menu {
  933. font-family: "Commissioner-SemiBold", Helvetica;
  934. font-weight: 600;
  935. font-size: 1.091vw;
  936. background-color: #deeaec;
  937. border: none;
  938. transition: border 0.1s ease-in;
  939. }
  940. .shelter .text-menu:hover{
  941. border: 0.2vw solid #97b8a5;
  942. border-radius: 1.636vw;
  943. }
  944. .pets .doctors-head {
  945. font-family: "Abhaya Libre", Helvetica;
  946. font-weight: 600;
  947. font-style: normal;
  948. font-size: 3.272vw;
  949. text-align: center;
  950. color: #3f3f3f;
  951. margin-top: 0.107vw;
  952. margin-bottom: 5.507vw;
  953. width: 100%;
  954. text-align: center;
  955. }