style.css 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705
  1. @charset "UTF-8";
  2. /*custom font*/
  3. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  4. @import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
  5. /*basic reset*/
  6. * {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. html {
  11. min-height: 100%;
  12. height: auto;
  13. /*Image only BG fallback*/
  14. /*background = gradient + image pattern combo*/
  15. /* background:
  16. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  17. }
  18. body {
  19. font-family: "Montserrat", sans-serif;
  20. background-color: white;
  21. font-size: 1.05rem;
  22. }
  23. .ml {
  24. margin-left: 10px;
  25. }
  26. .mr {
  27. margin-right: 10px;
  28. }
  29. .mb {
  30. margin-bottom: 12px;
  31. }
  32. .top {
  33. margin-top: 20px;
  34. position: -webkit-sticky;
  35. position: sticky;
  36. top: 0;
  37. left: 50%;
  38. z-index: 20;
  39. background-color: inherit;
  40. }
  41. .copy {
  42. cursor: pointer;
  43. }
  44. .navbar {
  45. background-color: white;
  46. }
  47. /* .imf {
  48. position: fixed;
  49. top: 0;
  50. left: 50%;
  51. transform: translateX(-50%);
  52. z-index: 3;
  53. } */
  54. .img_banner {
  55. background-image: url("images/banner_top1.jpg");
  56. background-repeat: no-repeat;
  57. background-size: contain;
  58. background-position: center;
  59. width: 100%;
  60. height: 65px;
  61. }
  62. /*form styles*/
  63. .img_logo {
  64. display: inline-block;
  65. margin: 0 auto;
  66. margin-bottom: 10px;
  67. }
  68. .title__block {
  69. display: -webkit-box;
  70. display: -ms-flexbox;
  71. display: flex;
  72. -webkit-box-pack: center;
  73. -ms-flex-pack: center;
  74. justify-content: center;
  75. -webkit-box-align: center;
  76. -ms-flex-align: center;
  77. align-items: center;
  78. margin: 0px auto;
  79. }
  80. .sub-logo {
  81. display: inline-block;
  82. font-weight: 700;
  83. font-size: 1.4rem;
  84. color: white;
  85. }
  86. .slogan {
  87. display: block;
  88. font-weight: 700;
  89. font-size: 1.2rem;
  90. color: white;
  91. }
  92. .notice_card {
  93. -webkit-box-sizing: border-box;
  94. box-sizing: border-box;
  95. width: 80%;
  96. margin: 0 10%;
  97. margin-bottom: 1.5rem;
  98. background: white;
  99. border: 0 none;
  100. border-radius: 3px;
  101. -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  102. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  103. padding: 10px 20px;
  104. line-height: 1.5rem;
  105. }
  106. #myProgress {
  107. width: 100%;
  108. background-color: #ddd;
  109. }
  110. #myBar {
  111. width: 10%;
  112. height: 30px;
  113. background-color: #1c7ce0;
  114. text-align: center;
  115. line-height: 30px;
  116. color: white;
  117. }
  118. .go_title {
  119. color: white;
  120. font-family: "Montserrat", sans-serif;
  121. padding: 1rem;
  122. }
  123. .nav-list {
  124. color: white;
  125. margin-top: 1.5rem;
  126. }
  127. .nav-list-item {
  128. font-size: 1.2rem;
  129. cursor: pointer;
  130. position: relative;
  131. }
  132. .nav-list-item::after {
  133. content: " ";
  134. position: absolute;
  135. width: 100%;
  136. height: 100%;
  137. left: 0;
  138. top: 0;
  139. border-bottom: 1px solid white;
  140. opacity: 0;
  141. -webkit-transition: all 0.4s;
  142. transition: all 0.4s;
  143. }
  144. .nav-list-item:hover::after {
  145. opacity: 1;
  146. }
  147. .loader {
  148. position: absolute;
  149. top: 30%;
  150. left: 45%;
  151. }
  152. .imgfr {
  153. width: 90px;
  154. height: 90px;
  155. border-radius: 50%;
  156. overflow: hidden;
  157. margin: 1rem auto 0 auto;
  158. }
  159. .card-title {
  160. font-family: "Montserrat", sans-serif;
  161. font-size: 1rem;
  162. }
  163. .strong {
  164. font-weight: 600;
  165. }
  166. .card {
  167. border: none;
  168. position: relative;
  169. }
  170. .card.active {
  171. border: 1px solid gray;
  172. }
  173. .card.active::before {
  174. position: absolute;
  175. content: "✓";
  176. bottom: 0;
  177. right: 5px;
  178. }
  179. .zoomin {
  180. display: none;
  181. position: absolute;
  182. bottom: 0;
  183. left: 0;
  184. }
  185. .script_err {
  186. display: none;
  187. }
  188. /* .history-modal {
  189. height: 80vh;
  190. }
  191. .history-modal .modal-content{
  192. height: 80vh;
  193. }
  194. .history-modal .modal-conten .modal-terms {
  195. height: 90%;
  196. overflow: scroll;
  197. } */
  198. .history {
  199. height: 75vh;
  200. overflow: scroll;
  201. }
  202. .historyList-item {
  203. padding: 1rem;
  204. display: block;
  205. width: 80%;
  206. margin: 1rem auto;
  207. border-radius: 10px;
  208. display: -webkit-box;
  209. display: -ms-flexbox;
  210. display: flex;
  211. font-size: 0.9rem;
  212. -webkit-box-shadow: 1px 1px 4px 1px #cfcfcf;
  213. box-shadow: 1px 1px 4px 1px #cfcfcf;
  214. background-color: white;
  215. }
  216. .historyList-link {
  217. text-decoration: none;
  218. color: #494949;
  219. }
  220. .historyList-link:hover {
  221. color: #7c7c7c;
  222. }
  223. .listimg__fr {
  224. width: 50px;
  225. height: 50px;
  226. border-radius: 50%;
  227. overflow: hidden;
  228. margin: auto .5rem;
  229. }
  230. .listimg__fr img {
  231. width: 100%;
  232. height: 100%;
  233. }
  234. .content {
  235. width: calc(100% - 250px);
  236. }
  237. /*form styles*/
  238. #msform {
  239. max-width: 1000px;
  240. min-width: 370px;
  241. margin: 50px auto;
  242. margin-bottom: 20px;
  243. text-align: center;
  244. position: relative;
  245. }
  246. #msform fieldset {
  247. background: white;
  248. border: 0 none;
  249. border-radius: 3px;
  250. -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  251. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  252. padding: 20px 30px;
  253. -webkit-box-sizing: border-box;
  254. box-sizing: border-box;
  255. width: 80%;
  256. margin: 3rem 10%;
  257. /*stacking fieldsets above each other*/
  258. position: relative;
  259. }
  260. /*Hide all except first fieldset*/
  261. /*inputs*/
  262. #msform input[type="text"],
  263. #msform textarea,
  264. #msform input[type="email"] {
  265. padding: 15px;
  266. border: 1px solid #ccc;
  267. border-radius: 3px;
  268. margin-bottom: 16px;
  269. width: 100%;
  270. -webkit-box-sizing: border-box;
  271. box-sizing: border-box;
  272. font-family: montserrat;
  273. color: #2c3e50;
  274. font-size: 14px;
  275. }
  276. /*buttons*/
  277. #msform .action-button {
  278. width: 100px;
  279. background: #1c7ce0;
  280. font-weight: bold;
  281. color: white;
  282. border: 0 none;
  283. border-radius: 1px;
  284. cursor: pointer;
  285. padding: 10px 5px;
  286. margin: 10px auto;
  287. display: block;
  288. }
  289. #msform .action-button:hover,
  290. #msform .action-button:focus {
  291. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  292. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  293. }
  294. #msform .next[disabled] {
  295. background-color: grey;
  296. }
  297. .draft-btn {
  298. padding: 10px 5px;
  299. background-color: #d1d1d1;
  300. display: inline-block;
  301. position: absolute;
  302. left: 1rem;
  303. bottom: 1rem;
  304. font-size: 1rem;
  305. -webkit-transition: all .3s;
  306. transition: all .3s;
  307. cursor: pointer;
  308. }
  309. .draft-btn:hover {
  310. background-color: #aaaaaa;
  311. }
  312. /*headings*/
  313. .fs-title {
  314. font-size: 15px;
  315. text-transform: uppercase;
  316. color: #2c3e50;
  317. margin-bottom: 10px;
  318. }
  319. .fs-subtitle {
  320. display: inline-block;
  321. font-weight: normal;
  322. font-size: 18px;
  323. color: #666;
  324. margin-bottom: 20px;
  325. padding-bottom: 3px;
  326. border-bottom: 2px solid #1c7ce0;
  327. margin-left: 2rem;
  328. margin-right: 2rem;
  329. }
  330. .fs-label {
  331. display: block;
  332. text-align: left;
  333. margin-bottom: 8px;
  334. }
  335. .fs-label > i {
  336. margin-right: 3px;
  337. }
  338. /*progressbar*/
  339. #progressbar {
  340. margin-bottom: 30px;
  341. overflow: hidden;
  342. /*CSS counters to number the steps*/
  343. counter-reset: step;
  344. }
  345. #progressbar li {
  346. list-style-type: none;
  347. color: black;
  348. text-transform: uppercase;
  349. font-size: 12px;
  350. width: 33.33%;
  351. float: left;
  352. position: relative;
  353. }
  354. #progressbar li:before {
  355. content: counter(step);
  356. counter-increment: step;
  357. width: 20px;
  358. line-height: 20px;
  359. display: block;
  360. font-size: 12px;
  361. color: #333;
  362. background: white;
  363. border-radius: 3px;
  364. margin: 0 auto 5px auto;
  365. }
  366. /*progressbar connectors*/
  367. #progressbar li:after {
  368. content: "";
  369. width: 100%;
  370. height: 2px;
  371. background: white;
  372. position: absolute;
  373. left: -50%;
  374. top: 9px;
  375. z-index: -1;
  376. /*put it behind the numbers*/
  377. }
  378. #progressbar li:first-child:after {
  379. /*connector not needed before the first step*/
  380. content: none;
  381. }
  382. /*marking active/completed steps green*/
  383. /*The number of the step and the connector before it = green*/
  384. #progressbar li.active:before,
  385. #progressbar li.active:after {
  386. background: #27ae60;
  387. color: white;
  388. }
  389. p.error-text {
  390. bottom: -23px;
  391. left: 24px;
  392. color: rgba(255, 0, 0, 0.7);
  393. font-size: 0.8em;
  394. margin-bottom: 0;
  395. }
  396. #term-error {
  397. color: rgba(255, 0, 0, 0.7);
  398. font-size: 0.8em;
  399. bottom: -23px;
  400. left: 24px;
  401. }
  402. select {
  403. padding: 15px;
  404. border: 1px solid #ccc;
  405. border-radius: 3px;
  406. margin-bottom: 10px;
  407. width: 100%;
  408. -webkit-box-sizing: border-box;
  409. box-sizing: border-box;
  410. font-family: montserrat;
  411. color: #2c3e50;
  412. font-size: 13px;
  413. background-color: transparent;
  414. }
  415. .pl-0 {
  416. padding-left: 0;
  417. }
  418. .terms {
  419. font-size: 0.9rem;
  420. width: 95%;
  421. min-width: 250px;
  422. height: auto;
  423. overflow: scroll;
  424. margin-bottom: 1rem;
  425. margin-left: auto;
  426. margin-right: auto;
  427. border: 1px solid #a3a3a3;
  428. line-height: 1.5rem;
  429. }
  430. .term-link a {
  431. text-decoration: none;
  432. color: black;
  433. }
  434. .h2 {
  435. text-align: center;
  436. font-size: 1.2rem;
  437. font-weight: 500;
  438. margin-top: 2rem;
  439. }
  440. .left_align {
  441. font-size: 18px;
  442. text-align: left;
  443. }
  444. #overlay {
  445. position: fixed;
  446. /* Sit on top of the page content */
  447. display: none;
  448. width: 100%;
  449. height: 100%;
  450. top: 0;
  451. left: 0;
  452. right: 0;
  453. bottom: 0;
  454. background-color: rgba(0, 0, 0, 0.5);
  455. z-index: 2;
  456. cursor: pointer;
  457. }
  458. .thankyou {
  459. margin: auto;
  460. min-width: 350px;
  461. height: 250px;
  462. margin-top: 190px;
  463. background: #fff;
  464. padding: 15px 20px;
  465. line-height: 25px;
  466. border-radius: 4px;
  467. text-align: center;
  468. }
  469. .thankyou input {
  470. margin-top: 40px;
  471. }
  472. .thankyou h3 {
  473. font-size: 2rem;
  474. font-weight: 700;
  475. color: #21ba45;
  476. line-height: 2.5rem;
  477. margin-bottom: 1.5rem;
  478. }
  479. .check_button {
  480. display: none;
  481. }
  482. .fs-label-type {
  483. background: transparent;
  484. padding: 5px;
  485. border: 1px solid black;
  486. border-radius: 5px;
  487. display: inline-block;
  488. }
  489. .check_button:checked + .fs-label-type {
  490. background-color: #27ae60;
  491. color: white;
  492. padding: 5px;
  493. border: 1px solid #27ae60;
  494. border-radius: 5px;
  495. }
  496. #checker1,
  497. #checker2 {
  498. display: inline;
  499. }
  500. .fs-label-info {
  501. background: transparent;
  502. padding: 5px;
  503. border: 1px solid black;
  504. border-radius: 5px;
  505. display: inline-block;
  506. margin-bottom: 8px;
  507. }
  508. input[type="radio"] {
  509. display: none;
  510. }
  511. input[type="radio"]:checked + .fs-label-info {
  512. background-color: #27ae60;
  513. color: white;
  514. padding: 5px;
  515. border: 1px solid #27ae60;
  516. border-radius: 5px;
  517. }
  518. input[type="checkbox"]:checked + .fs-label-info {
  519. background-color: #27ae60;
  520. color: white;
  521. padding: 5px;
  522. border: 1px solid #27ae60;
  523. border-radius: 5px;
  524. }
  525. .btn-exit {
  526. padding: 0.5rem 0.75rem;
  527. background-color: transparent;
  528. border: 1px solid black;
  529. margin-top: 0.3rem;
  530. }
  531. .btn-term-exit {
  532. padding: 0.5rem 0.75rem;
  533. background-color: transparent;
  534. border: 1px solid black;
  535. margin-top: 0.3rem;
  536. display: block;
  537. margin-left: auto;
  538. margin-right: auto;
  539. margin-bottom: 2rem;
  540. }
  541. footer {
  542. padding: 2rem;
  543. padding-top: 0.5rem;
  544. }
  545. .footer {
  546. display: -webkit-box;
  547. display: -ms-flexbox;
  548. display: flex;
  549. -webkit-box-pack: center;
  550. -ms-flex-pack: center;
  551. justify-content: center;
  552. }
  553. .img_fr {
  554. width: 80%;
  555. max-width: 850px;
  556. min-width: 300px;
  557. height: 60px;
  558. -o-object-fit: contain;
  559. object-fit: contain;
  560. -o-object-position: center;
  561. object-position: center;
  562. }
  563. .img_fr img {
  564. width: 100%;
  565. height: 90%;
  566. }
  567. #msform #userid,
  568. #msform #area {
  569. height: 0;
  570. padding: 0;
  571. margin: 0;
  572. border: none;
  573. }
  574. #msform input[type="text"].error {
  575. border-color: red;
  576. }
  577. .modal-header {
  578. border-bottom: none;
  579. }
  580. .btn-dismiss {
  581. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  582. background: linear-gradient(90deg, #0162c8, #55e7fc);
  583. font-weight: bold;
  584. color: white;
  585. border: 0 none;
  586. border-radius: 20px;
  587. cursor: pointer;
  588. padding: 10px 35px;
  589. margin: 10px auto;
  590. display: block;
  591. }
  592. #avatarmega .modal-content {
  593. background-color: transparent;
  594. border: none;
  595. }
  596. #avatarmega .modal-title {
  597. color: white;
  598. }
  599. #avatarmega .modal-header {
  600. position: absolute;
  601. top: -0.5rem;
  602. right: 1.5rem;
  603. }
  604. .linker__box {
  605. padding: 0.5rem 1rem;
  606. border-radius: 1rem;
  607. -webkit-box-shadow: 1px 1px 5px 1px #c9c9c9;
  608. box-shadow: 1px 1px 5px 1px #c9c9c9;
  609. width: -webkit-max-content;
  610. width: -moz-max-content;
  611. width: max-content;
  612. margin: 0 auto;
  613. display: none;
  614. }
  615. .linker__box p {
  616. margin-bottom: 0;
  617. color: gray;
  618. }
  619. .linker__box i {
  620. color: gray;
  621. position: relative;
  622. }
  623. .linker__box i::after {
  624. position: absolute;
  625. content: " ";
  626. right: -5px;
  627. top: -10%;
  628. border-right: 2px solid #a3a3a3;
  629. width: 1px;
  630. height: 120%;
  631. }
  632. .item_imgfr {
  633. width: 15%;
  634. height: 50px;
  635. border-radius: 50%;
  636. overflow: hidden;
  637. margin: auto 0.5rem;
  638. }
  639. .item_imgfr img {
  640. height: 100%;
  641. width: 100%;
  642. }
  643. .content-box {
  644. width: 75%;
  645. }
  646. .box-title {
  647. margin-bottom: 0.2rem;
  648. cursor: pointer;
  649. }
  650. .box-title:hover {
  651. color: grey;
  652. text-decoration: underline;
  653. }
  654. .box-link {
  655. cursor: pointer;
  656. }
  657. .img_uploader {
  658. display: none;
  659. }
  660. #msform input[type="text"].imgsrc {
  661. width: calc(100% - 8rem);
  662. margin-right: 5px;
  663. }
  664. .upload-btn {
  665. display: inline-block;
  666. width: 6rem;
  667. background-color: #75a7dd;
  668. color: white;
  669. padding: 0.4rem 0.5rem;
  670. font-size: 0.9rem;
  671. border-radius: 3px;
  672. -webkit-transition: all 0.3s;
  673. transition: all 0.3s;
  674. cursor: pointer;
  675. }
  676. .upload-btn img {
  677. width: 30px;
  678. height: 30px;
  679. }
  680. .upload-btn:hover {
  681. background-color: #3b86d6;
  682. }
  683. .add,
  684. .add-subline,
  685. .addimg {
  686. cursor: pointer;
  687. display: inline-block;
  688. width: 2rem;
  689. height: 2rem;
  690. background-color: #67abf3;
  691. font-size: 1.2rem;
  692. color: white;
  693. border-radius: 50%;
  694. -webkit-transition: all 0.3s;
  695. transition: all 0.3s;
  696. }
  697. .add:hover,
  698. .add-subline:hover,
  699. .addimg:hover {
  700. background-color: #398ee9;
  701. }
  702. body {
  703. font-family: "Lato", sans-serif;
  704. }
  705. .sidenav {
  706. height: 100%;
  707. width: 250px;
  708. position: fixed;
  709. z-index: 1;
  710. top: 0;
  711. left: 0;
  712. background: -webkit-gradient(linear, left top, left bottom, from(#1c7ce0), to(#150051));
  713. background: linear-gradient(to bottom, #1c7ce0, #150051);
  714. overflow-x: hidden;
  715. -webkit-transition: 0.5s;
  716. transition: 0.5s;
  717. }
  718. .sidenav a {
  719. text-decoration: none;
  720. font-size: 25px;
  721. color: #818181;
  722. display: block;
  723. -webkit-transition: 0.3s;
  724. transition: 0.3s;
  725. }
  726. .sidenav a:hover {
  727. color: #f1f1f1;
  728. }
  729. .sidenav .closebtn {
  730. position: absolute;
  731. top: 0;
  732. right: 25px;
  733. font-size: 36px;
  734. margin-left: 50px;
  735. }
  736. .container-login {
  737. width: 100vw;
  738. height: 100vh;
  739. display: -ms-grid;
  740. display: grid;
  741. -ms-grid-columns: (1fr)[2];
  742. grid-template-columns: repeat(2, 1fr);
  743. grid-gap: 7rem;
  744. padding: 0rem;
  745. }
  746. .navbar-nav button {
  747. background: white;
  748. border: none;
  749. outline: none;
  750. }
  751. .img-wave {
  752. position: fixed;
  753. bottom: 0;
  754. left: 0;
  755. height: 100%;
  756. z-index: -1;
  757. }
  758. .img-wave-profile {
  759. height: 80%;
  760. }
  761. .row-img {
  762. position: relative;
  763. display: -webkit-box;
  764. display: -ms-flexbox;
  765. display: flex;
  766. -webkit-box-pack: center;
  767. -ms-flex-pack: center;
  768. justify-content: center;
  769. -webkit-box-align: center;
  770. -ms-flex-align: center;
  771. align-items: center;
  772. background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(16, 68, 142, 0.7)), to(rgba(16, 68, 142, 0.7)));
  773. background-image: linear-gradient(to right bottom, rgba(16, 68, 142, 0.7), rgba(16, 68, 142, 0.7));
  774. background-size: cover;
  775. background-position: center;
  776. overflow: hidden;
  777. }
  778. .row-img .video {
  779. height: 100%;
  780. z-index: -1;
  781. position: absolute;
  782. left: -10%;
  783. top: 0;
  784. }
  785. .row-img .row-img-box {
  786. color: white;
  787. }
  788. .row-img .row-img-txt {
  789. position: absolute;
  790. bottom: 2rem;
  791. color: white;
  792. left: 2rem;
  793. font-size: 1.3rem;
  794. }
  795. .row-login {
  796. display: -webkit-box;
  797. display: -ms-flexbox;
  798. display: flex;
  799. -webkit-box-pack: start;
  800. -ms-flex-pack: start;
  801. justify-content: flex-start;
  802. -webkit-box-align: center;
  803. -ms-flex-align: center;
  804. align-items: center;
  805. text-align: center;
  806. position: relative;
  807. }
  808. .row-login .title {
  809. position: relative;
  810. color: #052859;
  811. }
  812. .row-login .title::after {
  813. position: absolute;
  814. content: "";
  815. left: 45%;
  816. top: 20%;
  817. width: 10%;
  818. height: 100%;
  819. border-bottom: 4px solid #052859;
  820. }
  821. .row-login .login-top {
  822. position: absolute;
  823. right: 1rem;
  824. top: 1rem;
  825. }
  826. .row-login .login-top .navbar-nav {
  827. -webkit-box-orient: horizontal;
  828. -webkit-box-direction: normal;
  829. -ms-flex-direction: row;
  830. flex-direction: row;
  831. }
  832. .row-login .login-top .navbar-nav .nav-item {
  833. margin: 0 0.5rem;
  834. }
  835. .row-login .login-top .navbar-nav .nav-item a {
  836. color: black;
  837. }
  838. .login-content {
  839. width: 80%;
  840. min-width: 350px;
  841. -webkit-box-shadow: 0 0 12px 5px #dddddd;
  842. box-shadow: 0 0 12px 5px #dddddd;
  843. padding: 1.5rem;
  844. border-radius: 2rem;
  845. }
  846. .link_privacy {
  847. color: black;
  848. }
  849. .login-content img {
  850. height: 80px;
  851. }
  852. .row-img img {
  853. width: 450px;
  854. }
  855. .login-content .form-floating input {
  856. border: none;
  857. border-bottom: 2px solid #d9d9d9;
  858. border-radius: 0;
  859. }
  860. .login-content .form-floating input:focus {
  861. -webkit-box-shadow: none;
  862. box-shadow: none;
  863. }
  864. .login-content #btn_login {
  865. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  866. background: linear-gradient(90deg, #0162c8, #55e7fc);
  867. font-weight: bold;
  868. color: white;
  869. border: 0 none;
  870. border-radius: 40px;
  871. cursor: pointer;
  872. padding: 10px 50px;
  873. margin: 10px auto;
  874. display: block;
  875. }
  876. .login-content #btn_login:hover {
  877. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  878. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  879. }
  880. .login-content .btn-register {
  881. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  882. background: linear-gradient(90deg, #0162c8, #55e7fc);
  883. font-weight: bold;
  884. color: white;
  885. border: 0 none;
  886. border-radius: 40px;
  887. cursor: pointer;
  888. padding: 10px 50px;
  889. margin: 10px auto;
  890. display: block;
  891. }
  892. .login-content .btn-register:hover {
  893. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  894. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  895. }
  896. .login-content .nav-tabs {
  897. border-bottom: none;
  898. }
  899. .login-content .nav {
  900. -webkit-box-orient: vertical;
  901. -webkit-box-direction: normal;
  902. -ms-flex-direction: column;
  903. flex-direction: column;
  904. -webkit-box-align: center;
  905. -ms-flex-align: center;
  906. align-items: center;
  907. }
  908. .login-content .nav-tabs .nav-link {
  909. color: grey;
  910. }
  911. .login-content .nav-tabs .nav-link.active {
  912. border-color: #fff;
  913. text-transform: uppercase;
  914. color: black;
  915. }
  916. .navbar .btn-gocreate {
  917. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  918. background: linear-gradient(90deg, #0162c8, #55e7fc);
  919. color: white;
  920. border: 0 none;
  921. border-radius: 40px;
  922. cursor: pointer;
  923. padding: 10px 50px;
  924. }
  925. .container-bg {
  926. position: absolute;
  927. width: 600px;
  928. height: 400px;
  929. right: 0;
  930. bottom: 0;
  931. z-index: -1;
  932. }
  933. .container-profile .card-profile {
  934. margin-top: 4rem;
  935. border-radius: 10px;
  936. padding: 2rem;
  937. text-align: center;
  938. -webkit-box-shadow: 0px 0px 20px 1px #b4b4b4;
  939. box-shadow: 0px 0px 20px 1px #b4b4b4;
  940. }
  941. .container-profile .card-profile img {
  942. width: 120px;
  943. margin: 1rem auto;
  944. }
  945. .card-profile-txt {
  946. color: #6d6d6d;
  947. font-size: 1.2rem;
  948. font-weight: 500;
  949. }
  950. .card-profile-cnt {
  951. font-size: 1.5rem;
  952. font-weight: 700;
  953. }
  954. @media screen and (max-width: 900px) {
  955. .container-login {
  956. -ms-grid-columns: 1fr;
  957. grid-template-columns: 1fr;
  958. }
  959. .row-img {
  960. display: none;
  961. }
  962. .img-wave {
  963. display: none;
  964. }
  965. .row-login {
  966. -webkit-box-pack: center;
  967. -ms-flex-pack: center;
  968. justify-content: center;
  969. }
  970. .container-bg {
  971. width: 400px;
  972. height: 300px;
  973. right: 0;
  974. bottom: 0;
  975. }
  976. }
  977. @media screen and (max-height: 450px) {
  978. .sidenav {
  979. padding-top: 15px;
  980. }
  981. .sidenav a {
  982. font-size: 18px;
  983. }
  984. }
  985. /* Pricing */
  986. .pricingTable {
  987. background: #fff;
  988. font-family: "Open Sans", sans-serif;
  989. text-align: center;
  990. padding: 30px 15px 15px;
  991. border-radius: 25px;
  992. overflow: hidden;
  993. position: relative;
  994. z-index: 1;
  995. }
  996. .pricingTable:before,
  997. .pricingTable:after {
  998. content: "";
  999. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1000. height: 170px;
  1001. width: 150%;
  1002. outline: 5px solid #fff;
  1003. outline-offset: -10px;
  1004. opacity: 0.9;
  1005. -webkit-transform: translateX(-50%) rotate(7deg);
  1006. transform: translateX(-50%) rotate(7deg);
  1007. position: absolute;
  1008. left: 50%;
  1009. top: -65px;
  1010. z-index: -1;
  1011. }
  1012. .pricingTable:after {
  1013. height: 250px;
  1014. -webkit-transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  1015. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  1016. top: auto;
  1017. bottom: -150px;
  1018. }
  1019. .pricingTable .pricingTable-header {
  1020. color: #fff;
  1021. margin: 0 0 75px;
  1022. }
  1023. .pricingTable .title {
  1024. font-size: 40px;
  1025. font-weight: 700;
  1026. text-transform: uppercase;
  1027. letter-spacing: 1px;
  1028. margin: 0;
  1029. }
  1030. @media screen and (max-width: 767px) {
  1031. .pricingTable .title {
  1032. font-size: 30px;
  1033. }
  1034. }
  1035. .pricingTable .pricing-content {
  1036. text-align: left;
  1037. padding: 0;
  1038. margin: 0 0 10px;
  1039. display: inline-block;
  1040. }
  1041. .pricingTable .pricing-content li {
  1042. color: #333;
  1043. font-size: 17px;
  1044. font-weight: 500;
  1045. line-height: 22px;
  1046. text-transform: uppercase;
  1047. padding: 0 40px 0 0;
  1048. margin: 0 0 15px;
  1049. list-style-position: inside;
  1050. position: relative;
  1051. }
  1052. .pricingTable .pricing-content li:after {
  1053. content: "\f00c";
  1054. color: #e58e26;
  1055. font-family: "Font Awesome 5 Free";
  1056. font-size: 18px;
  1057. font-weight: 900;
  1058. position: absolute;
  1059. top: 0;
  1060. right: 0;
  1061. }
  1062. .pricingTable .pricing-content li.disable:after {
  1063. content: "\f00d";
  1064. }
  1065. .pricingTable .price-value {
  1066. margin: 0 0 15px;
  1067. }
  1068. .pricingTable .price-title {
  1069. color: #c70039;
  1070. font-size: 30px;
  1071. text-align: left;
  1072. text-transform: uppercase;
  1073. line-height: 30px;
  1074. width: calc(100% - 130px);
  1075. padding: 15px 0 0;
  1076. display: inline-block;
  1077. }
  1078. .pricingTable .price-title b {
  1079. display: block;
  1080. }
  1081. .pricingTable .price-amount {
  1082. color: #3f64fa;
  1083. background: #fff;
  1084. font-size: 30px;
  1085. font-weight: 700;
  1086. line-height: 30px;
  1087. width: 120px;
  1088. height: 120px;
  1089. padding: 33px 10px 10px;
  1090. display: inline-block;
  1091. vertical-align: top;
  1092. -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1093. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1094. position: relative;
  1095. z-index: 1;
  1096. }
  1097. .pricingTable .price-amount:before,
  1098. .pricingTable .price-amount:after {
  1099. content: "";
  1100. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1101. width: calc(100% - 12px);
  1102. height: calc(100% - 12px);
  1103. -webkit-transform: translateX(-50%) translateY(-50%);
  1104. transform: translateX(-50%) translateY(-50%);
  1105. position: absolute;
  1106. top: 50%;
  1107. left: 50%;
  1108. z-index: -1;
  1109. -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1110. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1111. }
  1112. .pricingTable .price-amount:after {
  1113. background: #fff;
  1114. width: calc(100% - 16px);
  1115. height: calc(100% - 16px);
  1116. }
  1117. .pricingTable .price-amount .duration {
  1118. font-size: 16px;
  1119. font-weight: 600;
  1120. text-transform: capitalize;
  1121. display: block;
  1122. }
  1123. .pricingTable .pricingTable-signup a {
  1124. color: #fff;
  1125. font-size: 20px;
  1126. font-weight: 700;
  1127. letter-spacing: 2px;
  1128. text-transform: uppercase;
  1129. padding: 10px 20px;
  1130. border: 2px solid #fff;
  1131. border-radius: 50px;
  1132. display: inline-block;
  1133. -webkit-transition: all 0.3s;
  1134. transition: all 0.3s;
  1135. }
  1136. .pricingTable .pricingTable-signup a:hover {
  1137. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1138. -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1139. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1140. }
  1141. .pricingTable.green:before,
  1142. .pricingTable.green:after,
  1143. .pricingTable.green .price-amount:before {
  1144. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1145. }
  1146. .pricingTable.green .price-amount {
  1147. color: #109739;
  1148. }
  1149. .pricingTable.pink:before,
  1150. .pricingTable.pink:after,
  1151. .pricingTable.pink .price-amount:before {
  1152. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1153. }
  1154. .pricingTable.pink .price-amount {
  1155. color: #ed2e96;
  1156. }
  1157. @media only screen and (max-width: 990px) {
  1158. .pricingTable {
  1159. margin: 0 0 40px;
  1160. }
  1161. }
  1162. .navbar {
  1163. background: none !important;
  1164. }
  1165. .arrowdoup {
  1166. -webkit-transform: rotate(180deg);
  1167. transform: rotate(180deg);
  1168. }
  1169. .arrowdown {
  1170. cursor: pointer;
  1171. }
  1172. .userprofile {
  1173. position: relative;
  1174. top: -80px;
  1175. z-index: 20;
  1176. }
  1177. .userprofile .userprofile-content {
  1178. width: 83vw;
  1179. }
  1180. .userprofile .userprofile-content .user-information .information {
  1181. width: 50%;
  1182. margin: 0 auto;
  1183. }
  1184. .userprofile .userprofile-content .user-information .information h1 {
  1185. color: #707070;
  1186. font-size: 56px;
  1187. }
  1188. .userprofile .userprofile-content .user-information .information .share {
  1189. font-size: 16px;
  1190. }
  1191. .userprofile .userprofile-content .user-information .information .share a {
  1192. text-decoration: none;
  1193. color: #183790;
  1194. }
  1195. .userprofile .userprofile-content .user-information .card {
  1196. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1197. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1198. border-radius: 15px;
  1199. }
  1200. .userprofile .userprofile-content .user-information .check-history {
  1201. cursor: pointer;
  1202. }
  1203. .userprofile .userprofile-content .user-information .historical-record th {
  1204. border-bottom: none !important;
  1205. color: #183790;
  1206. font-weight: 900;
  1207. }
  1208. .userprofile .userprofile-content .user-information .historical-record td {
  1209. font-size: 15px;
  1210. }
  1211. .userprofile .userprofile-content .user-information .draft {
  1212. color: #183790;
  1213. font-weight: 900;
  1214. }
  1215. .userprofile .userprofile-content .user-information .draft-table th {
  1216. border-bottom: none !important;
  1217. color: #183790;
  1218. font-weight: 900;
  1219. }
  1220. .userprofile .userprofile-content .user-information .draft-table .draft-content-icon {
  1221. cursor: pointer;
  1222. }
  1223. .sidenav {
  1224. width: 250px;
  1225. height: 100%;
  1226. z-index: 50;
  1227. top: 0;
  1228. left: 0;
  1229. overflow-x: hidden;
  1230. -webkit-transition: 0.5s;
  1231. transition: 0.5s;
  1232. text-align: center;
  1233. }
  1234. @media only screen and (min-width: 1439px) {
  1235. .sidenav .sidenav-content {
  1236. -webkit-transform: scale(1);
  1237. transform: scale(1);
  1238. }
  1239. }
  1240. @media only screen and (max-width: 1280px) {
  1241. .sidenav .sidenav-content {
  1242. margin-top: -40px;
  1243. -webkit-transform: scale(0.9);
  1244. transform: scale(0.9);
  1245. }
  1246. }
  1247. .sidenav hr {
  1248. background: #fff;
  1249. opacity: 1 !important;
  1250. height: 1px;
  1251. width: 85%;
  1252. margin: 15px auto;
  1253. }
  1254. .sidenav .sidebar {
  1255. width: 80%;
  1256. margin: 0 auto;
  1257. }
  1258. .sidenav .user {
  1259. -o-object-fit: cover;
  1260. object-fit: cover;
  1261. width: 8vw;
  1262. }
  1263. .sidenav .user-name {
  1264. font-size: 1.5rem;
  1265. }
  1266. .sidenav .navbar-nav {
  1267. -webkit-box-orient: horizontal;
  1268. -webkit-box-direction: normal;
  1269. -ms-flex-direction: row;
  1270. flex-direction: row;
  1271. }
  1272. .sidenav .navbar-nav .btn-gocreate {
  1273. font-size: 1.7vmin;
  1274. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1275. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1276. color: white;
  1277. border: 0 none;
  1278. border-radius: 10px;
  1279. cursor: pointer;
  1280. margin: 10px 3px;
  1281. display: inline;
  1282. }
  1283. .sidenav .navbar-nav .active {
  1284. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1285. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1286. }
  1287. .sidenav a {
  1288. text-decoration: none;
  1289. font-size: 32px;
  1290. color: #f1f1f1;
  1291. display: block;
  1292. -webkit-transition: 0.3s;
  1293. transition: 0.3s;
  1294. }
  1295. .sidenav a:hover {
  1296. color: #818181;
  1297. }
  1298. .sidenav .sidenav .closebtn {
  1299. position: absolute;
  1300. top: 0;
  1301. right: 25px;
  1302. font-size: 36px;
  1303. margin-left: 50px;
  1304. }
  1305. .sidenav .nav-list {
  1306. color: white;
  1307. list-style: none;
  1308. text-align: center;
  1309. }
  1310. .sidenav .nav-list .nav-list-item {
  1311. font-size: 18px;
  1312. cursor: pointer;
  1313. position: relative;
  1314. }
  1315. .sidenav .nav-list .nav-list-item::after {
  1316. content: " ";
  1317. position: absolute;
  1318. width: 50%;
  1319. height: 100%;
  1320. left: 25%;
  1321. top: 5px;
  1322. border-bottom: 1px solid white;
  1323. opacity: 0;
  1324. -webkit-transition: all 0.4s;
  1325. transition: all 0.4s;
  1326. }
  1327. .sidenav .nav-list .nav-list-item:hover::after {
  1328. opacity: 1;
  1329. }
  1330. .sidenav .right-text {
  1331. position: absolute;
  1332. bottom: 0;
  1333. left: 0;
  1334. color: #fff;
  1335. }
  1336. @media only screen and (max-width: 1280px) {
  1337. .sidenav .right-text {
  1338. left: 10px;
  1339. }
  1340. }
  1341. .sidenav .right-text a {
  1342. font-size: 16px;
  1343. display: inline;
  1344. margin: 2px;
  1345. }
  1346. .sidenav .right-text a img {
  1347. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1348. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1349. }
  1350. @media only screen and (max-width: 1280px) {
  1351. .sidenav .right-text p {
  1352. font-size: 16px;
  1353. }
  1354. }
  1355. .price-int {
  1356. padding-bottom: 10vw;
  1357. }
  1358. .price-int .price-content {
  1359. width: 80vw;
  1360. }
  1361. @media screen and (max-width: 767px) {
  1362. .price-int .price-content {
  1363. width: 90vw;
  1364. }
  1365. }
  1366. .price-int .price-content h1 {
  1367. text-align: center;
  1368. font-weight: 900;
  1369. font-size: 2rem;
  1370. }
  1371. .price-int .price-content .price-content-1 {
  1372. margin-top: 50px;
  1373. }
  1374. .price-int .price-content .price-content-1 h2 {
  1375. margin-top: 15px;
  1376. font-weight: 600;
  1377. font-size: 1.3rem;
  1378. }
  1379. @media screen and (max-width: 767px) {
  1380. .price-int .price-content .price-content-1 h2 {
  1381. font-size: 5.5vmin;
  1382. }
  1383. }
  1384. .price-int .price-content .price-content-1 ul {
  1385. text-align: left;
  1386. }
  1387. .price-int .price-content .price-content-1 ul li {
  1388. list-style-type: disc;
  1389. }
  1390. @media screen and (max-width: 767px) {
  1391. .price-int .price-content .price-content-1 ul li {
  1392. font-size: 4.5vmin;
  1393. }
  1394. }
  1395. .price-int .price-content .price-content-1 .price-text {
  1396. padding-left: 80px;
  1397. }
  1398. .price-int .price-content .get-started {
  1399. border: none;
  1400. border-radius: 3rem;
  1401. padding: 1rem 2.5rem;
  1402. background: linear-gradient(20deg, #EA5413, #920783);
  1403. color: #fff;
  1404. font-size: 1.2rem;
  1405. font-weight: 900;
  1406. }
  1407. .price-int .price-content p {
  1408. font-size: 24px;
  1409. }
  1410. .footer {
  1411. background-color: #F0F0F0;
  1412. padding: 3rem;
  1413. padding-left: 13rem;
  1414. }
  1415. @media screen and (max-width: 767px) {
  1416. .footer {
  1417. padding: 0.5rem;
  1418. text-align: center;
  1419. padding-top: 3rem;
  1420. padding-left: 0;
  1421. }
  1422. }
  1423. .footer h5 {
  1424. font-size: 16px;
  1425. font-weight: 700;
  1426. color: #555555;
  1427. }
  1428. .footer .row {
  1429. display: -webkit-box;
  1430. display: -ms-flexbox;
  1431. display: flex;
  1432. -webkit-box-align: center;
  1433. -ms-flex-align: center;
  1434. align-items: center;
  1435. }
  1436. .footer .footer-aigirl {
  1437. font-weight: 600;
  1438. font-size: 1.5rem;
  1439. margin-top: 1rem;
  1440. margin-bottom: 2.5rem;
  1441. color: #555555;
  1442. }
  1443. @media screen and (max-width: 767px) {
  1444. .footer .footer-aigirl {
  1445. font-size: 1.3rem;
  1446. margin-bottom: 2rem;
  1447. }
  1448. }
  1449. .footer .footer-follow {
  1450. font-size: 1rem;
  1451. margin-bottom: 1rem;
  1452. }
  1453. @media screen and (max-width: 767px) {
  1454. .footer-socials {
  1455. margin-bottom: 2rem;
  1456. }
  1457. }
  1458. .footer .footer-socials a {
  1459. margin-right: 5px;
  1460. }
  1461. @media screen and (max-width: 767px) {
  1462. .footer .footer-socials a {
  1463. margin-right: 10px;
  1464. }
  1465. }
  1466. @media screen and (max-width: 767px) {
  1467. .footer-contacts {
  1468. font-size: 14px;
  1469. }
  1470. }
  1471. /*# sourceMappingURL=style.css.map */