-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsupport.html
1013 lines (1013 loc) · 178 KB
/
support.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8" /><meta property="og:site_name" content="hackerman14 Bot" /><meta property="og:title" content="Support" /><meta name="twitter:title" content="Support" /><meta property="og:description" content="Need help or feedback about the bot? Here are the two ways of how you can contact the developer." /><meta name="twitter:description" content="Need help or feedback about the bot? Here are the two ways of how you can contact the developer." /><meta property="og:type" content="article" /><meta property="og:image" content="assets/img/671a1892465a5f11251a8129c8312c8c.jpg" /><meta property="twitter:image" content="assets/img/671a1892465a5f11251a8129c8312c8c.jpg"><meta property="og:url" content="/support" /><meta content="summary_large_image" name="twitter:card" /><title>Support | hackerman14 Bot</title><meta name="description" content="Need help or feedback about the bot? Here are the two ways of how you can contact the developer." /><link rel="apple-touch-icon-precomposed" href="https://cloud-1de12d.b-cdn.net/media/iW=180&iH=any/a333692f76204dddaf79dc03dae3fab8.png"/><link rel="apple-touch-icon-precomposed" href="https://cloud-1de12d.b-cdn.net/media/iW=256&iH=256/a333692f76204dddaf79dc03dae3fab8.png"/><link rel="canonical" href="/support" /><link rel="icon" href="https://cloud-1de12d.b-cdn.net/media/iW=32&iH=any/16ed4a641cb945224e56a2d55d83919b.png" sizes="32x32"/><link rel="icon" href="https://cloud-1de12d.b-cdn.net/media/iW=192&iH=any/16ed4a641cb945224e56a2d55d83919b.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&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/e51bafcea531fb5eb7ea6adc23ad043c.css" class="brz-link brz-link-preview-lib-pro" data-brz-group="group-2" rel="stylesheet"/><link href="assets/a61c7def010478cd5c16949b346d91cb.css" class="brz-link brz-link-preview-pro" rel="stylesheet"/><style class="brz-style">.brz .brz-css-mjvma {z-index: auto;margin: 0;}
.brz .brz-css-mjvma.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-mjvma .brz-container {justify-content: center;}
.brz .brz-css-mjvma > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-mjvma > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-mjvma {display: block;}}
@media (min-width:991px) {.brz .brz-css-mjvma > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mjvma {z-index: auto;margin: 0;}
.brz .brz-css-mjvma.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-mjvma .brz-container {justify-content: center;}
.brz .brz-css-mjvma > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-mjvma > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mjvma {display: block;}}
@media (max-width:767px) {.brz .brz-css-mjvma {z-index: auto;margin: 0;}
.brz .brz-css-mjvma.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-mjvma .brz-container {justify-content: center;}
.brz .brz-css-mjvma > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-mjvma > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-mjvma {display: block;}}
.brz .brz-css-nP5Bu {margin: -100px 0px 0px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nP5Bu {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-nP5Bu {margin: 0;}}
.brz .brz-css-rZljp {padding: 75px 0px 75px 0px;}
.brz .brz-css-rZljp > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
@media (min-width:991px) {.brz .brz-css-rZljp > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-image {background-attachment: scroll;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .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-rZljp {padding: 50px 15px 50px 15px;}
.brz .brz-css-rZljp > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rZljp > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .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-rZljp {padding: 25px 15px 25px 15px;}
.brz .brz-css-rZljp > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-rZljp > .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-rZljp > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}}
@media (max-width:767px) {.brz .brz-css-rZljp > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-rZljp > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-uIpxC {padding: 160px 0px 80px 0px;}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-image {background-image: url("assets/img/8840d422f8960fa7361523ca30506648.jpg");background-position: 50% 94%;}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/8840d422f8960fa7361523ca30506648.jpg");}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.5);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uIpxC {padding: 50px;}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-image {background-image: url("assets/img/8840d422f8960fa7361523ca30506648.jpg");background-position: 51% 54%;}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/8840d422f8960fa7361523ca30506648.jpg");}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.5);}}
@media (max-width:767px) {.brz .brz-css-uIpxC {padding: 35px;}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-image {background-image: url("assets/img/8840d422f8960fa7361523ca30506648.jpg");background-position: 47% 26%;}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/8840d422f8960fa7361523ca30506648.jpg");}
.brz .brz-css-uIpxC > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.5);}}
.brz .brz-css-vIngN {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-vIngN {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vIngN {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vIngN {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-vIngN {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-vIngN {max-width: 100%;}}
@media (min-width:991px) {.brz .brz-css-m3tNV {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-m3tNV {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-m3tNV {max-width: 85%;}}
.brz .brz-css-ewPvY {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-ewPvY {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ewPvY {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ewPvY {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-ewPvY {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-ewPvY {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-bFGNM {padding: 10px 0px 0px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bFGNM {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-bFGNM {padding: 0;}}
.brz .brz-css-yETwZ {width: 100%;mix-blend-mode: normal;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yETwZ {width: 100%;mix-blend-mode: normal;}}
@media (max-width:767px) {.brz .brz-css-yETwZ {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-bZSwm {color: rgba(102,102,102,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 72px;line-height: 1.3;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-bZSwm {color: rgba(102,102,102,1);margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 50px;line-height: 1.2;font-weight: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-bZSwm {color: rgba(102,102,102,1);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: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-uo64_ {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;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uo64_ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 17px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-uo64_ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-b66dY {padding: 50px 0px 60px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-b66dY {padding: 50px;}}
@media (max-width:767px) {.brz .brz-css-b66dY {padding: 35px;}}
@media (min-width:991px) {.brz .brz-css-i5p5Q {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-i5p5Q {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-i5p5Q {max-width: 85%;}}
.brz .brz-css-fMMln {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fMMln {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-fMMln {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-vtwJg {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vtwJg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-vtwJg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-brbhL {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-brbhL {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-brbhL {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-dmsqF {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dmsqF {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-dmsqF {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-nOwjw {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nOwjw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 17px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-nOwjw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 17px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-x_AXg {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-x_AXg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-x_AXg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-iNoYN {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iNoYN {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-iNoYN {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-rw7Bt {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rw7Bt {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-rw7Bt {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 2;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (min-width:991px) {.brz .brz-css-lJnyM {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lJnyM {display: block;}}
@media (max-width:767px) {.brz .brz-css-lJnyM {display: block;}}
.brz .brz-css-fjaPO {padding: 75px 0px 75px 0px;margin: 0;}
.brz .brz-css-fjaPO > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-fjaPO > .brz-bg:after {box-shadow: none;}
.brz .brz-css-fjaPO > .brz-bg > .brz-bg-image {background-image: none;filter: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-fjaPO > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-fjaPO > .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-fjaPO > .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-fjaPO > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-fjaPO > .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-fjaPO > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fjaPO {padding: 50px 15px 50px 15px;margin: 0;}
.brz .brz-css-fjaPO > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-fjaPO > .brz-bg:after {box-shadow: none;}
.brz .brz-css-fjaPO > .brz-bg > .brz-bg-image {background-image: none;filter: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-fjaPO > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-fjaPO > .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-fjaPO > .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-fjaPO > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-fjaPO > .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-fjaPO > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}}
@media (max-width:767px) {.brz .brz-css-fjaPO {padding: 25px 15px 25px 15px;margin: 0;}
.brz .brz-css-fjaPO > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-fjaPO > .brz-bg:after {box-shadow: none;}
.brz .brz-css-fjaPO > .brz-bg > .brz-bg-image {background-image: none;filter: none;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-fjaPO > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-fjaPO > .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-fjaPO > .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-fjaPO > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-fjaPO > .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-fjaPO > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}}
.brz .brz-css-pmEsN {padding: 0px 40px 5px 40px;}
.brz .brz-css-pmEsN > .brz-bg {box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);}
.brz .brz-css-pmEsN > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pmEsN {padding: 0px 20px 0px 0px;}
.brz .brz-css-pmEsN > .brz-bg {box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);}
.brz .brz-css-pmEsN > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}}
@media (max-width:767px) {.brz .brz-css-pmEsN {padding: 10px 20px 10px 10px;}
.brz .brz-css-pmEsN > .brz-bg {box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);}
.brz .brz-css-pmEsN > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}}
.brz .brz-css-nd0xP {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-nd0xP {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nd0xP {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nd0xP {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-nd0xP {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-nd0xP {max-width: 100%;}}
@media (min-width:991px) {.brz .brz-css-b77vZ {max-width: calc(.9 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-b77vZ {max-width: 90%;}}
@media (max-width:767px) {.brz .brz-css-b77vZ {max-width: 90%;}}
.brz .brz-css-syoAF {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-syoAF > .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-syoAF > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-syoAF > .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-syoAF > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-syoAF > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-syoAF {min-height: auto;display: flex;}
.brz .brz-css-syoAF > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .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-syoAF {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-syoAF > .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-syoAF > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-syoAF > .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-syoAF > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-syoAF > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-syoAF {min-height: auto;display: flex;}
.brz .brz-css-syoAF > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .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-syoAF {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-syoAF > .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-syoAF > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-syoAF > .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-syoAF > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-syoAF > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-syoAF {min-height: auto;display: flex;}
.brz .brz-css-syoAF > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-syoAF > .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-pjW8o {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pjW8o {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-pjW8o {padding: 0;max-width: 100%;}}
.brz .brz-css-m1RaC {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-m1RaC {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-m1RaC {padding: 0;}}
.brz .brz-css-cX4P5 {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-cX4P5 .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-cX4P5 > .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-cX4P5 > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-cX4P5 > .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-cX4P5 > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-video {filter: none;display: none;}
@media (min-width:991px) {.brz .brz-css-cX4P5 > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cX4P5 > .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-cX4P5 {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-cX4P5 .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-cX4P5 > .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-cX4P5 > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-cX4P5 > .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-cX4P5 > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-video {filter: none;display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cX4P5 > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cX4P5 > .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-cX4P5 {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-cX4P5 .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-cX4P5 > .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-cX4P5 > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-cX4P5 > .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-cX4P5 > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-video {filter: none;display: none;}}
@media (max-width:767px) {.brz .brz-css-cX4P5 > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cX4P5 > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-fZL0x {flex: 1 1 42.4%;max-width: 42.4%;justify-content: center;}
.brz .brz-css-fZL0x .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-fZL0x > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fZL0x {flex: 1 1 35%;max-width: 35%;justify-content: center;}
.brz .brz-css-fZL0x .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-fZL0x > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-fZL0x {flex: 1 1 50%;max-width: 50%;justify-content: center;}
.brz .brz-css-fZL0x .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-fZL0x > .brz-bg {margin: -5px 0px 0px 0px;}}
.brz .brz-css-p3Smj {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;}
@media (min-width:991px) {.brz .brz-css-p3Smj {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-p3Smj {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-p3Smj {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-p3Smj {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;min-height: 100%;}}
@media (max-width:767px) {.brz .brz-css-p3Smj {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-aKBG2 {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aKBG2 {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-aKBG2 {margin: -5px 0px 0px 0px;}}
.brz .brz-css-q6_I6 {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-q6_I6 {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-q6_I6 {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-q6_I6 {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-q6_I6 {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-q6_I6 {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-sW0lH {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sW0lH {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-sW0lH {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-cTAbc {display: none;}}
.brz .brz-css-zE34A {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zE34A {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-zE34A {height: 50px;}}
.brz .brz-css-zAJo6 {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zAJo6 {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-zAJo6 {height: 10px;}}
.brz .brz-css-t9bEJ {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-t9bEJ {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-t9bEJ {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-t9bEJ {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-t9bEJ {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-t9bEJ {display: flex;position: relative;}}
.brz .brz-css-xluls {margin: -10px 0px -10px -10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xluls {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-xluls {margin: 5px 0px 0px 0px;}}
.brz .brz-css-e3Inn {justify-content: center;padding: 0;gap: 20px 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-e3Inn {justify-content: center;padding: 0;gap: 20px 10px;}}
@media (max-width:767px) {.brz .brz-css-e3Inn {justify-content: center;padding: 0;gap: 20px 10px;}}
.brz .brz-css-ncu1z {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ncu1z {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-ncu1z {justify-content: flex-start;}}
.brz .brz-css-oZz2X.brz-btn {display: flex;font-family: var(--brz-buttonfontfamily,initial);font-weight: var(--brz-buttonfontweight,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);color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),1);border-radius: 0;background-color: rgba(var(--brz-global-color3),1);background-image: none;box-shadow: none;padding: 14px 42px 14px 42px;padding: 14px 42px;flex-flow: row-reverse nowrap;}
.brz .brz-css-oZz2X.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-oZz2X:after {height: unset;}
.brz .brz-css-oZz2X .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-oZz2X .brz-btn--story-container:after {height: unset;}
@media (min-width:991px) {.brz .brz-css-oZz2X.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-oZz2X.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-oZz2X .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (min-width:991px) {.brz .brz-css-oZz2X.brz-btn:hover {background-color: rgba(var(--brz-global-color3),.8);}
.brz .brz-css-oZz2X.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-oZz2X.brz-btn {display: flex;font-family: var(--brz-buttonfontfamily,initial);font-weight: var(--brz-buttontabletfontweight,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);color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),1);border-radius: 0;background-color: rgba(var(--brz-global-color3),1);background-image: none;box-shadow: none;padding: 11px 26px 11px 26px;padding: 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-oZz2X.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-oZz2X:after {height: unset;}
.brz .brz-css-oZz2X .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-oZz2X .brz-btn--story-container:after {height: unset;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oZz2X.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-oZz2X.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-oZz2X .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (max-width:767px) {.brz .brz-css-oZz2X.brz-btn {display: flex;font-family: var(--brz-buttonfontfamily,initial);font-weight: var(--brz-buttonmobilefontweight,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);color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),1);border-radius: 0;background-color: rgba(var(--brz-global-color3),1);background-image: none;box-shadow: none;padding: 11px 26px 11px 26px;padding: 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-oZz2X.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-oZz2X:after {height: unset;}
.brz .brz-css-oZz2X .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-oZz2X .brz-btn--story-container:after {height: unset;}}
@media (max-width:767px) {.brz .brz-css-oZz2X.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-oZz2X.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-oZz2X .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
.brz .brz-css-dPrsi.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 700;font-size: 36px;line-height: 1.3;letter-spacing: -1.5px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;border: 0px solid rgba(187,187,187,0);border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-dPrsi.brz-btn.brz-btn-submit {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-dPrsi .brz-btn--story-container {border: 0;border-radius: 0 !important;}
@media (min-width:991px) {.brz .brz-css-dPrsi.brz-btn:hover {border: 0px solid rgba(0,0,0,0);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dPrsi.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 700;font-size: 24px;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;border: 0px solid rgba(187,187,187,0);border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-dPrsi.brz-btn.brz-btn-submit {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-dPrsi .brz-btn--story-container {border: 0;border-radius: 0 !important;}}
@media (max-width:767px) {.brz .brz-css-dPrsi.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 700;font-size: 20px;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;border: 0px solid rgba(187,187,187,0);border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-dPrsi.brz-btn.brz-btn-submit {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-dPrsi .brz-btn--story-container {border: 0;border-radius: 0 !important;}}
.brz .brz-css-ip0Jc {flex: 1 1 57.6%;max-width: 57.6%;justify-content: center;}
.brz .brz-css-ip0Jc .brz-columns__scroll-effect {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ip0Jc {flex: 1 1 65%;max-width: 65%;justify-content: center;}
.brz .brz-css-ip0Jc .brz-columns__scroll-effect {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-ip0Jc {flex: 1 1 47.3%;max-width: 47.3%;justify-content: center;}
.brz .brz-css-ip0Jc .brz-columns__scroll-effect {justify-content: center;}}
.brz .brz-css-ck8gh {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ck8gh {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-ck8gh {padding: 0;}}
.brz .brz-css-ktBVl {margin: 10px 0px 0px 0px;justify-content: flex-end;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ktBVl {margin: 10px 0px 0px 0px;justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-ktBVl {margin: 0;justify-content: flex-end;}}
@media (min-width:991px) {.brz .brz-css-sMtIb .brz-mm-menu__icon {display: none;font-size: 18px;color: rgba(51,51,51,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sMtIb .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sMtIb .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sMtIb .brz-menu {display: none;}}
@media (max-width:767px) {.brz .brz-css-sMtIb .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sMtIb .brz-menu {display: none;}}
@media (min-width:991px) {.brz .brz-css-wTOeb .brz-mm-menu__icon {display: none;font-size: 25px;color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-wTOeb .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wTOeb .brz-mm-menu__icon {display: none;font-size: 25px;color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-wTOeb .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-wTOeb .brz-mm-menu__icon {display: flex;font-size: 25px;color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-wTOeb .brz-menu {display: none;}}
.brz .brz-css-eVnrW .brz-menu__ul {font-family: var(--brz-buttonfontfamily,initial);color: rgba(0,0,0,1);}
.brz .brz-css-eVnrW .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-eVnrW .brz-menu__item__icon {margin: 0 15px 0 0;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);border-radius: 0px;}
.brz .brz-css-eVnrW .brz-mm-navbar .brz-mm-close {color: rgba(255,255,255,1);background-color: #333;font-size: 16px;margin: 0;padding: 10px 15px 10px 10px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > a {border-radius: 0px;}
.brz .brz-css-eVnrW .brz-mm-menu__item {font-family: var(--brz-buttonfontfamily,initial);color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-eVnrW {background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel:before {background-image: none;background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {background-image: none;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-menu__item--current:not(.brz-mm-menu__item.brz-menu__item--current:active) {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-menu__item--current:not(brz-mm-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__sub-menu {font-family: var(--brz-buttonfontfamily,initial);color: rgba(255,255,255,1);background-color: rgba(51,51,51,1);box-shadow: none;border-radius: 0px;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a {flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__sub-item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(51,51,51,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-eVnrW .brz-menu__item--current .brz-menu__sub-menu {box-shadow: none;}
.brz .brz-css-eVnrW .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}
@media (min-width:991px) {.brz .brz-css-eVnrW .brz-menu__ul {font-size: var(--brz-buttonfontsize,initial);font-weight: var(--brz-buttonfontweight,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-navbar .brz-mm-close {transition-duration: .3s;}
.brz .brz-css-eVnrW .brz-mm-menu__item {font-size: var(--brz-buttonfontsize,initial);font-weight: var(--brz-buttonfontweight,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz nav.brz-mm-menu.brz-css-eVnrW {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item:hover > .brz-mm-listitem__text {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-eVnrW .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-eVnrW .brz-mm-navbar {font-family: var(--brz-buttonfontfamily,initial);font-size: var(--brz-buttonfontsize,initial);font-weight: var(--brz-buttonfontweight,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);border-color: rgba(85,85,85,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-mm-listitem_opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(var(--brz-buttonlineheight,initial) * var(--brz-buttonfontsize,initial) + 10px + 10px);padding-right: 20px;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-listitem {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__sub-menu {font-size: var(--brz-buttonfontsize,initial);font-weight: var(--brz-buttonfontweight,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item--current .brz-menu__sub-menu {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item-dropdown .brz-menu__item {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-eVnrW [data-popper-placement='left-start'] {right: calc(100% + 5px);}
.brz .brz-css-eVnrW [data-popper-placement='right-start'] {left: calc(100% + 5px);}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {left: 0;}
.brz .brz-css-eVnrW .brz-mega-menu__dropdown {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eVnrW .brz-menu__ul {font-family: var(--brz-buttonfontfamily,initial);color: rgba(0,0,0,1);}
.brz .brz-css-eVnrW .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-eVnrW .brz-menu__item__icon {margin: 0 15px 0 0;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);border-radius: 0px;}
.brz .brz-css-eVnrW .brz-mm-navbar .brz-mm-close {color: rgba(255,255,255,1);background-color: #333;font-size: 16px;margin: 0;padding: 10px 15px 10px 10px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > a {border-radius: 0px;}
.brz .brz-css-eVnrW .brz-mm-menu__item {font-family: var(--brz-buttonfontfamily,initial);color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-eVnrW {background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel:before {background-image: none;background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {background-image: none;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-menu__item--current:not(.brz-mm-menu__item.brz-menu__item--current:active) {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-menu__item--current:not(brz-mm-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__sub-menu {font-family: var(--brz-buttonfontfamily,initial);color: rgba(255,255,255,1);background-color: rgba(51,51,51,1);box-shadow: none;border-radius: 0px;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a {flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__sub-item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(51,51,51,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-eVnrW .brz-menu__item--current .brz-menu__sub-menu {box-shadow: none;}
.brz .brz-css-eVnrW .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eVnrW .brz-menu__ul {font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-navbar .brz-mm-close {transition-duration: .3s;}
.brz .brz-css-eVnrW .brz-mm-menu__item {font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz nav.brz-mm-menu.brz-css-eVnrW {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item:hover > .brz-mm-listitem__text {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-eVnrW .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-eVnrW .brz-mm-navbar {font-family: var(--brz-buttonfontfamily,initial);font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);border-color: rgba(85,85,85,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-mm-listitem_opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(var(--brz-buttontabletlineheight,initial) * var(--brz-buttontabletfontsize,initial) + 10px + 10px);padding-right: 20px;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-listitem {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__sub-menu {font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item--current .brz-menu__sub-menu {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item-dropdown .brz-menu__item {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {left: 0;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown .brz-menu__dropdown {position: relative;top: auto;left: auto;transform: translate(0,0);height: 0;overflow: hidden;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-eVnrW.brz-menu__preview .brz-menu__dropdown .brz-menu__item:hover > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-eVnrW .brz-mega-menu__dropdown {display: none;}}
@media (max-width:767px) {.brz .brz-css-eVnrW .brz-menu__ul {font-family: var(--brz-buttonfontfamily,initial);color: rgba(0,0,0,1);}
.brz .brz-css-eVnrW .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-eVnrW .brz-menu__item__icon {margin: 0 15px 0 0;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);border-radius: 0px;}
.brz .brz-css-eVnrW .brz-mm-navbar .brz-mm-close {color: rgba(255,255,255,1);background-color: #333;font-size: 16px;margin: 0;padding: 10px 15px 10px 10px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > a {border-radius: 0px;}
.brz .brz-css-eVnrW .brz-mm-menu__item {font-family: var(--brz-buttonfontfamily,initial);color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-eVnrW {background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel:before {background-image: none;background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,.8);}
.brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {background-image: none;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-menu__item--current:not(.brz-mm-menu__item.brz-menu__item--current:active) {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-menu__item--current:not(brz-mm-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__sub-menu {font-family: var(--brz-buttonfontfamily,initial);color: rgba(255,255,255,1);background-color: rgba(51,51,51,1);box-shadow: none;border-radius: 0px;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a {flex-flow: row nowrap;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__sub-item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(51,51,51,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-eVnrW .brz-menu__item--current .brz-menu__sub-menu {box-shadow: none;}
.brz .brz-css-eVnrW .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:767px) {.brz .brz-css-eVnrW .brz-menu__ul {font-size: var(--brz-buttonmobilefontsize,initial);font-weight: var(--brz-buttonmobilefontweight,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-eVnrW .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-navbar .brz-mm-close {transition-duration: .3s;}
.brz .brz-css-eVnrW .brz-mm-menu__item {font-size: var(--brz-buttonmobilefontsize,initial);font-weight: var(--brz-buttonmobilefontweight,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz nav.brz-mm-menu.brz-css-eVnrW {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item:hover > .brz-mm-listitem__text {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-eVnrW .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-eVnrW .brz-mm-navbar {font-family: var(--brz-buttonfontfamily,initial);font-size: var(--brz-buttonmobilefontsize,initial);font-weight: var(--brz-buttonmobilefontweight,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);border-color: rgba(85,85,85,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-menu__item.brz-mm-listitem_opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(var(--brz-buttonmobilelineheight,initial) * var(--brz-buttonmobilefontsize,initial) + 10px + 10px);padding-right: 20px;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-eVnrW .brz-mm-panels > .brz-mm-panel {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-mm-listitem {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__sub-menu {font-size: var(--brz-buttonmobilefontsize,initial);font-weight: var(--brz-buttonmobilefontweight,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__sub-menu .brz-a:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item--current .brz-menu__sub-menu {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__item-dropdown .brz-menu__item {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-eVnrW .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-eVnrW > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {left: 0;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item-dropdown .brz-menu__dropdown {position: relative;top: auto;left: auto;transform: translate(0,0);height: 0;overflow: hidden;}
.brz .brz-css-eVnrW .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-eVnrW.brz-menu__preview .brz-menu__dropdown .brz-menu__item:hover > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-eVnrW .brz-mega-menu__dropdown {display: block;}}
.brz .brz-css-jejTv .brz-menu__ul {font-family: "Montserrat",sans-serif;color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -22.5px 0px -22.5px;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__item__icon {margin: 0 8px 0 0;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item {font-family: var(--brz-heading6fontfamily,initial);color: rgba(var(--brz-global-color8),1);border-color: rgba(var(--brz-global-color8),.08);}
.brz nav.brz-mm-menu.brz-css-jejTv {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-navbar {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-jejTv .brz-mm-panels > .brz-mm-panel:before {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-jejTv .brz-mm-panels > .brz-mm-panel {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv .brz-mm-listitem {border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-menu__item--current:not(.brz-mm-menu__item.brz-menu__item--current:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-menu__item--current:not(brz-mm-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__sub-menu {font-family: "Montserrat",sans-serif;color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color2),1);border-radius: 10px;}
.brz .brz-css-jejTv .brz-menu__sub-menu .brz-a:hover {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__sub-item__icon {margin: 0 8px 0 0;font-size: 15px;}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-jejTv .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(var(--brz-global-color2),1);color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}
@media (min-width:991px) {.brz .brz-css-jejTv .brz-menu__ul {font-size: 20px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;}
.brz .brz-css-jejTv .brz-menu__item__icon {font-size: 20px;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 22.5px;margin-left: 22.5px;}
.brz .brz-css-jejTv .brz-mm-menu__item {font-size: var(--brz-heading6fontsize,initial);font-weight: var(--brz-heading6fontweight,initial);line-height: var(--brz-heading6lineheight,initial);letter-spacing: var(--brz-heading6letterspacing,initial);font-variation-settings: var(--brz-heading6fontvariation,initial);}
.brz .brz-css-jejTv .brz-mm-menu__item__icon {font-size: 12px;}
.brz .brz-css-jejTv .brz-mm-navbar {font-family: var(--brz-heading6fontfamily,initial);font-size: var(--brz-heading6fontsize,initial);font-weight: var(--brz-heading6fontweight,initial);line-height: var(--brz-heading6lineheight,initial);letter-spacing: var(--brz-heading6letterspacing,initial);border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(var(--brz-heading6lineheight,initial) * var(--brz-heading6fontsize,initial) + 10px + 10px);padding-right: 20px;}
.brz .brz-css-jejTv .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;}}
@media (min-width:991px) {.brz .brz-css-jejTv:hover .brz-menu__ul {color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item > .brz-a:hover {color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a:hover {color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--opened:hover {color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item:hover {color: rgba(var(--brz-global-color3),1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jejTv .brz-menu__ul {font-family: "Montserrat",sans-serif;color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__item__icon {margin: 0 8px 0 0;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item {font-family: var(--brz-buttonfontfamily,initial);color: rgba(var(--brz-global-color8),1);border-color: rgba(var(--brz-global-color8),.08);}
.brz nav.brz-mm-menu.brz-css-jejTv {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-navbar {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-jejTv .brz-mm-panels > .brz-mm-panel:before {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-jejTv .brz-mm-panels > .brz-mm-panel {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv .brz-mm-listitem {border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-menu__item--current:not(.brz-mm-menu__item.brz-menu__item--current:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-menu__item--current:not(brz-mm-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__sub-menu {font-family: "Montserrat",sans-serif;color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color2),1);border-radius: 10px;}
.brz .brz-css-jejTv .brz-menu__sub-menu .brz-a:hover {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__sub-item__icon {margin: 0 8px 0 0;font-size: 15px;}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-jejTv .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(var(--brz-global-color2),1);color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jejTv .brz-menu__ul {font-size: 17px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
.brz .brz-css-jejTv .brz-menu__item__icon {font-size: 17px;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-jejTv .brz-mm-menu__item {font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);}
.brz .brz-css-jejTv .brz-mm-menu__item__icon {font-size: 12px;}
.brz .brz-css-jejTv .brz-mm-navbar {font-family: var(--brz-buttonfontfamily,initial);font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(var(--brz-buttontabletlineheight,initial) * var(--brz-buttontabletfontsize,initial) + 10px + 10px);padding-right: 20px;}
.brz .brz-css-jejTv .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-jejTv .brz-menu__ul {font-family: "Montserrat",sans-serif;color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__item__icon {margin: 0 8px 0 0;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item {font-family: var(--brz-heading6fontfamily,initial);color: rgba(var(--brz-global-color8),1);border-color: rgba(var(--brz-global-color8),.08);}
.brz nav.brz-mm-menu.brz-css-jejTv {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-navbar {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-jejTv .brz-mm-panels > .brz-mm-panel:before {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-jejTv .brz-mm-panels > .brz-mm-panel {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-jejTv.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv .brz-mm-listitem {border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-menu__item--current:not(.brz-mm-menu__item.brz-menu__item--current:active) {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-mm-menu__item.brz-menu__item--current:not(brz-mm-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__sub-menu {font-family: var(--brz-heading6fontfamily,initial);color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color2),1);border-radius: 10px;}
.brz .brz-css-jejTv .brz-menu__sub-menu .brz-a:hover {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__sub-item__icon {margin: 0 8px 0 0;font-size: 15px;}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-jejTv .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(var(--brz-global-color2),1);color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-jejTv .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:767px) {.brz .brz-css-jejTv .brz-menu__ul {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;}
.brz .brz-css-jejTv .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-jejTv .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-jejTv .brz-mm-menu__item {font-size: 18px;font-weight: 700;line-height: 2.5;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;}
.brz .brz-css-jejTv .brz-mm-menu__item__icon {font-size: 18px;}
.brz .brz-css-jejTv .brz-mm-navbar {font-family: var(--brz-heading6fontfamily,initial);font-size: 18px;font-weight: 700;line-height: 2.5;letter-spacing: 0px;border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-jejTv.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(2.5 * 18px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-jejTv .brz-menu__sub-menu {font-size: var(--brz-heading6mobilefontsize,initial);font-weight: var(--brz-heading6mobilefontweight,initial);line-height: var(--brz-heading6mobilelineheight,initial);letter-spacing: var(--brz-heading6mobileletterspacing,initial);font-variation-settings: var(--brz-heading6mobilefontvariation,initial);}}
.brz .brz-css-lM42B {padding: 75px 0px 75px 0px;min-height: auto;display: flex;margin: 0;z-index: auto;}
.brz .brz-css-lM42B > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-lM42B > .brz-bg:after {box-shadow: none;}
.brz .brz-css-lM42B > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-lM42B > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lM42B > .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-lM42B > .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-lM42B > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-lM42B > .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-lM42B > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-lM42B .brz-container {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lM42B {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;z-index: auto;}
.brz .brz-css-lM42B > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-lM42B > .brz-bg:after {box-shadow: none;}
.brz .brz-css-lM42B > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-lM42B > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lM42B > .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-lM42B > .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-lM42B > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-lM42B > .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-lM42B > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-lM42B .brz-container {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-lM42B {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;z-index: auto;}
.brz .brz-css-lM42B > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-lM42B > .brz-bg:after {box-shadow: none;}
.brz .brz-css-lM42B > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-lM42B > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lM42B > .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-lM42B > .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-lM42B > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-lM42B > .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-lM42B > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-lM42B .brz-container {justify-content: center;}}
.brz .brz-css-ou63M {padding: 50px 0px 50px 0px;}
.brz .brz-css-ou63M > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ou63M {padding: 40px 30px 40px 30px;}
.brz .brz-css-ou63M > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}}
@media (max-width:767px) {.brz .brz-css-ou63M {padding: 35px;}
.brz .brz-css-ou63M > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}}
.brz .brz-css-ofXCz {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-ofXCz {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ofXCz {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ofXCz {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-ofXCz {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-ofXCz {max-width: 100%;}}
@media (min-width:991px) {.brz .brz-css-olqso {max-width: calc(.85 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-olqso {max-width: 85%;}}
@media (max-width:767px) {.brz .brz-css-olqso {max-width: 85%;}}
.brz .brz-css-tnJbE {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-tnJbE > .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-tnJbE > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-tnJbE > .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-tnJbE > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-tnJbE > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-tnJbE {min-height: auto;display: flex;}
.brz .brz-css-tnJbE > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .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-tnJbE {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-tnJbE > .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-tnJbE > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-tnJbE > .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-tnJbE > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-tnJbE > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tnJbE {min-height: auto;display: flex;}
.brz .brz-css-tnJbE > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .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-tnJbE {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-tnJbE > .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-tnJbE > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-tnJbE > .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-tnJbE > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-tnJbE > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-tnJbE {min-height: auto;display: flex;}
.brz .brz-css-tnJbE > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tnJbE > .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-oRcxt {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oRcxt {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-oRcxt {padding: 0;max-width: 100%;}}
.brz .brz-css-b4ITU {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-b4ITU .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-b4ITU > .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-b4ITU > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-b4ITU > .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-b4ITU > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-video {filter: none;display: none;}
@media (min-width:991px) {.brz .brz-css-b4ITU > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-b4ITU > .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-b4ITU {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-b4ITU .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-b4ITU > .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-b4ITU > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-b4ITU > .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-b4ITU > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-video {filter: none;display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-b4ITU > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-b4ITU > .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-b4ITU {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-b4ITU .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-b4ITU > .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-b4ITU > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-b4ITU > .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-b4ITU > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-video {filter: none;display: none;}}
@media (max-width:767px) {.brz .brz-css-b4ITU > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-b4ITU > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-or8jw {flex: 1 1 40.3%;max-width: 40.3%;justify-content: flex-end;}
.brz .brz-css-or8jw .brz-columns__scroll-effect {justify-content: flex-end;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-or8jw {flex: 1 1 100%;max-width: 100%;justify-content: flex-end;}
.brz .brz-css-or8jw .brz-columns__scroll-effect {justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-or8jw {flex: 1 1 100%;max-width: 100%;justify-content: flex-end;}
.brz .brz-css-or8jw .brz-columns__scroll-effect {justify-content: flex-end;}}
.brz .brz-css-fjfTm {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;}
@media (min-width:991px) {.brz .brz-css-fjfTm {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-fjfTm {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-fjfTm {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-fjfTm {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;min-height: 100%;}}
@media (max-width:767px) {.brz .brz-css-fjfTm {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-pwQD0 {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pwQD0 {padding: 5px 15px 35px 15px;}}
@media (max-width:767px) {.brz .brz-css-pwQD0 {padding: 0px 0px 15px 0px;}}
.brz .brz-css-pVIvB {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-pVIvB {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pVIvB {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pVIvB {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-pVIvB {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-pVIvB {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-wL7an {width: 100%;mix-blend-mode: normal;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wL7an {width: 100%;mix-blend-mode: normal;}}
@media (max-width:767px) {.brz .brz-css-wL7an {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-kFtaM {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: 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-kFtaM {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 38px;line-height: 1.2;font-weight: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-kFtaM {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: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-cUwUe {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cUwUe {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-cUwUe {margin: 0;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wzUbs {display: none;}}
.brz .brz-css-eUDv_ {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eUDv_ {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-eUDv_ {height: 50px;}}
.brz .brz-css-hdVxM {height: 40px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hdVxM {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-hdVxM {height: 10px;}}
.brz .brz-css-ppNmI {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-ppNmI {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ppNmI {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ppNmI {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-ppNmI {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-ppNmI {display: flex;position: relative;}}
.brz .brz-css-hatly {justify-content: center;padding: 0;gap: 20px 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hatly {justify-content: center;padding: 0;gap: 20px 10px;}}
@media (max-width:767px) {.brz .brz-css-hatly {justify-content: center;padding: 0;gap: 20px 10px;}}
.brz .brz-css-zOZhR {justify-content: flex-start;gap: 20px 14px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zOZhR {justify-content: flex-start;gap: 20px 14px;}}
@media (max-width:767px) {.brz .brz-css-zOZhR {justify-content: flex-start;gap: 20px 14px;}}
.brz .brz-css-wdm7z {color: rgba(var(--brz-global-color3),1);border: 0px solid rgba(35,157,219,0);box-shadow: none;font-size: 48px;background-color: rgba(189,225,244,0);background-image: none;padding: 0px;stroke-width: 1;border-radius: 0;}
@media (min-width:991px) {.brz .brz-css-wdm7z {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
@media (min-width:991px) {.brz .brz-css-wdm7z:hover {color: rgba(var(--brz-global-color3),.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wdm7z {color: rgba(var(--brz-global-color3),1);border: 0px solid rgba(35,157,219,0);box-shadow: none;font-size: 48px;background-color: rgba(189,225,244,0);background-image: none;padding: 0px;stroke-width: 1;border-radius: 0;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wdm7z {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
@media (max-width:767px) {.brz .brz-css-wdm7z {color: rgba(var(--brz-global-color3),1);border: 0px solid rgba(35,157,219,0);box-shadow: none;font-size: 48px;background-color: rgba(189,225,244,0);background-image: none;padding: 0px;stroke-width: 1;border-radius: 0;}}
@media (max-width:767px) {.brz .brz-css-wdm7z {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
.brz .brz-css-nFuJ2 {color: rgba(var(--brz-global-color8),1);font-size: 24px;}
@media (min-width:991px) {.brz .brz-css-nFuJ2:hover {color: rgba(var(--brz-global-color8),.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nFuJ2 {color: rgba(var(--brz-global-color8),1);font-size: 24px;}}
@media (max-width:767px) {.brz .brz-css-nFuJ2 {color: rgba(var(--brz-global-color8),1);font-size: 24px;}}
.brz .brz-css-pNBAE {color: rgba(var(--brz-global-color8),1);font-size: 24px;}
@media (min-width:991px) {.brz .brz-css-pNBAE:hover {color: rgba(var(--brz-global-color8),.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pNBAE {color: rgba(var(--brz-global-color8),1);font-size: 24px;}}
@media (max-width:767px) {.brz .brz-css-pNBAE {color: rgba(var(--brz-global-color8),1);font-size: 24px;}}
.brz .brz-css-oj4zA {color: rgba(var(--brz-global-color8),1);font-size: 24px;}
@media (min-width:991px) {.brz .brz-css-oj4zA:hover {color: rgba(var(--brz-global-color8),.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oj4zA {color: rgba(var(--brz-global-color8),1);font-size: 24px;}}
@media (max-width:767px) {.brz .brz-css-oj4zA {color: rgba(var(--brz-global-color8),1);font-size: 24px;}}
.brz .brz-css-pLiyV {margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pLiyV {margin: 0px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-pLiyV {margin: 0px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-pLiyV {display: none;}}
.brz .brz-css-rbJ77 {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rbJ77 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-rbJ77 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-n07Nd {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-n07Nd {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-n07Nd {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-hFCoo {margin: 0px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-hFCoo {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hFCoo {margin: 0px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hFCoo {display: none;}}
@media (max-width:767px) {.brz .brz-css-hFCoo {margin: 0px 0px 10px 0px;}}
.brz .brz-css-kjr8u {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kjr8u {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-kjr8u {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-fZ0A8 {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fZ0A8 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-fZ0A8 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-isdUi {flex: 1 1 15.7%;max-width: 15.7%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-isdUi {flex: 1 1 28.1%;max-width: 28.1%;}}
@media (max-width:767px) {.brz .brz-css-isdUi {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-uuQsJ {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uuQsJ {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-uuQsJ {margin: 0;}}
.brz .brz-css-rBExa {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;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-rBExa {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.7;font-weight: 700;letter-spacing: 2px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-rBExa {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.7;font-weight: 700;letter-spacing: 2px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-tQMbT {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tQMbT {margin-top: 0px !important;margin-bottom: 0px !important;text-align: justify !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-tQMbT {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-rfqCB {flex: 1 1 27.4%;max-width: 27.4%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rfqCB {flex: 1 1 47%;max-width: 47%;}}
@media (max-width:767px) {.brz .brz-css-rfqCB {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-eYNxQ {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eYNxQ {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-eYNxQ {margin: 0;}}
.brz .brz-css-eflXN {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;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-eflXN {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.7;font-weight: 700;letter-spacing: 2px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-eflXN {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.7;font-weight: 700;letter-spacing: 2px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-x_zrV {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-x_zrV {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-x_zrV {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-tUaW5 {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tUaW5 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-tUaW5 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-dhFlu {flex: 1 1 16.6%;max-width: 16.6%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dhFlu {flex: 1 1 24.9%;max-width: 24.9%;}}
@media (max-width:767px) {.brz .brz-css-dhFlu {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-oVe0C {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oVe0C {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-oVe0C {margin: 0;}}
.brz .brz-css-v8feL {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;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-v8feL {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.7;font-weight: 700;letter-spacing: 2px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-v8feL {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 13px;line-height: 1.7;font-weight: 700;letter-spacing: 2px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-oBLCD {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oBLCD {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-oBLCD {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-io3Yc {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-io3Yc {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-io3Yc {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-zkmkR {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: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zkmkR {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-zkmkR {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 15px;line-height: 1.6;font-weight: 400;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: "Montserrat",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-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-subtitlefontfamily: "Montserrat",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-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-abovetitlefontfamily: "Montserrat",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-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-heading1fontfamily: "Montserrat",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-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-heading2fontfamily: "Montserrat",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-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-heading3fontfamily: "Montserrat",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-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-heading4fontfamily: "Montserrat",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-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-heading5fontfamily: "Montserrat",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-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-heading6fontfamily: "Montserrat",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-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-buttonfontfamily: "Montserrat",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-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%;}</style><style class="brz-style brz-project__style-fonts">.brz-ed--desktop .brz-tp__dc-block-st1 p {font-family: "Montserrat",sans-serif;font-size: 16px;font-weight: 400;letter-spacing: 0px;line-height: 1.9;}
.brz-ed--tablet .brz-tp__dc-block-st1 p {font-family: "Montserrat",sans-serif;font-size: 15px;font-weight: 400;letter-spacing: 0px;line-height: 1.6;}
.brz-ed--mobile .brz-tp__dc-block-st1 p {font-family: "Montserrat",sans-serif;font-size: 15px;font-weight: 400;letter-spacing: 0px;line-height: 1.6;}
.brz-ed--desktop .brz-tp__dc-block-st1 h1 {font-family: "Montserrat",sans-serif;font-size: 46px;font-weight: 700;letter-spacing: -1.5px;line-height: 1.3;}
.brz-ed--tablet .brz-tp__dc-block-st1 h1 {font-family: "Montserrat",sans-serif;font-size: 38px;font-weight: 700;letter-spacing: -1px;line-height: 1.2;}
.brz-ed--mobile .brz-tp__dc-block-st1 h1 {font-family: "Montserrat",sans-serif;font-size: 36px;font-weight: 700;letter-spacing: -1px;line-height: 1.3;}
.brz-ed--desktop .brz-tp__dc-block-st1 h2 {font-family: "Montserrat",sans-serif;font-size: 36px;font-weight: 700;letter-spacing: -1.5px;line-height: 1.3;}
.brz-ed--tablet .brz-tp__dc-block-st1 h2 {font-family: "Montserrat",sans-serif;font-size: 30px;font-weight: 700;letter-spacing: -1px;line-height: 1.2;}