title.blade - Copy.php 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Research Admission</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta name="description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many" />
  8. <meta name="keywords" content="" />
  9. <!-- facebook tags -->
  10. <meta property="og:url" content="http://www.facebook.com/researchadmission"/>
  11. <meta property="og:type" content="website"/>
  12. <meta property="og:title" content="Research Admission"/>
  13. <meta property="og:description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many"/>
  14. <!-- Linkedin tags -->
  15. <meta property="og:url" content="https://www.linkedin.com/company/researchadmission"/>
  16. <meta property="og:type" content="website"/>
  17. <meta property="og:title" content="Research Admission"/>
  18. <meta property="og:description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many"/>
  19. <!-- favicon -->
  20. <link rel="shortcut icon" href="{{asset('web/images/logo.png') }}">
  21. <!-- Bootstrap -->
  22. <link href="{{ asset('web/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css" />
  23. <!-- tobii css -->
  24. <link href="{{asset('web/css/tobii.min.css')}}" rel="stylesheet" type="text/css" />
  25. <!-- Icons -->
  26. <link href="{{asset('web/css/materialdesignicons.min.css')}}" rel="stylesheet" type="text/css" />
  27. <link rel="stylesheet" type="text/css" href="{{ asset('web/stylesheets/font-awesome.min.css') }}" />
  28. <link rel="stylesheet" href="https://unicons.iconscout.com/release/v3.0.6/css/line.css">
  29. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
  30. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/11.6.15/sweetalert2.min.css">
  31. <!-- Slider -->
  32. <link rel="stylesheet" href="{{asset('web/css/tiny-slider.css')}}"/>
  33. <!-- Main Css -->
  34. <link href="{{asset('web/css/style.css')}}" rel="stylesheet" type="text/css" id="theme-opt" />
  35. <link href="{{asset('web/css/colors/default.css')}}" rel="stylesheet" id="color-opt">
  36. <link rel="preconnect" href="https://fonts.googleapis.com">
  37. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  38. <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap" rel="stylesheet">
  39. <link rel="preconnect" href="https://fonts.googleapis.com">
  40. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  41. <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&family=Quicksand:wght@400;500;600;700&display=swap" rel="stylesheet">
  42. <link rel="stylesheet" href="{{asset('web/css/datepicker.min.css')}}">
  43. <link rel="stylesheet" href="{{asset('web/css/sweetalert/sweetalert.css')}}">
  44. </head>
  45. <style>
  46. body {
  47. font-family: 'Oswald', sans-serif;
  48. font-family: 'Quicksand', sans-serif;
  49. }
  50. h1, h2, h3, h4, h5, h6 {
  51. font-family: 'Oswald', sans-serif;
  52. font-family: 'Quicksand', sans-serif;
  53. }
  54. .bg-half-170 {
  55. padding:0px;
  56. }
  57. #topnav {
  58. background-color: #1E0A46;
  59. }
  60. #topnav .navigation-menu > li > a {
  61. color:white !important;
  62. }
  63. #topnav .navigation-menu {
  64. display: initial;
  65. }
  66. #topnav.nav-sticky{
  67. background-color: #1E0A46;
  68. }
  69. .form-control:focus {
  70. box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%) !important;
  71. }
  72. .horizontal-menu .header-navbar.navbar-fixed {
  73. position: fixed;
  74. width: 100%;
  75. }
  76. .btn1{
  77. background-color: #aba3db !important;
  78. color:white !important;
  79. border-radius: 20px;
  80. box-shadow:none !important;
  81. }
  82. .btn1:hover{
  83. background: #453993 !important;
  84. color: #fff !important;
  85. border-radius: 20px;
  86. }
  87. .title{
  88. font-size:12px;
  89. }
  90. .badge-title{
  91. background: #dedbf1;
  92. font-weight: 600;
  93. color: #2e1153;
  94. padding: 2px 8px;
  95. border-radius: 4px;
  96. border: 1px solid #d8e2e7;
  97. font-size: 11px;
  98. }
  99. .label_badge_radius {
  100. color: #2e1153;
  101. border-radius: 20px;
  102. padding: 1px 10px;
  103. font-size: 11px;
  104. line-height: 1.3;
  105. letter-spacing: .2px;
  106. font-weight: 600;
  107. background: rgb(255, 255, 255);
  108. }
  109. .body ul {
  110. list-style-type: none;
  111. padding-left: 0;
  112. margin-bottom: 0;
  113. font-size:12px;
  114. }
  115. .badge-lighter-green {
  116. background: #d8fdd8!important;
  117. color: green!important;
  118. }
  119. .badge-lighter-red {
  120. background: #f3dadc!important;
  121. color: #de1528!important;
  122. }
  123. .uil-map-marker {
  124. color: #2e1153;
  125. background: #f1f0fb;
  126. border-radius: 100%;
  127. font-size: 14px;
  128. padding: 4px 6px;
  129. border: 1px solid #ceccda;
  130. }
  131. .bg-primary, .btn-primary, .btn-soft-primary:hover, .btn-soft-primary:focus, .btn-soft-primary:active, .btn-soft-primary.active, .btn-soft-primary.focus, .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.focus, .btn-outline-primary:not(:disabled):not(.disabled):active, .pagination .page-item.active .page-link, .nav-pills .nav-link.active, #preloader #status .spinner .double-bounce1, #preloader #status .spinner .double-bounce2, .social-icon li a:hover, #topnav .navbar-toggle.open span:hover, .bg-animation-left.crypto-home:after, .bg-animation-left.task-management-home:after, .classic-app-image .bg-app-shape:after, .classic-saas-image .bg-saas-shape:after, .swiper-slider-hero .swiper-container .swiper-button-prev:hover, .features.fea-primary:hover, .tns-nav button.tns-nav-active, .ribbon.ribbon-primary span, .sidebar .widget .tagcloud > a:hover, .work-container.work-modern .icons .work-icon:hover, .timeline-page .timeline-item .date-label-left:after, .timeline-page .timeline-item .duration-right:after, #navmenu-nav li.account-menu.active .navbar-link, #navmenu-nav li.account-menu:hover .navbar-link, .form-check-input.form-check-input:checked, .qs-datepicker-container .qs-squares .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover, .qs-datepicker-container .qs-squares .qs-square.qs-current, .carousel-indicators [data-bs-target], .carousel-indicators .active, .tns-controls button[data-controls="prev"]:hover, .tns-controls button[data-controls="next"]:hover, .back-to-top {
  132. background-color: #2e1153 !important;
  133. color: white!important;
  134. }
  135. /* .nav-pills .nav-link {
  136. color: #625f8b !important;
  137. } */
  138. .form-check-input.form-check-input:checked{
  139. background-color: #2f55d4 !important;
  140. border-radius: 7px !important;
  141. }
  142. .small, small {
  143. background-color: #dedbf1;
  144. border-radius: 20px;
  145. padding: 3px 22px;
  146. font-size: 11px;
  147. color: #2e1153 !important;
  148. }
  149. .small, small:hover, small:focus, small:active {
  150. background-color: #2e1153;
  151. border-radius: 20px;
  152. padding: 3px 22px;
  153. font-size: 11px;
  154. color: #fff !important;
  155. }
  156. .nav-pills {
  157. margin-bottom: 0px;
  158. background:none;
  159. }
  160. .content_header {
  161. display: flex;
  162. width: 100%;
  163. line-height: 1.2;
  164. }
  165. .content_header .left {
  166. width: 40px;
  167. align-self: center;
  168. margin-top: -3px;
  169. }
  170. .content_header .right .main_title {
  171. font-size: 18px;
  172. font-weight: 600;
  173. display: block;
  174. }
  175. .content_header .left .fa {
  176. background: #f1f0fb;
  177. border-color: transparent;
  178. color: #2e1153;
  179. border-radius: 100%;
  180. font-size: 14px;
  181. border: 1px solid #ceccda;
  182. }
  183. .submit_button {
  184. background-color: #2e1153!important;
  185. border-width: 1px!important;
  186. border-color: #2e1153!important;
  187. color: #fff!important;
  188. border-radius: 30px!important;
  189. padding: 0 11px!important;
  190. height: 28px!important;
  191. font-size: 14px!important;
  192. line-height: 1!important;
  193. font-weight: 600!important;
  194. }
  195. .ad_pref_item_header {
  196. display: flex;
  197. background: #dedbf1;
  198. padding: 7px 16px;
  199. border-radius: 7px;
  200. position: relative;
  201. font-size: 12px;
  202. font-weight: 700;
  203. justify-content: space-between;
  204. }
  205. .ad_pref_item_header .destination {
  206. width: 295px;
  207. align-self: center;
  208. }
  209. .ad_pref_item_header .second {
  210. align-self: center;
  211. width: 300px;
  212. }
  213. .ad_pref_item_header .third {
  214. width: 200px;
  215. align-self: center;
  216. margin-right: 25px;
  217. }
  218. .ad_pref_item_header .fourth {
  219. width: 50px;
  220. align-self: center;
  221. text-align: center;
  222. }
  223. .ad_pref_item_header .last {
  224. width: 125px;
  225. align-self: center;
  226. text-align: -webkit-right;
  227. }
  228. .single_ad_pref_item {
  229. display: flex;
  230. padding: 10px;
  231. margin-top: 10px;
  232. border-radius: 7px;
  233. position: relative;
  234. border: 1px solid #e9f0f3;
  235. }
  236. .single_ad_pref_item2 {
  237. display: flex;
  238. margin-top: 10px;
  239. border-radius: 5px;
  240. position: relative;
  241. background-color: whitesmoke;
  242. }
  243. .single_ad_pref_item1 {
  244. display: flex;
  245. padding: 6px;
  246. border-radius: 4px;
  247. margin-top: 10px;
  248. position: relative;
  249. background-color: #ebf9ff;
  250. color: #898686;
  251. }
  252. .single_ad_pref_item .destination {
  253. align-self: center;
  254. display: flex;
  255. }
  256. .single_ad_pref_item .destination_left {
  257. align-self: center;
  258. }
  259. .single_ad_pref_item:hover {
  260. background: #f5f4fd;
  261. }
  262. .single_ad_pref_item .left {
  263. align-self: center;
  264. }
  265. .ad_pref_part .single_ad_pref_item .left strong {
  266. color: #393b3e;
  267. font-size: 12px;
  268. }
  269. .single_ad_pref_item .label_badge_radius {
  270. background-image: linear-gradient(90deg,rgba(46,17,83,.19),#f5f4fd);
  271. color: #2e1153;
  272. border-radius: 20px;
  273. padding: 1px 10px;
  274. font-size: 11px;
  275. font-weight: 400;
  276. line-height: 1.3;
  277. letter-spacing: .2px;
  278. }
  279. .single_ad_pref_item .middle {
  280. align-self: center;
  281. margin-right: 25px;
  282. }
  283. .single_ad_pref_item .status_column {
  284. align-self: center;
  285. text-align: center;
  286. }
  287. .single_ad_pref_item .right {
  288. align-self: center;
  289. text-align: -webkit-right;
  290. }
  291. .table {
  292. width: 100%;
  293. color: #6e6b7b;
  294. }
  295. .list_table thead tr th {
  296. font-size: 12px;
  297. font-weight: 700;
  298. background-color: #dedbf1!important;
  299. text-transform: capitalize;
  300. color: #343434;
  301. }
  302. .list_table thead tr th {
  303. padding: 11px 6px 10px!important;
  304. }
  305. .list_table .institute_info {
  306. display: flex !important;
  307. }
  308. .list_table .institute_info .left {
  309. width: 45px;
  310. align-self: center;
  311. }
  312. .list_table .institute_info .left .fa {
  313. background: #f1f0fb;
  314. padding: 10px;
  315. border-radius: 100%;
  316. font-size: 14px;
  317. color: #2e1153;
  318. }
  319. tbody, td, tfoot, th, thead, tr {
  320. border-color: inherit;
  321. border-style: dashed;
  322. border-width: 0;
  323. }
  324. .change_pass_btn {
  325. margin-top: 0;
  326. color: #2e1153;
  327. border: 1px solid #dedbf1;
  328. border-radius: 50%;
  329. padding: 5px 6px;
  330. margin-right: 0;
  331. background: #dedbf1;
  332. font-size: 15px!important;
  333. }
  334. .navbar {
  335. display: inline-block;
  336. }
  337. .change_pass_btn:hover {
  338. color: #ff7f00;
  339. transition: all 1s cubic-bezier(.19,1,.22,1) 0s;
  340. border: 1px solid #ff7f00!important;
  341. }
  342. .card {
  343. background-color: inherit;
  344. }
  345. .education{
  346. padding: 10px 16px;
  347. background-color: #dedbf1!important;
  348. margin-left: -12px;
  349. margin-right: -12px;
  350. border-radius: 4px 4px 0px 0px;
  351. font-size: 12px;
  352. }
  353. .btn2{
  354. background-color: #2e1153 !important;
  355. color:white !important;
  356. border-radius: 20px;
  357. box-shadow:none !important;
  358. padding:3px 13px !important;
  359. font-size:13px;
  360. }
  361. .btn2:hover{
  362. background: #fff !important;
  363. color: #2e1153 !important;
  364. border-radius: 20px;
  365. border-color: #2e1153!important;
  366. }
  367. .btncl{
  368. padding: 2px 6px;
  369. color: #ffffff !important;
  370. background-color: #ffc107 !important;
  371. border-radius: 30px;
  372. }
  373. .btncl:hover {
  374. background-color: #ffffff !important;
  375. border-color: #ffc107 !important;
  376. color: #ffc107 !important;
  377. }
  378. .btn3{
  379. background-color: #2e1153 !important;
  380. color:white !important;
  381. border-radius: 20px;
  382. box-shadow:none !important;
  383. padding:3px 17px !important;
  384. font-size:13px;
  385. }
  386. .btn3:hover{
  387. background: #fff !important;
  388. color: #2e1153 !important;
  389. border-radius: 20px;
  390. border-color: #2e1153!important;
  391. }
  392. .features.fea-primary:hover {
  393. background-color:white !important;
  394. }
  395. .label_badge_radius {
  396. border-radius: 20px;
  397. padding: 1px 10px;
  398. font-size: 13px;
  399. font-weight: 800;
  400. line-height: 1.3;
  401. letter-spacing: .2px;
  402. display: inline-block;
  403. }
  404. .fea.icon-sm {
  405. height: 10px;
  406. width: 12px;
  407. }
  408. .key-feature:hover {
  409. transform: none;
  410. box-shadow: none !important;
  411. }
  412. .label_badge_radius {
  413. border-radius: 20px;
  414. padding: 1px 10px;
  415. font-size: 11px;
  416. font-weight: 400;
  417. line-height: 1.3;
  418. letter-spacing: .2px;
  419. display: inline-block;
  420. }
  421. .test_list {
  422. display: flex;
  423. flex-direction: row;
  424. width: 100%;
  425. margin: 10px 0;
  426. }
  427. .test_list .test_open {
  428. background: #dfdcf2;
  429. }
  430. .test_list .btn {
  431. display: inline-block;
  432. padding: 8px 16px;
  433. border-radius: 5px;
  434. border: 1px solid #d8e2e7;
  435. font-size: 13px;
  436. font-weight: 500;
  437. }
  438. .btn5{
  439. background-color:#dfdcf2 !important;
  440. }
  441. .btn6:hover{
  442. background-color:#dfdcf2 !important;
  443. }
  444. .btn7:hover{
  445. background-color:#dfdcf2 !important;
  446. }
  447. .list_table .label_badge_light {
  448. border-radius: 20px;
  449. padding: 1px 10px;
  450. font-size: 10px !important;
  451. font-weight: 400;
  452. line-height: 1.3;
  453. color: black;
  454. border-top-left-radius: 0;
  455. border-bottom-left-radius: 0;
  456. background-image: linear-gradient(to right, #dedbf1 , #f5f4fd);
  457. }
  458. .icon_bar {
  459. width: fit-content;
  460. overflow: auto;
  461. border-radius: 0.25rem;
  462. padding: 2px 4px;
  463. margin: 0 auto;
  464. border: 0.5px solid #d8e2e7;
  465. }
  466. .icon_bar a {
  467. text-align: center;
  468. padding: 0;
  469. color: #818084;
  470. font-size: 16px;
  471. margin: 0 3px;
  472. border-bottom: none;
  473. top: 0;
  474. }
  475. element.style {
  476. border-bottom: 0.5px dashed #e3e8ec;
  477. padding-bottom: 10px;
  478. }
  479. .info-palate {
  480. width: 100%;
  481. float: left;
  482. margin: 10px 0;
  483. position: relative;
  484. font-size: 12px !important;
  485. }
  486. .stage_form_header {
  487. display: flex;
  488. width: 100%;
  489. margin-bottom: 20px;
  490. line-height: 1.2;
  491. background-image: linear-gradient(to right, #dedbf1 , #f5f4fd);
  492. padding: 7px 10px;
  493. border-radius: 4px;
  494. border: none;
  495. }
  496. .stage_form_header .left {
  497. width: 40px;
  498. align-self: center;
  499. }
  500. .stage_form_header .right {
  501. width: 95%;
  502. }
  503. .stage_form_header .right .main_title {
  504. font-size: 13px;
  505. font-weight: 600;
  506. color: black;
  507. display: block;
  508. }
  509. .stage_form_header .right .sub_title {
  510. color: #343434;
  511. font-weight: 400;
  512. }
  513. .icn{
  514. background: #fff;
  515. border-radius: 100%;
  516. font-size: 14px;
  517. border: 1px solid #ceccda;
  518. }
  519. .tbl {
  520. color: #868e96;
  521. font-size: 10px;
  522. font-weight: 600 !important;
  523. margin:0px !important;
  524. }
  525. .tbl2 {
  526. font-weight: 600 !important;
  527. font-size: 11px !important;
  528. }
  529. /* new css */
  530. .shadow {
  531. box-shadow: none !important;
  532. }
  533. .nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
  534. background-color: #dedbf1;
  535. font-size: 9px;
  536. color: #2e1153 !important;
  537. padding: 2px 15px !important;
  538. border-radius: 12px !important;
  539. }
  540. .nav-pills .nav-link.active{
  541. background-color: #dedbf1;
  542. font-size: 9px;
  543. color: #ffffff !important;
  544. padding: 2px 15px !important;
  545. border-radius: 12px !important;
  546. }
  547. .profile_top_part_info {
  548. background: linear-gradient(to bottom, #FFF 0%,#FFF 55%,#ebe8ff 80%,#eceaf7 100%);
  549. border-bottom: 1px solid #dedbf1;
  550. padding: 15px;
  551. }
  552. .profile_top_part_info .whole_part {
  553. width: 100%;
  554. display: flex;
  555. height: 145px;
  556. }
  557. .profile_top_part_info .whole_part .left_part {
  558. width: 150px;
  559. position: relative;
  560. line-height: 145px;
  561. }
  562. .profile_top_part_info .whole_part .left_part .profile-photo {
  563. left: 48%;
  564. transform: translate(-50%, 0);
  565. margin-left: 0 !important;
  566. }
  567. .profile-photo {
  568. position: absolute;
  569. }
  570. .profile-photo .profile_pic {
  571. width: 130px;
  572. }
  573. .profile_pic img {
  574. border: 2px solid #2e1153;
  575. border-radius: 1.25rem;
  576. }
  577. .profile_top_part_info .whole_part .right_part {
  578. width: calc(100% - 150px);
  579. display: flex;
  580. }
  581. .profile_top_part_info .whole_part .right_part .right_part_right {
  582. width: 100%;
  583. margin-top: 10px;
  584. }
  585. .right_part_right_whole {
  586. display: flex;
  587. width: 100%;
  588. position: relative;
  589. justify-content: flex-end;
  590. }
  591. .summary_bordered_box {
  592. text-align-last: start;
  593. margin: 10px 20px 0;
  594. padding: 15px;
  595. border-radius: 0.25rem;
  596. position: relative;
  597. width: calc(100% - 310px);
  598. border: 1px solid #e9f0f3;
  599. }
  600. .review-block-title {
  601. font-size: 18px;
  602. font-weight: 600;
  603. margin-bottom: 3px !important;
  604. }
  605. .label {
  606. display: inline-block;
  607. line-height: 1;
  608. color: #fff;
  609. text-align: center;
  610. white-space: nowrap;
  611. vertical-align: baseline;
  612. border-radius: 0.25rem;
  613. font-size: 10px;
  614. font-weight: 400;
  615. }
  616. .left_function_part {
  617. display: flex;
  618. width: 100%;
  619. border-radius: 0.25rem;
  620. }
  621. .left_function_part .left {
  622. width: 125px;
  623. align-self: center;
  624. padding-right: 10px;
  625. }
  626. .left_function_part .left span {
  627. font-size: 10px;
  628. color: #2e1153;
  629. }
  630. .left_function_part .right {
  631. width: calc(100% - 125px);
  632. display: flex;
  633. }
  634. .top_part_status_name {
  635. border-radius: 20px;
  636. padding: 1px 22px 1px 10px;
  637. font-size: 10px;
  638. font-weight: 400;
  639. line-height: 1.3;
  640. letter-spacing: .2px;
  641. top: 0;
  642. position: relative;
  643. width: fit-content;
  644. display: flex;
  645. }
  646. .dropdown-menu {
  647. display: none;
  648. float: left;
  649. min-width: 7rem;
  650. padding: 0.5rem 0;
  651. margin: 0.125rem 0 0;
  652. color: #212529;
  653. text-align: left;
  654. list-style: none;
  655. background-color: #fff;
  656. background-clip: padding-box;
  657. border: 1px solid rgba(0,0,0,.15);
  658. border-radius: 0.25rem;
  659. font-size: 11px;
  660. background-color: #dedbf1;
  661. }
  662. .dropdown-item {
  663. display: block;
  664. width: 100%;
  665. clear: both;
  666. font-weight: 400;
  667. text-align: inherit;
  668. white-space: nowrap;
  669. background: 0 0;
  670. border: 0;
  671. padding: 4px 12px;
  672. }
  673. .top_part_status .dropdown .dropdown-menu.show .dropdown-item:first-child {
  674. border-top-left-radius: 0.25rem;
  675. border-top-right-radius: 0.25rem;
  676. }
  677. .top_part_status .dropdown .dropdown-menu.show .dropdown-item:hover {
  678. background: #2e1153;
  679. color: #fff !important;
  680. }
  681. .top_info_left_part {
  682. float: left;
  683. padding-top: 15px;
  684. margin-left: -15px;
  685. }
  686. .grade_box {
  687. white-space: nowrap;
  688. max-width: 100%;
  689. }
  690. .grade_box .grade_disable {
  691. background: #fff;
  692. color: #666666;
  693. }
  694. .sing_grade {
  695. display: inline-block;
  696. text-align: center;
  697. font-size: 10px;
  698. cursor: pointer;
  699. border-radius: 0.25rem;
  700. padding: 3px;
  701. }
  702. .grade_box .grade_A_hover:hover {
  703. background: #28a745;
  704. color: #fff;
  705. }
  706. .grade_box .grade_B_hover:hover {
  707. background: #ffc107;
  708. color: #fff;
  709. }
  710. .grade_box .grade_D_hover:hover {
  711. background: #c6d0d8;
  712. color: #fff;
  713. }
  714. .grade_box .grade_S_hover:hover {
  715. background: #007bff;
  716. color: #fff;
  717. }
  718. .grade_box .grade_P_hover:hover {
  719. background: #dc3545;
  720. color: #fff;
  721. }
  722. .grade_box .grade_Z_hover:hover {
  723. background: #17a2b8;
  724. color: #fff;
  725. }
  726. .top_info_part {
  727. display: flex;
  728. float: right;
  729. }
  730. .top_info_part .round_icon_badge {
  731. color: #fff;
  732. width: fit-content;
  733. border-radius: 5px;
  734. font-size: 12px;
  735. font-weight: 600;
  736. letter-spacing: .2px;
  737. display: flex;
  738. border-radius: 15px;
  739. line-height: 16px;
  740. }
  741. .top_info_part .round_icon_badge .icon {
  742. border-radius: 15px;
  743. width: 27px;
  744. font-size: 12px;
  745. background: white;
  746. border: 1px solid #ceccda;
  747. height: 27px;
  748. text-align: center;
  749. line-height: 27px;
  750. }
  751. .fa {
  752. display: inline-block;
  753. font: normal normal normal 14px/1 FontAwesome;
  754. font-size: inherit;
  755. text-rendering: auto;
  756. -webkit-font-smoothing: antialiased;
  757. }
  758. .top_info_part .round_icon_badge .text {
  759. border-top-right-radius: 15px;
  760. border-bottom-right-radius: 15px;
  761. padding: 6px 10px;
  762. }
  763. .profile_top_part_info {
  764. background: linear-gradient(to bottom, #FFF 0%,#FFF 55%,#ebe8ff 80%,#eceaf7 100%);
  765. border-bottom: 1px solid #dedbf1;
  766. padding: 15px;
  767. }
  768. .card {
  769. margin-bottom: 15px;
  770. border-color: #fff;
  771. }
  772. .profile_top_part_info .whole_part {
  773. width: 100%;
  774. display: flex;
  775. height: 145px;
  776. }
  777. .profile_top_part_info .whole_part .left_part {
  778. width: 150px;
  779. position: relative;
  780. line-height: 145px;
  781. }
  782. .profile-photo .profile_pic {
  783. width: 130px;
  784. }
  785. .profile_pic img {
  786. border: 2px solid #2e1153;
  787. border-radius: 1.25rem;
  788. }
  789. .profile_pic img {
  790. width: 130px;
  791. height: 130px;
  792. }
  793. .profile_top_part_info .whole_part .right_part {
  794. width: calc(100% - 150px);
  795. display: flex;
  796. }
  797. .profile_top_part_info .whole_part .right_part .right_part_left {
  798. width: 30%;
  799. margin-top: 40px;
  800. }
  801. .review-block-title {
  802. font-size: 23px;
  803. font-weight: 600;
  804. margin-bottom: 3px !important;
  805. }
  806. .profile_top_part_info .whole_part .right_part .right_part_right {
  807. width: 70%;
  808. margin-top: 10px;
  809. }
  810. .right_part_right_whole {
  811. display: flex;
  812. width: 100%;
  813. position: relative;
  814. justify-content: flex-end;
  815. }
  816. .summary_bordered_box {
  817. text-align-last: start;
  818. padding: 15px;
  819. position: relative;
  820. border: 1px solid #e9f0f3;
  821. border-radius: 0.25rem;
  822. }
  823. .profile-photo {
  824. position: absolute;
  825. }
  826. .label_badge_radius {
  827. border-radius: 20px;
  828. padding: 1px 10px;
  829. font-size: 11px;
  830. font-weight: 400;
  831. line-height: 1.3;
  832. letter-spacing: .2px;
  833. display: inline-block;
  834. }
  835. /* .top_right_info_box {
  836. display: grid;
  837. } */
  838. .left_function_part {
  839. display: flex;
  840. width: 100%;
  841. border-radius: 0.25rem;
  842. }
  843. .left_function_part .left {
  844. width: 125px;
  845. align-self: center;
  846. border-right: 1px solid #d9dbdf;
  847. padding-right: 10px;
  848. }
  849. .left_function_part .left span {
  850. font-size: 12px;
  851. color: #2e1153;
  852. }
  853. .left_function_part .right {
  854. width: calc(100% - 125px);
  855. display: flex;
  856. }
  857. .top_part_status_name {
  858. border-radius: 20px;
  859. padding: 1px 13px 1px 10px;
  860. font-size: 11px;
  861. font-weight: 400;
  862. line-height: 1.3;
  863. letter-spacing: .2px;
  864. top: 0;
  865. position: relative;
  866. width: fit-content;
  867. display: flex;
  868. }
  869. .top_part_status .dropdown .dropdown-toggle {
  870. margin-left: 5px;
  871. cursor: pointer;
  872. }
  873. .dropdown-menu {
  874. border-color: #d8e2e7;
  875. font-size: .8125rem;
  876. }
  877. .dropdown-menu {
  878. display: none;
  879. float: left;
  880. min-width: 10rem;
  881. padding: 0.5rem 0;
  882. margin: 0.125rem 0 0;
  883. color: #212529;
  884. text-align: left;
  885. list-style: none;
  886. background-color: #fff;
  887. background-clip: padding-box;
  888. border: 1px solid rgba(0,0,0,.15);
  889. border-radius: 0.25rem;
  890. }
  891. .left_function_part .right .fa-info {
  892. position: relative;
  893. }
  894. dd {
  895. color: lightslategray;
  896. margin: 0px;
  897. }
  898. .lead_summary_part .single_glance_row {
  899. background-color: rgb(255 255 255);
  900. font-size: 12px !important;
  901. margin: 0 !important;
  902. border: none;
  903. border-bottom: 1px solid #e8eef1;
  904. border-radius: 0;
  905. padding: 8px 10px;
  906. color: #343434;
  907. font-size: 1rem;
  908. }
  909. .lead_summary_part .single_glance_row .title {
  910. font-size: 12px;
  911. font-weight: 600;
  912. color: black;
  913. }
  914. .remarks-tab {
  915. background-color: #f2f3f5 !important;
  916. }
  917. .tabs-section-nav {
  918. border-color: #fff;
  919. overflow: hidden;
  920. border: none;
  921. }
  922. .tabs-section-nav.tabs-section-nav-left .nav {
  923. padding: 10px;
  924. background-color: #f6f5fe;
  925. border-top: 1px solid #d8e2e7;
  926. border-bottom: 1px solid #d8e2e7;
  927. }
  928. .tabs-section-nav.tabs-section-nav-left .nav-item {
  929. width: 90px;
  930. margin-right: 10px;
  931. }
  932. .tabs-section-nav.tabs-section-nav-left .nav-item {
  933. margin-bottom: -1px;
  934. }
  935. .tabs-section-nav .nav-item {
  936. background: transparent !important;
  937. }
  938. .tabs-section-nav .nav-item:first-child .nav-link {
  939. border-left-color: #f6f5fe;;
  940. }
  941. .tabs-section-nav.tabs-section-nav-left .nav-link, .tabs-section-nav.tabs-section-nav-left .nav-link-in {
  942. border-radius: 0 !important;
  943. background: transparent !important;
  944. }
  945. .tabs-section-nav .nav-link.active .nav-link-in {
  946. padding-bottom: 8px;
  947. }
  948. .tabs-section-nav .nav-link.active .nav-link-in {
  949. border-bottom: #f6f5fe;;
  950. }
  951. .remarks-tab .nav-item .nav-link.active .nav-link-in i {
  952. color: #2e1153 !important;
  953. }
  954. .tabs-section-nav .nav-link.active .nav-link-in {
  955. border-top-color: #f6f5fe;
  956. }
  957. .tabs-section-nav.tabs-section-nav-left .nav-item:last-child .nav-link.active {
  958. border-right: solid 1px #f6f5fe;
  959. }
  960. .tabs-section-nav .nav-link.active {
  961. border-bottom-color: #f6f5fe;
  962. border-right-color: #f6f5fe;
  963. border: none !important;
  964. }
  965. .tabs-section-nav a.color_blue .nav-link-in small {
  966. color: #2e1153 ;
  967. }
  968. .tabs-section-nav .nav-link .nav-link-in small {
  969. background: #dedbf1 ;
  970. border-radius: 20px;
  971. padding: 3px 17px;
  972. font-size: 11px;
  973. font-weight: 600;
  974. line-height: 1.3;
  975. letter-spacing: .2px;
  976. width: 90px;
  977. margin-top: 4px;
  978. }
  979. .tabs-section-nav .nav-link .nav-link-in small:hover {
  980. background: #2e1153;
  981. color: #fff ;
  982. }
  983. .tab-content>.active {
  984. display: block;
  985. }
  986. .box-typical.box-typical-padding {
  987. padding: 20px 15px;
  988. }
  989. .box-typical {
  990. border: none !important;
  991. }
  992. .content_header {
  993. display: flex;
  994. width: 100%;
  995. line-height: 1.2;
  996. margin-left: 13px;
  997. }
  998. .content_header .left {
  999. width: 40px;
  1000. align-self: center;
  1001. margin-top: -3px;
  1002. }
  1003. .content_header .left .fa{
  1004. background: #f1f0fb;
  1005. border-color: transparent;
  1006. color: #2e1153;
  1007. border-radius: 100%;
  1008. font-size: 14px;
  1009. border: 1px solid #ceccda;
  1010. }
  1011. .content_header .right .main_title {
  1012. font-size: 18px;
  1013. font-weight: 600;
  1014. display: block;
  1015. }
  1016. .action_dropdown {
  1017. display: inline;
  1018. }
  1019. .action_dropdown .dropdown-toggle {
  1020. border-radius: 50%;
  1021. cursor: pointer;
  1022. }
  1023. .set_req_drop_toggle {
  1024. border: 1px solid #2e1153 !important;
  1025. color: #2e1153 !important;
  1026. background: #fff !important;
  1027. }
  1028. .box-typical .box-typical-header {
  1029. display: table;
  1030. width: 100%;
  1031. }
  1032. .label {
  1033. font-size: 10px;
  1034. font-weight: 400;
  1035. }
  1036. .label_badge_radius1 {
  1037. background-image: linear-gradient(to right, rgb(46 17 83 / 19%), rgb(245, 244, 253));
  1038. color: rgb(46, 17, 83);
  1039. border-radius: 20px;
  1040. padding: 1px 10px;
  1041. font-size: 11px;
  1042. font-weight: 400;
  1043. line-height: 1.3;
  1044. letter-spacing: .2px;
  1045. display: inline-block;
  1046. }
  1047. .text-muted {
  1048. font-size: 12px;
  1049. padding: 4px 0 0;
  1050. display: block;
  1051. }
  1052. .box-typical .box-typical-header .tbl-cell.tbl-cell-action-bordered {
  1053. border:none;
  1054. }
  1055. .bhoechie-tab-container {
  1056. display: flex;
  1057. }
  1058. .bhoechie-tab-menu {
  1059. width: 13%;
  1060. background: #eef2f4;
  1061. background-color: #eef2f4;
  1062. color: #ff7f00;
  1063. }
  1064. .list_group_item {
  1065. padding: 9px 9px !important;
  1066. width: 40px;
  1067. border-top: 1px solid #f2f3f5 !important;
  1068. border-left: 1px solid #f2f3f5 !important;
  1069. }
  1070. .bhoechie-tab-content {
  1071. background-color: #eef2f4;
  1072. padding-left: 0;
  1073. padding-top: 5px;
  1074. padding-bottom: 5px;
  1075. }
  1076. .div_height {
  1077. height: 188px;
  1078. position: relative;
  1079. }
  1080. .tab_add_btn {
  1081. position: inherit;
  1082. color: #625f8b;
  1083. cursor: pointer;
  1084. float: right;
  1085. margin-right: 5px;
  1086. margin-bottom: 5px;
  1087. }
  1088. .info_middle {
  1089. margin: 0;
  1090. position: absolute;
  1091. top: 50%;
  1092. left: 50%;
  1093. margin-right: -50%;
  1094. transform: translate(-50%, -50%);
  1095. font-size: 12px;
  1096. }
  1097. .box-typical.box-typical-padding {
  1098. padding: 20px 15px;
  1099. }
  1100. .profile_tab_basic_info .single_part {
  1101. border: 1px solid #d8e2e7;
  1102. border-radius: 0.25rem;
  1103. padding: 10px;
  1104. display: grid;
  1105. height: 145px;
  1106. }
  1107. .profile_tab_basic_info .single_part table td {
  1108. padding: 2px 0;
  1109. color: #868e96;
  1110. font-size: 12px;
  1111. }
  1112. .content_header .left .font-icon {
  1113. background: #f1f0fb;
  1114. border-color: transparent;
  1115. color: #2e1153;
  1116. border-radius: 100%;
  1117. font-size: 14px;
  1118. border: 1px solid #ceccda;
  1119. }
  1120. .list_table thead tr th, .list_table tbody tr td {
  1121. padding: 11px 6px 10px;
  1122. }
  1123. .list_table .institute_info .left {
  1124. width: 45px;
  1125. align-self: center;
  1126. }
  1127. .list_table .label_badge_light {
  1128. border-radius: 20px;
  1129. padding: 1px 10px;
  1130. font-size: 10px;
  1131. font-weight: 400;
  1132. line-height: 1.3;
  1133. letter-spacing: .2px;
  1134. color: black;
  1135. border-top-left-radius: 0;
  1136. border-bottom-left-radius: 0;
  1137. background-image: linear-gradient(to right, #dedbf1 , #f5f4fd);
  1138. }
  1139. .list_table .institute_info .left .fa {
  1140. background: #f1f0fb;
  1141. padding: 10px;
  1142. border-radius: 100%;
  1143. font-size: 14px;
  1144. color: #2e1153;
  1145. }
  1146. .list_table .institute_info {
  1147. display: flex;
  1148. }
  1149. .content_header .left .fa, {
  1150. padding: 7px 6px;
  1151. background: #f1f0fb;
  1152. border-color: transparent;
  1153. color: #2e1153;
  1154. border-radius: 100%;
  1155. font-size: 14px;
  1156. border: 1px solid #ceccda;
  1157. }
  1158. </style>
  1159. <body>
  1160. <header id="" class="defaultscroll sticky">
  1161. <div class="container-fluid">
  1162. <div class="row">
  1163. <div class="col-lg-12">
  1164. <nav class="mt-2 header-navbar navbar-expand-lg navbar-fixed align-items-center navbar-brand-center">
  1165. <div class="navbar-container d-flex content">
  1166. <div class="col-md-10">
  1167. <div class="d-flex align-items-center">
  1168. <ul class="nav navbar-nav mr-auto header_left">
  1169. <li class="nav-item d-flex">
  1170. <a href="" class="navbar-brand router-link-exact-active router-link-active">
  1171. <img src="web/images/logo.png" style="max-width: 130px; height: 35px;">
  1172. </a>
  1173. <div style="align-self: center;">
  1174. <span style="font-weight: 600; font-size: 18px;">DEMO</span>
  1175. </div>
  1176. </li>
  1177. </ul>
  1178. </div>
  1179. </div>
  1180. <div class="col-md-2" style="display:flex;">
  1181. <ul class="nav navbar-nav align-items-center ml-auto header_right ps-5">
  1182. <li class="nav-item dropdown dropdown-notification">
  1183. <a href="">
  1184. <i class="fa fa-bell change_pass_btn"></i>
  1185. </a>
  1186. </li>
  1187. </ul>
  1188. <ul class="nav navbar-nav align-items-center ml-auto header_right ps-2">
  1189. <li class="nav-item dropdown dropdown-notification">
  1190. <a href="">
  1191. <i class="fa fa-cog change_pass_btn"></i>
  1192. </a>
  1193. </li>
  1194. </ul>
  1195. <ul class="nav navbar-nav align-items-center ml-auto header_right ps-2">
  1196. <li class="nav-item dropdown dropdown-notification">
  1197. <a href="">
  1198. <i class="fa fa-sign-out change_pass_btn"></i>
  1199. </a>
  1200. </li>
  1201. </ul>
  1202. <ul class="nav navbar-nav align-items-center ml-auto header_right ps-2">
  1203. <li class="nav-item dropdown dropdown-notification">
  1204. <a href="">
  1205. <h5 class="change_pass_btn" style="height: 33px; margin-top: 7px; padding: 5px 8px;">IZ</h5>
  1206. </a>
  1207. </li>
  1208. </ul>
  1209. </div>
  1210. </div>
  1211. </nav>
  1212. </div>
  1213. </div>
  1214. </div>
  1215. </header>
  1216. <!-- Hero Start -->
  1217. <section class="bg-half-170 d-table w-100 it-home" style="background-color: #efefef;">
  1218. <div class="container-fluid">
  1219. <div class="row">
  1220. <div class="col-md-12 mt-4" style="padding-left: 21px; padding-right: 25px;">
  1221. <div class="card profile_top_part_info">
  1222. <div class="whole_part">
  1223. <div class="left_part">
  1224. <div class="profile-photo" style="margin-left: 25px;">
  1225. <div class="profile_pic" style="border-radius: 0px;-webkit-border-radius:0px;">
  1226. <img src="web/images/male.png" alt="">
  1227. </div>
  1228. </div>
  1229. </div>
  1230. <div class="right_part">
  1231. <div class="right_part_right">
  1232. <div class="right_part_right_whole">
  1233. <div class="summary_bordered_box" style="line-height: 20px; width: inherit; background: linear-gradient(to bottom, #FFF 50%,#FFF 35%,#dedbf1 80%,#dedbf1 100%); height: 130px; margin: 0 15px 0 0;">
  1234. <div class="review-block-title mb-0">
  1235. <span>Mr B</span>
  1236. <span>Islam</span>
  1237. </div>
  1238. <label class="label" style="padding: 0; background: #fff;">
  1239. <label class="label" style="background: #2e1153; padding: 3px 7px; border-top-right-radius: 0; border-bottom-right-radius: 0; font-size: 10px;">
  1240. Apply Reference
  1241. </label>
  1242. <label class="label" style="background: #fff; padding: 2px 7px 2px 4px; color: #2e1153; font-weight: 600; border-top-left-radius: 0; border-bottom-left-radius: 0;border: 1px solid #ceccda; position: relative; left: -3px; font-size: 10px;">
  1243. 114673
  1244. </label>
  1245. </label>
  1246. <br>
  1247. <span style="font-size:10px;">
  1248. <span style="color: #868e96;">Nationality:</span>
  1249. <strong>Bangladesh</strong>
  1250. </span>
  1251. <br>
  1252. <span style="font-size:10px;">
  1253. <span style="color: #868e96;">Gender:</span>
  1254. <strong>Male</strong>
  1255. </span>
  1256. <br>
  1257. <span style="font-size:10px;">
  1258. <span style="color: #868e96;">Funding:</span>
  1259. <strong>Self Funded</strong>
  1260. </span>
  1261. </div>
  1262. <div class="top_right_info_box" style="width: inherit; border: 1px solid #e9f0f3; border-radius: 0.25rem; padding: 15px; background: linear-gradient(to bottom, #FFF 50%,#FFF 35%,#dedbf1 80%,#dedbf1 100%); margin-right: 15px; display: grid;">
  1263. <div class="left_function_part">
  1264. <div class="left" style="margin-top:-10px;">
  1265. <span>
  1266. <i class="fa fa-folder-open-o mr-1"></i>
  1267. Documents
  1268. </span>
  1269. </div>
  1270. <div class="right">
  1271. <div class="top_part_status" style="position: relative; width: fit-content; margin-left: 10px;">
  1272. <span class="top_part_status_name" style=" background: #fff0d6; color: #fdad2a;">
  1273. Outstanding
  1274. </span>
  1275. <div class="dropdown" style="top: -4px; position: absolute; right: 7px;">
  1276. <i class="fa fa-caret-down dropdown-toggle add_hover tooltips" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true" data-original-title="Change Status" style="color: #fdad2a;"></i>
  1277. <div class="dropdown-menu" aria-labelledby="dropdownMenuButton" x-placement="bottom-start" style="position: absolute; transform: translate3d(438px, 16px, 0px); top: 0px; left: 0px; will-change: transform; margin-left: -75px; z-index: 2; margin-top: 10px;">
  1278. <a class="dropdown-item document_review_status_change" data-sval="1" name="sublead_status" href="#">Received</a>
  1279. <a class="dropdown-item document_review_status_change activate" data-sval="2" name="sublead_status" href="#">Outstanding</a>
  1280. <a class="dropdown-item document_review_status_change" data-sval="3" name="sublead_status" href="#">Terminated</a>
  1281. </div>
  1282. </div>
  1283. </div>
  1284. <div class="dropdown d-inline reason_drop">
  1285. <i class="fa fa-info-circle ml-2 dropdown-toggle hand" style=" font-size: 15px; padding: 0px; border-radius: 0.25rem; width: fit-content; color: #dbdfe3; display: inline-block; margin-left: 10px; line-height: 17px;"></i>
  1286. </div>
  1287. <i class="fa fa-info tooltips" style="font-size: 15px; padding: 0; border-radius: 0.25rem; width: fit-content; color: #dbdfe3; display: inline-block; margin-left: 10px; line-height: 17px; top: 0;"></i>
  1288. </div>
  1289. </div>
  1290. <div class="left_function_part mb-1">
  1291. <div class="left" style="margin-top:-5px;">
  1292. <span>
  1293. <i class="fa fa-bolt mr-1"></i>
  1294. App Quality
  1295. </span>
  1296. </div>
  1297. <div class="right">
  1298. <div class="top_part_status" style="position: relative; width: fit-content; margin-left: 10px;">
  1299. <span class="top_part_status_name" style="background: #f3dadc; color: #de1528;">
  1300. Pending
  1301. </span>
  1302. <div class="dropdown" style="top: -4px; position: absolute; right: 7px;">
  1303. <i class="fa fa-caret-down dropdown-toggle add_hover tooltips" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true" data-original-title="Change Status" style="color: #de1528;"></i>
  1304. <div class="dropdown-menu" aria-labelledby="dropdownMenuButton" x-placement="bottom-start" style="position: absolute; transform: translate3d(10px, 13px, 0px); top: 0px; left: 0px; will-change: transform; margin-left: -75px; z-index: 2; margin-top: 10px;">
  1305. <a class="dropdown-item document_review_status_change" data-sval="1" name="sublead_status" href="#">Poor</a>
  1306. <a class="dropdown-item document_review_status_change activate" data-sval="2" name="sublead_status" href="#">Average</a>
  1307. <a class="dropdown-item document_review_status_change" data-sval="3" name="sublead_status" href="#">Good</a>
  1308. </div>
  1309. </div>
  1310. </div>
  1311. </div>
  1312. </div>
  1313. <div class="left_function_part mb-1">
  1314. <div class="left" style="margin-top:-5px;">
  1315. <span>
  1316. <i class="fa fa-check-circle-o mr-1"></i>
  1317. Course Verified
  1318. </span>
  1319. </div>
  1320. <div class="right">
  1321. <div class="top_part_status" style="position: relative; width: fit-content; margin-left: 10px;">
  1322. <span class="top_part_status_name" style="background: #e7f3ea; color: #0ba52e; padding: 1px 10px;">
  1323. Verified
  1324. </span>
  1325. </div>
  1326. <div class="dropdown d-inline reason_drop">
  1327. <i class="fa fa-info-circle ml-2 dropdown-toggle hand" style=" font-size: 15px; padding: 0px; border-radius: 0.25rem; width: fit-content; color: #dbdfe3; display: inline-block; margin-left: 10px; line-height: 17px;"></i>
  1328. </div>
  1329. </div>
  1330. </div>
  1331. <div class="left_function_part">
  1332. <div class="left" style="margin-top:-10px;">
  1333. <span>
  1334. <i class="fa fa-check-square-o mr-2"></i>
  1335. Approved
  1336. </span>
  1337. </div>
  1338. <div class="right ms-5">
  1339. -
  1340. </div>
  1341. </div>
  1342. </div>
  1343. <div class="top_right_info_box" style="width: inherit; border: 1px solid #e9f0f3; border-radius: 0.25rem; padding: 15px; background: linear-gradient(to bottom, #FFF 50%,#FFF 35%,#dedbf1 80%,#dedbf1 100%); margin-right: 15px; display: grid;">
  1344. <span style="margin-bottom: -10px; display: block; line-height: 18px; font-size:11px !important;">
  1345. <i class="fa fa-building-o mr-1"></i>
  1346. <strong class="margin-bottom: 3px;">International Education Counselling Centre (IECC)</strong>
  1347. <br>
  1348. <span style="margin-left: 16px; color: #868e96;">
  1349. Head Office
  1350. </span>
  1351. <br>
  1352. <span style="margin-left: 16px; color: #868e96;">
  1353. admin@iecc.co.uk
  1354. </span>
  1355. <br>
  1356. <span style="display: block; line-height: 18px;">
  1357. <i class="fa fa-user mr-1"></i>
  1358. <span class="ms-1">
  1359. Mr XYZ
  1360. </span>
  1361. <br>
  1362. <span class="ms-3">
  1363. xyz@mail.com
  1364. </span>
  1365. </span>
  1366. </span>
  1367. </div>
  1368. <div class="top_right_info_box" style="width: inherit; border: 1px solid #e9f0f3; border-radius: 0.25rem; padding: 15px; background: linear-gradient(to bottom, #FFF 50%,#FFF 35%,#dedbf1 80%,#dedbf1 100%); margin-right: 15px; display: grid;">
  1369. <span style="margin-bottom: -10px; display: block; line-height: 18px; font-size:11px !important;">
  1370. <i class="fa fa-building-o mr-1"></i>
  1371. <strong class="margin-bottom: 3px;">International Education Counselling Centre (IECC)</strong>
  1372. <br>
  1373. <span style="margin-left: 16px; color: #868e96;">
  1374. Head Office
  1375. </span>
  1376. <br>
  1377. <span style="margin-left: 16px; color: #868e96;">
  1378. admin@iecc.co.uk
  1379. </span>
  1380. <br>
  1381. <span style="display: block; line-height: 18px;">
  1382. <i class="fa fa-user mr-1"></i>
  1383. <span class="ms-1">
  1384. Mr XYZ
  1385. </span>
  1386. <br>
  1387. <span class="ms-3">
  1388. xyz@mail.com
  1389. </span>
  1390. </span>
  1391. </span>
  1392. </div>
  1393. </div>
  1394. </div>
  1395. </div>
  1396. </div>
  1397. </div>
  1398. </div>
  1399. <div class="col-md-3 mt-1" style="padding: 20px;">
  1400. <div class="card shadow p-3 rounded border-0" style="background-color: white;">
  1401. <div class="info-palate mt-0" style="border-bottom: .5px dashed #e3e8ec; padding-bottom: 10px;">
  1402. <div class="left">
  1403. <div class="stage_form_header">
  1404. <div class="left">
  1405. <i class="fa fa-user icn" style="padding: 5.5px 7.5px;"></i>
  1406. </div>
  1407. <div class="right" style="align-self: center;">
  1408. <span class="main_title">Demo Account</span>
  1409. <span class="sub_title">Demo</span>
  1410. </div>
  1411. </div>
  1412. <div class="load_primary_information">
  1413. <dd class="tbl">Given Name</dd>
  1414. <dt class="tbl2 mb-2">Demo</dt>
  1415. <dd class="tbl">Family Name</dd>
  1416. <dt class="tbl2 mb-2">Demo</dt>
  1417. <dd class="tbl">Date Of Birth</dd>
  1418. <dt class="tbl2">Demo</dt>
  1419. <dd class="tbl">Nationality</dd>
  1420. <dt class="tbl2">Demo</dt>
  1421. </div>
  1422. </div>
  1423. </div>
  1424. <div class="full-box" style="padding:10px;">
  1425. <div class="card-body" style="padding:11px !important;">
  1426. <span class="fa fa-address-book" style="font-size:12px; background: rgb(245, 244, 253); padding: 6px; border-radius: 50%; border: 1px solid rgb(216, 226, 231);"></span>
  1427. <span class="h6"> Contact Information</span>
  1428. <div class="info">
  1429. <dl style="position: relative;">
  1430. <dt style="font-size: 11px; font-weight: 200;">
  1431. <i class="fa fa-phone"></i>
  1432. <span>+441142725444</span>
  1433. </dt>
  1434. <dt class="mt-1" style="font-size: 11px; font-weight: 200;">
  1435. <i class="fa fa-envelope-o"></i>
  1436. <span>hadiur.iecc@gmail.com2</span>
  1437. </dt>
  1438. </dl>
  1439. </div>
  1440. </div>
  1441. </div>
  1442. <div class="card p-3 lead_summary_part profile_at_a_glance">
  1443. <div class="load_primary_information" style="padding: 10px; border-radius: 0.25rem; margin-bottom: 10px; border: 1px solid #e9f0f3;">
  1444. <dd>Given Name</dd>
  1445. <dt>Abdur Rajjak</dt>
  1446. <dd>Family Name</dd>
  1447. <dt>Emon</dt>
  1448. <dd>Date Of Birth</dd>
  1449. <dt>26 Jul 2001 (20 Years 6 Months)</dt>
  1450. </div>
  1451. <div class="single_glance_row mt-3">
  1452. <span class="title">Passport No:</span>
  1453. BW0337839
  1454. <span style="font-size: 12px; color: #868e96;">
  1455. (550 Days Left)
  1456. </span>
  1457. </div>
  1458. <div class="single_glance_row mt-3">
  1459. <span class="title">Visa History:</span>
  1460. <span class="label_badge_radius" style="background: #f3dadc !important; color: #de1528;">
  1461. No
  1462. </span>
  1463. </div>
  1464. <div class="single_glance_row mt-3">
  1465. <span class="title">Visa Rejection:</span>
  1466. <span class="label_badge_radius" style="background: #f3dadc !important; color: #de1528;">
  1467. No
  1468. </span>
  1469. </div>
  1470. </div>
  1471. </div>
  1472. </div><!--end col-->
  1473. <div class="col-md-9 mt-4" style="">
  1474. <div class="card border-0" style="border-radius:0px !important;">
  1475. <div class="container-fluid">
  1476. <div class="row">
  1477. <div class="col-md-12">
  1478. <div class="row align-items-center">
  1479. <div class="col-md-12 col-12" style="padding:0px;">
  1480. <div class="card rounded border-0 shadow" style="background-color:white;">
  1481. <div class="container" style="padding-left: 13px; padding-right: 12px;">
  1482. <div class="row">
  1483. <div class="col-md-12" style="border-top:1px solid #d8e2e7; border-bottom:1px solid #d8e2e7;">
  1484. <div class="col-md-3 text-center">
  1485. <ul class="nav nav-pills shadow border-bottom flex-column flex-sm-row d-md-inline-flex nav-justified mb-0 bg-white rounded-top position-relative overflow-hidden" id="pills-tab" role="tablist">
  1486. <li class="nav-item m-1">
  1487. <i class="fa fa-graduation-cap"></i></br>
  1488. <a class="nav-link active rounded" id="buy-login" data-bs-toggle="pill" href="#buy" role="tab" aria-controls="buy" aria-selected="false">
  1489. Proposal
  1490. </a><!--end nav link-->
  1491. </li><!--end nav item-->
  1492. <li class="nav-item m-1 ms-3">
  1493. <i class="fa fa-list-ul"></i></br>
  1494. <a class="nav-link rounded" id="sold-login" data-bs-toggle="pill" href="#sold" role="tab" aria-controls="sold" aria-selected="false">
  1495. Action R
  1496. </a><!--end nav link-->
  1497. </li><!--end nav item-->
  1498. </ul><!--end nav pills-->
  1499. </div>
  1500. </div>
  1501. </div>
  1502. </div>
  1503. <div class="row p-3">
  1504. <div class="col-12" style="height:300px !important;">
  1505. <div class="tab-content bg-white rounded-bottom shadow" id="pills-tabContent">
  1506. <div class="card border-0 tab-pane fade show active" id="buy" role="tabpanel" aria-labelledby="buy-login">
  1507. <div class="row align-items-center">
  1508. <div class="col-md-12 mt-2">
  1509. <div class="row">
  1510. <div class="col-md-10" style="width:83%;">
  1511. <div class="content_header ml-0">
  1512. <div class="left">
  1513. <i class="fa fa-university" style="padding: 7px;"></i>
  1514. </div>
  1515. <div class="right">
  1516. <span class="main_title">Admission Preference</span>
  1517. </div>
  1518. </div>
  1519. </div>
  1520. <div class="col-md-2 text-right">
  1521. <button class="submit_button" style="margin-left:2.6rem;">Add New</button>
  1522. </div>
  1523. </div>
  1524. </div><!--end col-->
  1525. <div class="col-md-12">
  1526. <div class="ad_pref_item_header" style="margin-top: 15px;">
  1527. <div class="destination">Destination</div>
  1528. <div class="second">University Details</div>
  1529. <div class="third">Course Information</div>
  1530. <div class="fourth">Status</div>
  1531. <div class="last">Action</div>
  1532. </div>
  1533. <div class="scrolled_content_part">
  1534. <div class="single_ad_pref_item">
  1535. <div class="destination">
  1536. <div class="destination_left">
  1537. <i class="fa fa-map"></i>
  1538. <!-- <img src="" class="img-fluid" alt=""> -->
  1539. </div>
  1540. <div class="destination_info">
  1541. <strong style="font-size:13px;">United Kingdom</strong>
  1542. </div>
  1543. </div>
  1544. <div class="left">
  1545. <div class="uni_details">
  1546. <div class="inner_left">
  1547. <i class="fa fa fa-university"></i>
  1548. </div>
  1549. <div class="inner_right">
  1550. <strong style="font-size:13px;">De Montfort University</strong></br>
  1551. <span class="label_badge_radius">Masters</span>
  1552. <span>.</span>
  1553. <span class="label_badge_radius">Apr 2021</span>
  1554. </div>
  1555. </div>
  1556. </div>
  1557. <div class="middle">
  1558. <span style="font-size:11px;">MBA with Placement</span></br>
  1559. <span class="label_badge_radius" style="background: rgb(255, 237, 204); color: orange;">2nd Choice</span>
  1560. </div>
  1561. <div class="status_column"></div>
  1562. <div class="right">
  1563. <i class="fa fa-ellipsis-v"></i>
  1564. </div>
  1565. </div>
  1566. </div>
  1567. </div><!--end col-->
  1568. </div><!--end row-->
  1569. </div><!--end teb pane-->
  1570. <div class="card border-0 tab-pane fade" id="sold" role="tabpanel" aria-labelledby="sold-login">
  1571. <div class="row align-items-center">
  1572. <div class="col-md-12 mt-2">
  1573. <div class="row">
  1574. <div class="col-md-10" style="width:83%;">
  1575. <div class="content_header ml-0">
  1576. <div class="left">
  1577. <i class="fa fa-graduation-cap" style="padding: 7px;"></i>
  1578. </div>
  1579. <div class="right">
  1580. <span class="main_title">Education History</span>
  1581. </div>
  1582. </div>
  1583. <div class="content_header ml-0 mt-3">
  1584. <div class="left">
  1585. <i class="fa fa-graduation-cap" style="padding: 7px;"></i>
  1586. </div>
  1587. <div class="right">
  1588. <span class="main_title">Bachelor</span>
  1589. </div>
  1590. </div>
  1591. </div>
  1592. <div class="col-md-12 mt-2">
  1593. <div class="table-responsive">
  1594. <table class="table table-bordered list_table">
  1595. <thead>
  1596. <tr>
  1597. <th>Institution</th>
  1598. <th>Subject</th>
  1599. <th>Result</th>
  1600. <th>Method</th>
  1601. <th>PYear</th>
  1602. <th>Country</th>
  1603. </tr>
  1604. </thead>
  1605. <tbody>
  1606. <tr>
  1607. <td>
  1608. <div class="institute_info">
  1609. <div class="left">
  1610. <i class="fa fa-university" style="padding: 7px;"></i>
  1611. </div>
  1612. <div class="right">
  1613. <span class="main_title" style="font-size: 11px;">Demo 1</span>
  1614. </div>
  1615. </td>
  1616. <td style="font-size: 11px;">test</td>
  1617. <td style="font-size: 11px;">
  1618. <span>test</span>
  1619. </td>
  1620. <td style="font-size: 11px;">test</td>
  1621. <td style="font-size: 11px;">test</td>
  1622. <td style="font-size: 11px;">test</td>
  1623. </tr>
  1624. </tbody>
  1625. </table>
  1626. </div>
  1627. </div>
  1628. </div>
  1629. </div><!--end col-->
  1630. </div><!--end row-->
  1631. <div class="row align-items-center">
  1632. <div class="col-md-12 mt-2">
  1633. <div class="row">
  1634. <div class="col-md-10" style="width:83%;">
  1635. <div class="content_header ml-0">
  1636. <div class="left">
  1637. <i class="fa fa-graduation-cap" style="padding: 7px;"></i>
  1638. </div>
  1639. <div class="right">
  1640. <span class="main_title">Masters</span>
  1641. </div>
  1642. </div>
  1643. </div>
  1644. <div class="col-md-12 mt-2">
  1645. <div class="table-responsive">
  1646. <table class="table table-bordered list_table">
  1647. <thead>
  1648. <tr>
  1649. <th>Institution</th>
  1650. <th>Subject</th>
  1651. <th>Result</th>
  1652. <th>Method</th>
  1653. <th>PYear</th>
  1654. <th>Country</th>
  1655. </tr>
  1656. </thead>
  1657. <tbody>
  1658. <tr>
  1659. <td>
  1660. <div class="institute_info">
  1661. <div class="left">
  1662. <i class="fa fa-university" style="padding: 7px;"></i>
  1663. </div>
  1664. <div class="right">
  1665. <span class="main_title" style="font-size: 11px;">Demo 2</span>
  1666. </div>
  1667. </td>
  1668. <td style="font-size: 11px;">test</td>
  1669. <td style="font-size: 11px;">
  1670. <span>test</span>
  1671. </td>
  1672. <td style="font-size: 11px;">test</td>
  1673. <td style="font-size: 11px;">test</td>
  1674. <td style="font-size: 11px;">test</td>
  1675. </tr>
  1676. </tbody>
  1677. </table>
  1678. </div>
  1679. </div>
  1680. </div>
  1681. </div><!--end col-->
  1682. </div><!--end row-->
  1683. <div class="row align-items-center">
  1684. <div class="col-md-12 mt-2">
  1685. <div class="row">
  1686. <div class="col-md-10" style="width:83%;">
  1687. <div class="content_header ml-0">
  1688. <div class="left">
  1689. <i class="fa fa-graduation-cap" style="padding: 7px;"></i>
  1690. </div>
  1691. <div class="right">
  1692. <span class="main_title">Ielts</span>
  1693. </div>
  1694. </div>
  1695. </div>
  1696. <div class="col-md-12 mt-2">
  1697. <div class="table-responsive">
  1698. <table class="table table-bordered list_table">
  1699. <thead>
  1700. <tr>
  1701. <th>Institution</th>
  1702. <th>Subject</th>
  1703. <th>Result</th>
  1704. <th>Duration</th>
  1705. </tr>
  1706. </thead>
  1707. <tbody>
  1708. <tr>
  1709. <td>
  1710. <div class="institute_info">
  1711. <div class="left">
  1712. <i class="fa fa-university" style="padding: 7px;"></i>
  1713. </div>
  1714. <div class="right">
  1715. <span class="main_title" style="font-size: 11px;">Demo 3</span>
  1716. </div>
  1717. </td>
  1718. <td style="font-size: 11px;">test</td>
  1719. <td style="font-size: 11px;">
  1720. <span>2.00</span>
  1721. <span>CGPA</span>
  1722. </td>
  1723. <td style="font-size: 11px;">June 2015 - February 2018</td>
  1724. </tr>
  1725. </tbody>
  1726. </table>
  1727. </div>
  1728. </div>
  1729. </div>
  1730. </div><!--end col-->
  1731. </div><!--end row-->
  1732. <div class="row align-items-center mt-2">
  1733. <div class="col-md-12">
  1734. <div class="row">
  1735. <div class="col-md-10" style="width:83%;">
  1736. <div class="content_header ml-0">
  1737. <div class="left">
  1738. <i class="fa fa-briefcase" style="padding: 7px;"></i>
  1739. </div>
  1740. <div class="right">
  1741. <span class="main_title">Work Experience</span>
  1742. </div>
  1743. </div>
  1744. </div>
  1745. <div class="col-md-12 mt-2">
  1746. <div class="table-responsive">
  1747. <table class="table table-bordered list_table">
  1748. <thead>
  1749. <tr>
  1750. <th>Title</th>
  1751. <th>Meth</th>
  1752. <th>Dept</th>
  1753. <th>Funding</th>
  1754. <th>Month</th>
  1755. </tr>
  1756. </thead>
  1757. <tbody>
  1758. <tr>
  1759. <td>
  1760. <div class="institute_info">
  1761. <div class="left">
  1762. <i class="fa fa-briefcase" style="padding: 7px;"></i>
  1763. </div>
  1764. <div class="right">
  1765. <span class="main_title" style="font-size: 11px;">IECC</span>
  1766. </div>
  1767. </td>
  1768. <td style="font-size: 11px;">test</td>
  1769. <td style="font-size: 11px;">test</td>
  1770. <td style="font-size: 11px;">test</td>
  1771. <td style="font-size: 11px;">test</td>
  1772. </tr>
  1773. </tbody>
  1774. </table>
  1775. </div>
  1776. </div>
  1777. </div>
  1778. </div>
  1779. </div>
  1780. </div><!--end teb pane-->
  1781. <div class="tab-pane fade" id="pills-apps" role="tabpanel" aria-labelledby="pills-apps-tab">
  1782. <div class="row align-items-center">
  1783. <div class="col-md-12 mt-2">
  1784. <div class="row">
  1785. <div class="col-md-10" style="width:83%;">
  1786. <div class="content_header ml-0">
  1787. <div class="left">
  1788. <i class="fa fa-folder-open-o" style="padding: 7px;"></i>
  1789. </div>
  1790. <div class="right">
  1791. <span class="main_title">Proposal</span>
  1792. </div>
  1793. </div>
  1794. </div>
  1795. <div class="col-md-12 mt-2">
  1796. <div class="table-responsive">
  1797. <table class="table table-bordered list_table">
  1798. <thead>
  1799. <tr>
  1800. <th>Institution</th>
  1801. <th>Subject</th>
  1802. <th>Result</th>
  1803. <th>Duration</th>
  1804. </tr>
  1805. </thead>
  1806. <tbody>
  1807. <tr>
  1808. <td>
  1809. <div class="institute_info">
  1810. <div class="left">
  1811. <i class="fa fa-folder-open-o" style="padding: 7px;"></i>
  1812. </div>
  1813. <div class="right">
  1814. <span class="main_title" style="font-size: 11px;">test</span>
  1815. </div>
  1816. </td>
  1817. <td style="font-size: 11px;">test</td>
  1818. <td style="font-size: 11px;">
  1819. <span>test</span>
  1820. <span>test</span>
  1821. </td>
  1822. <td style="font-size: 11px;">test</td>
  1823. </tr>
  1824. </tbody>
  1825. </table>
  1826. </div>
  1827. </div>
  1828. </div>
  1829. </div>
  1830. </div> <!--end row-->
  1831. <form class="login-form">
  1832. <div class="row">
  1833. <div class="col-md-12 back">
  1834. <div class="row">
  1835. <div class="col-md-12">
  1836. <div class="mb-1">
  1837. <label class="form-label"></label>
  1838. <div class="form-icon position-relative">
  1839. <input type="text" class="form-control" placeholder="Title" name="s" required="">
  1840. </div>
  1841. </div>
  1842. </div>
  1843. <div class="row">
  1844. <div class="col-md-4 back">
  1845. <div class="mb-3">
  1846. <label class="form-label"></label>
  1847. <select class="form-control" id="" name="">
  1848. <option>Methology</option>
  1849. <option>Quantitative </option>
  1850. <option>Qualitative </option>
  1851. </select>
  1852. </div>
  1853. </div>
  1854. <div class="col-md-4">
  1855. <div class="mb-1">
  1856. <label class="form-label"></label>
  1857. <div class="form-icon position-relative">
  1858. <input type="text" class="form-control" placeholder="Department" name="s" required="">
  1859. </div>
  1860. </div>
  1861. </div>
  1862. <div class="col-md-4 back">
  1863. <div class="mb-3">
  1864. <label class="form-label"></label>
  1865. <select class="form-control" id="" name="">
  1866. <option>Funding Status</option>
  1867. <option>Self-Funded</option>
  1868. <option>Govt. Scholarship</option>
  1869. <option>Other Scholarship</option>
  1870. </select>
  1871. </div>
  1872. </div>
  1873. </div>
  1874. <div class="col-md-4 back">
  1875. <div class="mb-3">
  1876. <label class="form-label"></label>
  1877. <select class="form-control" id="" name="">
  1878. <option>Month</option>
  1879. <option>1</option>
  1880. <option>2</option>
  1881. <option>3</option>
  1882. <option>4</option>
  1883. </select>
  1884. </div>
  1885. </div>
  1886. <div class="col-md-4 back">
  1887. <div class="mb-3">
  1888. <label class="form-label"></label>
  1889. <select class="form-control" id="" name="">
  1890. <option>Year</option>
  1891. <option>1</option>
  1892. <option>2</option>
  1893. <option>3</option>
  1894. <option>4</option>
  1895. </select>
  1896. </div>
  1897. </div>
  1898. </div>
  1899. </form>
  1900. </div><!--end teb pane-->
  1901. </div><!--end tab content-->
  1902. </div><!--end col-->
  1903. </div><!--end row-->
  1904. </div><!--end container-->
  1905. </div>
  1906. </div><!--end col-->
  1907. </div><!--end row-->
  1908. </div><!--end container-->
  1909. </div>
  1910. </div><!--end col-->
  1911. </div>
  1912. </div><!--end row-->
  1913. </div><!--end container-->
  1914. </section><!--end section-->
  1915. <!-- Hero End -->
  1916. <!-- Main Js -->
  1917. <script src="{{asset('web/js/bootstrap.bundle.min.js')}}"></script>
  1918. <!-- tobii js -->
  1919. <script src="{{asset('web/js/tobii.min.js')}}"></script>
  1920. <!-- SLIDER -->
  1921. <script src="{{asset('web/js/tiny-slider.js')}}"></script>
  1922. <!-- Icons -->
  1923. <script src="{{asset('web/js/feather.min.js')}}"></script>
  1924. <!-- Main Js -->
  1925. <script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
  1926. <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
  1927. <script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/11.6.15/sweetalert2.min.js"></script>
  1928. <script src="{{asset('web/js/plugins.init.js')}}"></script>
  1929. <script src="{{asset('web/js/app.js')}}"></script>
  1930. <script src="{{asset('web/js/datepicker.min.js')}}"></script>
  1931. <script src="{{asset('web/js/bootstrap.bundle.min.js')}}"></script>
  1932. <script src="{{asset('web/js/plugins.init.js')}}"></script>
  1933. <script src="{{asset('web/js/app.js')}}"></script>
  1934. <script src="{{asset('web/css/sweetalert/sweetalert.min.js')}}"></script>
  1935. <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  1936. </body>
  1937. </html>