style.css 6.9 KB

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