style.css 27 KB

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