style.css 8.0 KB

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