style.css 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565
  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. .add-subline,
  657. .addimg {
  658. cursor: pointer;
  659. display: inline-block;
  660. width: 2rem;
  661. height: 2rem;
  662. background-color: #67abf3;
  663. font-size: 1.2rem;
  664. color: white;
  665. border-radius: 50%;
  666. -webkit-transition: all 0.3s;
  667. transition: all 0.3s;
  668. }
  669. .add:hover,
  670. .add-subline:hover,
  671. .addimg:hover {
  672. background-color: #398ee9;
  673. }
  674. body {
  675. font-family: "Lato", sans-serif;
  676. }
  677. .sidenav {
  678. height: 100%;
  679. width: 250px;
  680. position: fixed;
  681. z-index: 1;
  682. top: 0;
  683. left: 0;
  684. background: -webkit-gradient(linear, left top, left bottom, from(#1c7ce0), to(#150051));
  685. background: linear-gradient(to bottom, #1c7ce0, #150051);
  686. overflow-x: hidden;
  687. -webkit-transition: 0.5s;
  688. transition: 0.5s;
  689. }
  690. .sidenav a {
  691. text-decoration: none;
  692. font-size: 25px;
  693. color: #818181;
  694. display: block;
  695. -webkit-transition: 0.3s;
  696. transition: 0.3s;
  697. }
  698. .sidenav a:hover {
  699. color: #f1f1f1;
  700. }
  701. .sidenav .closebtn {
  702. position: absolute;
  703. top: 0;
  704. right: 25px;
  705. font-size: 36px;
  706. margin-left: 50px;
  707. }
  708. .container-login {
  709. width: 100vw;
  710. height: 100vh;
  711. display: -ms-grid;
  712. display: grid;
  713. -ms-grid-columns: (1fr)[2];
  714. grid-template-columns: repeat(2, 1fr);
  715. grid-gap: 7rem;
  716. padding: 0rem;
  717. }
  718. .navbar-nav button {
  719. background: white;
  720. border: none;
  721. outline: none;
  722. }
  723. .img-wave {
  724. position: fixed;
  725. bottom: 0;
  726. left: 0;
  727. height: 100%;
  728. z-index: -1;
  729. }
  730. .img-wave-profile {
  731. height: 80%;
  732. }
  733. .row-img {
  734. position: relative;
  735. display: -webkit-box;
  736. display: -ms-flexbox;
  737. display: flex;
  738. -webkit-box-pack: center;
  739. -ms-flex-pack: center;
  740. justify-content: center;
  741. -webkit-box-align: center;
  742. -ms-flex-align: center;
  743. align-items: center;
  744. background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(16, 68, 142, 0.7)), to(rgba(16, 68, 142, 0.7)));
  745. background-image: linear-gradient(to right bottom, rgba(16, 68, 142, 0.7), rgba(16, 68, 142, 0.7));
  746. background-size: cover;
  747. background-position: center;
  748. overflow: hidden;
  749. }
  750. .row-img .video {
  751. height: 100%;
  752. z-index: -1;
  753. position: absolute;
  754. left: -10%;
  755. top: 0;
  756. }
  757. .row-img .row-img-box {
  758. color: white;
  759. }
  760. .row-img .row-img-txt {
  761. position: absolute;
  762. bottom: 2rem;
  763. color: white;
  764. left: 2rem;
  765. font-size: 1.3rem;
  766. }
  767. .row-login {
  768. display: -webkit-box;
  769. display: -ms-flexbox;
  770. display: flex;
  771. -webkit-box-pack: start;
  772. -ms-flex-pack: start;
  773. justify-content: flex-start;
  774. -webkit-box-align: center;
  775. -ms-flex-align: center;
  776. align-items: center;
  777. text-align: center;
  778. position: relative;
  779. }
  780. .row-login .title {
  781. position: relative;
  782. color: #052859;
  783. }
  784. .row-login .title::after {
  785. position: absolute;
  786. content: "";
  787. left: 45%;
  788. top: 20%;
  789. width: 10%;
  790. height: 100%;
  791. border-bottom: 4px solid #052859;
  792. }
  793. .row-login .login-top {
  794. position: absolute;
  795. right: 1rem;
  796. top: 1rem;
  797. }
  798. .row-login .login-top .navbar-nav {
  799. -webkit-box-orient: horizontal;
  800. -webkit-box-direction: normal;
  801. -ms-flex-direction: row;
  802. flex-direction: row;
  803. }
  804. .row-login .login-top .navbar-nav .nav-item {
  805. margin: 0 0.5rem;
  806. }
  807. .row-login .login-top .navbar-nav .nav-item a {
  808. color: black;
  809. }
  810. .login-content {
  811. width: 80%;
  812. min-width: 350px;
  813. -webkit-box-shadow: 0 0 12px 5px #dddddd;
  814. box-shadow: 0 0 12px 5px #dddddd;
  815. padding: 1.5rem;
  816. border-radius: 2rem;
  817. }
  818. .link_privacy {
  819. color: black;
  820. }
  821. .login-content img {
  822. height: 80px;
  823. }
  824. .row-img img {
  825. width: 450px;
  826. }
  827. .login-content .form-floating input {
  828. border: none;
  829. border-bottom: 2px solid #d9d9d9;
  830. border-radius: 0;
  831. }
  832. .login-content .form-floating input:focus {
  833. -webkit-box-shadow: none;
  834. box-shadow: none;
  835. }
  836. .login-content #btn_login {
  837. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  838. background: linear-gradient(90deg, #0162c8, #55e7fc);
  839. font-weight: bold;
  840. color: white;
  841. border: 0 none;
  842. border-radius: 40px;
  843. cursor: pointer;
  844. padding: 10px 50px;
  845. margin: 10px auto;
  846. display: block;
  847. }
  848. .login-content #btn_login:hover {
  849. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  850. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  851. }
  852. .login-content .btn-register {
  853. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  854. background: linear-gradient(90deg, #0162c8, #55e7fc);
  855. font-weight: bold;
  856. color: white;
  857. border: 0 none;
  858. border-radius: 40px;
  859. cursor: pointer;
  860. padding: 10px 50px;
  861. margin: 10px auto;
  862. display: block;
  863. }
  864. .login-content .btn-register:hover {
  865. -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  866. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  867. }
  868. .login-content .nav-tabs {
  869. border-bottom: none;
  870. }
  871. .login-content .nav {
  872. -webkit-box-orient: vertical;
  873. -webkit-box-direction: normal;
  874. -ms-flex-direction: column;
  875. flex-direction: column;
  876. -webkit-box-align: center;
  877. -ms-flex-align: center;
  878. align-items: center;
  879. }
  880. .login-content .nav-tabs .nav-link {
  881. color: grey;
  882. }
  883. .login-content .nav-tabs .nav-link.active {
  884. border-color: #fff;
  885. text-transform: uppercase;
  886. color: black;
  887. }
  888. .navbar .btn-gocreate {
  889. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  890. background: linear-gradient(90deg, #0162c8, #55e7fc);
  891. color: white;
  892. border: 0 none;
  893. border-radius: 40px;
  894. cursor: pointer;
  895. padding: 10px 50px;
  896. }
  897. .container-bg {
  898. position: absolute;
  899. width: 600px;
  900. height: 400px;
  901. right: 0;
  902. bottom: 0;
  903. z-index: -1;
  904. }
  905. .container-profile .card-profile {
  906. margin-top: 4rem;
  907. border-radius: 10px;
  908. padding: 2rem;
  909. text-align: center;
  910. -webkit-box-shadow: 0px 0px 20px 1px #b4b4b4;
  911. box-shadow: 0px 0px 20px 1px #b4b4b4;
  912. }
  913. .container-profile .card-profile img {
  914. width: 120px;
  915. margin: 1rem auto;
  916. }
  917. .card-profile-txt {
  918. color: #6d6d6d;
  919. font-size: 1.2rem;
  920. font-weight: 500;
  921. }
  922. .card-profile-cnt {
  923. font-size: 1.5rem;
  924. font-weight: 700;
  925. }
  926. @media screen and (max-width: 900px) {
  927. .container-login {
  928. -ms-grid-columns: 1fr;
  929. grid-template-columns: 1fr;
  930. }
  931. .row-img {
  932. display: none;
  933. }
  934. .img-wave {
  935. display: none;
  936. }
  937. .row-login {
  938. -webkit-box-pack: center;
  939. -ms-flex-pack: center;
  940. justify-content: center;
  941. }
  942. .container-bg {
  943. width: 400px;
  944. height: 300px;
  945. right: 0;
  946. bottom: 0;
  947. }
  948. }
  949. @media screen and (max-height: 450px) {
  950. .sidenav {
  951. padding-top: 15px;
  952. }
  953. .sidenav a {
  954. font-size: 18px;
  955. }
  956. }
  957. /* Pricing */
  958. .pricingTable {
  959. background: #fff;
  960. font-family: "Open Sans", sans-serif;
  961. text-align: center;
  962. padding: 30px 15px 15px;
  963. border-radius: 25px;
  964. overflow: hidden;
  965. position: relative;
  966. z-index: 1;
  967. }
  968. .pricingTable:before,
  969. .pricingTable:after {
  970. content: "";
  971. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  972. height: 170px;
  973. width: 150%;
  974. outline: 5px solid #fff;
  975. outline-offset: -10px;
  976. opacity: 0.9;
  977. -webkit-transform: translateX(-50%) rotate(7deg);
  978. transform: translateX(-50%) rotate(7deg);
  979. position: absolute;
  980. left: 50%;
  981. top: -65px;
  982. z-index: -1;
  983. }
  984. .pricingTable:after {
  985. height: 250px;
  986. -webkit-transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  987. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  988. top: auto;
  989. bottom: -150px;
  990. }
  991. .pricingTable .pricingTable-header {
  992. color: #fff;
  993. margin: 0 0 75px;
  994. }
  995. .pricingTable .title {
  996. font-size: 40px;
  997. font-weight: 700;
  998. text-transform: uppercase;
  999. letter-spacing: 1px;
  1000. margin: 0;
  1001. }
  1002. .pricingTable .pricing-content {
  1003. text-align: left;
  1004. padding: 0;
  1005. margin: 0 0 10px;
  1006. display: inline-block;
  1007. }
  1008. .pricingTable .pricing-content li {
  1009. color: #333;
  1010. font-size: 17px;
  1011. font-weight: 500;
  1012. line-height: 22px;
  1013. text-transform: uppercase;
  1014. padding: 0 40px 0 0;
  1015. margin: 0 0 15px;
  1016. list-style-position: inside;
  1017. position: relative;
  1018. }
  1019. .pricingTable .pricing-content li:after {
  1020. content: "\f00c";
  1021. color: #e58e26;
  1022. font-family: "Font Awesome 5 Free";
  1023. font-size: 18px;
  1024. font-weight: 900;
  1025. position: absolute;
  1026. top: 0;
  1027. right: 0;
  1028. }
  1029. .pricingTable .pricing-content li.disable:after {
  1030. content: "\f00d";
  1031. }
  1032. .pricingTable .price-value {
  1033. margin: 0 0 15px;
  1034. }
  1035. .pricingTable .price-title {
  1036. color: #c70039;
  1037. font-size: 30px;
  1038. text-align: left;
  1039. text-transform: uppercase;
  1040. line-height: 30px;
  1041. width: calc(100% - 130px);
  1042. padding: 15px 0 0;
  1043. display: inline-block;
  1044. }
  1045. .pricingTable .price-title b {
  1046. display: block;
  1047. }
  1048. .pricingTable .price-amount {
  1049. color: #3f64fa;
  1050. background: #fff;
  1051. font-size: 30px;
  1052. font-weight: 700;
  1053. line-height: 30px;
  1054. width: 120px;
  1055. height: 120px;
  1056. padding: 33px 10px 10px;
  1057. display: inline-block;
  1058. vertical-align: top;
  1059. -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1060. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1061. position: relative;
  1062. z-index: 1;
  1063. }
  1064. .pricingTable .price-amount:before,
  1065. .pricingTable .price-amount:after {
  1066. content: "";
  1067. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1068. width: calc(100% - 12px);
  1069. height: calc(100% - 12px);
  1070. -webkit-transform: translateX(-50%) translateY(-50%);
  1071. transform: translateX(-50%) translateY(-50%);
  1072. position: absolute;
  1073. top: 50%;
  1074. left: 50%;
  1075. z-index: -1;
  1076. -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1077. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1078. }
  1079. .pricingTable .price-amount:after {
  1080. background: #fff;
  1081. width: calc(100% - 16px);
  1082. height: calc(100% - 16px);
  1083. }
  1084. .pricingTable .price-amount .duration {
  1085. font-size: 16px;
  1086. font-weight: 600;
  1087. text-transform: capitalize;
  1088. display: block;
  1089. }
  1090. .pricingTable .pricingTable-signup a {
  1091. color: #fff;
  1092. font-size: 20px;
  1093. font-weight: 700;
  1094. letter-spacing: 2px;
  1095. text-transform: uppercase;
  1096. padding: 10px 20px;
  1097. border: 2px solid #fff;
  1098. border-radius: 50px;
  1099. display: inline-block;
  1100. -webkit-transition: all 0.3s;
  1101. transition: all 0.3s;
  1102. }
  1103. .pricingTable .pricingTable-signup a:hover {
  1104. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1105. -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1106. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1107. }
  1108. .pricingTable.green:before,
  1109. .pricingTable.green:after,
  1110. .pricingTable.green .price-amount:before {
  1111. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1112. }
  1113. .pricingTable.green .price-amount {
  1114. color: #109739;
  1115. }
  1116. .pricingTable.pink:before,
  1117. .pricingTable.pink:after,
  1118. .pricingTable.pink .price-amount:before {
  1119. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1120. }
  1121. .pricingTable.pink .price-amount {
  1122. color: #ed2e96;
  1123. }
  1124. @media only screen and (max-width: 990px) {
  1125. .pricingTable {
  1126. margin: 0 0 40px;
  1127. }
  1128. }
  1129. .sidenav {
  1130. height: 100%;
  1131. width: 250px;
  1132. position: fixed;
  1133. z-index: 1;
  1134. top: 0;
  1135. left: 0;
  1136. background: -webkit-gradient(linear, left top, left bottom, from(#1c7ce0), to(#150051));
  1137. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1138. overflow-x: hidden;
  1139. -webkit-transition: 0.5s;
  1140. transition: 0.5s;
  1141. text-align: center;
  1142. }
  1143. .sidenav hr {
  1144. background: #fff;
  1145. opacity: 1 !important;
  1146. height: 1px;
  1147. width: 85%;
  1148. margin: 15px auto;
  1149. }
  1150. .sidenav .sidebar {
  1151. width: 80%;
  1152. margin: 0 auto;
  1153. }
  1154. .sidenav .user {
  1155. -o-object-fit: cover;
  1156. object-fit: cover;
  1157. width: 100px;
  1158. }
  1159. .sidenav .user-name {
  1160. font-size: 1.5rem;
  1161. }
  1162. .sidenav .navbar-nav {
  1163. -webkit-box-orient: horizontal;
  1164. -webkit-box-direction: normal;
  1165. -ms-flex-direction: row;
  1166. flex-direction: row;
  1167. }
  1168. .sidenav .navbar-nav .btn-gocreate {
  1169. font-size: 14px;
  1170. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1171. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1172. color: white;
  1173. border: 0 none;
  1174. border-radius: 10px;
  1175. cursor: pointer;
  1176. margin: 10px 3px;
  1177. display: inline;
  1178. }
  1179. .sidenav .navbar-nav .active {
  1180. background: -webkit-gradient(linear, left top, right top, from(#0162c8), to(#55e7fc));
  1181. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1182. }
  1183. .sidenav a {
  1184. text-decoration: none;
  1185. font-size: 32px;
  1186. color: #f1f1f1;
  1187. display: block;
  1188. -webkit-transition: 0.3s;
  1189. transition: 0.3s;
  1190. }
  1191. .sidenav a:hover {
  1192. color: #818181;
  1193. }
  1194. .sidenav .sidenav .closebtn {
  1195. position: absolute;
  1196. top: 0;
  1197. right: 25px;
  1198. font-size: 36px;
  1199. margin-left: 50px;
  1200. }
  1201. .sidenav .nav-list {
  1202. color: white;
  1203. list-style: none;
  1204. text-align: center;
  1205. }
  1206. .sidenav .nav-list .nav-list-item {
  1207. font-size: 1.2rem;
  1208. cursor: pointer;
  1209. position: relative;
  1210. }
  1211. .sidenav .nav-list .nav-list-item::after {
  1212. content: " ";
  1213. position: absolute;
  1214. width: 50%;
  1215. height: 100%;
  1216. left: 25%;
  1217. top: 5px;
  1218. border-bottom: 1px solid white;
  1219. opacity: 0;
  1220. -webkit-transition: all 0.4s;
  1221. transition: all 0.4s;
  1222. }
  1223. .sidenav .nav-list .nav-list-item:hover::after {
  1224. opacity: 1;
  1225. }
  1226. .sidenav .right-text {
  1227. padding-top: 9vw;
  1228. color: #fff;
  1229. }
  1230. .sidenav .right-text a {
  1231. font-size: 18px;
  1232. display: inline;
  1233. margin: 2px;
  1234. }
  1235. .sidenav .right-text a img {
  1236. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1237. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1238. }
  1239. .price-int {
  1240. padding-bottom: 10vw;
  1241. }
  1242. .price-int .price-content {
  1243. width: 80vw;
  1244. }
  1245. @media screen and (max-width: 767px) {
  1246. .price-int .price-content {
  1247. width: 90vw;
  1248. }
  1249. }
  1250. .price-int .price-content h1 {
  1251. text-align: center;
  1252. font-weight: 900;
  1253. font-size: 2rem;
  1254. }
  1255. .price-int .price-content .price-content-1 {
  1256. margin-top: 50px;
  1257. }
  1258. .price-int .price-content .price-content-1 h2 {
  1259. margin-top: 15px;
  1260. font-weight: 600;
  1261. font-size: 1.3rem;
  1262. }
  1263. @media screen and (max-width: 767px) {
  1264. .price-int .price-content .price-content-1 h2 {
  1265. font-size: 5.5vmin;
  1266. }
  1267. }
  1268. .price-int .price-content .price-content-1 ul {
  1269. text-align: left;
  1270. }
  1271. .price-int .price-content .price-content-1 ul li {
  1272. list-style-type: disc;
  1273. }
  1274. @media screen and (max-width: 767px) {
  1275. .price-int .price-content .price-content-1 ul li {
  1276. font-size: 4.5vmin;
  1277. }
  1278. }
  1279. .price-int .price-content .price-content-1 .price-text {
  1280. padding-left: 80px;
  1281. }
  1282. .price-int .price-content .get-started {
  1283. border: none;
  1284. border-radius: 3rem;
  1285. padding: 1rem 2.5rem;
  1286. background: linear-gradient(20deg, #EA5413, #920783);
  1287. color: #fff;
  1288. font-size: 1.2rem;
  1289. font-weight: 900;
  1290. }
  1291. .price-int .price-content p {
  1292. font-size: 24px;
  1293. }
  1294. .footer {
  1295. background-color: #F0F0F0;
  1296. padding: 3rem;
  1297. padding-left: 13rem;
  1298. }
  1299. @media screen and (max-width: 767px) {
  1300. .footer {
  1301. padding: 0.5rem;
  1302. text-align: center;
  1303. padding-top: 3rem;
  1304. padding-left: 0;
  1305. }
  1306. }
  1307. .footer h5 {
  1308. font-size: 16px;
  1309. font-weight: 700;
  1310. color: #555555;
  1311. }
  1312. .footer .row {
  1313. display: -webkit-box;
  1314. display: -ms-flexbox;
  1315. display: flex;
  1316. -webkit-box-align: center;
  1317. -ms-flex-align: center;
  1318. align-items: center;
  1319. }
  1320. .footer .footer-aigirl {
  1321. font-weight: 600;
  1322. font-size: 1.5rem;
  1323. margin-top: 1rem;
  1324. margin-bottom: 2.5rem;
  1325. color: #555555;
  1326. }
  1327. @media screen and (max-width: 767px) {
  1328. .footer .footer-aigirl {
  1329. font-size: 1.3rem;
  1330. margin-bottom: 2rem;
  1331. }
  1332. }
  1333. .footer .footer-follow {
  1334. font-size: 1rem;
  1335. margin-bottom: 1rem;
  1336. }
  1337. @media screen and (max-width: 767px) {
  1338. .footer-socials {
  1339. margin-bottom: 2rem;
  1340. }
  1341. }
  1342. .footer .footer-socials a {
  1343. margin-right: 5px;
  1344. }
  1345. @media screen and (max-width: 767px) {
  1346. .footer .footer-socials a {
  1347. margin-right: 10px;
  1348. }
  1349. }
  1350. @media screen and (max-width: 767px) {
  1351. .footer-contacts {
  1352. font-size: 14px;
  1353. }
  1354. }
  1355. /*# sourceMappingURL=style.css.map */