style.css 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
  2. :root {
  3. --pry-color:#1C3D80;
  4. }
  5. * {
  6. font-family: 'Roboto';
  7. padding: 0;
  8. margin: 0;
  9. }
  10. body {
  11. display: flex;
  12. flex-direction: column;
  13. font-weight: 400;
  14. background-color: #ffffff;
  15. color: #333;
  16. width: 100%;
  17. font-size: 17px;
  18. min-height: 100vh;
  19. }
  20. ::-moz-selection { background: #333; color: #fff; }
  21. ::selection { background: #333; color: #fff; }
  22. .bg-grey {
  23. background-color: #5C6D7A;
  24. color: #fff;
  25. }
  26. .bg-primary {
  27. background-color: var(--pry-color) !important;
  28. }
  29. footer{
  30. margin-top: auto;
  31. }
  32. footer span {
  33. font-size: 15px;
  34. }
  35. a {
  36. text-decoration: none;
  37. color: var(--pry-color);
  38. font-size: 17px;
  39. }
  40. p {
  41. font-size: 17px;
  42. }
  43. .pointer {
  44. cursor: pointer;
  45. }
  46. .text-pry {
  47. color: var(--pry-color);
  48. }
  49. .bg-pry {
  50. background-color: var(--pry-color);
  51. }
  52. .top-blue {
  53. padding: 8px 0;
  54. background-color: var(--pry-color);
  55. }
  56. .top-blue a {
  57. color: #fff !important;
  58. padding-bottom: 3px;
  59. font-size: 15px;
  60. border-bottom: 1px solid transparent;
  61. transition: .5s;
  62. }
  63. .top-blue a:hover, .top-blue a.active {
  64. transition: .5s;
  65. border-bottom: 1px dotted rgba(255,255,255,.6);
  66. }
  67. .top-blue span {
  68. color: #fff;
  69. font-weight: 300;
  70. font-size: 20px;
  71. }
  72. .breadcrumb-item {
  73. font-weight: 300;
  74. }
  75. .sublinks:hover, .sublinks.active {
  76. color: #4b87ff;
  77. text-decoration: underline;
  78. }
  79. .navbar {
  80. background-color: #ffffff;
  81. }
  82. .navbar-brand img{
  83. width: 100%;
  84. height: 35px;
  85. max-width: 250px;
  86. object-fit: contain;
  87. }
  88. .nav-item {
  89. margin-left: 1.5rem;
  90. }
  91. .nav-link {
  92. color: #000000;
  93. font-size: 18px;
  94. border-bottom:1px dashed transparent;
  95. transition: .3s;
  96. position: relative;
  97. }
  98. .nav-link:hover, .nav-link.active {
  99. color: var(--pry-color);
  100. transition: .3s;
  101. }
  102. .btn-pry {
  103. background-color: var(--pry-color);
  104. color: #fff !important;
  105. font-size: 18px;
  106. border-radius: 0;
  107. padding: 10px 20px;
  108. }
  109. .btn-outline-pry {
  110. border: 1px solid;
  111. border-color: var(--pry-color);
  112. color: var(--pry-color);
  113. font-size: 18px;
  114. border-radius: 0;
  115. padding: 10px 20px;
  116. }
  117. .btn-pry:hover, .btn-outline-pry:hover {
  118. transition: .5s;
  119. box-shadow: 0px 15px 15px rgb(11 28 91 / 10%);
  120. }
  121. .dropdown-menu {
  122. border-radius: 0;
  123. margin-top: 18px !important;
  124. border: 1px solid #eee;
  125. }
  126. .dropdown-item small {
  127. color: #545E65 !important;
  128. }
  129. .dropdown-item {
  130. padding: 15px 25px;
  131. font-size: 15px;
  132. }
  133. .dropdown-item:hover{
  134. background-color: #ffffff;
  135. }
  136. .dropdown-item:hover h6{
  137. color: var(--pry-color);
  138. }
  139. .dropdown-menu li:not(:last-child) {
  140. border-bottom: 1px solid #ccc;
  141. }
  142. .top {
  143. background-image: url('/img/top-bg.jpg');
  144. background-size: cover;
  145. background-position: top right;
  146. background-repeat: no-repeat;
  147. min-height: 600px;
  148. color: #333;
  149. display: grid;
  150. background-position: center;
  151. border-top:1px solid #f9f9f9;
  152. }
  153. .top.physician {
  154. background-color: #f9f9f9;
  155. background-image: url('/img/top_banner.jpg');
  156. background-position: left;
  157. min-height: 500px;
  158. }
  159. .top .light-bg p{
  160. font-size: 19px;
  161. }
  162. .top .light-bg {
  163. padding: 40px 30px;
  164. }
  165. .light-bg {
  166. background-color: rgba(255,255,255, .9);
  167. }
  168. .dark {
  169. background-image: url('/img/top-overlay.png');
  170. background-position: left;
  171. background-size: cover;
  172. min-height: 400px;
  173. width: 100%;
  174. display: grid;
  175. place-items: center;
  176. }
  177. .md-title {
  178. font-size: 45px;
  179. margin-bottom: 20px;
  180. /* font-weight: 900; */
  181. }
  182. .title {
  183. font-weight: 300;
  184. font-size: 48px;
  185. /* line-height: 56px; */
  186. letter-spacing: -0.912px;
  187. }
  188. .subtitle {
  189. font-weight: 300;
  190. font-size: 39px;
  191. /* line-height: 56px; */
  192. letter-spacing: -0.741px;
  193. }
  194. .v-center {
  195. vertical-align: middle;
  196. }
  197. .steps {
  198. display: flex;
  199. justify-content: space-between;
  200. align-items: flex-start;
  201. }
  202. .steps > div {
  203. width: 100%;
  204. }
  205. .fp-container {
  206. border: 1px solid #DDE0E2;
  207. border-radius: 2px;
  208. padding: 40px 70px;
  209. background-color: #fff;
  210. border-bottom: 4px solid var(--pry-color);
  211. position: absolute;
  212. top: -26.5rem;
  213. }
  214. .fp-container img {
  215. height: 40px;
  216. width: 40px;
  217. object-fit: contain;
  218. margin-right: 20px;
  219. }
  220. .fp-container h5, .header {
  221. font-weight: 400;
  222. font-size: 30px;
  223. }
  224. .header {
  225. font-weight: 300;
  226. }
  227. .box-1 {
  228. display: grid;
  229. padding: 50px 60px;
  230. background-color: #0276CF;
  231. color: #fff;
  232. height: 100%;
  233. }
  234. .box-2 {
  235. display: grid;
  236. padding: 50px;
  237. background-color: #5C6D7A;
  238. color: #fff;
  239. }
  240. .box-3 {
  241. display: grid;
  242. height: 100%;
  243. padding: 50px;
  244. background-color: #778FA1;
  245. color: #fff;
  246. }
  247. .box-4{
  248. display: grid;
  249. height: 100%;
  250. padding: 50px;
  251. background-color: #F7F7F7;
  252. }
  253. .doc-bg {
  254. background-size: cover;
  255. background-position: top;
  256. }
  257. .text-justify {
  258. text-align: justify;
  259. }
  260. .ft-spacing {
  261. margin-left: 100px;
  262. padding-left: 100px;
  263. }
  264. .fw-thin {
  265. font-weight: 300;
  266. }
  267. .about-hem {
  268. background-image: url('/img/about-hem.jpg');
  269. background-size: cover;
  270. background-repeat: no-repeat;
  271. background-position: center right;
  272. background-color: #5C6D7A;
  273. color: #fff;
  274. }
  275. .cause {
  276. color: #545E65;
  277. }
  278. .cause:hover {
  279. transition: .5s;
  280. color: var(--pry-color);
  281. }
  282. .fx-symptoms {
  283. display: flex;
  284. align-items: flex-start;
  285. justify-content: space-between;
  286. /* flex-wrap: wrap; */
  287. gap:10px;
  288. }
  289. .fx-symptoms p {
  290. font-size: 15px;
  291. text-align: center;
  292. }
  293. .d-center {
  294. display: grid;
  295. place-items: center;
  296. }
  297. .guide-img {
  298. width: 40px;
  299. height: 40px;
  300. object-fit: contain;
  301. }
  302. .tt-container {
  303. display: flex;
  304. justify-content: space-between;
  305. }
  306. .tt-container > div {
  307. width: 100%;
  308. }
  309. .tt-container > div:nth-child(1) {
  310. background-color: #0276CF;
  311. color: #fff;
  312. }
  313. .tt-container > div:nth-child(2) {
  314. background-color: #5C6D7A;
  315. color: #fff;
  316. }
  317. .tt-container > div:nth-child(3) {
  318. background-color: #778FA1;
  319. color: #fff;
  320. }
  321. .tt-container > div:nth-child(4) {
  322. background-color: #F7F7F7;
  323. }
  324. .accordion-header button {
  325. font-size: 20px;
  326. font-weight: 300;
  327. }
  328. .accordion-item {
  329. border:0;
  330. border-bottom: 1px solid #ddd;
  331. }
  332. .accordion-button:focus{
  333. box-shadow: none !important;
  334. }
  335. .accordion-button:not(.collapsed){
  336. background-color: #ffffff;
  337. border-bottom: 1px solid #ddd;
  338. }
  339. .border-lg-start {
  340. border-left: 1px solid #ccc;
  341. }
  342. @media screen and (max-width:1399px) {
  343. .nav-item {
  344. margin-left: 1rem;
  345. }
  346. .fp-container {
  347. padding: 40px;
  348. top:-25rem;
  349. margin-bottom: -26.5rem;
  350. position: relative;
  351. }
  352. .fp-container img {
  353. height: 30px;
  354. width: 30px;
  355. }
  356. .fp-container h5 {
  357. font-size: 25px;
  358. }
  359. .title {
  360. font-size: 45px;
  361. }
  362. .subtitle {
  363. font-size: 34px;
  364. }
  365. .tt-container {
  366. flex-wrap: wrap;
  367. }
  368. .tt-container > div{
  369. width: 50%;
  370. }
  371. }
  372. @media screen and (max-width:1199px) {
  373. .fp-container {
  374. top:0;
  375. margin-bottom: 0;
  376. padding: 30px 40px;
  377. }
  378. .nav-item {
  379. margin-left: .5rem;
  380. }
  381. .nav-link {
  382. font-size: 15px;
  383. }
  384. .navbar-brand {
  385. margin: 0;
  386. }
  387. .navbar-brand img {
  388. max-width: 200px;
  389. }
  390. .top-blue a {
  391. font-size: 14px;
  392. padding-bottom: 0;
  393. }
  394. .ft-spacing {
  395. padding-left: 50px;
  396. margin-left: 50px;
  397. }
  398. .box-1, .box-2, .box-3, .box-4 {
  399. padding: 30px 40px;
  400. }
  401. .header{
  402. font-size: 25px;
  403. }
  404. }
  405. @media screen and (max-width:991px) {
  406. #navBar {
  407. position: absolute;
  408. background-color: #ffffff;
  409. width: 100%;
  410. left: 0;
  411. margin-top: 17px;
  412. }
  413. .dropdown-menu {
  414. margin-top: 0 !important;
  415. margin-bottom: 10px;
  416. }
  417. .navbar-toggler {
  418. padding: 10px;
  419. border: 1px solid #aaa;
  420. margin-left: 10px;
  421. }
  422. .navbar-toggler:focus {
  423. box-shadow: none !important;
  424. }
  425. .navbar-brand img {
  426. max-width: 250px;
  427. }
  428. .steps {
  429. flex-wrap: wrap;
  430. }
  431. .steps > div {
  432. width: 45%;
  433. padding-bottom: 30px;
  434. }
  435. }
  436. @media screen and (max-width:767px) {
  437. .ft-spacing {
  438. padding-left: 30px;
  439. margin-left: 30px;
  440. }
  441. .fx-symptoms {
  442. flex-wrap: wrap;
  443. }
  444. .fx-symptoms > div {
  445. width: 30%;
  446. }
  447. .tt-container > div{
  448. width: 100%;
  449. }
  450. .md-title {
  451. font-size: 35px
  452. }
  453. }
  454. @media screen and (max-width:500px) {
  455. .navbar-brand img {
  456. max-width: 170px;
  457. }
  458. .steps > div {
  459. width: 100%;
  460. padding-bottom: 0px;
  461. }
  462. .top .title {
  463. text-align: center;
  464. }
  465. .title {
  466. font-size: 38px;
  467. }
  468. .subtitle {
  469. font-size: 30px;
  470. }
  471. .header {
  472. font-size: 26px;
  473. }
  474. .ft-spacing {
  475. padding-left: 20px;
  476. margin-left:10px;
  477. }
  478. .profile-img {
  479. height: 150px;
  480. width: 150px;
  481. margin: auto;
  482. overflow: hidden;
  483. }
  484. .profile-img img{
  485. height: 150px;
  486. width: 150px;
  487. object-fit: cover;
  488. object-position: top;
  489. }
  490. .md-title {
  491. font-size: 29px;
  492. }
  493. .btn-pry, .btn-outline-pry{
  494. font-size: 16px
  495. }
  496. .btn-fw button {
  497. width: 100%;
  498. }
  499. .top {
  500. background-image: none !important;
  501. /* min-height: auto; */
  502. }
  503. .top >.py-5 {
  504. padding: 0 !important;
  505. }
  506. }