style.css 38 KB

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