style.css 8.7 KB

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