styles.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116
  1. @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&family=Libre+Franklin:wght@400;900&family=Special+Elite&display=swap');
  2. body{
  3. background-color: #d1d1c7;
  4. background-image: url("../img/billie-holiday.png");
  5. }
  6. .modal-content {
  7. background-color: #fffdf0;
  8. background-image: url("../img/billie-holiday.png");
  9. }
  10. .navbar .logo-image img {
  11. width: 250px;
  12. }
  13. .btn-solid-reg, .btn-solid-sm {
  14. text-shadow: none;
  15. box-shadow: 0px 1px 1px #fff, inset 0 0 5px rgba(0,0,0,.5);
  16. margin-bottom:10px;
  17. }
  18. .img-fluid {
  19. border: 5px solid rgba(11, 72, 110, .5);
  20. box-shadow: inset 0 0 5px rgba(0,0,0,.5), 1px 1px 1px #0b486e;
  21. }
  22. #practice {
  23. scroll-margin: 150px 0 0 0;
  24. }
  25. .legal-icons {
  26. font-size: 2rem;
  27. color:rgba(11, 72, 110, .7);
  28. text-shadow: 0px 1px 1px #fff, 0 0 1px #000;
  29. }
  30. .services {
  31. background-color: #ffffff93;
  32. border-radius: 5px;
  33. min-height: 490px;
  34. }
  35. .card-title {
  36. font-weight:900;
  37. }
  38. .testimonial {
  39. background: none;
  40. color:#e3e7d9;
  41. }
  42. #attorneys {
  43. scroll-margin: 150px 0 0 0;
  44. }
  45. #contact .fas, .fab {
  46. color:#0B486E;
  47. }
  48. .franklin {
  49. display: block;
  50. font-family: 'Libre Franklin', sans-serif;
  51. color:#0b486e;
  52. text-shadow: 0px 1px 1px #fff, 0 0 1px #000;
  53. -webkit-background-clip: text;
  54. background-clip: text;
  55. }
  56. .franklin_dk {
  57. display: block;
  58. font-family: 'Libre Franklin', sans-serif;
  59. color:#dde0dc;
  60. text-shadow: 0 -1px 1px rgb(0, 0, 0);
  61. -webkit-background-clip: text;
  62. background-clip: text;
  63. }
  64. .neutral_bg {
  65. background-color: #d1d1c7;
  66. }
  67. .neutral_txt {
  68. color:#d1d1c7;
  69. }
  70. .blue_dk_bg {
  71. background-color:#051c2b;
  72. }
  73. .blue_bg {
  74. background-color: #0b486e;
  75. }
  76. .red_bg {
  77. background-color: #6d0000;
  78. }
  79. .red_txt {
  80. color: #6d0000;
  81. }
  82. .red_dk_bg {
  83. background-color: #360000;
  84. }
  85. .bg-paper {
  86. background-color: #ffffff93;
  87. border-radius: 5px;
  88. }
  89. /*==================================================
  90. ###################### Base ########################
  91. ===================================================*/
  92. body,
  93. html {
  94. width: 100%;
  95. height: 100%;
  96. }
  97. body, p {
  98. }
  99. h1 {
  100. color: #222222;
  101. font-weight: 700;
  102. font-size: 2.5rem;
  103. line-height: 3.25rem;
  104. letter-spacing: -0.4px;
  105. }
  106. h2 {
  107. color: #222222;
  108. font-weight: 700;
  109. font-size: 2rem;
  110. line-height: 2.625rem;
  111. letter-spacing: -0.4px;
  112. }
  113. h3 {
  114. color: #222222;
  115. font-weight: 700;
  116. font-size: 1.75rem;
  117. line-height: 2.25rem;
  118. letter-spacing: -0.2px;
  119. }
  120. h4 {
  121. color: #222222;
  122. font-weight: 700;
  123. font-size: 1.5rem;
  124. line-height: 2rem;
  125. letter-spacing: -0.2px;
  126. }
  127. h5 {
  128. color: #222222;
  129. font-weight: 700;
  130. font-size: 1.25rem;
  131. line-height: 1.625rem;
  132. }
  133. h6 {
  134. color: #222222;
  135. font-weight: 700;
  136. font-size: 1rem;
  137. line-height: 1.375rem;
  138. }
  139. .p-large {
  140. font-size: 1.125rem;
  141. line-height: 1.75rem;
  142. }
  143. .p-small {
  144. font-size: 0.875rem;
  145. line-height: 1.5rem;
  146. }
  147. .testimonial-text {
  148. font-style: italic;
  149. }
  150. .testimonial-author {
  151. font-weight: 700;
  152. font-size: 1.25rem;
  153. line-height: 1.75rem;
  154. }
  155. .li-space-lg li {
  156. margin-bottom: 0.5rem;
  157. }
  158. a {
  159. color: #6D0000;
  160. text-decoration: underline;
  161. }
  162. a:hover {
  163. color: #5e6576;
  164. text-decoration: underline;
  165. }
  166. .no-line {
  167. text-decoration: none;
  168. }
  169. .no-line:hover {
  170. text-decoration: none;
  171. }
  172. .blue {
  173. color: #0B486E;
  174. }
  175. .bg-gray {
  176. background-color: #f9f9f9;
  177. }
  178. .section-title {
  179. display: inline-block;
  180. margin-bottom: 0.75rem;
  181. padding: 0.125rem 1.75rem;
  182. border-radius: 30px;
  183. background-color: #ffe7eb;
  184. color: #ff5574;
  185. font-weight: 600;
  186. font-size: 0.875rem;
  187. }
  188. .btn-solid-reg {
  189. display: inline-block;
  190. padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  191. border-radius: 30px;
  192. background-color: rgb(11, 72, 110);
  193. color: #ffffff;
  194. font-weight: 600;
  195. line-height: 0;
  196. text-decoration: none;
  197. transition: all 0.2s;
  198. }
  199. .btn-solid-reg:hover {
  200. background-color: transparent;
  201. color: #0B486E; /* needs to stay here because of the color property of a tag */
  202. text-decoration: none;
  203. }
  204. .btn-solid-lg {
  205. display: inline-block;
  206. padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  207. border: 1px solid #0976BA;
  208. border-radius: 30px;
  209. background-color: #0B486E;
  210. color: #ffffff;
  211. font-weight: 600;
  212. font-size: 22px;
  213. line-height: 0;
  214. text-decoration: none;
  215. transition: all 0.2s;
  216. }
  217. .btn-solid-lg:hover {
  218. background-color: transparent;
  219. color: #0976BA; /* needs to stay here because of the color property of a tag */
  220. text-decoration: none;
  221. }
  222. .btn-solid-sm {
  223. display: inline-block;
  224. padding: 1rem 1.5rem 1rem 1.5rem;
  225. border-radius: 30px;
  226. background-color: #ff5574;
  227. color: #ffffff;
  228. font-weight: 600;
  229. font-size: 22px;
  230. line-height: 0;
  231. text-decoration: none;
  232. transition: all 0.2s;
  233. }
  234. .btn-solid-sm:hover {
  235. background-color: transparent;
  236. color: #ff5574; /* needs to stay here because of the color property of a tag */
  237. text-decoration: none;
  238. }
  239. .btn-outline-reg {
  240. display: inline-block;
  241. padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  242. border: 1px solid #5e6576;
  243. border-radius: 30px;
  244. background-color: transparent;
  245. color: #5e6576;
  246. font-weight: 600;
  247. font-size: 0.875rem;
  248. line-height: 0;
  249. text-decoration: none;
  250. transition: all 0.2s;
  251. }
  252. .btn-outline-reg:hover {
  253. background-color: #5e6576;
  254. color: #ffffff;
  255. text-decoration: none;
  256. }
  257. .btn-outline-lg {
  258. display: inline-block;
  259. padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  260. border: 1px solid #5e6576;
  261. border-radius: 30px;
  262. background-color: transparent;
  263. color: #5e6576;
  264. font-weight: 600;
  265. font-size: 0.875rem;
  266. line-height: 0;
  267. text-decoration: none;
  268. transition: all 0.2s;
  269. }
  270. .btn-outline-lg:hover {
  271. background-color: #5e6576;
  272. color: #ffffff;
  273. text-decoration: none;
  274. }
  275. .btn-outline-sm {
  276. display: inline-block;
  277. padding: 1rem 1.5rem 1rem 1.5rem;
  278. border: 1px solid #5e6576;
  279. border-radius: 30px;
  280. background-color: transparent;
  281. color: #5e6576;
  282. font-weight: 600;
  283. font-size: 0.875rem;
  284. line-height: 0;
  285. text-decoration: none;
  286. transition: all 0.2s;
  287. }
  288. .btn-outline-sm:hover {
  289. background-color: #5e6576;
  290. color: #ffffff;
  291. text-decoration: none;
  292. }
  293. select {
  294. -webkit-appearance: none;
  295. -moz-appearance: none;
  296. -ms-appearance: none;
  297. -o-appearance: none;
  298. appearance: none;
  299. background-image: url('../images/down-arrow.png');
  300. background-position: 98% 50%;
  301. background-repeat: no-repeat;
  302. outline: none;
  303. }
  304. /*==================================================
  305. ################### Navigation #####################
  306. ===================================================*/
  307. .navbar {
  308. font-weight: 600;
  309. font-size: 22px;
  310. line-height: 0.875rem;
  311. box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
  312. background-color: #d1d1c7;
  313. background-image: url("../img/billie-holiday.png");
  314. }
  315. .navbar .navbar-brand {
  316. padding-top: 0.25rem;
  317. padding-bottom: 0.25rem;
  318. }
  319. .navbar .logo-text {
  320. color: #222222;
  321. font-weight: 700;
  322. font-size: 1.875rem;
  323. line-height: 1rem;
  324. text-decoration: none;
  325. }
  326. .offcanvas-collapse {
  327. position: fixed;
  328. text-align:center;
  329. top: 135px;
  330. bottom: 0;
  331. left: 100%;
  332. width: 100%;
  333. padding-right: 1rem;
  334. padding-left: 1rem;
  335. overflow-y: auto;
  336. visibility: hidden;
  337. background-color: #fffdf0;
  338. background-image: url("../img/billie-holiday.png");
  339. transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  340. transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  341. transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  342. }
  343. .offcanvas-collapse.open {
  344. visibility: visible;
  345. -webkit-transform: translateX(-100%);
  346. transform: translateX(-100%);
  347. }
  348. .navbar .navbar-nav {
  349. margin-top: 0.75rem;
  350. margin-bottom: 0.5rem;
  351. }
  352. .navbar .nav-item .nav-link {
  353. padding-top: 0.625rem;
  354. padding-bottom: 0.625rem;
  355. color: #0B486E;
  356. text-decoration: none;
  357. transition: all 0.2s ease;
  358. }
  359. .navbar .nav-item.dropdown.show .nav-link,
  360. .navbar .nav-item .nav-link:hover,
  361. .navbar .nav-item .nav-link.active {
  362. color: #6d0000;
  363. }
  364. .navbar .navbar-toggler {
  365. padding: 0;
  366. border: none;
  367. font-size: 1.25rem;
  368. }
  369. .navbar .btn-solid-sm {
  370. border-color: #6d0000;
  371. background-color: #6d0000;
  372. }
  373. .navbar .btn-solid-sm:hover {
  374. background-color: transparent;
  375. color: #6d0000;
  376. }
  377. /*==================================================
  378. ##################### Header #######################
  379. ===================================================*/
  380. .header {
  381. padding-top: 8rem;
  382. padding-bottom: 40px;
  383. text-align: center;
  384. }
  385. .header .h1-large {
  386. margin-bottom: 1.25rem;
  387. }
  388. .header .p-large {
  389. margin-bottom: 2.75rem;
  390. }
  391. .header .btn-solid-lg {
  392. display: block;
  393. margin-bottom: 1.75rem;
  394. }
  395. .header .quote {
  396. display: block;
  397. color: #222222;
  398. }
  399. .header .quote i {
  400. margin-right: 0.5rem;
  401. color: #222222;
  402. }
  403. .header .text-container {
  404. margin-bottom: 5rem;
  405. }
  406. /*==================================================
  407. ################### Practice #######################
  408. ===================================================*/
  409. .cards-1 {
  410. }
  411. .cards-1 .card {
  412. margin-bottom: 5rem;
  413. padding: 3rem 2rem;
  414. border: 1px solid #00000020;
  415. }
  416. .cards-1 .card-icon {
  417. width: 90px;
  418. height: 90px;
  419. text-align: center;
  420. background-size: 90px 90px;
  421. }
  422. .cards-1 .card-icon .fas,
  423. .cards-1 .card-icon .far {
  424. margin-right: 0.75rem;
  425. color: #0B486E;
  426. font-size: 2rem;
  427. line-height: 98px;
  428. }
  429. .cards-1 .card-body {
  430. padding: 0;
  431. }
  432. .cards-1 .card-title {
  433. margin-bottom: 1.125rem;
  434. }
  435. .cards-1 .card-body p {
  436. margin-bottom: 1.125rem;
  437. }
  438. .cards-1 .list-unstyled {
  439. margin-bottom: 0;
  440. }
  441. .cards-1 .list-unstyled .fas {
  442. font-size: 0.875rem;
  443. line-height: 1.625rem;
  444. }
  445. .cards-1 .list-unstyled .flex-grow-1 {
  446. margin-left: 0.5rem;
  447. }
  448. .basic-1 {
  449. }
  450. .basic-1 .image-container {
  451. margin-bottom: 4rem;
  452. }
  453. .basic-1 h2 {
  454. margin-bottom: 1.875rem;
  455. }
  456. .basic-1 h2 span {
  457. font-weight: 400;
  458. }
  459. .basic-1 p:last-of-type {
  460. margin-bottom: 2rem;
  461. }
  462. .basic-1 .btn-solid-reg {
  463. cursor: pointer;
  464. }
  465. /*==================================================
  466. ###################### Modal #######################
  467. ===================================================*/
  468. .modal-dialog {
  469. max-width: 1150px;
  470. margin-right: 1rem;
  471. margin-left: 1rem;
  472. pointer-events: all;
  473. }
  474. .modal-content {
  475. padding: 2.75rem 1.25rem;
  476. }
  477. .modal-content .btn-close {
  478. position: absolute;
  479. right: 10px;
  480. top: 10px;
  481. }
  482. .modal-content .image-container {
  483. margin-bottom: 3rem;
  484. }
  485. .modal-content img {
  486. border-radius: 6px;
  487. }
  488. .modal-content h3 {
  489. margin-bottom: 0.5rem;
  490. }
  491. .modal-content hr {
  492. width: 44px;
  493. margin-top: 0.125rem;
  494. margin-bottom: 1.25rem;
  495. margin-left: 0;
  496. height: 2px;
  497. border: none;
  498. background-color: #53575a;
  499. }
  500. .modal-content h4 {
  501. margin-top: 2rem;
  502. margin-bottom: 0.625rem;
  503. }
  504. .modal-content .list-unstyled {
  505. margin-bottom: 2rem;
  506. }
  507. .modal-content .list-unstyled .fas {
  508. font-size: 0.75rem;
  509. line-height: 1.75rem;
  510. }
  511. .modal-content .list-unstyled .flex-grow-1 {
  512. margin-left: 0.5rem;
  513. }
  514. .modal-content .btn-solid-reg {
  515. margin-right: 0.75rem;
  516. }
  517. .modal-content .btn-outline-reg {
  518. cursor: pointer;
  519. }
  520. /*==================================================
  521. #################### Slider #######################
  522. ===================================================*/
  523. .slider-1 {
  524. /*padding-top: 9.75rem;
  525. padding-bottom: 4.5rem;*/
  526. padding-top: 30px;
  527. padding-bottom: 30px;
  528. }
  529. .slider-1 .slider-container {
  530. position: relative;
  531. }
  532. .slider-1 .swiper-container {
  533. position: static;
  534. width: 86%;
  535. }
  536. .slider-1 .swiper-button-prev:focus,
  537. .slider-1 .swiper-button-next:focus {
  538. /* even if you can't see it chrome you can see it on mobile device */
  539. outline: none;
  540. }
  541. .slider-1 .swiper-button-prev {
  542. left: -12px;
  543. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  544. background-size: 18px 28px;
  545. }
  546. .slider-1 .swiper-button-next {
  547. right: -12px;
  548. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  549. background-size: 18px 28px;
  550. }
  551. .slider-1 .card {
  552. border: none;
  553. }
  554. .slider-1 .card-body {
  555. padding: 0;
  556. }
  557. .slider-1 .quotes {
  558. margin-bottom: 3rem;
  559. width: 64px;
  560. }
  561. .slider-1 .testimonial-text {
  562. font-size: 1.1rem;
  563. line-height: 2rem;
  564. }
  565. .slider-1 .testimonial-image {
  566. display: inline-block;
  567. width: 70px;
  568. margin-bottom: 0.875rem;
  569. border-radius: 50%;
  570. }
  571. .slider-1 .testimonial-author {
  572. margin-bottom: 0.125rem;
  573. color: #222222;
  574. font-weight: 700;
  575. font-size: 1.125rem;
  576. }
  577. /*==================================================
  578. #################### Cards #########################
  579. ===================================================*/
  580. .cards-2 {
  581. padding-top: 5rem;
  582. padding-bottom: 2.25em;
  583. }
  584. .cards-2 .h2-heading {
  585. margin-bottom: 3.75rem;
  586. text-align: center;
  587. }
  588. .cards-2 .h2-heading span {
  589. font-weight: 400;
  590. }
  591. .cards-2 .card {
  592. margin-bottom: 5rem;
  593. padding: 4rem 1rem;
  594. border: 1px solid #5e6576;
  595. border-radius: 20px;
  596. background-color: transparent;
  597. text-align: center;
  598. }
  599. .cards-2 .card-body {
  600. padding: 0;
  601. }
  602. .cards-2 .card-title {
  603. margin-bottom: 2rem;
  604. }
  605. .cards-2 .card-title .decoration-lines {
  606. width: 30px;
  607. margin-bottom: 0.25rem;
  608. }
  609. .cards-2 .card-title .decoration-lines.flipped {
  610. transform: scaleX(-1);
  611. }
  612. .cards-2 .card-title span {
  613. margin-right: 0.75rem;
  614. margin-left: 0.75rem;
  615. color: #222222;
  616. font-weight: 700;
  617. font-size: 1.5rem;
  618. line-height: 2rem;
  619. letter-spacing: -0.2px;
  620. }
  621. .cards-2 .card-body .list-unstyled {
  622. margin-bottom: 3rem;
  623. }
  624. .cards-2 .card-body .list-unstyled li {
  625. margin-bottom: 0.625rem;
  626. }
  627. .cards-2 .card-body .price {
  628. margin-bottom: 3rem;
  629. color: #222222;
  630. font-weight: 700;
  631. font-size: 3rem;
  632. line-height: 2rem;
  633. letter-spacing: -0.2px;
  634. }
  635. /*==================================================
  636. #################### Footer ########################
  637. ===================================================*/
  638. .footer {
  639. position: relative;
  640. padding-top: 5rem;
  641. padding-bottom: 0;
  642. text-align: center;
  643. border-bottom: 3px solid #6D0000;
  644. }
  645. .footer .courthouse {
  646. }
  647. .footer div[class*="col"] {
  648. /* selects all elements which have classes starting with col */
  649. /* needed so that the absolute positioned decoration stays behind */
  650. position: relative;
  651. }
  652. .footer h4 {
  653. margin-bottom: 2rem;
  654. }
  655. .footer .fa-stack {
  656. width: 2em;
  657. margin-bottom: 1.25rem;
  658. margin-right: 0.375rem;
  659. font-size: 1.5rem;
  660. }
  661. .footer .fa-stack .fa-stack-1x {
  662. color: #ffffff;
  663. transition: all 0.2s ease;
  664. }
  665. .footer .fa-stack .fa-stack-2x {
  666. color: #ffffff;
  667. transition: all 0.2s ease;
  668. }
  669. .footer .fa-stack:hover .fa-stack-1x {
  670. color: #6D0000;
  671. }
  672. .footer .fa-stack:hover .fa-stack-2x {
  673. color: #222222;
  674. }
  675. .copyright {
  676. background-color:#021C2B;
  677. padding: 2rem 0 16rem;
  678. border-top: 7px solid #6E0000;
  679. text-align: center;
  680. color: #D1D1C7;
  681. }
  682. .copyright a {
  683. text-decoration: none;
  684. color:#D1D1C7
  685. }
  686. .copyright .list-unstyled,
  687. .copyright .statement {
  688. opacity: 0.7;
  689. }
  690. .copyright .list-unstyled li {
  691. margin-bottom: 0.75rem;
  692. }
  693. /*==================================================
  694. #################### TOP #######################
  695. ===================================================*/
  696. #myBtn {
  697. position: fixed;
  698. z-index: 99;
  699. bottom: 20px;
  700. right: 20px;
  701. display: none;
  702. width: 52px;
  703. height: 52px;
  704. border: none;
  705. border-radius: 50%;
  706. outline: none;
  707. background-color: #44434a;
  708. cursor: pointer;
  709. }
  710. #myBtn:hover {
  711. background-color: #1d1d21;
  712. }
  713. #myBtn img {
  714. margin-bottom: 0.25rem;
  715. width: 18px;
  716. }
  717. /*==================================================
  718. #################### Queries #######################
  719. ===================================================*/
  720. .ex-header {
  721. padding-top: 12rem;
  722. padding-bottom: 5rem;
  723. }
  724. .ex-basic-1 .list-unstyled .fas {
  725. font-size: 0.375rem;
  726. line-height: 1.625rem;
  727. }
  728. .ex-basic-1 .list-unstyled .flex-grow-1 {
  729. margin-left: 0.5rem;
  730. }
  731. .ex-basic-1 .text-box {
  732. padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  733. background-color: #f9f9f9;
  734. }
  735. .ex-cards-1 .card {
  736. border: none;
  737. background-color: transparent;
  738. }
  739. .ex-cards-1 .card .fa-stack {
  740. width: 2em;
  741. font-size: 1.125rem;
  742. }
  743. .ex-cards-1 .card .fa-stack-2x {
  744. color: #6168ff;
  745. }
  746. .ex-cards-1 .card .fa-stack-1x {
  747. width: 2em;
  748. color: #ffffff;
  749. font-weight: 700;
  750. line-height: 2.125rem;
  751. }
  752. .ex-cards-1 .card .list-unstyled .flex-grow-1 {
  753. margin-left: 2.25rem;
  754. }
  755. .ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
  756. margin-top: 0.125rem;
  757. margin-bottom: 0.5rem;
  758. }
  759. /*==================================================
  760. #################### Queries #######################
  761. ===================================================*/
  762. @media (max-width: 575.98px) {
  763. .navbar-brand {
  764. margin: 0 auto;
  765. }
  766. .navbar .logo-image img {
  767. width:200px;
  768. margin-left:30px;
  769. }
  770. }
  771. @media (min-width: 576px) {
  772. .navbar-brand {
  773. margin: 0 auto;
  774. }
  775. }
  776. @media (min-width: 768px) {
  777. .header {
  778. padding-top: 9rem;
  779. }
  780. .counter .counter-container {
  781. text-align: left;
  782. }
  783. .counter .counter-cell {
  784. display: inline-block;
  785. margin-right: 3rem;
  786. vertical-align: top;
  787. }
  788. .form-1 .list-unstyled li {
  789. display: inline-block;
  790. margin-right: 1rem;
  791. }
  792. .ex-basic-1 .text-box {
  793. padding: 1.75rem 2rem 0.875rem 2rem;
  794. }
  795. }
  796. @media (min-width: 992px) {
  797. .h2-heading {
  798. width: 35.25rem;
  799. margin-right: auto;
  800. margin-left: auto;
  801. }
  802. .p-heading {
  803. width: 46rem;
  804. margin-right: auto;
  805. margin-left: auto;
  806. }
  807. .navbar {
  808. padding-top: 1.75rem;
  809. box-shadow: none;
  810. transition: all 0.2s;
  811. background-color: #fffdf0;
  812. background-image: url("../img/billie-holiday.png");
  813. }
  814. .navbar.extra-page {
  815. padding-top: 0.5rem;
  816. }
  817. .navbar.top-nav-collapse {
  818. padding-top: 0.5rem;
  819. padding-bottom: 0.5rem;
  820. background-color: #fffdf0;
  821. background-image: url("../img/billie-holiday.png");
  822. box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
  823. }
  824. .offcanvas-collapse {
  825. position: static;
  826. top: auto;
  827. bottom: auto;
  828. left: auto;
  829. width: auto;
  830. padding-right: 0;
  831. padding-left: 0;
  832. overflow-y: visible;
  833. visibility: visible;
  834. }
  835. .offcanvas-collapse.open {
  836. -webkit-transform: none;
  837. transform: none;
  838. }
  839. .navbar .navbar-nav {
  840. margin-top: 0;
  841. margin-bottom: 0;
  842. }
  843. .navbar .nav-item .nav-link {
  844. padding-right: 0.75rem;
  845. padding-left: 0.75rem;
  846. }
  847. .navbar .dropdown-menu {
  848. padding-top: 0.75rem;
  849. padding-bottom: 0.75rem;
  850. box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
  851. }
  852. .navbar .dropdown-divider {
  853. width: 90%;
  854. }
  855. .navbar .nav-item .btn-solid-sm {
  856. margin-top: 0;
  857. margin-left: 1rem;
  858. }
  859. .header {
  860. padding-top: 13rem;
  861. text-align: left;
  862. }
  863. .header .text-container {
  864. margin-bottom: 0;
  865. }
  866. .header .btn-solid-lg {
  867. margin-right: 1.5rem;
  868. margin-bottom: 0;
  869. }
  870. .header .btn-solid-lg,
  871. .header .quote {
  872. display: inline-block;
  873. }
  874. .cards-1 .card {
  875. display: inline-block;
  876. width: 298px;
  877. vertical-align: top;
  878. }
  879. .cards-1 .card:nth-of-type(3n+2) {
  880. margin-right: 1rem;
  881. margin-left: 1rem;
  882. }
  883. .basic-1 .image-container {
  884. margin-bottom: 0;
  885. }
  886. .basic-1 .text-container {
  887. margin-top: 1.25rem;
  888. }
  889. .basic-1 h2 {
  890. width: 23rem;
  891. }
  892. /* Details Modal */
  893. /* Stops body and navbar shift on modal open */
  894. body.modal-open {
  895. overflow-y: scroll !important;
  896. padding-right: 0 !important;
  897. }
  898. body.modal-open .navbar {
  899. padding-right: 0 !important;
  900. }
  901. .modal {
  902. padding-right: 0 !important;
  903. }
  904. .modal-dialog {
  905. margin-top: 120px;
  906. margin-right: auto;
  907. margin-left: auto;
  908. }
  909. .modal-content .image-container {
  910. margin-bottom: 0;
  911. }
  912. .counter .text-container {
  913. margin-bottom: 0;
  914. }
  915. .counter .counter-cell {
  916. display: inline-block;
  917. vertical-align: top;
  918. }
  919. .filter .button {
  920. margin-right: 0.25rem;
  921. margin-left: 0.25rem;
  922. }
  923. .filter .grid {
  924. max-width: 750px;
  925. }
  926. .filter .element-item {
  927. display: inline-block;
  928. width: 351px;
  929. margin-right: 0.625rem;
  930. margin-left: 0.625rem;
  931. vertical-align: top;
  932. }
  933. .slider-1 .swiper-container {
  934. width: 92%;
  935. }
  936. .slider-1 .swiper-button-prev {
  937. left: -16px;
  938. width: 22px;
  939. background-size: 22px 34px;
  940. }
  941. .slider-1 .swiper-button-next {
  942. right: -16px;
  943. width: 22px;
  944. background-size: 22px 34px;
  945. }
  946. .slider-1 .details {
  947. display: flex;
  948. align-items: flex-start;
  949. }
  950. .slider-1 .text {
  951. flex-direction: column;
  952. }
  953. .slider-1 .testimonial-author {
  954. margin-top: 0.625rem;
  955. }
  956. .slider-1 .testimonial-image {
  957. margin-right: 1.125rem;
  958. }
  959. .cards-2 .card {
  960. display: inline-block;
  961. width: 298px;
  962. vertical-align: top;
  963. }
  964. .cards-2 .card:nth-of-type(3n+2) {
  965. margin-right: 1rem;
  966. margin-left: 1rem;
  967. }
  968. .basic-2 .text-container {
  969. padding: 8rem;
  970. }
  971. .footer h4 {
  972. width: 46rem;
  973. margin-right: auto;
  974. margin-left: auto;
  975. }
  976. .copyright {
  977. text-align: left;
  978. }
  979. .copyright .list-unstyled li {
  980. display: inline-block;
  981. margin-right: 1rem;
  982. }
  983. .copyright .statement {
  984. text-align: right;
  985. }
  986. .ex-cards-1 .card {
  987. display: inline-block;
  988. width: 296px;
  989. vertical-align: top;
  990. }
  991. .ex-cards-1 .card:nth-of-type(3n+2) {
  992. margin-right: 1rem;
  993. margin-left: 1rem;
  994. }
  995. }
  996. @media (min-width: 1200px) {
  997. .container {
  998. max-width: 1140px;
  999. }
  1000. .header {
  1001. overflow: hidden;
  1002. }
  1003. .header .image-container {
  1004. position: relative;
  1005. }
  1006. .header .image-container img {
  1007. position: absolute;
  1008. top: 0px;
  1009. left: 0px;
  1010. width: 100%;
  1011. max-width: none;
  1012. }
  1013. .cards-1 .card {
  1014. width: 342px;
  1015. }
  1016. .cards-1 .card:nth-of-type(3n+2) {
  1017. margin-right: 2.5rem;
  1018. margin-left: 2.5rem;
  1019. }
  1020. .basic-1 .image-container {
  1021. margin-right: 3.5rem;
  1022. }
  1023. .basic-1 .text-container {
  1024. margin-top: 5rem;
  1025. margin-left: 2.75rem;
  1026. }
  1027. .modal-content {
  1028. padding-right: 2rem;
  1029. padding-left: 2rem;
  1030. }
  1031. .counter {
  1032. overflow: hidden;
  1033. padding-top: 9rem;
  1034. }
  1035. .counter .image-container {
  1036. position: relative;
  1037. }
  1038. .counter .image-container img {
  1039. position: absolute;
  1040. top: -60px;
  1041. left: 30px;
  1042. width: 900px;
  1043. max-width: none;
  1044. }
  1045. .filter .grid {
  1046. max-width: 1120px;
  1047. }
  1048. .slider-1 .swiper-button-prev {
  1049. left: -24px;
  1050. }
  1051. .slider-1 .swiper-button-next {
  1052. right: -24px;
  1053. }
  1054. .cards-2 .card {
  1055. width: 342px;
  1056. }
  1057. .cards-2 .card:nth-of-type(3n+2) {
  1058. margin-right: 2.5rem;
  1059. margin-left: 2.5rem;
  1060. }
  1061. .basic-2 .text-container {
  1062. padding: 8rem 12rem;
  1063. }
  1064. .form-1 form {
  1065. width: 860px;
  1066. margin-right: auto;
  1067. margin-left: auto;
  1068. }
  1069. .footer .decoration-circles {
  1070. left: 0;
  1071. }
  1072. .ex-cards-1 .card {
  1073. width: 336px;
  1074. }
  1075. .ex-cards-1 .card:nth-of-type(3n+2) {
  1076. margin-right: 2.875rem;
  1077. margin-left: 2.875rem;
  1078. }
  1079. }