layout.css 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. html {
  2. scroll-behavior: smooth;
  3. height: 100%;
  4. }
  5. body {
  6. background: #FFF;
  7. min-height: 100%;
  8. }
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. display: flex;
  15. flex-direction: column;
  16. min-height: 100vh;
  17. width: 100%;
  18. }
  19. footer {
  20. margin-top: auto;
  21. }
  22. a:hover {
  23. text-decoration: none;
  24. }
  25. :root {
  26. --pry-color: #154159;
  27. --pry-dark-color: #1428AC;
  28. --sec-color: #fff5cc;
  29. }
  30. ::-moz-selection { background: var(--pry-color); color: #fff; }
  31. ::selection { background: var(--pry-color); color: #fff; }
  32. nav.navbar {
  33. position: relative;
  34. width: 100%;
  35. /* background-color: #fff; */
  36. padding: 0;
  37. }
  38. .logo, .small {
  39. width: 250px;
  40. transition: 0.3s;
  41. }
  42. .small {
  43. transition: 0.3s;
  44. }
  45. nav .container {
  46. height: 90px;
  47. }
  48. .navbar-nav {
  49. margin-left: 240px;
  50. margin-bottom: 0;
  51. }
  52. .navbar-nav li{
  53. display: inline;
  54. padding: 0 5px;
  55. font-size: 15px;
  56. }
  57. .navbar-nav li a {
  58. color: #000000;
  59. font-weight: 500;
  60. }
  61. .navbar-nav li a:hover {
  62. color: var(--pry-color);
  63. }
  64. .nav-item a {
  65. color: var(--pry-dark-color);
  66. }
  67. .nav-item a:hover {
  68. color: var(--pry-color);
  69. }
  70. .nav-links {
  71. font-size: 13px;
  72. }
  73. .nav-links a {
  74. color: var(--pry-color);
  75. }
  76. .top h4 {
  77. font-size: 45px;
  78. font-weight: 700;
  79. }
  80. .top p {
  81. font-size: 16px;
  82. margin-top: 20px;
  83. }
  84. .call, .call-light {
  85. padding: 10px 20px;
  86. border: 1px solid var(--pry-color);
  87. width: fit-content;
  88. }
  89. .call-light {
  90. border-color:#fff;
  91. }
  92. .call a, .call-light a{
  93. font-size: 30px;
  94. color: var(--pry-color);
  95. font-weight: 700;
  96. }
  97. .call-light a {
  98. color: #fff;
  99. }
  100. .call:hover {
  101. border-color: var(--pry-color);
  102. }
  103. .announcement {
  104. display: flex;
  105. margin-top: 50px;
  106. }
  107. .special {
  108. text-transform: uppercase;
  109. background-color: #154159;
  110. flex-basis: 40%;
  111. }
  112. .special img {
  113. width: 100%;
  114. height: 220px;
  115. }
  116. .special h4{
  117. font-size: 18px;
  118. color: #fff;
  119. font-weight: 400;
  120. text-align: center;
  121. margin: 20px 0;
  122. }
  123. .special-content {
  124. flex-basis: 60%;
  125. padding: 0 10px;
  126. background-color:var(--sec-color);
  127. }
  128. .about {
  129. padding: 80px 0;
  130. }
  131. .about img, .hope img {
  132. width: 100%;
  133. }
  134. p {
  135. font-size: 20px;
  136. }
  137. .btn-pry, .blue-card, .btn-pry-light {
  138. background-color: var(--pry-color);
  139. color: #fff;
  140. border-radius: 0;
  141. font-size: 18px;
  142. font-weight: 500;
  143. }
  144. .btn-pry-light {
  145. color: var(--pry-color);
  146. border: 1px solid var(--pry-color);
  147. background: #fff;
  148. }
  149. .btn-pry:hover, .blue-card:hover {
  150. background-color: var(--pry-color);
  151. color: #fff;
  152. }
  153. .btn-pry-light {
  154. border: 1px solid #fff;
  155. }
  156. .white-card {
  157. border-left:3px solid var(--pry-color);
  158. padding: 20px;
  159. background-color: #ffffff;
  160. }
  161. .white-card p {
  162. margin-bottom: 13px;
  163. }
  164. .green-card {
  165. border-left:6px solid var(--sec-color);
  166. border-right:3px solid var(--pry-color);
  167. display: flex;
  168. align-items: center;
  169. flex-wrap: wrap;
  170. width: 100%;
  171. background-color: #F1F2F2;
  172. transition: 0.3s;
  173. color: var(--pry-color);
  174. }
  175. .green-card:hover {
  176. background-color: var(--sec-color);
  177. transition: 0.3s;
  178. }
  179. .outreach-container {
  180. display: flex;
  181. flex-wrap: wrap;
  182. margin-top: 20px;
  183. }
  184. .outreach-container div {
  185. margin-right: 20px;
  186. margin-bottom: 20px;
  187. width: 250px;
  188. padding: 10px;
  189. cursor: pointer;
  190. }
  191. .outreach-container p {
  192. font-size: 17px;
  193. font-weight: 700;
  194. letter-spacing: 1.1px;
  195. }
  196. .outreach-container img {
  197. width: 50px;
  198. margin-right: 10px;
  199. }
  200. .flex-container {
  201. display: flex;
  202. align-items: center;
  203. }
  204. .flex-container div {
  205. flex-basis: 60%;
  206. }
  207. .flex-container .size-4 {
  208. flex-basis: 35%;
  209. margin-right: 12px;
  210. }
  211. .bg-grey{
  212. background-color: #F1F2F2;
  213. }
  214. .steps {
  215. background-color: var(--sec-color);
  216. border-bottom: 2px solid var(--pry-color);
  217. position: relative;
  218. }
  219. .title {
  220. font-weight: 500;
  221. font-size: 30px;
  222. }
  223. .popper {
  224. cursor: pointer;
  225. }
  226. .popover {
  227. padding: 12px;
  228. }
  229. .popover h6 {
  230. font-size: 18px;
  231. }
  232. /* .steps-container {
  233. display: none;
  234. } */
  235. .steps-content {
  236. display: flex;
  237. flex-wrap: wrap;
  238. justify-content: center;
  239. }
  240. .steps-content .content {
  241. flex-basis: 45%;
  242. background-color: #ffffff;
  243. border-left:2px solid var(--pry-color);
  244. padding: 20px;
  245. margin-right: 20px;
  246. margin-bottom: 20px;
  247. font-size: 18px;
  248. }
  249. .plus {
  250. width: 100%;
  251. text-align: center;
  252. position: absolute;
  253. bottom:-20px;
  254. left:0;
  255. }
  256. .list {
  257. list-style:none;
  258. }
  259. .plus a::before{
  260. font-family: "Font Awesome 5 Free";
  261. font-weight: 900;
  262. content: "\f055";
  263. font-size: 25px;
  264. color:var(--pry-dark-color);
  265. border-radius: 100%;
  266. }
  267. .minus a::before{
  268. font-family: "Font Awesome 5 Free";
  269. font-weight: 900;
  270. content: "\f056";
  271. font-size: 25px;
  272. color:var(--pry-dark-color);
  273. border-radius: 100%;
  274. }
  275. .lifeline {
  276. margin-top: 10px;
  277. display: flex;
  278. align-items: center;
  279. justify-content: center;
  280. }
  281. .lifeline p{
  282. width: 50%;
  283. margin-bottom: 10px;
  284. font-weight: 700;
  285. }
  286. .lifeline img{
  287. width: 25%;
  288. }
  289. .role-container {
  290. display: flex;
  291. }
  292. .role-container .content {
  293. width: 50%;
  294. background-color: #ffffff;
  295. padding: 15px;
  296. border: 2px solid #fff;
  297. margin-right: 10px;
  298. }
  299. .role-container .content p {
  300. margin-bottom: 12px;
  301. font-size: 18px;
  302. }
  303. .role-container .content h5 {
  304. letter-spacing: 1.1px;
  305. font-size: 17px;
  306. font-weight: bold;
  307. color: var(--pry-color);
  308. }
  309. .role-container .content:hover {
  310. border: 2px solid var(--pry-color);
  311. cursor: pointer;
  312. }
  313. .contact {
  314. display: flex;
  315. justify-content: space-between;
  316. }
  317. .contact > div {
  318. width: 48%;
  319. padding: 20px;
  320. }
  321. .contact .phone {
  322. background-color: var(--pry-color);
  323. display: flex;
  324. flex-direction: column;
  325. align-items: center;
  326. color: #fff;
  327. }
  328. .links ul li{
  329. display: inline;
  330. margin-right: 20px;
  331. font-size: 20px;
  332. text-transform: uppercase;
  333. font-weight: 500;
  334. }
  335. .social {
  336. display: flex;
  337. margin-top: 30px;
  338. }
  339. .social a {
  340. height: 40px;
  341. display: flex;
  342. align-items: center;
  343. justify-content: center;
  344. width: 40px;
  345. font-size: 25px;
  346. border: 1.5px solid var(--pry-color);
  347. color: var(--pry-color);
  348. margin-right: 10px;
  349. }
  350. .social a:hover {
  351. background-color: var(--pry-color);
  352. color: #fff;
  353. }
  354. .partners {
  355. text-align: right;
  356. }
  357. .partners p, .partners p a{
  358. font-size: 15px;
  359. font-weight: 500;
  360. margin-bottom: 12px;
  361. color: var(--pry-color);
  362. }
  363. .partners p a:hover {
  364. color: var(--pry-dark-color);
  365. }
  366. .footer {
  367. display: flex;
  368. justify-content: space-between;
  369. flex-wrap: wrap;
  370. }
  371. .footer .links a {
  372. color: var(--pry-color);
  373. }
  374. .footer .images img{
  375. filter: grayscale(100%);
  376. opacity: 0.6;
  377. margin-left: 10px;
  378. }
  379. .footer .images img:hover{
  380. filter: grayscale(0%);
  381. opacity: 1;
  382. }
  383. footer small {
  384. font-size: 11px;
  385. }
  386. .content-flex {
  387. display: flex;
  388. margin-top: 70px;
  389. }
  390. .content-flex .sidebar {
  391. flex-basis: 25%;
  392. border-right: 1px solid #ddd;
  393. }
  394. .content-flex .content {
  395. flex-basis: 75%;
  396. }
  397. .img-overlay {
  398. background:rgb(21, 65, 89);
  399. }
  400. .img-overlay img{
  401. width: 100%;
  402. opacity: 0.6;
  403. }
  404. .mobile {
  405. display: none;
  406. }
  407. @media screen and (max-width:991px) {
  408. .announcement {
  409. display: block;
  410. }
  411. .special h4 {
  412. padding: 10px 0;
  413. margin-bottom: 0;
  414. }
  415. .special img {
  416. display: none;
  417. }
  418. .special-content {
  419. padding: 10px;
  420. }
  421. .special-content p {
  422. margin: 0;
  423. }
  424. .title {
  425. font-size: 25px;
  426. }
  427. .outreach-container div, .blue-card {
  428. max-width: 100%;
  429. width:100%;
  430. margin-right: 0;
  431. }
  432. .flex-container .size-4 {
  433. flex-basis: 40%;
  434. }
  435. .contact {
  436. display: block;
  437. }
  438. .contact > div {
  439. width: 100%;
  440. margin-bottom: 20px;
  441. }
  442. .footer, .social{
  443. justify-content: center;
  444. text-align: center;
  445. }
  446. .partners {
  447. margin-top: 20px;
  448. text-align: center;
  449. }
  450. .role-container {
  451. flex-wrap: wrap;
  452. }
  453. .role-container .content {
  454. width: 100%;
  455. margin-bottom: 20px;
  456. }
  457. .lifeline p {
  458. width: 40%;
  459. }
  460. .btn-pry, .blue-card, .btn-pry-light {
  461. font-size: 16px;
  462. }
  463. #navBar {
  464. position: absolute;
  465. width: 100%;
  466. background-color: #ffffff;
  467. top: 70px;
  468. right: 0;
  469. padding: 10px;
  470. border-top: 1px solid #ddd;
  471. }
  472. .navbar-nav {
  473. margin-left: 0;
  474. }
  475. .nav-item {
  476. border-bottom: 1px solid #ddd;
  477. }
  478. .nav-links > div{
  479. text-align: left !important;
  480. margin-top: 10px;
  481. }
  482. .logo {
  483. width: 220px;
  484. }
  485. .navbar-toggler {
  486. color: var(--pry-color);
  487. border:1px solid var(--pry-color);
  488. background-color: #fff;
  489. padding: 12px;
  490. margin-bottom: 0;
  491. margin-right: 12px;
  492. }
  493. .navbar-toggler:hover {
  494. background-color: var(--pry-color);
  495. color: #fff;
  496. }
  497. nav {
  498. padding: 0 10px;
  499. }
  500. }
  501. @media screen and (max-width:767px) {
  502. .web {
  503. display: none;
  504. }
  505. .mobile {
  506. display: block;
  507. }
  508. .flex-container, .content-flex {
  509. display: block;
  510. }
  511. .img-overlay, .sidebar h4 {
  512. display: none;
  513. }
  514. .content-flex .sidebar {
  515. padding-top: 20px;
  516. border:none;
  517. }
  518. .content-flex .content {
  519. padding-left: 0 !important;
  520. padding-right: 0 !important;
  521. }
  522. .flex-container .size-4 {
  523. margin-bottom: 20px;
  524. }
  525. .steps-container .content {
  526. flex-basis: 100%;
  527. margin-right: 0;
  528. }
  529. .lifeline {
  530. display: block;
  531. text-align: center;
  532. }
  533. .lifeline p {
  534. width: 100%;
  535. }
  536. }
  537. .line-height-110 {
  538. line-height: 110%;
  539. }