style.css 8.2 KB

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