style.css 27 KB

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