-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
933 lines (933 loc) · 184 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
<!DOCTYPE html><html lang=""><head><meta charset="utf-8" /><meta property="og:site_name" content="Raymond" /><meta property="og:title" content="Raymond's Site" /><meta name="twitter:title" content="Raymond's Site" /><meta property="og:description" content="Welcome to Raymond's profile page." /><meta name="twitter:description" content="Welcome to Raymond's profile page." /><meta property="og:type" content="website" /><meta property="og:image" content="assets/img/4d623f896b9b282b72561a0988827774.png" /><meta property="twitter:image" content="assets/img/4d623f896b9b282b72561a0988827774.png"><meta property="og:url" content="" /><meta content="summary_large_image" name="twitter:card" /><title>Raymond's Site</title><meta name="description" content="Welcome to Raymond's profile page." /><link rel="apple-touch-icon-precomposed" href="https://cloud-1de12d.b-cdn.net/media/iW=180&iH=any/9cd08e12d8ee855f7bf460e67a404829.png"/><link rel="apple-touch-icon-precomposed" href="https://cloud-1de12d.b-cdn.net/media/iW=256&iH=256/9cd08e12d8ee855f7bf460e67a404829.png"/><link rel="canonical" href="" /><link rel="icon" href="https://cloud-1de12d.b-cdn.net/media/iW=32&iH=any/0fa87ce7aa1f15a35b7c914140b2a9e1.png" sizes="32x32"/><link rel="icon" href="https://cloud-1de12d.b-cdn.net/media/iW=192&iH=any/0fa87ce7aa1f15a35b7c914140b2a9e1.png" sizes="192x192"/><meta name="viewport" content="width=device-width, initial-scale=1"><link class="brz-link brz-link-bunny-fonts-prefetch" rel="dns-prefetch" href="//fonts.bunny.net"><link class="brz-link brz-link-bunny-fonts-preconnect" rel="preconnect" href="https://fonts.bunny.net/" crossorigin><link class="brz-link brz-link-cdn-preconnect" rel="preconnect" href="https://cloud-1de12d.b-cdn.net" crossorigin><link href="https://fonts.bunny.net/css?family=Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic|Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic|Overpass:100,100italic,200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic&subset=arabic,bengali,cyrillic,cyrillic-ext,devanagari,greek,greek-ext,gujarati,hebrew,khmer,korean,latin-ext,tamil,telugu,thai,vietnamese&display=swap" class="brz-link brz-link-google" type="text/css" rel="stylesheet"/><link href="assets/cb21f7c3730557f26520552528852f6e.css" class="brz-link brz-link-preview-pro" rel="stylesheet"/><style class="brz-style">.brz .brz-css-lLzEH {z-index: auto;margin: 0;}
.brz .brz-css-lLzEH.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-lLzEH .brz-container {justify-content: center;}
.brz .brz-css-lLzEH > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-lLzEH > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-lLzEH {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lLzEH {z-index: auto;margin: 0;}
.brz .brz-css-lLzEH.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-lLzEH .brz-container {justify-content: center;}
.brz .brz-css-lLzEH > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-lLzEH > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lLzEH {display: block;}}
@media (max-width:767px) {.brz .brz-css-lLzEH {z-index: auto;margin: 0;}
.brz .brz-css-lLzEH.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-lLzEH .brz-container {justify-content: center;}
.brz .brz-css-lLzEH > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-lLzEH > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-lLzEH {display: block;}}
.brz .brz-css-jSSKw.brz-section .brz-section__content {min-height: 100vh;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jSSKw.brz-section .brz-section__content {min-height: 100vh;}}
@media (max-width:767px) {.brz .brz-css-jSSKw.brz-section .brz-section__content {min-height: 100vh;}}
.brz .brz-css-veGmI {padding: 75px 0px 75px 0px;}
.brz .brz-css-veGmI > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {display: none;filter: none;background-position: 50% 50%;}
@media (min-width:991px) {.brz .brz-css-veGmI > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image {background-attachment: scroll;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-veGmI {padding: 50px 15px 50px 15px;}
.brz .brz-css-veGmI > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {display: none;filter: none;background-position: 50% 50%;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-veGmI > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-veGmI {padding: 25px 15px 25px 15px;}
.brz .brz-css-veGmI > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {display: none;filter: none;background-position: 50% 50%;}}
@media (max-width:767px) {.brz .brz-css-veGmI > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-veGmI > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-kAcTz {padding: 150px 0px 150px 0px;}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-image {background-image: url("assets/img/7c87a2f5669c7264685e51f410b53882.jpg");filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 50% 52%;}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/7c87a2f5669c7264685e51f410b53882.jpg");}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-map {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-video {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kAcTz {padding: 0;}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-image {background-image: url("assets/img/7c87a2f5669c7264685e51f410b53882.jpg");filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 43% 61%;}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/7c87a2f5669c7264685e51f410b53882.jpg");}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-map {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-video {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}}
@media (max-width:767px) {.brz .brz-css-kAcTz {padding: 0;}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-image {background-image: url("assets/img/7c87a2f5669c7264685e51f410b53882.jpg");filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 65% 53%;}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/7c87a2f5669c7264685e51f410b53882.jpg");}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-map {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-video {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-kAcTz > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}}
.brz .brz-css-ovOb2 {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-ovOb2 {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ovOb2 {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ovOb2 {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-ovOb2 {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-ovOb2 {max-width: 100%;}}
@media (min-width:991px) {.brz .brz-css-qz8s1 {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qz8s1 {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-qz8s1 {max-width: 80%;}}
.brz .brz-css-gdtVf {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-gdtVf > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-gdtVf > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-gdtVf {min-height: auto;display: flex;}
.brz .brz-css-gdtVf > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-row {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gdtVf {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-gdtVf > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-gdtVf > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gdtVf {min-height: auto;display: flex;}
.brz .brz-css-gdtVf > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-row {flex-direction: row;flex-wrap: wrap;justify-content: flex-start;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-gdtVf {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-gdtVf > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-gdtVf > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-gdtVf {min-height: auto;display: flex;}
.brz .brz-css-gdtVf > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdtVf > .brz-row {flex-direction: row;flex-wrap: wrap;justify-content: flex-start;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-bf1R8 {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bf1R8 {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-bf1R8 {padding: 0;max-width: 100%;}}
.brz .brz-css-p3stk {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-p3stk {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-p3stk {padding: 0;}}
.brz .brz-css-h_F2Z {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-h_F2Z .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-h_F2Z > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;margin: 0;mix-blend-mode: normal;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-video {filter: none;display: none;}
@media (min-width:991px) {.brz .brz-css-h_F2Z > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-h_F2Z {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-h_F2Z .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-h_F2Z > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;margin: 0;mix-blend-mode: normal;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-video {filter: none;display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-h_F2Z > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-h_F2Z {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-h_F2Z .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-h_F2Z > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;margin: 10px 0px 10px 0px;mix-blend-mode: normal;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-video {filter: none;display: none;}}
@media (max-width:767px) {.brz .brz-css-h_F2Z > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-h_F2Z > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-u3ueh {flex: 1 1 100%;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-u3ueh {flex: 1 1 100%;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-u3ueh {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-n0FjP {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;}
@media (min-width:991px) {.brz .brz-css-n0FjP {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-n0FjP {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-n0FjP {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-n0FjP {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;min-height: 100%;}}
@media (max-width:767px) {.brz .brz-css-n0FjP {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-yPzbg {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yPzbg {padding: 5px 0px 5px 0%;}}
@media (max-width:767px) {.brz .brz-css-yPzbg {padding: 0;}}
.brz .brz-css-z2sMs {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-z2sMs .brz-wrapper-transform {transform: none;}
@media (min-width:991px) {.brz .brz-css-z2sMs {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-z2sMs {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-z2sMs .brz-wrapper-transform {transform: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-z2sMs {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-z2sMs {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-z2sMs .brz-wrapper-transform {transform: none;}}
@media (max-width:767px) {.brz .brz-css-z2sMs {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-j3ukU {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-j3ukU {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-j3ukU {margin: 0px 0px 20px 0px;}}
.brz .brz-css-zFug6 {width: 100%;mix-blend-mode: normal;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zFug6 {width: 100%;mix-blend-mode: normal;}}
@media (max-width:767px) {.brz .brz-css-zFug6 {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-hzaYj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 70px;line-height: 1;font-weight: 700;letter-spacing: -1.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hzaYj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 60px;line-height: 1;font-weight: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-hzaYj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.1;font-weight: 700;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-emW0f {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-emW0f {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-emW0f {margin: 0;}}
.brz .brz-css-pKyUJ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pKyUJ {margin-top: 10px !important;margin-bottom: 10px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1;font-weight: 500;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-pKyUJ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 500;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-iCtBq {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-iCtBq {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iCtBq {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iCtBq {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-iCtBq {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-iCtBq {display: flex;position: relative;}}
.brz .brz-css-geWBh {justify-content: center;padding: 0;gap: 20px 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-geWBh {justify-content: center;padding: 0;gap: 20px 10px;}}
@media (max-width:767px) {.brz .brz-css-geWBh {justify-content: center;padding: 0;gap: 20px 10px;}}
.brz .brz-css-eGLPz {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eGLPz {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}}
@media (max-width:767px) {.brz .brz-css-eGLPz {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}}
.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-sjVGe.brz-btn--hover-in:before {background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-sjVGe.brz-btn--hover-in {background-color: rgba(5,202,182,1);background-image: none;}
@media (min-width:991px) {.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-sjVGe.brz-btn--hover-in:before {transition-duration: .6s;}
.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-sjVGe.brz-btn--hover-in {transition-duration: .6s;}
.brz .brz-css-sjVGe.brz-back-pulse:before {animation-duration: .6s;}}
@media (min-width:991px) {.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-sjVGe.brz-btn--hover-in {background-color: rgba(55,213,197,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-sjVGe.brz-btn--hover-in:before {background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-sjVGe.brz-btn--hover-in {background-color: rgba(5,202,182,1);background-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-sjVGe.brz-btn--hover-in:before {transition-duration: .6s;}
.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-sjVGe.brz-btn--hover-in {transition-duration: .6s;}
.brz .brz-css-sjVGe.brz-back-pulse:before {animation-duration: .6s;}}
@media (max-width:767px) {.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-sjVGe.brz-btn--hover-in:before {background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-sjVGe.brz-btn--hover-in {background-color: rgba(5,202,182,1);background-image: none;}}
@media (max-width:767px) {.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-sjVGe.brz-btn--hover-in:before {transition-duration: .6s;}
.brz .brz-css-sjVGe.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-sjVGe.brz-btn--hover-in {transition-duration: .6s;}
.brz .brz-css-sjVGe.brz-back-pulse:before {animation-duration: .6s;}}
.brz .brz-css-bDzMW.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-bDzMW.brz-btn--hover-in:before {border: 0 !important;background-color: transparent !important;box-shadow: none !important;}
.brz .brz-css-bDzMW.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-bDzMW.brz-btn--hover-in {background-color: rgba(255,255,255,1);background: transparent;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bDzMW.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-bDzMW.brz-btn--hover-in:before {border: 0 !important;background-color: transparent !important;box-shadow: none !important;}
.brz .brz-css-bDzMW.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-bDzMW.brz-btn--hover-in {background-color: rgba(255,255,255,1);background: transparent;}}
@media (max-width:767px) {.brz .brz-css-bDzMW.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-bDzMW.brz-btn--hover-in:before {border: 0 !important;background-color: transparent !important;box-shadow: none !important;}
.brz .brz-css-bDzMW.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-bDzMW.brz-btn--hover-in {background-color: rgba(255,255,255,1);background: transparent;}}
.brz .brz-css-esXje.brz-btn {display: flex;font-family: var(--brz-buttonfontfamily,initial);font-weight: var(--brz-buttonfontweight,initial);font-weight: var(--brz-buttonbold,initial);font-size: var(--brz-buttonfontsize,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);font-style: var(--brz-buttonitalic,initial);text-decoration: var(--brz-buttontextdecoration,initial) !important;text-transform: var(--brz-buttontexttransform,initial) !important;color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),1);border-radius: 0;box-shadow: none;padding: 14px 42px 14px 42px;padding: 14px 42px;flex-flow: row-reverse nowrap;}
.brz .brz-css-esXje.brz-btn:not(.brz-btn--hover) {background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-esXje.brz-btn .brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-esXje.brz-btn.brz-btn-submit {color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-esXje:after {height: unset;}
.brz .brz-css-esXje .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-esXje .brz-btn--story-container:after {height: unset;}
@media (min-width:991px) {.brz .brz-css-esXje.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje.brz-btn .brz-icon-svg-custom {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (min-width:991px) {.brz .brz-css-esXje.brz-btn:not(.brz-btn--hover):hover {background-color: rgba(var(--brz-global-color3),.8);}
.brz .brz-css-esXje.brz-btn.brz-btn-submit:hover {background-color: rgba(var(--brz-global-color3),.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-esXje.brz-btn {display: flex;font-family: var(--brz-buttonfontfamily,initial);font-weight: var(--brz-buttontabletfontweight,initial);font-weight: var(--brz-buttontabletbold,initial);font-size: var(--brz-buttontabletfontsize,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);font-style: var(--brz-buttontabletitalic,initial);text-decoration: var(--brz-buttontablettextdecoration,initial) !important;text-transform: var(--brz-buttontablettexttransform,initial) !important;color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),1);border-radius: 0;box-shadow: none;padding: 11px 26px 11px 26px;padding: 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-esXje.brz-btn:not(.brz-btn--hover) {background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-esXje.brz-btn .brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-esXje.brz-btn.brz-btn-submit {color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-esXje:after {height: unset;}
.brz .brz-css-esXje .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-esXje .brz-btn--story-container:after {height: unset;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-esXje.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje.brz-btn .brz-icon-svg-custom {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (max-width:767px) {.brz .brz-css-esXje.brz-btn {display: flex;font-family: var(--brz-buttonfontfamily,initial);font-weight: var(--brz-buttonmobilefontweight,initial);font-weight: var(--brz-buttonmobilebold,initial);font-size: var(--brz-buttonmobilefontsize,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);font-style: var(--brz-buttonmobileitalic,initial);text-decoration: var(--brz-buttonmobiletextdecoration,initial) !important;text-transform: var(--brz-buttonmobiletexttransform,initial) !important;color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),1);border-radius: 0;box-shadow: none;padding: 11px 26px 11px 26px;padding: 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-esXje.brz-btn:not(.brz-btn--hover) {background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-esXje.brz-btn .brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-esXje.brz-btn.brz-btn-submit {color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-esXje:after {height: unset;}
.brz .brz-css-esXje .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-esXje .brz-btn--story-container:after {height: unset;}}
@media (max-width:767px) {.brz .brz-css-esXje.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje.brz-btn .brz-icon-svg-custom {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-esXje .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
.brz .brz-css-lVhCF.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 600;font-size: 16px;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;text-transform: inherit !important;color: rgba(255,255,255,1);border: 0px solid rgba(231,174,71,0);padding: 14px 0px 14px 0px;padding: 14px 0px;}
.brz .brz-css-lVhCF.brz-btn:not(.brz-btn--hover) {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-lVhCF.brz-btn .brz-icon-svg-custom {background-color: rgba(255,255,255,1);}
.brz .brz-css-lVhCF.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-lVhCF .brz-btn--story-container {border: 0;border-radius: 0 !important;}
@media (min-width:991px) {.brz .brz-css-lVhCF.brz-btn:hover {color: rgba(199,199,199,1);border: 0px solid rgba(2,39,124,0);}
.brz .brz-css-lVhCF.brz-btn:hover .brz-icon-svg-custom {background-color: rgba(199,199,199,1);}
.brz .brz-css-lVhCF.brz-btn.brz-btn-submit:hover {color: rgba(199,199,199,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lVhCF.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 700;font-size: 16px;line-height: 1.8;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;text-transform: inherit !important;color: rgba(255,255,255,1);border: 0px solid rgba(231,174,71,0);padding: 11px 26px 11px 26px;padding: 11px 0px;}
.brz .brz-css-lVhCF.brz-btn:not(.brz-btn--hover) {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-lVhCF.brz-btn .brz-icon-svg-custom {background-color: rgba(255,255,255,1);}
.brz .brz-css-lVhCF.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-lVhCF .brz-btn--story-container {border: 0;border-radius: 0 !important;}}
@media (max-width:767px) {.brz .brz-css-lVhCF.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 600;font-size: 15px;line-height: 1.8;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;text-transform: inherit !important;color: rgba(255,255,255,1);border: 0px solid rgba(231,174,71,0);padding: 14px 42px 14px 42px;padding: 14px 0px;}
.brz .brz-css-lVhCF.brz-btn:not(.brz-btn--hover) {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-lVhCF.brz-btn .brz-icon-svg-custom {background-color: rgba(255,255,255,1);}
.brz .brz-css-lVhCF.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-lVhCF .brz-btn--story-container {border: 0;border-radius: 0 !important;}}
.brz .brz-css-kj4jI {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kj4jI {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-kj4jI {margin: 0;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-c526y {display: none;}}
@media (max-width:767px) {.brz .brz-css-c526y {display: none;}}
.brz .brz-css-s9BAw {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-s9BAw {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-s9BAw {height: 50px;}}
.brz .brz-css-lZvgc {height: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lZvgc {height: 70px;}}
@media (max-width:767px) {.brz .brz-css-lZvgc {height: 61px;}}
.brz .brz-css-yGF3B {padding: 100px 0px 120px 0px;}
.brz .brz-css-yGF3B > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yGF3B {padding: 50px 0px 50px 0px;}
.brz .brz-css-yGF3B > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}}
@media (max-width:767px) {.brz .brz-css-yGF3B {padding: 50px 0px 50px 0px;}
.brz .brz-css-yGF3B > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}}
@media (min-width:991px) {.brz .brz-css-jjd_h {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jjd_h {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-jjd_h {max-width: 80%;}}
.brz .brz-css-lWkW5 {flex: 1 1 35%;max-width: 35%;justify-content: center;}
.brz .brz-css-lWkW5 .brz-columns__scroll-effect {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lWkW5 {flex: 1 1 40%;max-width: 40%;justify-content: center;}
.brz .brz-css-lWkW5 .brz-columns__scroll-effect {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-lWkW5 {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-lWkW5 .brz-columns__scroll-effect {justify-content: center;}}
.brz .brz-css-exmSo {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-exmSo {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-exmSo {padding: 0;}}
.brz .brz-css-zEpxK {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zEpxK {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-zEpxK {margin: 0;}}
.brz .brz-css-ziDpq:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-ziDpq {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-ziDpq .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-ziDpq .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-ziDpq {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ziDpq .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ziDpq .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ziDpq:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-ziDpq {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-ziDpq .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-ziDpq .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ziDpq {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ziDpq .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ziDpq .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-ziDpq:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-ziDpq {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-ziDpq .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-ziDpq .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-ziDpq {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ziDpq .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ziDpq .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-rwyV0 {border-radius: 20px;}
.brz .brz-css-rwyV0 .brz-picture:after {border-radius: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rwyV0 {border-radius: 20px;}
.brz .brz-css-rwyV0 .brz-picture:after {border-radius: 20px;}}
@media (max-width:767px) {.brz .brz-css-rwyV0 {border-radius: 20px;}
.brz .brz-css-rwyV0 .brz-picture:after {border-radius: 20px;}}
.brz .brz-css-s5FPI.brz-hover-animation__container {max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-s5FPI.brz-hover-animation__container {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-s5FPI.brz-hover-animation__container {max-width: 100%;}}
.brz .brz-css-xUQN8 {padding-top: 100%;}
.brz .brz-css-xUQN8 > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xUQN8 {padding-top: 100%;}
.brz .brz-css-xUQN8 > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-xUQN8 {padding-top: 100%;}
.brz .brz-css-xUQN8 > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-jVYHs {flex: 1 1 65%;max-width: 65%;justify-content: center;}
.brz .brz-css-jVYHs .brz-columns__scroll-effect {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jVYHs {flex: 1 1 60%;max-width: 60%;justify-content: center;}
.brz .brz-css-jVYHs .brz-columns__scroll-effect {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-jVYHs {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-jVYHs .brz-columns__scroll-effect {justify-content: center;}}
.brz .brz-css-qQToQ {padding: 5px 0px 5px 10%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qQToQ {padding: 5px 0px 0px 10%;}}
@media (max-width:767px) {.brz .brz-css-qQToQ {padding: 0;}}
.brz .brz-css-kaG92 {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kaG92 {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-kaG92 {margin: 10px 0px 5px 0px;}}
.brz .brz-css-iSdSN {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iSdSN {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-iSdSN {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-wnN6Z {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wnN6Z {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-wnN6Z {margin: 5px 0px 10px 0px;}}
.brz .brz-css-sS_Pr {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sS_Pr {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 36px;line-height: 1.2;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-sS_Pr {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 35px;line-height: 1.3;font-weight: 600;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-p9CRZ {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-p9CRZ {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-p9CRZ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-tluQ0 {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tluQ0 {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-tluQ0 {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-slIyS {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-slIyS {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-slIyS {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-pgMVt {padding: 90px 0px 110px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pgMVt {padding: 35px 0px 50px 0px;}}
@media (max-width:767px) {.brz .brz-css-pgMVt {padding: 50px 0px 50px 0px;}}
@media (min-width:991px) {.brz .brz-css-bPqdl {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bPqdl {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-bPqdl {max-width: 80%;}}
.brz .brz-css-grm0D {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-grm0D {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-grm0D {margin: 10px 0px 5px 0px;}}
.brz .brz-css-qnb2q {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qnb2q {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-qnb2q {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-aAU7C {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aAU7C {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-aAU7C {margin: 5px 0px 10px 0px;}}
.brz .brz-css-bc5nw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bc5nw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 36px;line-height: 1.2;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-bc5nw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 36px;line-height: 1.3;font-weight: 600;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-qCl8l {padding: 5% 5% 5px 0%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qCl8l {padding: 5% 5% 5% 0%;}}
@media (max-width:767px) {.brz .brz-css-qCl8l {padding: 0;}}
.brz .brz-css-vnPkT {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vnPkT {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-vnPkT {margin: 0px 0px 10px 0px;}}
.brz .brz-css-wFw0f:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-wFw0f {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-wFw0f .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-wFw0f .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-wFw0f {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-wFw0f .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-wFw0f .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wFw0f:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-wFw0f {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-wFw0f .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-wFw0f .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wFw0f {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-wFw0f .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-wFw0f .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-wFw0f:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-wFw0f {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-wFw0f .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-wFw0f .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-wFw0f {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-wFw0f .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-wFw0f .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-dSzob {border-radius: 20px;}
.brz .brz-css-dSzob .brz-picture:after {border-radius: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dSzob {border-radius: 20px;}
.brz .brz-css-dSzob .brz-picture:after {border-radius: 20px;}}
@media (max-width:767px) {.brz .brz-css-dSzob {border-radius: 20px;}
.brz .brz-css-dSzob .brz-picture:after {border-radius: 20px;}}
.brz .brz-css-zTaCb.brz-hover-animation__container {max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zTaCb.brz-hover-animation__container {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-zTaCb.brz-hover-animation__container {max-width: 100%;}}
.brz .brz-css-tKwom {padding-top: 66.649%;}
.brz .brz-css-tKwom > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tKwom {padding-top: 66.6495%;}
.brz .brz-css-tKwom > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-tKwom {padding-top: 66.6512%;}
.brz .brz-css-tKwom > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-rrCa2 {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rrCa2 {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-rrCa2 {margin: 10px 0px 10px 0px;}}
.brz .brz-css-qDUm1 {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 26px;line-height: 1.4;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qDUm1 {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-qDUm1 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-qSy2L {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qSy2L {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-qSy2L {margin: 0px 0px 20px 0px;}}
.brz .brz-css-ub2YQ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ub2YQ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-ub2YQ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-dL7FJ {padding: 5% 0% 5% 5%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dL7FJ {padding: 5% 0% 5% 5%;}}
@media (max-width:767px) {.brz .brz-css-dL7FJ {padding: 0;}}
.brz .brz-css-ksY3T {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ksY3T {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-ksY3T {margin: 0px 0px 10px 0px;}}
.brz .brz-css-gMJ_d:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-gMJ_d {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-gMJ_d .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-gMJ_d .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-gMJ_d {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gMJ_d .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gMJ_d .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gMJ_d:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-gMJ_d {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-gMJ_d .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-gMJ_d .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gMJ_d {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gMJ_d .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gMJ_d .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-gMJ_d:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-gMJ_d {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-gMJ_d .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-gMJ_d .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-gMJ_d {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gMJ_d .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gMJ_d .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-ePW5k {border-radius: 20px;}
.brz .brz-css-ePW5k .brz-picture:after {border-radius: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ePW5k {border-radius: 20px;}
.brz .brz-css-ePW5k .brz-picture:after {border-radius: 20px;}}
@media (max-width:767px) {.brz .brz-css-ePW5k {border-radius: 20px;}
.brz .brz-css-ePW5k .brz-picture:after {border-radius: 20px;}}
.brz .brz-css-fEBQ1.brz-hover-animation__container {max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fEBQ1.brz-hover-animation__container {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-fEBQ1.brz-hover-animation__container {max-width: 100%;}}
.brz .brz-css-fi24I {padding-top: 66.649%;}
.brz .brz-css-fi24I > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fi24I {padding-top: 66.6495%;}
.brz .brz-css-fi24I > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-fi24I {padding-top: 66.6512%;}
.brz .brz-css-fi24I > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-xzWBi {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xzWBi {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-xzWBi {margin: 10px 0px 10px 0px;}}
.brz .brz-css-qvpOH {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 26px;line-height: 1.4;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qvpOH {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-qvpOH {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-z2kRh {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-z2kRh {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-z2kRh {margin: 0px 0px 20px 0px;}}
.brz .brz-css-xDCe5 {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xDCe5 {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-xDCe5 {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-v7PuY {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-v7PuY {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-v7PuY {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-gGX0E {padding: 5% 5% 5% 0%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gGX0E {padding: 5% 5% 5% 0%;}}
@media (max-width:767px) {.brz .brz-css-gGX0E {padding: 0;}}
.brz .brz-css-n2OJL {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-n2OJL {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-n2OJL {margin: 0px 0px 10px 0px;}}
.brz .brz-css-j84ib:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-j84ib {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-j84ib .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-j84ib .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-j84ib {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-j84ib .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-j84ib .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-j84ib:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-j84ib {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-j84ib .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-j84ib .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-j84ib {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-j84ib .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-j84ib .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-j84ib:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-j84ib {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-j84ib .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-j84ib .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-j84ib {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-j84ib .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-j84ib .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-gaNHx {border-radius: 20px;}
.brz .brz-css-gaNHx .brz-picture:after {border-radius: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gaNHx {border-radius: 20px;}
.brz .brz-css-gaNHx .brz-picture:after {border-radius: 20px;}}
@media (max-width:767px) {.brz .brz-css-gaNHx {border-radius: 20px;}
.brz .brz-css-gaNHx .brz-picture:after {border-radius: 20px;}}
.brz .brz-css-lhbTU.brz-hover-animation__container {max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lhbTU.brz-hover-animation__container {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-lhbTU.brz-hover-animation__container {max-width: 100%;}}
.brz .brz-css-xA6d2 {padding-top: 66.649%;}
.brz .brz-css-xA6d2 > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xA6d2 {padding-top: 66.6495%;}
.brz .brz-css-xA6d2 > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-xA6d2 {padding-top: 66.6512%;}
.brz .brz-css-xA6d2 > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-kUyeo {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kUyeo {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-kUyeo {margin: 10px 0px 10px 0px;}}
.brz .brz-css-eRb2X {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 26px;line-height: 1.4;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eRb2X {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-eRb2X {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-eIZE5 {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eIZE5 {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-eIZE5 {margin: 0px 0px 20px 0px;}}
.brz .brz-css-w96H1 {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-w96H1 {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-w96H1 {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-a_bSN {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-a_bSN {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-a_bSN {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-v5cI0 {padding: 5% 0% 5% 5%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-v5cI0 {padding: 5% 0% 5% 5%;}}
@media (max-width:767px) {.brz .brz-css-v5cI0 {padding: 0;}}
.brz .brz-css-d0EXq {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d0EXq {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-d0EXq {margin: 0px 0px 10px 0px;}}
.brz .brz-css-qEhAc:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-qEhAc {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-qEhAc .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-qEhAc .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-qEhAc {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-qEhAc .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-qEhAc .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qEhAc:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-qEhAc {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-qEhAc .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-qEhAc .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qEhAc {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-qEhAc .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-qEhAc .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-qEhAc:not(.brz-image--hovered) {max-width: 100%;}
.brz .brz-css-qEhAc {height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-qEhAc .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-qEhAc .brz-picture {filter: none;-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-qEhAc {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-qEhAc .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-qEhAc .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-sIcTN {border-radius: 20px;}
.brz .brz-css-sIcTN .brz-picture:after {border-radius: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sIcTN {border-radius: 20px;}
.brz .brz-css-sIcTN .brz-picture:after {border-radius: 20px;}}
@media (max-width:767px) {.brz .brz-css-sIcTN {border-radius: 20px;}
.brz .brz-css-sIcTN .brz-picture:after {border-radius: 20px;}}
.brz .brz-css-oObUs.brz-hover-animation__container {max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oObUs.brz-hover-animation__container {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-oObUs.brz-hover-animation__container {max-width: 100%;}}
.brz .brz-css-huYTI {padding-top: 66.649%;}
.brz .brz-css-huYTI > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-huYTI {padding-top: 66.6495%;}
.brz .brz-css-huYTI > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-huYTI {padding-top: 66.6512%;}
.brz .brz-css-huYTI > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-daYqI {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-daYqI {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-daYqI {margin: 10px 0px 10px 0px;}}
.brz .brz-css-qrbsZ {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 26px;line-height: 1.4;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qrbsZ {margin-top: 10px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-qrbsZ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-uuciE {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uuciE {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-uuciE {margin: 0px 0px 20px 0px;}}
.brz .brz-css-ajHbw {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ajHbw {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-ajHbw {margin-top: 0px !important;margin-bottom: 10px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-hT9i5 {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hT9i5 {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-hT9i5 {margin-top: 10px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-p7REd {padding: 80px 0px 85px 0px;}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-image {background-image: url("assets/img/49d7b742d6319b27831ef0006358a635.jpg");filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 49% 52%;}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/49d7b742d6319b27831ef0006358a635.jpg");}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-map {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-video {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-p7REd {padding: 65px 0px 75px 0px;}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-image {background-image: url("assets/img/49d7b742d6319b27831ef0006358a635.jpg");filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 49% 52%;}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/49d7b742d6319b27831ef0006358a635.jpg");}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-map {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-video {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}}
@media (max-width:767px) {.brz .brz-css-p7REd {padding: 50px 0px 60px 0px;}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-image {background-image: url("assets/img/49d7b742d6319b27831ef0006358a635.jpg");filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 49% 52%;}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/49d7b742d6319b27831ef0006358a635.jpg");}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-map {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-video {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-p7REd > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(70%) hue-rotate(0deg) saturate(100%) contrast(100%);}}
@media (min-width:991px) {.brz .brz-css-l9S3J {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-l9S3J {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-l9S3J {max-width: 80%;}}
.brz .brz-css-dYmSU {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dYmSU {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-dYmSU {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-eugHz {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eugHz {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 36px;line-height: 1.2;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-eugHz {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 35px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-rl6Pm {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rl6Pm {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-rl6Pm {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-n_ZCX {display: none;}}
.brz .brz-css-dmHHb {height: 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dmHHb {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-dmHHb {height: 5px;}}
.brz .brz-css-ggGzU {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ggGzU {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-ggGzU {margin: 0;}}
.brz .brz-css-qoKp3 {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qoKp3 {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-qoKp3 {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 5px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-qNbeT {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qNbeT {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-qNbeT {margin: 0;}}
.brz .brz-css-kWW62 {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kWW62 {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-kWW62 {color: rgba(255,255,255,1);margin-top: 5px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-jcE0j {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jcE0j {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-jcE0j {margin: 0;}}
.brz .brz-css-gHFpc {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gHFpc {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-gHFpc {margin-top: 5px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-yGSvA {height: 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yGSvA {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-yGSvA {height: 20px;}}
.brz .brz-css-wLeGm {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wLeGm {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-wLeGm {margin: 0;}}
.brz .brz-css-sQ3py {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sQ3py {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-sQ3py {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 5px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-jWz5p {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jWz5p {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-jWz5p {margin: 0;}}
.brz .brz-css-oGz6m {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oGz6m {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-oGz6m {color: rgba(255,255,255,1);margin-top: 5px !important;margin-bottom: 5px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-bwe2y {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bwe2y {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-bwe2y {margin: 0;}}
.brz .brz-css-mB2YJ {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mB2YJ {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-mB2YJ {color: rgba(255,255,255,1);margin-top: 5px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-sstgJ {height: 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sstgJ {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-sstgJ {height: 20px;}}
.brz .brz-css-wV1_w {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wV1_w {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-wV1_w {margin: 0;}}
.brz .brz-css-krBxa {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-krBxa {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-krBxa {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 5px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-mVhNz {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mVhNz {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-mVhNz {margin: 0;}}
.brz .brz-css-kaJff {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kaJff {color: rgba(255,255,255,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-kaJff {color: rgba(255,255,255,1);margin-top: 5px !important;margin-bottom: 5px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-hkXXw {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hkXXw {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-hkXXw {margin: 0;}}
.brz .brz-css-xfLoa {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xfLoa {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-xfLoa {margin-top: 5px !important;margin-bottom: 5px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-kdd9K {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kdd9K {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-kdd9K {margin: 0;}}
.brz .brz-css-ko__T {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ko__T {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-ko__T {margin-top: 5px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-lGH1S {padding: 80px 0px 85px 0px;}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-image {background-image: url("assets/img/f111c13faab8b8c7de9633780060c1ae.jpg");filter: brightness(35%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 51% 100%;}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/f111c13faab8b8c7de9633780060c1ae.jpg");}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-map {filter: brightness(35%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-video {filter: brightness(35%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(35%) hue-rotate(0deg) saturate(100%) contrast(100%);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lGH1S {padding: 65px 0px 75px 0px;}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-image {background-image: url("assets/img/f111c13faab8b8c7de9633780060c1ae.jpg");filter: brightness(35%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 51% 100%;}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/f111c13faab8b8c7de9633780060c1ae.jpg");}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-map {filter: brightness(35%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-video {filter: brightness(35%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(35%) hue-rotate(0deg) saturate(100%) contrast(100%);}}
@media (max-width:767px) {.brz .brz-css-lGH1S {padding: 50px 0px 60px 0px;}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-image {background-image: url("assets/img/f111c13faab8b8c7de9633780060c1ae.jpg");filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);background-position: 51% 100%;}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/f111c13faab8b8c7de9633780060c1ae.jpg");}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-map {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-video {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}
.brz .brz-css-lGH1S > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: brightness(30%) hue-rotate(0deg) saturate(100%) contrast(100%);}}
@media (min-width:991px) {.brz .brz-css-znhPO {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-znhPO {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-znhPO {max-width: 80%;}}
.brz .brz-css-psQcJ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-psQcJ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-psQcJ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.5;font-weight: 700;letter-spacing: 1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-ooR64 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ooR64 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 36px;line-height: 1.2;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-ooR64 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 35px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-dxjvV {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dxjvV {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-dxjvV {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-jnqag {display: none;}}
.brz .brz-css-hMMc9 {height: 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hMMc9 {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-hMMc9 {height: 5px;}}
.brz .brz-css-oISpU {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oISpU {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-oISpU {margin: 0;}}
.brz .brz-css-aRCYJ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aRCYJ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-aRCYJ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-sIvU8 {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sIvU8 {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-sIvU8 {margin: 0;}}
.brz .brz-css-mVdI6 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mVdI6 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-mVdI6 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-bcrPh {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bcrPh {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-bcrPh {margin: 0;}}
.brz .brz-css-xzpPA {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xzpPA {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-xzpPA {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-ipdqV {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ipdqV {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-ipdqV {margin: 0;}}
.brz .brz-css-zcuA3 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zcuA3 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-zcuA3 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-nRL4z {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nRL4z {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-nRL4z {margin: 0;}}
.brz .brz-css-anSRq {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-anSRq {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-anSRq {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-pM86P {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pM86P {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-pM86P {margin: 0;}}
.brz .brz-css-rC1nE {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rC1nE {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-rC1nE {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-sV8ra {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sV8ra {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-sV8ra {margin: 0;}}
.brz .brz-css-sLwHl {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sLwHl {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-sLwHl {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-y5IrA {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-y5IrA {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-y5IrA {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: -.3px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-h5Lfs {padding: 75px 0px 75px 0px;min-height: auto;display: flex;margin: 0;z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-h5Lfs > .brz-bg:after {box-shadow: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-image {background-image: none;filter: none;background-size: cover;background-repeat: no-repeat;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-h5Lfs .brz-container {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-h5Lfs {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-h5Lfs > .brz-bg:after {box-shadow: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-image {background-image: none;filter: none;background-size: cover;background-repeat: no-repeat;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-h5Lfs .brz-container {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-h5Lfs {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-h5Lfs > .brz-bg:after {box-shadow: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-image {background-image: none;filter: none;background-size: cover;background-repeat: no-repeat;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: scale(1.02) rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-h5Lfs > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-h5Lfs .brz-container {justify-content: center;}}
.brz .brz-css-ic9qD {padding: 30px 0px 30px 0px;}
.brz .brz-css-ic9qD > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color6),1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ic9qD {padding: 25px 0px 25px 0px;}
.brz .brz-css-ic9qD > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color6),1);}}
@media (max-width:767px) {.brz .brz-css-ic9qD {padding: 20px 0px 25px 0px;}
.brz .brz-css-ic9qD > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color6),1);}}
.brz .brz-css-ltfUr {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-ltfUr {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ltfUr {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ltfUr {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-ltfUr {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-ltfUr {max-width: 100%;}}
@media (min-width:991px) {.brz .brz-css-rD5pT {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rD5pT {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-rD5pT {max-width: 80%;}}
.brz .brz-css-d8YTe {justify-content: center;}
.brz .brz-css-d8YTe .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-d8YTe > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d8YTe {justify-content: center;}
.brz .brz-css-d8YTe .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-d8YTe > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-d8YTe {justify-content: center;}
.brz .brz-css-d8YTe .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-d8YTe > .brz-bg {margin: 10px 0px 0px 0px;}}
.brz .brz-css-guDX4 {margin: 0;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-guDX4 {margin: 0;padding: 10px 15px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-guDX4 {margin: 10px 0px 0px 0px;padding: 0;}}
.brz .brz-css-oqw31 {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oqw31 {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-oqw31 {margin: 0;}}
.brz .brz-css-w8t2l {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.9;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-w8t2l {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-w8t2l {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-uiPnu {justify-content: center;}
.brz .brz-css-uiPnu .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-uiPnu > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uiPnu {justify-content: center;}
.brz .brz-css-uiPnu .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-uiPnu > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-uiPnu {justify-content: center;}
.brz .brz-css-uiPnu .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-uiPnu > .brz-bg {margin: 0px 0px 10px 0px;}}
.brz .brz-css-xkja8 {margin: 0;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xkja8 {margin: 0;padding: 10px 0px 10px 15px;}}
@media (max-width:767px) {.brz .brz-css-xkja8 {margin: 0px 0px 10px 0px;padding: 0;}}
.brz .brz-css-dCSVB {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dCSVB {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-dCSVB {margin: 0;}}
.brz .brz-css-zC6tw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: right !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.9;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zC6tw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: right !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.8;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-zC6tw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 600;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}</style><style class="brz-style brz-project__style-palette">.brz .brz-cp-color1, .brz .brz-bcp-color1 {color: rgb(var(--brz-global-color1));}
.brz .brz-bgp-color1 {background-color: rgb(var(--brz-global-color1));}
.brz .brz-cp-color2, .brz .brz-bcp-color2 {color: rgb(var(--brz-global-color2));}
.brz .brz-bgp-color2 {background-color: rgb(var(--brz-global-color2));}
.brz .brz-cp-color3, .brz .brz-bcp-color3 {color: rgb(var(--brz-global-color3));}
.brz .brz-bgp-color3 {background-color: rgb(var(--brz-global-color3));}
.brz .brz-cp-color4, .brz .brz-bcp-color4 {color: rgb(var(--brz-global-color4));}
.brz .brz-bgp-color4 {background-color: rgb(var(--brz-global-color4));}
.brz .brz-cp-color5, .brz .brz-bcp-color5 {color: rgb(var(--brz-global-color5));}
.brz .brz-bgp-color5 {background-color: rgb(var(--brz-global-color5));}
.brz .brz-cp-color6, .brz .brz-bcp-color6 {color: rgb(var(--brz-global-color6));}
.brz .brz-bgp-color6 {background-color: rgb(var(--brz-global-color6));}
.brz .brz-cp-color7, .brz .brz-bcp-color7 {color: rgb(var(--brz-global-color7));}
.brz .brz-bgp-color7 {background-color: rgb(var(--brz-global-color7));}
.brz .brz-cp-color8, .brz .brz-bcp-color8 {color: rgb(var(--brz-global-color8));}
.brz .brz-bgp-color8 {background-color: rgb(var(--brz-global-color8));}
:root {--brz-global-color1: 161,112,217;--brz-global-color2: 28,28,28;--brz-global-color3: 5,202,182;--brz-global-color4: 184,230,225;--brz-global-color5: 245,212,209;--brz-global-color6: 235,235,235;--brz-global-color7: 102,102,102;--brz-global-color8: 255,255,255;}
:root {--brz-paragraphfontfamily: "Overpass",sans-serif;--brz-paragraphfontsize: 16px;--brz-paragraphfontsizesuffix: px;--brz-paragraphfontweight: 400;--brz-paragraphletterspacing: 0px;--brz-paragraphlineheight: 1.9;--brz-paragraphfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-paragraphtabletfontsize: 15px;--brz-paragraphtabletfontweight: 400;--brz-paragraphtabletletterspacing: 0px;--brz-paragraphtabletlineheight: 1.6;--brz-paragraphtabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-paragraphmobilefontsize: 15px;--brz-paragraphmobilefontweight: 400;--brz-paragraphmobileletterspacing: 0px;--brz-paragraphmobilelineheight: 1.6;--brz-paragraphmobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-paragraphstoryfontsize: 3.68%;--brz-paragraphbold: 400;--brz-paragraphitalic: inherit;--brz-paragraphtextdecoration: inherit;--brz-paragraphtexttransform: inherit;--brz-paragraphtabletbold: 400;--brz-paragraphtabletitalic: inherit;--brz-paragraphtablettextdecoration: inherit;--brz-paragraphtablettexttransform: inherit;--brz-paragraphmobilebold: 400;--brz-paragraphmobileitalic: inherit;--brz-paragraphmobiletextdecoration: inherit;--brz-paragraphmobiletexttransform: inherit;--brz-subtitlefontfamily: "Overpass",sans-serif;--brz-subtitlefontsize: 17px;--brz-subtitlefontsizesuffix: px;--brz-subtitlefontweight: 400;--brz-subtitleletterspacing: 0px;--brz-subtitlelineheight: 1.8;--brz-subtitlefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-subtitletabletfontsize: 17px;--brz-subtitletabletfontweight: 400;--brz-subtitletabletletterspacing: 0px;--brz-subtitletabletlineheight: 1.5;--brz-subtitletabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-subtitlemobilefontsize: 16px;--brz-subtitlemobilefontweight: 400;--brz-subtitlemobileletterspacing: 0px;--brz-subtitlemobilelineheight: 1.5;--brz-subtitlemobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-subtitlestoryfontsize: 3.91%;--brz-subtitlebold: 400;--brz-subtitleitalic: inherit;--brz-subtitletextdecoration: inherit;--brz-subtitletexttransform: inherit;--brz-subtitletabletbold: 400;--brz-subtitletabletitalic: inherit;--brz-subtitletablettextdecoration: inherit;--brz-subtitletablettexttransform: inherit;--brz-subtitlemobilebold: 400;--brz-subtitlemobileitalic: inherit;--brz-subtitlemobiletextdecoration: inherit;--brz-subtitlemobiletexttransform: inherit;--brz-abovetitlefontfamily: "Overpass",sans-serif;--brz-abovetitlefontsize: 13px;--brz-abovetitlefontsizesuffix: px;--brz-abovetitlefontweight: 700;--brz-abovetitleletterspacing: 1.1px;--brz-abovetitlelineheight: 1.5;--brz-abovetitlefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-abovetitletabletfontsize: 13px;--brz-abovetitletabletfontweight: 700;--brz-abovetitletabletletterspacing: 1px;--brz-abovetitletabletlineheight: 1.5;--brz-abovetitletabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-abovetitlemobilefontsize: 13px;--brz-abovetitlemobilefontweight: 700;--brz-abovetitlemobileletterspacing: 1px;--brz-abovetitlemobilelineheight: 1.5;--brz-abovetitlemobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-abovetitlestoryfontsize: 2.99%;--brz-abovetitlebold: 700;--brz-abovetitleitalic: inherit;--brz-abovetitletextdecoration: inherit;--brz-abovetitletexttransform: inherit;--brz-abovetitletabletbold: 700;--brz-abovetitletabletitalic: inherit;--brz-abovetitletablettextdecoration: inherit;--brz-abovetitletablettexttransform: inherit;--brz-abovetitlemobilebold: 700;--brz-abovetitlemobileitalic: inherit;--brz-abovetitlemobiletextdecoration: inherit;--brz-abovetitlemobiletexttransform: inherit;--brz-heading1fontfamily: "Overpass",sans-serif;--brz-heading1fontsize: 46px;--brz-heading1fontsizesuffix: px;--brz-heading1fontweight: 700;--brz-heading1letterspacing: -1.5px;--brz-heading1lineheight: 1.3;--brz-heading1fontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading1tabletfontsize: 38px;--brz-heading1tabletfontweight: 700;--brz-heading1tabletletterspacing: -1px;--brz-heading1tabletlineheight: 1.2;--brz-heading1tabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading1mobilefontsize: 36px;--brz-heading1mobilefontweight: 700;--brz-heading1mobileletterspacing: -1px;--brz-heading1mobilelineheight: 1.3;--brz-heading1mobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading1storyfontsize: 10.58%;--brz-heading1bold: 700;--brz-heading1italic: inherit;--brz-heading1textdecoration: inherit;--brz-heading1texttransform: inherit;--brz-heading1tabletbold: 700;--brz-heading1tabletitalic: inherit;--brz-heading1tablettextdecoration: inherit;--brz-heading1tablettexttransform: inherit;--brz-heading1mobilebold: 700;--brz-heading1mobileitalic: inherit;--brz-heading1mobiletextdecoration: inherit;--brz-heading1mobiletexttransform: inherit;--brz-heading2fontfamily: "Overpass",sans-serif;--brz-heading2fontsize: 36px;--brz-heading2fontsizesuffix: px;--brz-heading2fontweight: 700;--brz-heading2letterspacing: -1.5px;--brz-heading2lineheight: 1.3;--brz-heading2fontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading2tabletfontsize: 30px;--brz-heading2tabletfontweight: 700;--brz-heading2tabletletterspacing: -1px;--brz-heading2tabletlineheight: 1.2;--brz-heading2tabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading2mobilefontsize: 28px;--brz-heading2mobilefontweight: 700;--brz-heading2mobileletterspacing: -1px;--brz-heading2mobilelineheight: 1.3;--brz-heading2mobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading2storyfontsize: 8.28%;--brz-heading2bold: 700;--brz-heading2italic: inherit;--brz-heading2textdecoration: inherit;--brz-heading2texttransform: inherit;--brz-heading2tabletbold: 700;--brz-heading2tabletitalic: inherit;--brz-heading2tablettextdecoration: inherit;--brz-heading2tablettexttransform: inherit;--brz-heading2mobilebold: 700;--brz-heading2mobileitalic: inherit;--brz-heading2mobiletextdecoration: inherit;--brz-heading2mobiletexttransform: inherit;--brz-heading3fontfamily: "Overpass",sans-serif;--brz-heading3fontsize: 28px;--brz-heading3fontsizesuffix: px;--brz-heading3fontweight: 700;--brz-heading3letterspacing: -1.5px;--brz-heading3lineheight: 1.4;--brz-heading3fontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading3tabletfontsize: 27px;--brz-heading3tabletfontweight: 700;--brz-heading3tabletletterspacing: -1px;--brz-heading3tabletlineheight: 1.3;--brz-heading3tabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading3mobilefontsize: 22px;--brz-heading3mobilefontweight: 700;--brz-heading3mobileletterspacing: -.5px;--brz-heading3mobilelineheight: 1.3;--brz-heading3mobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading3storyfontsize: 6.44%;--brz-heading3bold: 700;--brz-heading3italic: inherit;--brz-heading3textdecoration: inherit;--brz-heading3texttransform: inherit;--brz-heading3tabletbold: 700;--brz-heading3tabletitalic: inherit;--brz-heading3tablettextdecoration: inherit;--brz-heading3tablettexttransform: inherit;--brz-heading3mobilebold: 700;--brz-heading3mobileitalic: inherit;--brz-heading3mobiletextdecoration: inherit;--brz-heading3mobiletexttransform: inherit;--brz-heading4fontfamily: "Overpass",sans-serif;--brz-heading4fontsize: 22px;--brz-heading4fontsizesuffix: px;--brz-heading4fontweight: 700;--brz-heading4letterspacing: -.5px;--brz-heading4lineheight: 1.5;--brz-heading4fontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading4tabletfontsize: 22px;--brz-heading4tabletfontweight: 700;--brz-heading4tabletletterspacing: -.5px;--brz-heading4tabletlineheight: 1.4;--brz-heading4tabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading4mobilefontsize: 20px;--brz-heading4mobilefontweight: 700;--brz-heading4mobileletterspacing: 0px;--brz-heading4mobilelineheight: 1.4;--brz-heading4mobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading4storyfontsize: 5.06%;--brz-heading4bold: 700;--brz-heading4italic: inherit;--brz-heading4textdecoration: inherit;--brz-heading4texttransform: inherit;--brz-heading4tabletbold: 700;--brz-heading4tabletitalic: inherit;--brz-heading4tablettextdecoration: inherit;--brz-heading4tablettexttransform: inherit;--brz-heading4mobilebold: 700;--brz-heading4mobileitalic: inherit;--brz-heading4mobiletextdecoration: inherit;--brz-heading4mobiletexttransform: inherit;--brz-heading5fontfamily: "Overpass",sans-serif;--brz-heading5fontsize: 20px;--brz-heading5fontsizesuffix: px;--brz-heading5fontweight: 700;--brz-heading5letterspacing: 0px;--brz-heading5lineheight: 1.6;--brz-heading5fontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading5tabletfontsize: 17px;--brz-heading5tabletfontweight: 700;--brz-heading5tabletletterspacing: 0px;--brz-heading5tabletlineheight: 1.7;--brz-heading5tabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading5mobilefontsize: 17px;--brz-heading5mobilefontweight: 700;--brz-heading5mobileletterspacing: 0px;--brz-heading5mobilelineheight: 1.8;--brz-heading5mobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading5storyfontsize: 4.6%;--brz-heading5bold: 700;--brz-heading5italic: inherit;--brz-heading5textdecoration: inherit;--brz-heading5texttransform: inherit;--brz-heading5tabletbold: 700;--brz-heading5tabletitalic: inherit;--brz-heading5tablettextdecoration: inherit;--brz-heading5tablettexttransform: inherit;--brz-heading5mobilebold: 700;--brz-heading5mobileitalic: inherit;--brz-heading5mobiletextdecoration: inherit;--brz-heading5mobiletexttransform: inherit;--brz-heading6fontfamily: "Overpass",sans-serif;--brz-heading6fontsize: 16px;--brz-heading6fontsizesuffix: px;--brz-heading6fontweight: 700;--brz-heading6letterspacing: 0px;--brz-heading6lineheight: 1.5;--brz-heading6fontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading6tabletfontsize: 16px;--brz-heading6tabletfontweight: 700;--brz-heading6tabletletterspacing: 0px;--brz-heading6tabletlineheight: 1.5;--brz-heading6tabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading6mobilefontsize: 16px;--brz-heading6mobilefontweight: 700;--brz-heading6mobileletterspacing: 0px;--brz-heading6mobilelineheight: 1.5;--brz-heading6mobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-heading6storyfontsize: 3.68%;--brz-heading6bold: 700;--brz-heading6italic: inherit;--brz-heading6textdecoration: inherit;--brz-heading6texttransform: inherit;--brz-heading6tabletbold: 700;--brz-heading6tabletitalic: inherit;--brz-heading6tablettextdecoration: inherit;--brz-heading6tablettexttransform: inherit;--brz-heading6mobilebold: 700;--brz-heading6mobileitalic: inherit;--brz-heading6mobiletextdecoration: inherit;--brz-heading6mobiletexttransform: inherit;--brz-buttonfontfamily: "Overpass",sans-serif;--brz-buttonfontsize: 15px;--brz-buttonfontsizesuffix: px;--brz-buttonfontweight: 700;--brz-buttonletterspacing: 0px;--brz-buttonlineheight: 1.6;--brz-buttonfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-buttontabletfontsize: 17px;--brz-buttontabletfontweight: 700;--brz-buttontabletletterspacing: 0px;--brz-buttontabletlineheight: 1.6;--brz-buttontabletfontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-buttonmobilefontsize: 15px;--brz-buttonmobilefontweight: 700;--brz-buttonmobileletterspacing: 0px;--brz-buttonmobilelineheight: 1.6;--brz-buttonmobilefontvariation: "wght" 400,"wdth" 100,"SOFT" 0;--brz-buttonstoryfontsize: 3.45%;--brz-buttonbold: 700;--brz-buttonitalic: inherit;--brz-buttontextdecoration: inherit;--brz-buttontexttransform: inherit;--brz-buttontabletbold: 700;--brz-buttontabletitalic: inherit;--brz-buttontablettextdecoration: inherit;--brz-buttontablettexttransform: inherit;--brz-buttonmobilebold: 700;--brz-buttonmobileitalic: inherit;--brz-buttonmobiletextdecoration: inherit;--brz-buttonmobiletexttransform: inherit;}</style></head><body class="brz"> <div class="brz-root__container brz-reset-all brz"><div id="7df2e604884286884ed5_jmkefixuuxbcafdvfunjrilrfvyridgbifqj" class="brz-section section brz-css-lLzEH brz-css-jSSKw"><div class="brz-section__content brz-section--boxed brz-css-veGmI brz-css-kAcTz" data-brz-custom-id="tujtmcebscvodwxhhenicnonulsjicakvnxd"><div class="brz-bg"><div class="brz-bg-image brz-bg-image-parallax"></div><div class="brz-bg-color"></div></div><div class="brz-container brz-css-ovOb2 brz-css-qz8s1"><div class="brz-row__container brz-css-gdtVf" data-brz-custom-id="vqwffledkomlhsgkyumwckaomeukfcaxkunc"><div class="brz-bg"></div><div class="brz-row brz-css-bf1R8 brz-css-p3stk"><div class="brz-columns brz-css-h_F2Z brz-css-u3ueh" data-brz-custom-id="ofysorhnpdizjbazntuedhtxkgdywapzuilb"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-yPzbg"><div id="" class="brz-css-z2sMs brz-css-j3ukU brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="yqattdqgbsldxttpxlvjhrrsputtppguuogk"><div data-brz-translate-text="1"><h1 class="brz-text-xs-center brz-text-lg-center brz-tp-sm-empty brz-fs-sm-60 brz-fss-sm-px brz-fw-sm-700 brz-ls-sm-m_1 brz-lh-sm-1 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-70 brz-fss-lg-px brz-fw-lg-700 brz-ls-lg-m_1_5 brz-lh-lg-1 brz-lh-xs-1_1 brz-tp-xs-empty brz-fs-xs-46 brz-fss-xs-px brz-fw-xs-700 brz-ls-xs-0 brz-css-hzaYj" data-uniq-id="bkrql" data-generated-css="brz-css-bmvqr"><span class="brz-cp-color8">Raymond Hsu</span></h1></div></div></div><div id="" class="brz-css-z2sMs brz-css-emW0f brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="lvndterzhxuejodzuaknyxlemnxhxhfctmnc"><div data-brz-translate-text="1"><p class="brz-fw-xs-500 brz-fss-xs-px brz-fs-xs-16 brz-tp-xs-empty brz-mt-sm-10 brz-mb-sm-10 brz-lh-lg-1_8 brz-lh-xs-1_5 brz-ls-lg-0 brz-ls-xs-0 brz-text-xs-center brz-text-lg-center brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-500 brz-ls-sm-0 brz-lh-sm-1 brz-css-pKyUJ" data-uniq-id="qexyo" data-generated-css="brz-css-cymmj"><span style="opacity: 1;" class="brz-cp-color8">Welcome to my profile page. </span></p></div></div></div><div class="brz-wrapper-clone brz-css-iCtBq"><div class="brz-d-xs-flex brz-flex-xs-wrap brz-css-geWBh" data-brz-custom-id=""><div class="brz-wrapper-clone__item" id="iixalgjndjafxmlpnfciznjmjuycadctilri"><a class="brz-a brz-btn brz-css-sjVGe brz-css-bDzMW brz-css-esXje brz-css-lVhCF" href="/minimal" target="_self" rel="noopener" data-brz-link-type="external" data-brz-custom-id="iixalgjndjafxmlpnfciznjmjuycadctilri"><svg class="brz-icon-svg align-[initial] brz-css-eGLPz"><use href="assets/svg/fbf06a65479cd20bd2beef1db60aec96.svg#fa_icon"></use></svg><span data-brz-translate-text="1" class="brz-span brz-text__editor" contenteditable="false">Minimalist Edition</span></a></div></div></div></div></div></div></div><div id="" class="brz-css-z2sMs brz-css-kj4jI brz-css-c526y brz-wrapper"><div class="brz-spacer brz-css-s9BAw brz-css-lZvgc"></div></div></div></div></div><div id="about" class="brz-section section brz-css-lLzEH"><div class="brz-section__content brz-section--boxed brz-css-veGmI brz-css-yGF3B" data-brz-custom-id="ljtnebplssrcpjxpablypiksrfcdhsehyndx"><div class="brz-bg"><div class="brz-bg-color"></div></div><div class="brz-container brz-css-ovOb2 brz-css-jjd_h"><div class="brz-row__container brz-css-gdtVf" data-brz-custom-id="ynxggudjznbgvmrowxpafrkowwfbpxpxalar"><div class="brz-bg"></div><div class="brz-row brz-css-bf1R8 brz-css-p3stk"><div class="brz-columns brz-css-h_F2Z brz-css-lWkW5" data-brz-custom-id="fkirooryyiwkgsggvgwhbxvosplrelptbrpl"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-exmSo"><div id="" class="brz-css-z2sMs brz-css-zEpxK brz-wrapper"><div class="brz-image brz-css-ziDpq brz-css-rwyV0" data-brz-custom-id="clskgpnzxgkruittfhecentbzsnhqnccsfeh"><picture class="brz-picture brz-d-block brz-p-relative brz-css-xUQN8"><source srcset="assets/img/cb4ab6290653b0b82597aaeb883e43e0.jpg 1x, assets/img/3ee89142794f1e32d7c8e61184ba7090.jpg 2x" media="(min-width: 992px)"><source srcset="assets/img/7518242ed27d1819ef8585c286a9ddc7.jpg 1x, assets/img/f968df47dfe3d17605b0653e53e56035.jpg 2x" media="(min-width: 768px)"><img class="brz-img" srcset="assets/img/bc0595b497765a9d8a50d9fb5319dd15.jpg 1x, assets/img/3c3c59036d50c10b477e15da2e830624.jpg 2x" src="assets/img/cb4ab6290653b0b82597aaeb883e43e0.jpg" draggable="false" loading="lazy"></picture></div></div></div></div><div class="brz-columns brz-css-h_F2Z brz-css-jVYHs" data-brz-custom-id="lsosgwjzechukeykdezbyzqroahdpttabsyz"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-qQToQ"><div id="" class="brz-css-z2sMs brz-css-kaG92 brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="eljhyfhvkxaluhcgmzzgrbzmmepdxyemfyps"><div data-brz-translate-text="1"><p class="brz-lh-lg-1_5 brz-lh-sm-im-1_5 brz-lh-xs-im-1_5 brz-fs-lg-13 brz-fs-sm-im-13 brz-fs-xs-im-13 brz-ls-lg-1_1 brz-ls-sm-im-1 brz-ls-xs-im-1 brz-ft-google brz-fw-lg-700 brz-fw-sm-im-700 brz-fw-xs-im-700 brz-ff-montserrat brz-css-iSdSN"><span style="opacity: 0.8;" class="brz-cp-color6">WHO I AM </span></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-wnN6Z brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="cyghihhyawyvixwamlxpopxcexfxpozisnqo"><div data-brz-translate-text="1"><h1 class="brz-fw-lg-600 brz-ft-google brz-ff-montserrat brz-fw-xs-600 brz-fs-lg-46 brz-fs-xs-35 brz-lh-lg-1_3 brz-lh-sm-1_2 brz-lh-xs-1_3 brz-ls-lg-0 brz-ls-xs-1 brz-ls-sm-0 brz-fw-sm-600 brz-tp-sm-empty brz-fs-sm-36 brz-fss-sm-px brz-css-sS_Pr" data-uniq-id="seqmh" data-generated-css="brz-css-fxsqc"><span class="brz-cp-color6">About Me</span></h1></div></div></div><div id="" class="brz-css-z2sMs brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="dyeqrpcoqlbqtqlmowppquxjnnzmthqmzzow"><div data-brz-translate-text="1"><p class="brz-mb-lg-10 brz-fsft-sm-0 brz-fwdth-sm-100 brz-vfw-sm-400 brz-lh-sm-1_5 brz-ls-sm-m_0_3 brz-fw-sm-400 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-mb-sm-10 brz-mb-xs-0 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-m_0_5 brz-lh-lg-1_8 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-m_0_3 brz-lh-xs-1_5 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-css-p9CRZ" data-generated-css="brz-css-aPsus" data-uniq-id="lVoAG"><span class="brz-cp-color6">Hello! My name is Raymond, just a random guy from the internet who loves coding, photography, gaming, and more.</span></p><p class="brz-mt-lg-10 brz-mb-lg-10 brz-fsft-sm-0 brz-fwdth-sm-100 brz-vfw-sm-400 brz-lh-sm-1_5 brz-ls-sm-m_0_3 brz-fw-sm-400 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-mb-sm-10 brz-mt-sm-10 brz-mb-xs-0 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-m_0_5 brz-lh-lg-1_8 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-m_0_3 brz-lh-xs-1_5 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-css-tluQ0" data-generated-css="brz-css-y8e5C" data-uniq-id="uuHZU"><span class="brz-cp-color6">Design is something I love, and I'm always finding new ways to be creative.</span></p><p class="brz-mt-lg-10 brz-fsft-sm-0 brz-fwdth-sm-100 brz-vfw-sm-400 brz-lh-sm-1_5 brz-ls-sm-m_0_3 brz-fw-sm-400 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-mt-sm-10 brz-text-sm-left brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-m_0_5 brz-lh-lg-1_8 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-m_0_3 brz-lh-xs-1_5 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-css-slIyS" data-generated-css="brz-css-ra_tI" data-uniq-id="oKnJ8"><span class="brz-cp-color6">I enjoy making YouTube videos, but I rarely stick to one specific topic, so if you have any fun ideas, I'd love to hear them!</span></p></div></div></div></div></div></div></div></div></div></div><div id="hobbies" class="brz-section brz-css-lLzEH"><div class="brz-section__content brz-section--boxed brz-css-veGmI brz-css-pgMVt" data-brz-custom-id="contfdfhafpsjmylhaxyskxqftrlkbtmwpul"><div class="brz-container brz-css-ovOb2 brz-css-bPqdl"><div id="" class="brz-css-z2sMs brz-css-grm0D brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="owkstuqyipzqdwusmfzvipmfjgdstlvksgkj"><div data-brz-translate-text="1"><p class="brz-text-xs-left brz-fw-xs-700 brz-fw-sm-700 brz-fw-lg-700 brz-ft-google brz-ls-xs-1 brz-ls-sm-1 brz-ls-lg-1_1 brz-fs-xs-13 brz-fs-sm-13 brz-fs-lg-13 brz-lh-xs-1_5 brz-lh-sm-1_5 brz-lh-lg-1_5 brz-text-lg-center brz-ff-montserrat brz-css-qnb2q" data-generated-css="brz-css-z73yx" data-uniq-id="mLcgS"><span style="color: rgba(var(--brz-global-color2),1);" class="brz-cp-color2">WHAT I DO</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-aAU7C brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="fqmroosrwnitseatpjgaeaccctpyjuedhnfs"><div data-brz-translate-text="1"><p class="brz-text-xs-left brz-fw-lg-600 brz-ft-google brz-ff-montserrat brz-fw-xs-600 brz-text-lg-center brz-lh-lg-1_3 brz-lh-xs-1_3 brz-fs-lg-46 brz-fs-xs-36 brz-ls-lg-0 brz-ls-xs-1 brz-fss-sm-px brz-fw-sm-600 brz-ls-sm-0 brz-lh-sm-1_2 brz-tp-sm-empty brz-fs-sm-36 brz-css-bc5nw" data-uniq-id="xKoXe" data-generated-css="brz-css-eySCw"><span style="color: rgba(var(--brz-global-color2),1);" class="brz-cp-color2">Hobbies</span></p></div></div></div><div class="brz-row__container brz-css-gdtVf" data-brz-custom-id="ocgdbiqssspiplvhspksnjrvxfamgpefzcmp"><div class="brz-bg"></div><div class="brz-row brz-css-bf1R8 brz-css-p3stk"><div class="brz-columns brz-css-h_F2Z" data-brz-custom-id="glemrjhfjgjykymchxeylcudseujyruwldas"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-qCl8l"><div id="" class="brz-css-z2sMs brz-css-vnPkT brz-wrapper"><div class="brz-image brz-css-wFw0f brz-css-dSzob" data-brz-custom-id="qxbvfxlteoaheymamsegipivzycrzvdwjxqf"><picture class="brz-picture brz-d-block brz-p-relative brz-css-tKwom"><source srcset="assets/img/e79b542a81f4c34a6729d29d02470a92.jpg 1x, assets/img/b73162fe21051e8d0dea3ba95acda380.jpg 2x" media="(min-width: 992px)"><source srcset="assets/img/afb5b3fe7a5a3b27def1b40003dd25ac.jpg 1x, assets/img/281868cb605580aba2c0aac1b5ef40e9.jpg 2x" media="(min-width: 768px)"><img class="brz-img" srcset="assets/img/9c785dfcddb0152d28c751e99f79da1b.jpg 1x, assets/img/7a294bad9b104bda6fd11835645fdc41.jpg 2x" src="assets/img/e79b542a81f4c34a6729d29d02470a92.jpg" draggable="false" loading="lazy"></picture></div></div><div id="" class="brz-css-z2sMs brz-css-rrCa2 brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="qyulfutodckhuhjgenefwwnhizxutnqwrdsh"><div data-brz-translate-text="1"><h5 class="brz-fw-sm-600 brz-fw-lg-600 brz-ft-google brz-ff-montserrat brz-ls-sm-0 brz-fs-sm-24 brz-ls-lg-0 brz-fs-lg-26 brz-mt-lg-10 brz-mb-lg-10 brz-mb-xs-0 brz-mt-xs-0 brz-lh-lg-1_4 brz-lh-sm-1_3 brz-lh-xs-1_3 brz-tp-xs-empty brz-fs-xs-24 brz-fss-xs-px brz-fw-xs-600 brz-ls-xs-0 brz-css-qDUm1" data-uniq-id="ryyww" data-generated-css="brz-css-bjedc"><span class="brz-cp-color2">Photographing.</span></h5></div></div></div><div id="" class="brz-css-z2sMs brz-css-qSy2L brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="xypgbckbfomcwhkxswsohtbuujfscydljxtg"><div data-brz-translate-text="1"><p class="brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_5 brz-ls-xs-m_0_3 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-text-sm-left brz-lh-lg-1_8 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-m_0_5 brz-lh-sm-1_5 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-m_0_3 brz-css-ub2YQ" data-uniq-id="oaY75" data-generated-css="brz-css-yaQTO">I love photography, which is why I'm currently learning how to improve my compositing skills to make my photos look even more stunning and refined!</p></div></div></div></div></div><div class="brz-columns brz-css-h_F2Z" data-brz-custom-id="hzapfkrppxgvihuylypcbbjmnwgoanrvlcqw"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-dL7FJ"><div id="" class="brz-css-z2sMs brz-css-ksY3T brz-wrapper"><div class="brz-image brz-css-gMJ_d brz-css-ePW5k" data-brz-custom-id="zemjsspznqzglwbogisufsucduyyiucdpqhk"><picture class="brz-picture brz-d-block brz-p-relative brz-css-fi24I"><source srcset="assets/img/697b351d058b413a4d364df30ad8e70f.jpg 1x, assets/img/9d295e5cf9aed0a73e5cc55931cc5e67.jpg 2x" media="(min-width: 992px)"><source srcset="assets/img/827ba20628ea003b8bd5d2fc1c8db894.jpg 1x, assets/img/99d5fea5b50a42a51f6f5aeff3087464.jpg 2x" media="(min-width: 768px)"><img class="brz-img" srcset="assets/img/eef3e4425ae63395581e138f4eb9403d.jpg 1x, assets/img/ee8256b86697e1830adf9659b7931b6c.jpg 2x" src="assets/img/697b351d058b413a4d364df30ad8e70f.jpg" draggable="false" loading="lazy"></picture></div></div><div id="" class="brz-css-z2sMs brz-css-xzWBi brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="opcbzgcsdzemewzjbyhvvkqvuetphstcusvs"><div data-brz-translate-text="1"><p class="brz-ff-montserrat brz-fw-sm-600 brz-fw-lg-600 brz-fs-sm-24 brz-ls-lg-0 brz-ft-google brz-mb-xs-0 brz-mt-xs-0 brz-mt-lg-10 brz-mb-lg-10 brz-lh-lg-1_4 brz-lh-sm-1_3 brz-lh-xs-1_3 brz-fs-lg-26 brz-ls-sm-0 brz-tp-xs-empty brz-fs-xs-24 brz-fss-xs-px brz-fw-xs-600 brz-ls-xs-0 brz-css-qvpOH" data-uniq-id="axgel" data-generated-css="brz-css-drfdp"><span class="brz-cp-color2">Coding.</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-z2kRh brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="tvzzayelgjwoopjutfqwnpxaehtpfbzhkuji"><div data-brz-translate-text="1"><p class="brz-mb-lg-10 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_5 brz-ls-xs-m_0_3 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-ls-lg-m_0_5 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fsft-lg-0 brz-fwdth-lg-100 brz-vfw-lg-400 brz-lh-lg-1_8 brz-lh-sm-1_5 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-m_0_3 brz-css-xDCe5" data-generated-css="brz-css-mDHS4" data-uniq-id="fiygB">I've always found coding fascinating, which was what inspired me to start learning it.</p><p class="brz-mt-lg-10 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_5 brz-ls-xs-m_0_3 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-ls-lg-m_0_5 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fsft-lg-0 brz-fwdth-lg-100 brz-vfw-lg-400 brz-lh-lg-1_8 brz-lh-sm-1_5 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-m_0_3 brz-css-v7PuY" data-generated-css="brz-css-eilTC" data-uniq-id="hpQB3">One of the reason I started coding was my desire to create a custom Discord bot for my server, it has now been released to public.</p></div></div></div></div></div></div></div><div class="brz-row__container brz-css-gdtVf" data-brz-custom-id="vtAg_avXzJdJ"><div class="brz-bg"></div><div class="brz-row brz-css-bf1R8 brz-css-p3stk"><div class="brz-columns brz-css-h_F2Z" data-brz-custom-id="bKjZdIrH6KBv"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-gGX0E"><div id="" class="brz-css-z2sMs brz-css-n2OJL brz-wrapper"><div class="brz-image brz-css-j84ib brz-css-gaNHx" data-brz-custom-id="gCl6tD43IeHi"><picture class="brz-picture brz-d-block brz-p-relative brz-css-xA6d2"><source srcset="assets/img/6f7156a647d8659b28b70179e24883a7.jpg 1x, assets/img/304a0ed7dbcef1a56d115f407a35b496.jpg 2x" media="(min-width: 992px)"><source srcset="assets/img/b1c29184f0851bc2be4d41af1b79cb3f.jpg 1x, assets/img/beeca91237d03754b21ae13ee4827bcd.jpg 2x" media="(min-width: 768px)"><img class="brz-img" srcset="assets/img/ed8e3afd06a5c86b06b48f03f804163a.jpg 1x, assets/img/8e266d86084032f64b6b1f8a2a7cc439.jpg 2x" src="assets/img/6f7156a647d8659b28b70179e24883a7.jpg" draggable="false" loading="lazy"></picture></div></div><div id="" class="brz-css-z2sMs brz-css-kUyeo brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="ryIggQGDcZA4"><div data-brz-translate-text="1"><h5 class="brz-ff-montserrat brz-ls-sm-0 brz-fs-sm-24 brz-fs-lg-26 brz-ft-google brz-lh-sm-1_3 brz-lh-lg-1_4 brz-mb-xs-0 brz-mt-xs-0 brz-mt-lg-10 brz-mb-lg-10 brz-ls-lg-0 brz-fw-lg-600 brz-fw-sm-600 brz-lh-xs-1_3 brz-tp-xs-empty brz-fs-xs-24 brz-fss-xs-px brz-fw-xs-600 brz-ls-xs-0 brz-css-eRb2X" data-uniq-id="n3n6I" data-generated-css="brz-css-wNMQN"><span class="brz-cp-color2">Designing.</span></h5></div></div></div><div id="" class="brz-css-z2sMs brz-css-eIZE5 brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="jcCkG148sLNf"><div data-brz-translate-text="1"><p class="brz-mb-sm-10 brz-mb-xs-10 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_5 brz-ls-xs-m_0_3 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-ls-lg-m_0_5 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fsft-lg-0 brz-fwdth-lg-100 brz-vfw-lg-400 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-m_0_3 brz-lh-sm-1_5 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-mb-lg-10 brz-css-w96H1" data-uniq-id="bIlmc" data-generated-css="brz-css-xy5c_"><span style="font-family: Montserrat, sans-serif; font-size: 18px; font-weight: 400; letter-spacing: -0.5px; text-decoration-line: initial; text-transform: initial; background-color: initial; color: initial; word-spacing: normal; caret-color: auto;">Whether it's graphic design, UI/UX, or just experimenting with creative ideas, I love bringing concepts to life through visuals.</span></p><p class="brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_5 brz-ls-xs-m_0_3 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-ls-lg-m_0_5 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fsft-lg-0 brz-fwdth-lg-100 brz-vfw-lg-400 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-m_0_3 brz-lh-sm-1_5 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-mt-lg-10 brz-mb-sm-0 brz-mb-xs-0 brz-css-a_bSN" data-uniq-id="z869c" data-generated-css="brz-css-rbFNN"><span style="font-family: Montserrat, sans-serif; font-size: 18px; font-weight: 400; letter-spacing: -0.5px; text-decoration-line: initial; text-transform: initial; background-color: initial; color: initial; word-spacing: normal; caret-color: auto;">Maintaining consistency has always been a key part of my design philosophy.</span></p></div></div></div></div></div><div class="brz-columns brz-css-h_F2Z" data-brz-custom-id="fUapLqUY2EyO"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-v5cI0"><div id="" class="brz-css-z2sMs brz-css-d0EXq brz-wrapper"><div class="brz-image brz-css-qEhAc brz-css-sIcTN" data-brz-custom-id="iGdbFp5kok5l"><picture class="brz-picture brz-d-block brz-p-relative brz-css-huYTI"><source srcset="assets/img/8eaaf9a20e06cb7308157e5dabf5ae41.jpg 1x, assets/img/a1a6c72b6c0882d672ecf6a74891154a.jpg 2x" media="(min-width: 992px)"><source srcset="assets/img/2f5766006fd71aaa9dedf58bdd7fb8d9.jpg 1x, assets/img/72fece4b88120ec9ca9bb8a462b57933.jpg 2x" media="(min-width: 768px)"><img class="brz-img" srcset="assets/img/8d7cf4b7a6a0f8d8daaeaede48d0765b.jpg 1x, assets/img/3169ceab8e02e7d263bfd5cbdaecceb6.jpg 2x" src="assets/img/8eaaf9a20e06cb7308157e5dabf5ae41.jpg" draggable="false" loading="lazy"></picture></div></div><div id="" class="brz-css-z2sMs brz-css-daYqI brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="wZAeuQS0WMhP"><div data-brz-translate-text="1"><h5 class="brz-ls-xs-0 brz-fw-xs-600 brz-fss-xs-px brz-fs-xs-24 brz-tp-xs-empty brz-lh-xs-1_3 brz-fw-sm-600 brz-fw-lg-600 brz-ls-lg-0 brz-mb-lg-10 brz-mt-lg-10 brz-mt-xs-0 brz-mb-xs-0 brz-lh-lg-1_4 brz-lh-sm-1_3 brz-ft-google brz-fs-lg-26 brz-fs-sm-24 brz-ls-sm-0 brz-ff-montserrat brz-css-qrbsZ" data-generated-css="brz-css-xxkml" data-uniq-id="oiziy"><span class="brz-cp-color2">Discovering.</span></h5></div></div></div><div id="" class="brz-css-z2sMs brz-css-uuciE brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="pf5SVZ6i9qC4"><div data-brz-translate-text="1"><p class="brz-mb-lg-10 brz-mb-sm-10 brz-mt-sm-0 brz-mb-xs-10 brz-mt-xs-0 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_5 brz-ls-xs-m_0_3 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-ls-lg-m_0_5 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fsft-lg-0 brz-fwdth-lg-100 brz-vfw-lg-400 brz-lh-lg-1_8 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-m_0_3 brz-lh-sm-1_5 brz-css-ajHbw" data-uniq-id="uRAza" data-generated-css="brz-css-sPPFI">Stay informed about the world and continuously learn to enhance life experiences.</p><p class="brz-mt-lg-10 brz-mb-lg-0 brz-mt-sm-10 brz-mt-xs-10 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_5 brz-ls-xs-m_0_3 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-fsft-lg-0 brz-fwdth-lg-100 brz-vfw-lg-400 brz-lh-lg-1_8 brz-ls-lg-m_0_5 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-m_0_3 brz-lh-sm-1_5 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-css-hT9i5" data-uniq-id="lrbJ0" data-generated-css="brz-css-dnInz">I enjoy sharing my learning journey and thoughts on various topics!</p></div></div></div></div></div></div></div></div></div></div><div id="contact" class="brz-section brz-css-lLzEH"><div class="brz-section__content brz-section--boxed brz-css-veGmI brz-css-p7REd" data-brz-custom-id="nwxrsfdigwxnsuaabuvfqdmluzwctjrmyuzg"><div class="brz-bg"><div class="brz-bg-image brz-bg-image-parallax"></div><div class="brz-bg-color"></div></div><div class="brz-container brz-css-ovOb2 brz-css-l9S3J"><div id="" class="brz-css-z2sMs brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="ndgvwgqlhmfuxqoiqetceuuggabslzthpuob"><div data-brz-translate-text="1"><p class="brz-fw-xs-im-700 brz-fw-sm-im-700 brz-fw-lg-700 brz-ft-google brz-ls-xs-im-1 brz-ls-sm-im-1 brz-ls-lg-1_1 brz-fs-xs-im-13 brz-fs-sm-im-13 brz-fs-lg-13 brz-lh-xs-im-1_5 brz-lh-sm-im-1_5 brz-lh-lg-1_5 brz-ff-montserrat brz-css-dYmSU"><span style="opacity: 0.8;" class="brz-cp-color6">WHAT I MADE</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="bwqefenlwjnxzizdyogtdeffesrgzuttcxmn"><div data-brz-translate-text="1"><h2 class="brz-ls-xs-0 brz-fw-xs-600 brz-fss-xs-px brz-fs-xs-35 brz-tp-xs-empty brz-ls-sm-0 brz-fw-sm-600 brz-fs-lg-46 brz-lh-xs-1_3 brz-lh-sm-1_2 brz-lh-lg-1_3 brz-ls-lg-0 brz-ff-montserrat brz-ft-google brz-fw-lg-600 brz-tp-sm-empty brz-fs-sm-36 brz-fss-sm-px brz-css-eugHz" data-generated-css="brz-css-oxwzk" data-uniq-id="nbjlh"><span style="color: rgb(255, 255, 255);">Featured Projects</span></h2></div></div></div><div id="" class="brz-css-z2sMs brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="sDoyTu6Dnq8t"><div data-brz-translate-text="1"><p class="brz-ls-lg-m_0_5 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fsft-lg-0 brz-fwdth-lg-100 brz-vfw-lg-400 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-m_0_3 brz-lh-sm-1_8 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-lh-xs-1_5 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-m_0_3 brz-css-rl6Pm" data-generated-css="brz-css-gelt8" data-uniq-id="pQBg0"><span class="brz-cp-color6" style="color: rgba(var(--brz-global-color6),1);">These are my favorite projects which I created or collaborated with!</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-kj4jI brz-css-n_ZCX brz-wrapper"><div class="brz-spacer brz-css-s9BAw brz-css-dmHHb"></div></div><div id="" class="brz-css-z2sMs brz-css-ggGzU brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="iyupv6HqVPQd"><div data-brz-translate-text="1"><p class="brz-bcp-color8 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-22 brz-tp-xs-empty brz-fs-xs-20 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-2 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-mb-xs-5 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-tp-sm-empty brz-fs-sm-22 brz-css-qoKp3" data-uniq-id="wHC_4" data-generated-css="brz-css-tBLvY"><span class="brz-cp-color8" style="opacity: 1;">Web Application</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-qNbeT brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="uek28RyaI0FY"><div data-brz-translate-text="1"><p class="brz-mt-xs-5 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_2 brz-ls-xs-0 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-mb-xs-0 brz-bcp-color8 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-css-kWW62" data-uniq-id="rXnPo" data-generated-css="brz-css-vMHii"><strong class="brz-cp-color8" style="opacity: 1;">Class Table Teller: </strong><a class="brz-cp-color3 link--external" style="opacity: 1;" href="https://github.com/raymond-1227/whats-the-next-class" data-brz-link-type="external" target="_blank"><strong>what's the next class?</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-jcE0j brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="zffdwripsdbpslrecsuvaytltukefqwnpxyb"><div data-brz-translate-text="1"><p class="brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-1_2 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-mt-xs-5 brz-css-gHFpc" data-uniq-id="sXQqY" data-generated-css="brz-css-ugNZt"><strong class="brz-cp-color6">Browser Extension: </strong><a class="link--external brz-cp-color3" href="https://addons.mozilla.org/firefox/addon/page-text-editor" data-brz-link-type="external" target="_blank"><strong>Page Text Editor</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-kj4jI brz-wrapper"><div class="brz-spacer brz-css-s9BAw brz-css-yGSvA"></div></div><div id="" class="brz-css-z2sMs brz-css-wLeGm brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="jqFI15t3Ft7I"><div data-brz-translate-text="1"><p class="brz-bcp-color8 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-22 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-xs-empty brz-fs-xs-20 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-2 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-mb-xs-5 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-tp-sm-empty brz-fs-sm-22 brz-css-sQ3py" data-generated-css="brz-css-lrbzY" data-uniq-id="tKi6Q"><span class="brz-cp-color8" style="opacity: 1;">Discord Bot</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-jWz5p brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="sqxfevxzxvgrtuohugsmuyclxgbncwfbqrcx"><div data-brz-translate-text="1"><p class="brz-mb-xs-5 brz-mt-xs-5 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_2 brz-ls-xs-0 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-bcp-color8 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-css-oGz6m" data-uniq-id="fgwdJ" data-generated-css="brz-css-udAhd"><strong class="brz-cp-color8" style="opacity: 1;">Multipurpose Discord Bot: </strong><a class="brz-cp-color3 link--external" style="opacity: 1;" href="https://hackerman14.github.io" data-brz-link-type="external" target="_blank"><strong>hackerman14</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-bwe2y brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="tngkhpwawysfwjbmnwsnshpmvoohrsgwcacf"><div data-brz-translate-text="1"><p class="brz-mt-xs-5 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_2 brz-ls-xs-0 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-bcp-color8 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-css-mB2YJ" data-uniq-id="qM0jr" data-generated-css="brz-css-rULL5"><strong class="brz-cp-color8" style="opacity: 1;">Guild-Oriented Discord Bot: </strong><a class="brz-cp-color3 link--external" style="opacity: 1;" href="https://github.com/raymond-1227/realmeme-superfart-rebooted" data-brz-link-type="external" target="_blank"><strong>SuperFART Rebooted</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-kj4jI brz-wrapper"><div class="brz-spacer brz-css-s9BAw brz-css-sstgJ"></div></div><div id="" class="brz-css-z2sMs brz-css-wV1_w brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="zqkiz2Qzvuhx"><div data-brz-translate-text="1"><p class="brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-22 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fsft-lg-0 brz-fwdth-lg-100 brz-vfw-lg-400 brz-lh-lg-1_8 brz-ls-lg-0 brz-bcp-color8 brz-tp-xs-empty brz-fs-xs-20 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-2 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-mb-xs-5 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-vfw-sm-400 brz-fwdth-sm-100 brz-fsft-sm-0 brz-tp-sm-empty brz-fs-sm-22 brz-css-krBxa" data-uniq-id="qJZUy" data-generated-css="brz-css-ksunN"><span class="brz-cp-color8" style="opacity: 1;">Web Design</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-mVhNz brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="xUDXvAh3UlNp"><div data-brz-translate-text="1"><p class="brz-mb-xs-5 brz-mt-xs-5 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_2 brz-ls-xs-0 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-bcp-color8 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-css-kaJff" data-uniq-id="b0dVC" data-generated-css="brz-css-liYj4"><strong class="brz-cp-color8" style="opacity: 1;">Mobile OS Installer Concept: </strong><a class="brz-cp-color3 link--external" style="opacity: 1;" href="https://adrod.pages.dev/" data-brz-link-type="external" target="_blank"><strong>adrod Installer</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-hkXXw brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="mnozslzqozvawnegzqeyefbyzknpmbyelxwq"><div data-brz-translate-text="1"><p class="brz-mb-xs-5 brz-mt-xs-5 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_2 brz-ls-xs-0 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-css-xfLoa" data-uniq-id="dNctT" data-generated-css="brz-css-n9AQf"><strong class="brz-cp-color6">Desktop OS Concept: </strong><a class="brz-cp-color3 brz-pre-population-visible link--external" href="https://teamcompound.pages.dev" data-brz-link-type="external" target="_blank"><strong>#TeamCompound</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-kdd9K brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="wrvyhisipwjgsstpwsqgfuijwvckgncqqwoi"><div data-brz-translate-text="1"><p class="brz-mt-xs-5 brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_2 brz-ls-xs-0 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-css-ko__T" data-uniq-id="sfeV1" data-generated-css="brz-css-fpKE9"><strong class="brz-cp-color6">Justice for Pineapple Pizza: </strong><a class="brz-cp-color3 brz-pre-population-visible link--external" href="https://pine4life.pages.dev/" data-brz-link-type="external" target="_blank"><strong>#Pine4Life</strong></a></p></div></div></div></div></div></div><div id="contact" class="brz-section brz-css-lLzEH"><div class="brz-section__content brz-section--boxed brz-css-veGmI brz-css-lGH1S" data-brz-custom-id="geghlcpsyluzvhbpqfmonpllunzlhwrgxmfz"><div class="brz-bg"><div class="brz-bg-image brz-bg-image-parallax"></div><div class="brz-bg-color"></div></div><div class="brz-container brz-css-ovOb2 brz-css-znhPO"><div id="" class="brz-css-z2sMs brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="qoksbrpqhulsrccjfujrlhpmqmzjimqyekth"><div data-brz-translate-text="1"><p class="brz-lh-lg-1_5 brz-lh-sm-im-1_5 brz-lh-xs-im-1_5 brz-fs-lg-13 brz-fs-sm-im-13 brz-fs-xs-im-13 brz-ls-lg-1_1 brz-ls-sm-im-1 brz-ls-xs-im-1 brz-ft-google brz-fw-lg-700 brz-fw-sm-im-700 brz-fw-xs-im-700 brz-ff-montserrat brz-css-psQcJ"><span style="opacity: 0.8;" class="brz-cp-color6">GET IN TOUCH</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="eznotrrvhmauqpyskwpzlvjrebgotatzzhaz"><div data-brz-translate-text="1"><h2 class="brz-fw-lg-600 brz-ft-google brz-ff-montserrat brz-ls-lg-0 brz-lh-lg-1_3 brz-lh-sm-1_2 brz-lh-xs-1_3 brz-fs-lg-46 brz-fw-sm-600 brz-ls-sm-0 brz-tp-xs-empty brz-fs-xs-35 brz-fss-xs-px brz-fw-xs-600 brz-ls-xs-0 brz-tp-sm-empty brz-fs-sm-36 brz-fss-sm-px brz-css-ooR64" data-uniq-id="fzlay" data-generated-css="brz-css-cjerp"><span style="color: rgb(255, 255, 255);">Contact Me</span></h2></div></div></div><div id="" class="brz-css-z2sMs brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="eAHbhadaJUHJ"><div data-brz-translate-text="1"><p class="brz-ls-xs-m_0_3 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-fsft-xs-0 brz-fwdth-xs-100 brz-vfw-xs-400 brz-lh-xs-1_5 brz-fsft-sm-0 brz-fwdth-sm-100 brz-vfw-sm-400 brz-lh-sm-1_8 brz-ls-sm-m_0_3 brz-fw-sm-400 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-lh-lg-1_8 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-m_0_5 brz-css-dxjvV" data-uniq-id="v30wk" data-generated-css="brz-css-cd46F"><span class="brz-cp-color6" style="color: rgba(var(--brz-global-color6),1);">Contact me via social media accounts listed below.</span></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-kj4jI brz-css-jnqag brz-wrapper"><div class="brz-spacer brz-css-s9BAw brz-css-hMMc9"></div></div><div id="" class="brz-css-z2sMs brz-css-oISpU brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="nqydkrtmnezpmphdobcgjognscknzjxbidpv"><div data-brz-translate-text="1"><p class="brz-lh-xs-2 brz-ls-xs-0 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-css-aRCYJ" data-generated-css="brz-css-pPRK6" data-uniq-id="ozuU4"><strong class="brz-cp-color6" style="opacity: 1;">Discord: </strong><a class="brz-cp-color3 link--external" style="opacity: 1;" href="https://discord.gg/sZmg77n5EC" data-brz-link-type="external" target="_blank" rel="nofollow"><strong>rhsu</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-sIvU8 brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="zblougbfkbpxaihymacmjmkdbbsowhwsinrx"><div data-brz-translate-text="1"><p class="brz-lh-sm-1_8 brz-ls-sm-0 brz-fw-sm-400 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-lh-lg-1_8 brz-ls-lg-0 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-2 brz-tp-xs-empty brz-fs-xs-18 brz-css-mVdI6" data-uniq-id="rvbct" data-generated-css="brz-css-lz9RI"><strong class="brz-cp-color6">YouTube:</strong><strong> </strong><a class="brz-cp-color3 link--external" href="https://www.youtube.com/@RaymondHsu" data-brz-link-type="external" target="_blank" rel="nofollow"><strong>RaymondHsu</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-bcrPh brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="rprfozulnsjfulclnjjtfrvbhwqczuemumka"><div data-brz-translate-text="1"><p class="brz-lh-sm-1_8 brz-ls-sm-0 brz-fw-sm-400 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-lh-lg-1_8 brz-ls-lg-0 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-2 brz-css-xzpPA" data-uniq-id="pvPGy" data-generated-css="brz-css-m4izm"><strong class="brz-cp-color6">X (aka Twitter): </strong><a class="brz-cp-color3 link--external" href="https://x.com/RaymondTheOof" data-brz-link-type="external" target="_blank" rel="nofollow"><strong>RaymondTheOof</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-ipdqV brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="jnadkretdzjmqljnoffufeydbmsvozbpmrfa"><div data-brz-translate-text="1"><p class="brz-lh-sm-1_8 brz-ls-sm-0 brz-fw-sm-400 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-lh-lg-1_8 brz-ls-lg-0 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-1_9 brz-tp-xs-empty brz-fs-xs-18 brz-css-zcuA3" data-uniq-id="g6mDj" data-generated-css="brz-css-bjNIK"><strong class="brz-cp-color6">Facebook: </strong><a class="brz-cp-color3 link--external" href="https://www.facebook.com/ush.dnomyar" data-brz-link-type="external" target="_blank" rel="nofollow"><strong>ush.dnomyar</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-nRL4z brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="wozlvgnqqmikotziejhsqlubpwwnwzqwwxdl"><div data-brz-translate-text="1"><p class="brz-lh-xs-2 brz-ls-xs-0 brz-fw-xs-400 brz-fss-xs-px brz-fs-xs-18 brz-tp-xs-empty brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-css-anSRq" data-generated-css="brz-css-iDXOs" data-uniq-id="jNpHY"><strong class="brz-cp-color6">Instagram:</strong><strong> </strong><a class="brz-cp-color3 link--external" href="https://www.instagram.com/rhsu.jpg" data-brz-link-type="external" target="_blank" rel="nofollow"><strong>rhsu.jpg</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-pM86P brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="anzqylckgrotnpooddttwvhvmlnnepodmwll"><div data-brz-translate-text="1"><p class="brz-lh-sm-1_8 brz-ls-sm-0 brz-fw-sm-400 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-lh-lg-1_8 brz-ls-lg-0 brz-fw-lg-400 brz-fss-lg-px brz-fs-lg-18 brz-ft-google brz-ff-montserrat brz-tp-lg-empty brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-2 brz-css-rC1nE" data-uniq-id="g3QyC" data-generated-css="brz-css-tlXHC"><strong class="brz-cp-color6">GitHub:</strong><strong> </strong><a class="brz-cp-color3 link--external" href="https://github.com/raymond-1227" data-brz-link-type="external" target="_blank" rel="nofollow"><strong>raymond-1227</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-css-sV8ra brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="brkijljpknljbziguwmyqpicwtkmromjbuhu"><div data-brz-translate-text="1"><p class="brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-0 brz-lh-lg-1_8 brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-0 brz-lh-xs-2 brz-tp-sm-empty brz-fs-sm-18 brz-fss-sm-px brz-fw-sm-400 brz-ls-sm-0 brz-lh-sm-1_8 brz-css-sLwHl" data-uniq-id="ynYiS" data-generated-css="brz-css-wgVLv"><strong class="brz-cp-color6">Hypixel:</strong><strong> </strong><a class="brz-cp-color3 link--external" href="https://hypixel.net/members/dnomyar.1811695" data-brz-link-type="external" target="_blank" rel="nofollow"><strong>dnomyaR</strong></a></p></div></div></div><div id="" class="brz-css-z2sMs brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="wqgylinpajlffxzdbhgtrztlrnsrjbruyoqo"><div data-brz-translate-text="1"><p class="brz-fs-sm-18 brz-tp-sm-empty brz-lh-sm-1_8 brz-ls-sm-0 brz-fw-sm-400 brz-fss-sm-px brz-text-xs-left brz-lh-lg-1_8 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-18 brz-fss-lg-px brz-fw-lg-400 brz-ls-lg-m_0_5 brz-tp-xs-empty brz-fs-xs-18 brz-fss-xs-px brz-fw-xs-400 brz-ls-xs-m_0_3 brz-lh-xs-1_5 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-css-y5IrA" data-uniq-id="y1IpV" data-generated-css="brz-css-wUpkN"><span class="link--upload brz-cp-color6 brz-span" style="">The list is also available in a Linktree style, </span><a class="brz-cp-color3 link--external" href="social" data-brz-link-type="external">click here</a><span class="brz-cp-color6 link--upload brz-span" style=""> to check out!</span></p></div></div></div></div></div></div><footer id="86edbb1f49e56b18e79d_cLZ9ODI_JpR6" class="brz-footer brz-css-h5Lfs brz-css-ic9qD" data-brz-custom-id="cLZ9ODI_JpR6"><div class="brz-bg"><div class="brz-bg-color"></div></div><div class="brz-container brz-css-ltfUr brz-css-rD5pT"><div class="brz-row__container brz-css-gdtVf" data-brz-custom-id="nSWXeJd7VF_l"><div class="brz-bg"></div><div class="brz-row brz-css-bf1R8 brz-css-p3stk"><div class="brz-columns brz-css-h_F2Z brz-css-d8YTe" data-brz-custom-id="qQWsqTLrI6Xh"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-guDX4"><div id="" class="brz-css-z2sMs brz-css-oqw31 brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="cXGVjjAqkOQv"><div data-brz-translate-text="1"><p class="brz-text-sm-left brz-fsft-sm-0 brz-fwdth-sm-100 brz-vfw-sm-400 brz-lh-sm-1_8 brz-ls-sm-0 brz-fw-sm-600 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-text-lg-left brz-text-xs-center brz-ls-lg-0 brz-lh-lg-1_9 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-16 brz-fss-lg-px brz-fw-lg-600 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-tp-xs-empty brz-fs-xs-16 brz-fss-xs-px brz-fw-xs-600 brz-ls-xs-0 brz-lh-xs-1_5 brz-css-w8t2l" data-generated-css="brz-css-jaotJ" data-uniq-id="udDX8"><span class="brz-cp-color2" style="color: rgba(var(--brz-global-color2),1);">© Raymond Hsu 2020-present</span></p></div></div></div></div></div><div class="brz-columns brz-css-h_F2Z brz-css-uiPnu" data-brz-custom-id="oiIeFx97iyyY"><div class="brz-bg"></div><div class="brz-column__items brz-css-n0FjP brz-css-xkja8"><div id="" class="brz-css-z2sMs brz-css-dCSVB brz-wrapper"><div class="brz-rich-text brz-rich-text__custom brz-css-zFug6" data-brz-custom-id="wgUTwZz5SHGa"><div data-brz-translate-text="1"><p class="brz-text-sm-right brz-fsft-sm-0 brz-fwdth-sm-100 brz-vfw-sm-400 brz-lh-sm-1_8 brz-ls-sm-0 brz-fw-sm-600 brz-fss-sm-px brz-fs-sm-18 brz-tp-sm-empty brz-text-lg-right brz-text-xs-center brz-ls-lg-0 brz-lh-lg-1_9 brz-vfw-lg-400 brz-fwdth-lg-100 brz-fsft-lg-0 brz-tp-lg-empty brz-ff-montserrat brz-ft-google brz-fs-lg-16 brz-fss-lg-px brz-fw-lg-600 brz-vfw-xs-400 brz-fwdth-xs-100 brz-fsft-xs-0 brz-tp-xs-empty brz-fs-xs-16 brz-fss-xs-px brz-fw-xs-600 brz-ls-xs-0 brz-lh-xs-1_5 brz-css-zC6tw" data-generated-css="brz-css-fBPqg" data-uniq-id="dNc_d"><span class="brz-cp-color2" style="color: rgba(var(--brz-global-color2),1);">All rights reserved. </span></p></div></div></div></div></div></div></div></div></footer></div> <script src="assets/22391d2f23e5a1138060de3aaaa56ad8.js" class="brz-script brz-script-preview-lib" data-brz-group="group-jq"></script><script src="assets/28e39a1eba0998570cf714b8b3022687.js" class="brz-script brz-script-preview-pro"></script><script class="brz-script brz-script-emit">document.addEventListener('DOMContentLoaded', () => window.Brz.emit("init.dom", jQuery(document.body)));</script></body></html>