-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1179 lines (1162 loc) · 119 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Neuvae Biotech</title>
<link rel="stylesheet" href="https://webify-13e95.kxcdn.com/demo/webify/architect/wp-content/cache/min/2/10004656050d5e32fb37f87e704beba6.css"
data-minify="1" />
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<link rel="canonical" href="https://themebubble.com/demo/webify/architect/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Home - Architect" />
<meta property="og:description" content="Effective solutions in architechture. Leverage agile frameworks to provide a robust synopsis for high level overviews Iterativecorporate strategy in sense. Learn More Everything is designed. Few things are designed well. Standards compliant whereas web-enabled tools for. Drive clicks-and-mortar catalysts for change before vertical architectures of modernism for society. 01. Research We believe that architecture should […]"
/>
<meta property="og:url" content="https://themebubble.com/demo/webify/architect/" />
<meta property="og:site_name" content="Architect" />
<meta property="article:modified_time" content="2020-02-24T05:21:59+00:00" />
<meta property="og:image" content="https://webify-13e95.kxcdn.com/demo/webify/architect/wp-content/uploads/sites/2/2019/05/v3bwnxeinqa.jpg"
/>
<meta property="og:image:width" content="1600" />
<meta property="og:image:height" content="1067" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:label1" content="Written by">
<meta name="twitter:data1" content="David Beck">
<meta name="twitter:label2" content="Est. reading time">
<meta name="twitter:data2" content="2 minutes">
<script type="application/ld+json" class="yoast-schema-graph">
{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://themebubble.com/demo/webify/architect/#website","url":"https://themebubble.com/demo/webify/architect/","name":"Architect","description":"Just another Webify Sites site","potentialAction":[{"@type":"SearchAction","target":"https://themebubble.com/demo/webify/architect/?s={search_term_string}","query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https://themebubble.com/demo/webify/architect/#primaryimage","inLanguage":"en-US","url":"https://webify-13e95.kxcdn.com/demo/webify/architect/wp-content/uploads/sites/2/2019/05/v3bwnxeinqa.jpg","width":1600,"height":1067},{"@type":"WebPage","@id":"https://themebubble.com/demo/webify/architect/#webpage","url":"https://themebubble.com/demo/webify/architect/","name":"Home - Architect","isPartOf":{"@id":"https://themebubble.com/demo/webify/architect/#website"},"primaryImageOfPage":{"@id":"https://themebubble.com/demo/webify/architect/#primaryimage"},"datePublished":"2019-03-16T09:30:29+00:00","dateModified":"2020-02-24T05:21:59+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://themebubble.com/demo/webify/architect/"]}]}]}
</script>
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//cdn.jsdelivr.net' />
<link rel='dns-prefetch' href='//webify-13e95.kxcdn.com' />
<link rel="alternate" type="application/rss+xml" title="Architect » Feed" href="https://themebubble.com/demo/webify/architect/feed/"
/>
<link rel="alternate" type="application/rss+xml" title="Architect » Comments Feed" href="https://themebubble.com/demo/webify/architect/comments/feed/"
/>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important
}
</style>
<link rel='stylesheet' id='webify-fonts-css' href='https://fonts.googleapis.com/css?family=Roboto%3A300%2C400%2C500%2C700&subset=latin%2Clatin-ext&ver=1.0.0'
type='text/css' media='all' />
<link rel='stylesheet' id='webify-font-awesome-css' href='https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css?ver=1.0.0'
type='text/css' media='all' />
<link rel='stylesheet' id='webify-font-awesome-v4-css' href='https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/v4-shims.min.css?ver=1.0.0'
type='text/css' media='all' />
<link rel='stylesheet' id='material-icon-css' href='https://fonts.googleapis.com/icon?family=Material+Icons%7CMaterial+Icons+Outlined&ver=1.0.0'
type='text/css' media='all' />
<style id='webify-style-inline-css' type='text/css'>
.tb-error-page {
background-image: url(https://webify-13e95.kxcdn.com/demo/webify/architect/wp-content/themes/webify/assets/img/error-bg.jpg)
}
.tb-page-header {
background-image: url(https://webify-13e95.kxcdn.com/demo/webify/architect/wp-content/themes/webify/assets/img/page-header-bg.png)
}
</style>
<script type='text/javascript' src='https://webify-13e95.kxcdn.com/demo/webify/architect/wp-content/cache/busting/2/demo/webify/architect/wp-includes/js/jquery/jquery-1.12.4-wp.js'
id='jquery-core-js'>
</script>
<link rel="https://api.w.org/" href="https://themebubble.com/demo/webify/architect/wp-json/" />
<link rel="alternate" type="application/json" href="https://themebubble.com/demo/webify/architect/wp-json/wp/v2/pages/5"
/>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://themebubble.com/demo/webify/architect/xmlrpc.php?rsd"
/>
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://themebubble.com/demo/webify/architect/wp-includes/wlwmanifest.xml"
/>
<meta name="generator" content="WordPress 5.5.4" />
<link rel='shortlink' href='https://themebubble.com/demo/webify/architect/' />
<link rel="alternate" type="application/json+oembed" href="https://themebubble.com/demo/webify/architect/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fthemebubble.com%2Fdemo%2Fwebify%2Farchitect%2F"
/>
<link rel="alternate" type="text/xml+oembed" href="https://themebubble.com/demo/webify/architect/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fthemebubble.com%2Fdemo%2Fwebify%2Farchitect%2F&format=xml"
/>
<link rel="icon" href="logo_small_no_text.png"
sizes="32x32" />
<link rel="icon" href="logo_small_no_text.png"
sizes="192x192" />
<link rel="apple-touch-icon" href="logo_small_no_text.png"
/>
<meta name="msapplication-TileImage" content="logo_small_no_text.png"
/>
<style type="text/css">
.tb-site-footer,
.tb-site-footer.tb-style2 {
background-image: linear-gradient(#0c161c, #0c161c);
background-color: #0c161c
}
.tb-site-footer .tb-newsletter.tb-style8 button {
background-color: #62b0e2
}
.tb-site-footer .tb-newsletter.tb-style8 button:hover {
background-color: #91c3e2
}
</style>
<noscript>
<style id="rocket-lazyload-nojs-css">
.rll-youtube-player,
[data-lazy-src] {
display: none !important
}
</style>
</noscript>
<style>
#tb-content elementor-page margin-bottom{
margin-bottom: 50px;
}
</style>
</head>
<body class="home page-template-default page page-id-5 wp-embed-responsive elementor-default elementor-kit-646 elementor-page elementor-page-5">
<div class="tb-preloader">
<!-- style="height: 150%; margin-top: -10px;" -->
<div class="tb-preloader-in">
<img src="logo_crop_v.png" alt="loader-logo">
</div>
</div>
<header class="tb-site-header tb-default-width tb-style1 tb-sticky-header tb-solid-header tb-color1 tb-header-border1">
<div class="tb-main-header">
<div class="container">
<div class="tb-main-header-in">
<div class="tb-main-header-left">
<div class="tb-site-branding">
<a href="http://www.neuvae.com/index.html" class="tb-custom-logo-link ">
<img src="logo_no_text.png" alt="logo" class="tb-custom-logo">
</a>
</div>
</div>
<div class="tb-main-header-right">
<nav class="tb-main-nav tb-primary-nav">
<ul id="nav" class="tb-primary-nav-list">
<li id="menu-item-566" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-5 current_page_item menu-item-566">
<a href="http://www.neuvae.com/index.html">Home</a>
</li>
<li id="menu-item-558" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-558">
<a href="http://www.neuvae.com/problem.html">Problem</a>
</li>
<li id="menu-item-546" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-546">
<a href="http://www.neuvae.com/solution.html">Solution</a>
</li>
<li id="menu-item-558" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-558">
<a href="http://www.neuvae.com/media.html">Media</a>
</li>
<li>
<a href="contact.html" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-545">Contact Us</a>
<li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<div class="tb-content elementor-page">
<div class="container">
<div class="row">
<div class="col-md-12">
<div data-elementor-type="wp-post" data-elementor-id="5" class="elementor elementor-5" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-1ff4513a elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="1ff4513a" data-element_type="section" data-settings="{"stretch_section":"section-stretched"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1e11a06c" data-id="1e11a06c" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-52813f0e elementor-widget elementor-widget-webify-hero-banner-widget" data-id="52813f0e" data-element_type="widget" data-widget_type="webify-hero-banner-widget.default">
<div class="elementor-widget-container">
<div class="tb-hero tb-style5 tb-flex">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="tb-vertical-middle">
<div class="tb-vertical-middle-in">
<h1 class="tb-text-slider tb-f60-lg tb-f40-sm tb-line1 tb-m0 tb-font-name" >
Pioneering a Neuvae™ Forward in Healthcare
</h1>
<div class="empty-space marg-lg-b15"></div>
<div class="tb-hero-subtitle tb-f18-lg tb-line1-6 tb-mb2" style="color: #525357;">
A proprietary model harnessing bacteriophages to boost the immune response and outcompete antibiotics, solving antimicrobial resistance.
</div>
<div class="empty-space marg-lg-b30"></div>
<div class="tb-hero-btn">
<a href="#" target="_self" style="background-color: #310064;" class="tb-btn tb-style4 tb-color19">Learn More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="tb-vertical-middle">
<div class="tb-vertical-middle-in">
<div class="tb-hero-img tb-style1">
<div class="tb-hero-img-box tb-bg" style="background-image: url(https://www.biolution.net/wp-content/uploads/2019/05/phage-on-bacteria-02-f_0200-LOGO-_4z7kbo.jpg);"></div>
<div class="tb-hero-img-box-pattern">
<div class="tb-pattern1"></div>
</div>
<div class="tb-hero-img-box-circle" style="background-color: #310064;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-64ceda01 elementor-widget elementor-widget-divider" data-id="64ceda01" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="marg-lg-b100 marg-md-b50"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div data-elementor-type="wp-page" data-elementor-id="1319" class="elementor elementor-1319" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-dc32ebf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="dc32ebf" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a6f0dd2" data-id="a6f0dd2" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5c475b4 elementor-widget elementor-widget-spacer" data-id="5c475b4" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-e776c33 elementor-widget elementor-widget-webify-text-block-with-image-widget" data-id="e776c33" data-element_type="widget" data-widget_type="webify-text-block-with-image-widget.default">
<div class="elementor-widget-container">
<div class="row">
<div class="col-lg-5">
<div class="empty-space marg-lg-b60 marg-sm-b0"></div>
<div class="tb-video-blog-text tb-style1 tb-radious-4 tb-border">
<div class="tb-section-heading tb-style2">
<div class="tb-f16-lg">Understanding the problem</div>
<div class="empty-space marg-lg-b10"></div>
<h2 class="tb-f36-lg tb-f25-sm tb-font-name tb-m0">What is AMR?</h2>
<br>
<p>Antimicrobial Resistance (AMR) is a phenomenon that occurs when bacteria, virusus, and fungi mutate and evolve to the point that current treatments such as antibiotics fail to get rid of this sort of bacteria.</p>
<p>When we use antibiotics, some bacteria die, but others survive and even multiply. The excessive and continued use of antibiotics allows for these "evolved" bacteria to become further resistant to the antibiotic. Thus making them extremely difficult or even impossible to treat.</p>
<div class="empty-space marg-lg-b30 marg-sm-b30"></div>
</div>
<div class="tb-video-btn"><a href="problem.html" class="tb-btn tb-style1">Learn more about the problem</a></div>
</div>
</div>
<div class="col-lg-7">
<div class="tb-video-block tb-style4 tb-radious-4 tb-relative">
<div class="tb-bg" style="background-image: url(https://www.rochester.edu/newscenter/wp-content/uploads/2020/09/fea-stressed-bacteria.jpg);"></div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-831deac elementor-widget elementor-widget-spacer" data-id="831deac" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
<div class="marg-lg-b100 marg-md-b50"></div>
</div>
</div>
<section class="elementor-section elementor-top-section elementor-element elementor-element-496d3fd elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="496d3fd" data-element_type="section" data-settings="{"stretch_section":"section-stretched"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4eacb3d" data-id="4eacb3d" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-34ac546 elementor-widget elementor-widget-webify-icon-box-slider-widget" data-id="34ac546" data-element_type="widget" data-widget_type="webify-icon-box-slider-widget.default">
<div class="elementor-widget-container">
<div class="tb-overflow-hidden">
<div class="tb-arrow-closest tb-poind-closest tb-slider tb-text-box-slider tb-style1 tb-bg" style="background-image:url(https://images.unsplash.com/photo-1579544757872-ce8f6af30e0f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1321&q=80">
<div class="slick-container" data-delay="" data-autoplay="0" data-loop="1" data-speed="600" data-center="0" data-slides-per-view="responsive" data-xs-slides="1" data-sm-slides="2" data-md-slides="3" data-lg-slides="4" data-add-slides="4">
<div class="slick-wrapper">
<div class="slick-slide">
<div class="tb-text-box tb-style2">
<div class="tb-text-box-in">
<h2 class="tb-special-text tb-text-box-slider-count-item tb-f48-lg tb-line0-9 tb-white-c tb-m0 tb-mb-3">10</h2>
<div class="empty-space marg-lg-b20"></div>
<h3 class="tb-font-name tb-f18-lg tb-text-box-slider-title tb-white-c tb-font-name tb-m0 tb-mt-3 tb-mb-6">million lives</h3>
<div class="empty-space marg-lg-b20"></div>
<div class="tb-white-c7 tb-text-box-slider-content tb-mb-6 tb-mt-6"> will be the annual death toll by 2050 as a result of a lack of solutions for anti-microbial resistance.</div>
</div>
</div>
</div>
<div class="slick-slide">
<div class="tb-text-box tb-style2">
<div class="tb-text-box-in">
<h2 class="tb-special-text tb-text-box-slider-count-item tb-f48-lg tb-line0-9 tb-white-c tb-m0 tb-mb-3">700,00</h2>
<div class="empty-space marg-lg-b20"></div>
<h3 class="tb-font-name tb-f18-lg tb-text-box-slider-title tb-white-c tb-font-name tb-m0 tb-mt-3 tb-mb-6">lives lost per year</h3>
<div class="empty-space marg-lg-b20"></div>
<div class="tb-white-c7 tb-text-box-slider-content tb-mb-6 tb-mt-6">due to Antibiotic-resistant bacterial infections and the fact that our current treatments are now good enough.</div>
</div>
</div>
</div>
<div class="slick-slide">
<div class="tb-text-box tb-style2">
<div class="tb-text-box-in">
<h2 class="tb-special-text tb-text-box-slider-count-item tb-f48-lg tb-line0-9 tb-white-c tb-m0 tb-mb-3">$4.6</h2>
<div class="empty-space marg-lg-b20"></div>
<h3 class="tb-font-name tb-f18-lg tb-text-box-slider-title tb-white-c tb-font-name tb-m0 tb-mt-3 tb-mb-6">billion</h3>
<div class="empty-space marg-lg-b20"></div>
<div class="tb-white-c7 tb-text-box-slider-content tb-mb-6 tb-mt-6">is spent every year by the U.S. federal government alone to only treat <strong>6 multidrug-resistant germs.</strong></div>
</div>
</div>
</div>
<div class="slick-slide">
<div class="tb-text-box tb-style2">
<div class="tb-text-box-in">
<h2 class="tb-special-text tb-text-box-slider-count-item tb-f48-lg tb-line0-9 tb-white-c tb-m0 tb-mb-3">3.5%</h2>
<div class="empty-space marg-lg-b20"></div>
<h3 class="tb-font-name tb-f18-lg tb-text-box-slider-title tb-white-c tb-font-name tb-m0 tb-mt-3 tb-mb-6">GDP loss</h3>
<div class="empty-space marg-lg-b20"></div>
<div class="tb-white-c7 tb-text-box-slider-content tb-mb-6 tb-mt-6">The world will face a GDP loss of up to 3.5% by 2050 as a result of increased rise in resistance. </div>
</div>
</div>
</div>
</div>
</div>
<div class="pagination tb-style2 hidden"></div>
<div class="swipe-arrow tb-style3">
<div class="slick-arrow-left">
<i class="fa fa-angle-left"></i>
</div>
<div class="slick-arrow-right">
<i class="fa fa-angle-right"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-d07994b elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d07994b" data-element_type="section" id="solution">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-f42efcf" data-id="f42efcf" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-cf24359 elementor-widget elementor-widget-spacer" data-id="cf24359" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-b85b013 elementor-widget elementor-widget-image" data-id="b85b013" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="480" height="500" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR-ueNGaRFEnYeS4PrJLVS8W48GPq4-Os9AJA&usqp=CAU" class="attachment-full size-full" alt="" loading="lazy" srcset="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR-ueNGaRFEnYeS4PrJLVS8W48GPq4-Os9AJA&usqp=CAU" sizes="(max-width: 280px) 100vw, 480px"/>
</div>
</div>
</div>
<div class="elementor-element elementor-element-b85b013 elementor-widget elementor-widget-image" data-id="b85b013" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container" >
<div class="elementor-image" style="margin-top: 20px;">
<img width="480" height="500" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ8Et3dMQbhZwVgxM2D8HvAtdyqM7xCwI8Ddw&usqp=CAU" class="attachment-full size-full" alt="" loading="lazy" srcset="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ8Et3dMQbhZwVgxM2D8HvAtdyqM7xCwI8Ddw&usqp=CAU" sizes="(max-width: 480px) 100vw, 480px"/>
</div>
</div>
</div>
<div class="elementor-element elementor-element-b85b013 elementor-widget elementor-widget-image" data-id="b85b013" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container" >
<div class="elementor-image" style="margin-top: 20px;">
<img width="480" height="600" src="https://www.nih.gov/sites/default/files/styles/floated_media_breakpoint-medium/public/news-events/research-matters/2019/20190521-micrographs.jpg?itok=nDPhwOSR×tamp=1558445632" class="attachment-full size-full" alt="" loading="lazy" srcset="https://www.nih.gov/sites/default/files/styles/floated_media_breakpoint-medium/public/news-events/research-matters/2019/20190521-micrographs.jpg?itok=nDPhwOSR×tamp=1558445632" sizes="(max-width: 480px) 100vw, 480px"/>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-8185062" data-id="8185062" data-element_type="column" id="solution>
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-fc448b5 elementor-widget elementor-widget-spacer" data-id="fc448b5" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-4b2ca2c elementor-invisible elementor-widget elementor-widget-webify-section-heading-widget" data-id="4b2ca2c" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="webify-section-heading-widget.default">
<div class="elementor-widget-container">
<div class="tb-section-heading tb-style4">
<h2 class="tb-f36-lg tb-f28-sm tb-big-heading tb-font-name tb-mt-9 tb-mb-9 tb-mt-6-sm tb-mb-7-sm" class="tb-f36-lg tb-f28-sm tb-big-heading tb-font-name tb-mt-9 tb-mb-9 tb-mt-6-sm tb-mb-7-sm">
Our Solution
</h2>
<div class="empty-space marg-lg-b30"></div>
<div none="" class="tb-f18-lg tb-mt-5 tb-small-heading tb-mb-4" class="tb-f18-lg tb-mt-5 tb-small-heading tb-mb-4">Our proprietary model to harness the power of bacteriophages and transduction particles to develop an approach 10 times better than antibiotics. </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-9b7ecaa elementor-widget elementor-widget-spacer" data-id="9b7ecaa" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-aa5f80f elementor-invisible elementor-widget elementor-widget-webify-accordion-widget" data-id="aa5f80f" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="webify-accordion-widget.default">
<div class="elementor-widget-container">
<div class="tb-accordian-wrap tb-style1">
<div class="tb-accordian active ">
<div class="tb-accordian-title tb-fw-regular tb-f18-lg tb-black111-c tb-font-name">
01. Revolutionizing Custom Phage Engineering <span class="tb-accordian-toggle fa fa-angle-down"></span>
</div>
<div class="tb-accordian-body">
<p> Engineering a phage to increase its host range is one of the fundamental barriers, that is focused on increasing the range of bacteria it can infect.
<br>
<br>
<strong> BRED, or Bacteriophage Recombineering on Electroplated DNA, </strong> is a highly effective homologous recombineering method that exploits the natural mechanism of phages: mutations. It works by inserting DNA into specific points of the host phage's genome to cause mutations to the binding receptors. Now we would test this phage's efficacy of lysing the targeted bacteria. <br><br> We can collet the plaque from the lysis of the bacteria, and using Polymerase chain reaction, we can purify and analyze it to isolate the mutation. The successful mutation is analyzed against a naturally occuring mutation through polymerase chain reactions (PCR). The main goal is to identify exactly where the point mutations occured, how effective they were and their easibility for extraction. <br><br> <a style="font-weight: 600; color: #310064"> All of this can ultimately revolutionize the process of discovering the most effective and viable mutation to increase the range of the phage. </a></p>
</div>
</div>
<div class="tb-accordian">
<div class="tb-accordian-title tb-fw-regular tb-f18-lg tb-black111-c tb-font-name">
02. Enhanced Bacteriophage Targeting and Bacterial Lysis<span class="tb-accordian-toggle fa fa-angle-down"></span>
</div>
<div class="tb-accordian-body">
<p>Bacteriophages can be used as a novel and efficient category of gene delivery vehicles for the introduction of various diagnostic and therapeutic cargoes to human cells. Using phages as delivery mechanisms are not toxic and pose no side effects. <br><br> These phages inject their genetic material into bacteria by recognizing the lipopolysaccharides, pili, peptidoglycans, proteins and teichoic acids comprising the cell walls and outer membranes of the bacteria. <br><br> <strong> In our solution, transducing particles are used as an antimicrobial agent that can go beyond lytic phage therapy. </strong> Particles are primarily used to transfer the inhibited resistance mechansism genes to other strains of bacteria. The assembly of transduction particles is comprised of the nucleotide cargo (inhibited resistance mechansisms), packages inside a viral protein. <br><br> Once a phage would infect a bacteria, it can use the bacterial chromosome to produce transduction particles to make the bacteria’s resistance mechanisms weaker, assist in the bacteriophage lysis process and code antigen production instructions for the dendritic cells. Upon lysis, <a style="font-weight: 600; color: #310064"> the transduction particles would be realeased and continue the process, leaving us with weakened bacterial ressitance mechanisms and dramatically reduced growth rates in the majority of the remaiing pathogenic bacteria. </a> </p>
</div>
</div>
<div class="tb-accordian">
<div class="tb-accordian-title tb-fw-regular tb-f18-lg tb-black111-c tb-font-name">
03. Immunomodulation through Transduction Particles <span class="tb-accordian-toggle fa fa-angle-down"></span>
</div>
<div class="tb-accordian-body">
<p>Traditionally, when a bacteriophage attacks a bacteria, and innate immune response is triggered and phagocytes are sent to kill the pathogenic bacteria. While this is effective in the short term, there is no memory of the bacteria. <br><br> <strong> This is the job of the adaptive immune system, which focuses on the development of antibodies against pathogens through identification of unique antibodies. </strong> Our solution uses the transduction particles mentioned in the previous step to activate the production of antibodies against the bacteria. Triggering an adaptive immune response is the main alternative to antibiotics, the main method of killing the bacteria. <br><br>The first step is to use phage display technology to identify required antigens for the bacteria we are targeting through mapping phage-peptide relationships. Through a process called biopanning, the correct binding antigen is selected, washed and checked to see whether it can be used with the phage. After that, would engineer those specific antigens on the surface of the transduction particles. <br><br> <a style="font-weight: 600; color: #310064"> The key to activating the adaptive immune system for a bacterial infection is the bacteriophages. Phages naturally have an affinity towards B lymphocytes, which will attract them to the location. </a> Once the lymphocytes engulf the transduction particles, they will identify the antigens and activate the production of antibodies against those antigens, and therefore against the bacteria. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-87abe52 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="87abe52" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b9e6317" data-id="b9e6317" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-ce35b05 elementor-widget elementor-widget-spacer" data-id="ce35b05" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-fa768b3 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="fa768b3" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic","animation":"none"}" style="background: url(https://i.pinimg.com/originals/ff/6c/35/ff6c35b9b809291a7b2412d3aca69e3d.png); background-repeat: no-repeat; background-attachment: fixed; background-size: cover;" id="vision">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b7ffd9a" data-id="b7ffd9a" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-2065bed elementor-invisible elementor-widget elementor-widget-webify-text-block-with-button-widget" data-id="2065bed" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="webify-text-block-with-button-widget.default">
<div class="elementor-widget-container">
<div class="tb-section-heading">
<div class="tb-style2">
<h2 class="tb-f32-lg tb-big-heading tb-f25-sm tb-font-name tb-m0">Phage Therapy is the future of healthcare and of antibiotics.</h2>
<div class="empty-space marg-lg-b25"></div>
</div>
<div class="tb-line1-6 tb-f16-lg tb-description">Learn about out mission at Neuvae and how we leverage exponential technologies to help create a world where our medicine isn't the reason why we die.</div>
<div class="empty-space marg-lg-b35"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-a23d0e6 animated-slow elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="a23d0e6" data-element_type="section" data-settings="{"animation":"fadeIn"}">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-0c64d51" data-id="0c64d51" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-f79446b elementor-widget elementor-widget-webify-icon-box-widget" data-id="f79446b" data-element_type="widget" data-widget_type="webify-icon-box-widget.default">
<div class="elementor-widget-container">
<div class="tb-icon-box tb-style5">
<div class="tb-icon tb-f48-lg">
<i class="tbi-Doctor"></i>
</div>
<div class="empty-space marg-lg-b15"></div>
<h3 class="tb-iconbox-heading tb-f18-lg tb-font-name tb-m0 tb-mt-3">Mission</h3>
<div class="empty-space marg-lg-b10"></div>
<div class="tb-description-text tb-mb-6">Learn about what we do.</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-ca7bd26" data-id="ca7bd26" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-dafd03c elementor-widget elementor-widget-webify-icon-box-widget" data-id="dafd03c" data-element_type="widget" data-widget_type="webify-icon-box-widget.default">
<div class="elementor-widget-container">
<div class="tb-icon-box tb-style5">
<div class="tb-icon tb-f48-lg">
<i class="tbi-Eye"></i>
</div>
<div class="empty-space marg-lg-b15"></div>
<h3 class="tb-iconbox-heading tb-f18-lg tb-font-name tb-m0 tb-mt-3">Vision</h3>
<div class="empty-space marg-lg-b10"></div>
<div class="tb-description-text tb-mb-6">Learn about our vision for the future.</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-35467a4" data-id="35467a4" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-ebaf3e0 elementor-widget elementor-widget-webify-icon-box-widget" data-id="ebaf3e0" data-element_type="widget" data-widget_type="webify-icon-box-widget.default">
<div class="elementor-widget-container">
<div class="tb-icon-box tb-style5">
<div class="tb-icon tb-f48-lg">
<i class="tbi-Medicine"></i>
</div>
<div class="empty-space marg-lg-b15"></div>
<h3 class="tb-iconbox-heading tb-f18-lg tb-font-name tb-m0 tb-mt-3">Solution</h3>
<div class="empty-space marg-lg-b10"></div>
<div class="tb-description-text tb-mb-6">Learn about how we're solving AMR.</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e5705c7" data-id="e5705c7" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-f00863f elementor-widget elementor-widget-spacer" data-id="f00863f" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-2830ca7 animated-slow elementor-invisible elementor-widget elementor-widget-webify-video-block-widget" data-id="2830ca7" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="webify-video-block-widget.default">
<div class="elementor-widget-container">
<div class="tb-video-block-wrapper">
<div class="tb-video-block tb-style1 tb-bg tb-flex tb-radious-4" style="background-image: url(https://www.electrolabtech.co.uk/media/1216/vessel-20180606-dscf2440-edit.jpg?mode=max&width=900&height=2000);">
<div class="tb-video-block-inner">
<a href="https://www.youtube.com/embed/7KIEvEODCI4?autoplay=1" class="tb-play-btn tb-style1 tb-video-open"></a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-4f3f812 elementor-widget elementor-widget-spacer" data-id="4f3f812" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-5a9b291 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5a9b291" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ecbf456" data-id="ecbf456" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-9383623 elementor-widget elementor-widget-spacer" data-id="9383623" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-a998f39 animated-slow elementor-invisible elementor-widget elementor-widget-webify-text-block-with-button-widget" data-id="a998f39" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="webify-text-block-with-button-widget.default">
<div class="elementor-widget-container">
<div class="tb-section-heading tb-style2">
<div class="tb-f11-lg tb-mt-5 tb-mb-5 tb-small-heading tb-line1-64 tb-spacing2 tb-grayb5b5b5-c text-uppercase">BUILDING A BETTER WORLD</div>
<div class="empty-space marg-lg-b25"></div>
<h2 class="tb-f32-lg tb-f28-sm tb-font-name tb-big-heading tb-font-name tb-mt-7 tb-mb-10 tb-mt-5-sm tb-mb-9-sm">
Advised and supported by<br>key experts in the field.
</h2>
<div class="empty-space marg-lg-b50 marg-sm-b40"></div>
<div class="tb-text-box-btn">
<a href="http://www.neuvae.com/testimonial.html" target="_self" class="tb-btn tb-btn-primary tb-style3 tb-color2 tb-font-name" style="background-color: #310064;">Read Statements</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-f1fa120 elementor-widget elementor-widget-spacer" data-id="f1fa120" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3e07e53" data-id="3e07e53" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-ba30fe2 animated-slow elementor-invisible elementor-widget elementor-widget-webify-client-widget" data-id="ba30fe2" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="webify-client-widget.default">
<div class="elementor-widget-container">
<div class="tb-vertical-middle">
<div class="row">
<div class="col-sm-15 col-15">
<div>
<img style = "width: 180px; border-collapse: separate; border-radius: 150px;" src="Screen Shot 2021-04-26 at 12.14.24 PM.png" alt="client-image">
</div>
</div>
<div class="col-sm-15 col-15">
<div>
<img style = "width: 140px; border-collapse: separate; border-radius: 150px; margin-left: 40px; margin-top: -25px;" src="'.jpeg" alt="client-image">
</div>
</div>
<div class="col-sm-15 col-15">
<div>
<img style = "width: 100px; border-collapse: separate; border-radius: 150px; position: absolute; margin-left: -170px; margin-top: 155px;" src="download (3).jpeg" alt="client-image">
</div>
</div>
<div class="col-sm-15 col-15">
<div>
<img style = "width: 160px; border-collapse: separate; border-radius: 150px; position: absolute; margin-left: -37px; margin-top: 120px;" src="Screen Shot 2021-04-26 at 12.21.32 PM.png" alt="client-image">
</div>
</div>
<div class="col-sm-15 col-15">
<div>
<img style = "width: 100px; border-collapse: separate; border-radius: 150px; position: absolute; margin-left: 37px; margin-top: 2px;" src="download (4).jpeg" alt="client-image">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-87abe52 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="87abe52" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b9e6317" data-id="b9e6317" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-ce35b05 elementor-widget elementor-widget-spacer" data-id="ce35b05" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-7f8e73a elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="7f8e73a" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f74c04e" data-id="f74c04e" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-e40d294 elementor-invisible elementor-widget elementor-widget-webify-section-heading-widget" data-id="e40d294" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="webify-section-heading-widget.default">
<div class="elementor-widget-container">
<div class="tb-section-heading tb-style2">
<div none="" class="tb-f11-lg tb-mt-4 tb-small-heading tb-mb-5 tb-line1-6 tb-spacing2 tb-grayb5b5b5-c text-uppercase" class="tb-f11-lg tb-mt-4 tb-small-heading tb-mb-5 tb-line1-6 tb-spacing2 tb-grayb5b5b5-c text-uppercase">REINVENTING MEDICINAL TREATMENT</div>
<div class="empty-space marg-lg-b20"></div>
<h2 class="tb-f32-lg tb-f28-sm tb-big-heading tb-font-name tb-mt-6 tb-mb-9 tb-mt-4-sm tb-mb-7-sm" class="tb-f124-lg tb-f124-sm tb-big-heading tb-font-name tb-mt-6 tb-mb-9 tb-mt-4-sm tb-mb-7-sm"> Solution Tenets for Phage-Particle Model</h2>
</div>
</div>
</div>
<div class="elementor-element elementor-element-b942b36 elementor-widget elementor-widget-spacer" data-id="b942b36" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-472320c elementor-widget elementor-widget-webify-portfolio-widget" data-id="472320c" data-element_type="widget" data-widget_type="webify-portfolio-widget.default">
<div class="elementor-widget-container">
<div class="tb-portfolio-wrapper">
<div class="tb-overflow-hidden">
<div class="tb-isotop-filter tb-style1 text-center">
<ul class="tb-mp0 tb-flex tb-f16-lg tb-black111-c ">
<li class="active">
<a href="#" data-filter="*">All</a>
</li>
<li>
<a href="#" data-filter=".building">Mutagenesis</a>
</li>
<li>
<a href="#" data-filter=".building">Recombineering</a>
</li>
<li>
<a href="#" data-filter=".concept">Immunomodulation</a>
</li>
<li>
<a href="#" data-filter=".design">Scale and Production</a>
</li>
<li>
<a href="#" data-filter=".motion">Delivery Vehicles</a>
</li>
</ul>
</div>
<div class="tb-isotop tb-style1 tb-port-col-3 tb-has-gutter tb-lightgallery">
<div class="tb-grid-sizer"></div>
<div class="tb-isotop-item branding concept">
<div class="tb-image-box tb-style2 tb-relative tb-radious-4 tb-border tb-height2">
<a href="BRED.html" class="tb-image-link tb-zoom">
<div class="tb-image tb-relative">
<div class="tb-bg tb-zoom-in1" style="background-image: url(https://journals.plos.org/plosone/article/figure/image?download&size=large&id=info:doi/10.1371/journal.pone.0003957.g003);"></div>
</div>
</a>
<div class="tb-image-meta">
<h3 class="tb-f16-lg tb-font-name tb-mb5 tb-mt-3">
<a href="BRED.html">BRED System</a>
</h3>
<div class="tb-mb-6">
<span>Mutagenesis, Recombineering, Scale and Production</span>
</div>
</div>
</div>
</div>
<div class="tb-isotop-item building concept">
<div class="tb-image-box tb-style2 tb-relative tb-radious-4 tb-border tb-height2">
<a href="plaque.html" class="tb-image-link tb-zoom">
<div class="tb-image tb-relative">
<div class="tb-bg tb-zoom-in1" style="background-image: url(https://publishing.aip.org/wp-content/uploads/2018/12/BMF-Austin-Photo-GelCompetition-resized.jpg);"></div>
</div>
</a>
<div class="tb-image-meta">
<h3 class="tb-f16-lg tb-font-name tb-mb90 tb-mt-3">
<a href="plaque.html">PCR Plaque Screening</a>
</h3>
<div class="tb-mb-6">
<span>Mutagenesis, Recombineering, Scale and Production</span>
</div>
</div>
</div>
</div>
<div class="tb-isotop-item branding design motion">
<div class="tb-image-box tb-style2 tb-relative tb-radious-4 tb-border tb-height2">
<a href="mutagenesis.html" class="tb-image-link tb-zoom">
<div class="tb-image tb-relative">
<div class="tb-bg tb-zoom-in1" style="background-image: url(https://www.ajmb.org/Images/Articles/20415/f3.png);"></div>
</div>
</a>
<div class="tb-image-meta">
<h3 class="tb-f16-lg tb-font-name tb-mb5 tb-mt-3">
<a href="mutagenesis.html">Mutagenesis Protocol</a>
</h3>
<div class="tb-mb-6">
<span>Mutagenesis, Recombineering, Scale and Production</span>
</div>
</div>
</div>
</div>
<div class="tb-isotop-item branding design">
<div class="tb-image-box tb-style2 tb-relative tb-radious-4 tb-border tb-height2">
<a href="immunomodulation.html" class="tb-image-link tb-zoom">
<div class="tb-image tb-relative">
<div class="tb-bg tb-zoom-in1" style="background-image: url(https://miro.medium.com/max/3466/1*zMYIsLct4QF3X_BBI3RA-Q.jpeg);"></div>
</div>
</a>
<div class="tb-image-meta">
<h3 class="tb-f16-lg tb-font-name tb-mb5 tb-mt-3">
<a href="immunomodulation.html">Immunomodulation</a>
</h3>
<div class="tb-mb-6">
<span>Immunomodulation</span>
</div>
</div>
</div>
</div>
<div class="tb-isotop-item building concept design">
<div class="tb-image-box tb-style2 tb-relative tb-radious-4 tb-border tb-height2">
<a href="phage_display.html" class="tb-image-link tb-zoom">
<div class="tb-image tb-relative">
<div class="tb-bg tb-zoom-in1" style="background-image: url(https://www.fredhutch.org/content/dam/www/shared-resources/at/09-201117-SR-antibody-tech-355-cc.jpg);"></div>
</div>
</a>
<div class="tb-image-meta">
<h3 class="tb-f16-lg tb-font-name tb-mb5 tb-mt-3">
<a href="phage_display.html">Phage Display</a>
</h3>
<div class="tb-mb-6">
<span>Scale and Production, Mutagenesis</span>
</div>
</div>
</div>
</div>
<div class="tb-isotop-item branding design">
<div class="tb-image-box tb-style2 tb-relative tb-radious-4 tb-border tb-height2">
<a href="transduction.html" class="tb-image-link tb-zoom">
<div class="tb-image tb-relative">
<div class="tb-bg tb-zoom-in1" style="background-image: url(https://i0.wp.com/scientificinquirer.com/wp-content/uploads/2018/05/83419cc7-0ed7-41c7-a870-8712e5627414-620-000000994bf06ff51.jpg?fit=900%2C672&ssl=1);"></div>
</div>
</a>
<div class="tb-image-meta">
<h3 class="tb-f16-lg tb-font-name tb-mb5 tb-mt-3">
<a href="transduction.html">Transduction Particles</a>
</h3>
<div class="tb-mb-6">
<span>Targeting, Immunomodulation, Mutagenesis </span>
</div>
</div>
</div>
</div>
<div class="tb-isotop-item branding design">
</div>
<div class="tb-isotop-item branding design">
</div>
<div class="tb-isotop-item branding design">
<div class="tb-image-box tb-style2 tb-relative tb-radious-4 tb-border tb-height2">
<a href="host_re.html" class="tb-image-link tb-zoom">
<div class="tb-image tb-relative">
<div class="tb-bg tb-zoom-in1" style="background-image: url(https://upload.wikimedia.org/wikipedia/commons/a/a3/Loading_bioreactor.jpg);"></div>
</div>
</a>
<div class="tb-image-meta">
<h3 class="tb-f16-lg tb-font-name tb-mb5 tb-mt-3">
<a href="host_re.html">Host Reactor Model</a>
</h3>
<div class="tb-mb-6">
<span>Mutagenesis, Scale and Production</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-87abe52 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="87abe52" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b9e6317" data-id="b9e6317" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-ce35b05 elementor-widget elementor-widget-spacer" data-id="ce35b05" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-67922e9 elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="67922e9" data-element_type="section" data-settings="{"stretch_section":"section-stretched"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f27fbc4" data-id="f27fbc4" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5784183 elementor-widget elementor-widget-spacer" data-id="5784183" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-6694361 elementor-widget elementor-widget-divider" data-id="6694361" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="tb-site-footer tb-style1 tb-dark-footer tb-111-bg tb-sticky-footer">
<hr>
<div class="empty-space marg-lg-b40 marg-sm-b40"></div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="tb-cta tb-style1">
<div class="tb-cta-left">
<h2 class="tb-f18-lg tb-font-name tb-white-c6 tb-m0">Want to learn more?</h2>
<div class="empty-space marg-lg-b0 marg-sm-b30"></div>
</div>
<div class="tb-cta-right"> <a href="mailto:[email protected]" class="tb-btn tb-style3 tb-cta-btn tb-color1"><span>Email us</span></a></div>
</div>
</div>
</div>
</div>
<div class="empty-space marg-lg-b40 marg-sm-b40"></div>
<hr>
<div class="empty-space marg-lg-b60 marg-sm-b60"></div>
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div id="nav_menu-1" class="widget tb-footer-item tb-footer_widget widget_nav_menu">
<h2 class="tb-footer-widget-title tb-font-name"><span>Resources</span></h2>
<div class="menu-footer-one-container">
<ul id="menu-footer-one" class="menu">
<li id="menu-item-566" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-5 current_page_item menu-item-566">
<a href="http://www.neuvae.com/index.html">Home</a>
</li>
<li id="menu-item-558" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-558">
<a href="http://www.neuvae.com/problem.html">Problem</a>
</li>
<li id="menu-item-546" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-546">
<a href="http://www.neuvae.com/solution.html">Solution</a>
</li>