style.css 8.6 KB

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