-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1326 lines (1326 loc) · 223 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8" /><meta property="og:site_name" content="hackerman14 Bot" /><meta property="og:title" content="Home" /><meta name="twitter:title" content="Home" /><meta property="og:description" content="The main page of the hackerman14 DIscord Bot." /><meta name="twitter:description" content="The main page of the hackerman14 DIscord Bot." /><meta property="og:type" content="website" /><meta property="og:image" content="assets/img/671a1892465a5f11251a8129c8312c8c.jpg" /><meta property="twitter:image" content="assets/img/671a1892465a5f11251a8129c8312c8c.jpg"><meta property="og:url" content="" /><meta content="summary_large_image" name="twitter:card" /><title>hackerman14 Bot</title><meta name="description" content="The main page of the hackerman14 DIscord Bot." /><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="" /><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/37557ff66b95d2ac0f506079cad89cc9.css" class="brz-link brz-link-preview-lib" data-brz-group="group-3" 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-f0385 {z-index: auto;margin: 0;}
.brz .brz-css-f0385.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-f0385 .brz-container {justify-content: center;}
.brz .brz-css-f0385 > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-f0385 > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-f0385 {display: block;}}
@media (min-width:991px) {.brz .brz-css-f0385 > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-f0385 {z-index: auto;margin: 0;}
.brz .brz-css-f0385.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-f0385 .brz-container {justify-content: center;}
.brz .brz-css-f0385 > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-f0385 > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-f0385 {display: block;}}
@media (max-width:767px) {.brz .brz-css-f0385 {z-index: auto;margin: 0;}
.brz .brz-css-f0385.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-f0385 .brz-container {justify-content: center;}
.brz .brz-css-f0385 > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-f0385 > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-f0385 {display: block;}}
.brz .brz-css-uLOoW {margin: -100px 0px 0px 0px;}
.brz .brz-css-uLOoW.brz-section .brz-section__content {min-height: auto;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uLOoW {margin: 0;}
.brz .brz-css-uLOoW.brz-section .brz-section__content {min-height: 100vh;}}
@media (max-width:767px) {.brz .brz-css-uLOoW {margin: 0;}
.brz .brz-css-uLOoW.brz-section .brz-section__content {min-height: 100vh;}}
.brz .brz-css-sSuLL {padding: 75px 0px 75px 0px;}
.brz .brz-css-sSuLL > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-sSuLL > .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-sSuLL > .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-sSuLL > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-image {background-attachment: scroll;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .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-sSuLL {padding: 50px 15px 50px 15px;}
.brz .brz-css-sSuLL > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-sSuLL > .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-sSuLL > .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-sSuLL > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .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-sSuLL {padding: 25px 15px 25px 15px;}
.brz .brz-css-sSuLL > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-sSuLL > .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-sSuLL > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-sSuLL > .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-sSuLL > .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-sSuLL > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sSuLL > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-c7For {padding: 280px 100px 360px 100px;}
.brz .brz-css-c7For > .brz-bg > .brz-bg-image {background-image: url("assets/img/a8990ee7104705a4f834b0f9f33ba727.jpg");background-position: 46% 0%;}
.brz .brz-css-c7For > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/a8990ee7104705a4f834b0f9f33ba727.jpg");}
.brz .brz-css-c7For > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.4);}
@media (min-width:991px) {.brz .brz-css-c7For:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.6);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-c7For {padding: 180px 30px 220px 50px;}
.brz .brz-css-c7For > .brz-bg > .brz-bg-image {background-image: url("assets/img/a8990ee7104705a4f834b0f9f33ba727.jpg");background-position: 46% 0%;}
.brz .brz-css-c7For > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/a8990ee7104705a4f834b0f9f33ba727.jpg");}
.brz .brz-css-c7For > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.6);}}
@media (max-width:767px) {.brz .brz-css-c7For {padding: 60px 15px 70px 15px;}
.brz .brz-css-c7For > .brz-bg > .brz-bg-image {background-image: url("assets/img/a8990ee7104705a4f834b0f9f33ba727.jpg");background-position: 41% 69%;}
.brz .brz-css-c7For > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/a8990ee7104705a4f834b0f9f33ba727.jpg");}
.brz .brz-css-c7For > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.6);}}
.brz .brz-css-esJdL {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-esJdL {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-esJdL {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-esJdL {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-esJdL {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-esJdL {max-width: 100%;}}
.brz .brz-css-f38NL {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-f38NL > .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-f38NL > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-f38NL > .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-f38NL > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-f38NL > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-f38NL {min-height: auto;display: flex;}
.brz .brz-css-f38NL > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .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-f38NL {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-f38NL > .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-f38NL > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-f38NL > .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-f38NL > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-f38NL > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-f38NL {min-height: auto;display: flex;}
.brz .brz-css-f38NL > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .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-f38NL {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-f38NL > .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-f38NL > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-f38NL > .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-f38NL > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-video {filter: none;display: none;}
.brz .brz-css-f38NL > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-f38NL {min-height: auto;display: flex;}
.brz .brz-css-f38NL > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-f38NL > .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-ji6G1 {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ji6G1 {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-ji6G1 {padding: 0;max-width: 100%;}}
.brz .brz-css-hDoo9 {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hDoo9 {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-hDoo9 {padding: 0;}}
.brz .brz-css-uHsK7 {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-uHsK7 .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-uHsK7 > .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-uHsK7 > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-uHsK7 > .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-uHsK7 > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-video {filter: none;display: none;}
@media (min-width:991px) {.brz .brz-css-uHsK7 > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-uHsK7 > .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-uHsK7 {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-uHsK7 .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-uHsK7 > .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-uHsK7 > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-uHsK7 > .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-uHsK7 > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-video {filter: none;display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uHsK7 > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-uHsK7 > .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-uHsK7 {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-uHsK7 .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-uHsK7 > .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-uHsK7 > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-uHsK7 > .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-uHsK7 > .brz-bg > .brz-bg-map {filter: none;display: none;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-video {filter: none;display: none;}}
@media (max-width:767px) {.brz .brz-css-uHsK7 > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-uHsK7 > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-tELAP {flex: 1 1 100%;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tELAP {flex: 1 1 100%;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-tELAP {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-yXCNl {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;}
@media (min-width:991px) {.brz .brz-css-yXCNl {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-yXCNl {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-yXCNl {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-yXCNl {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;min-height: 100%;}}
@media (max-width:767px) {.brz .brz-css-yXCNl {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-pM0Cv {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pM0Cv {padding: 5px 20px 5px 20px;}}
@media (max-width:767px) {.brz .brz-css-pM0Cv {padding: 0px 20px 0px 20px;}}
.brz .brz-css-zxoZ0 {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-zxoZ0 {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zxoZ0 {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zxoZ0 {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-zxoZ0 {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-zxoZ0 {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-fNqSx {margin: 10px 0px -10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fNqSx {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-fNqSx {margin: 10px 0px 10px 0px;}}
.brz .brz-css-zrSXU {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zrSXU {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-zrSXU {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-uWte1 {animation-name: fadeIn;animation-duration: 1000ms;animation-delay: 400ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uWte1 {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-uWte1 {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-ntuES {width: 100%;mix-blend-mode: normal;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ntuES {width: 100%;mix-blend-mode: normal;}}
@media (max-width:767px) {.brz .brz-css-ntuES {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-qTTzg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 75px;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-qTTzg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 50px;line-height: 1.3;font-weight: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-qTTzg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 42px;line-height: 1.3;font-weight: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-qhKhE {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qhKhE {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-qhKhE {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-fwKs3 {animation-name: fadeIn;animation-duration: 1000ms;animation-delay: 800ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fwKs3 {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-fwKs3 {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-c1R3I {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 38px;line-height: 1.9;font-weight: 500;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-c1R3I {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 24px;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-c1R3I {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-d506g {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d506g {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-d506g {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-lkwY9 {animation-name: fadeIn;animation-duration: 1000ms;animation-delay: 1200ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lkwY9 {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-lkwY9 {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-zFkpo {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 23px;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-zFkpo {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;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-zFkpo {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-uo7G_ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 23px;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-uo7G_ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;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-uo7G_ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-d1LNp {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d1LNp {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-d1LNp {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-ox9iz {animation-name: fadeIn;animation-duration: 1000ms;animation-delay: 1600ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ox9iz {animation-name: fadeIn;animation-duration: 1000ms;animation-delay: 1600ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-ox9iz {animation-name: fadeIn;animation-duration: 1000ms;animation-delay: 1600ms;animation-iteration-count: unset;}}
.brz .brz-css-yRdil {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-yRdil {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yRdil {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yRdil {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-yRdil {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-yRdil {display: flex;position: relative;}}
.brz .brz-css-ibPZa {justify-content: center;padding: 0;gap: 20px 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ibPZa {justify-content: center;padding: 0;gap: 20px 10px;}}
@media (max-width:767px) {.brz .brz-css-ibPZa {justify-content: center;padding: 0;gap: 20px 10px;}}
.brz .brz-css-cbW3C {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cbW3C {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-cbW3C {justify-content: flex-start;}}
.brz .brz-css-x6B0B {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-x6B0B {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}}
@media (max-width:767px) {.brz .brz-css-x6B0B {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}}
.brz .brz-css-rHjmO.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-rHjmO.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-rHjmO:after {height: unset;}
.brz .brz-css-rHjmO .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-rHjmO .brz-btn--story-container:after {height: unset;}
@media (min-width:991px) {.brz .brz-css-rHjmO.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-rHjmO.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-rHjmO .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (min-width:991px) {.brz .brz-css-rHjmO.brz-btn:hover {background-color: rgba(var(--brz-global-color3),.8);}
.brz .brz-css-rHjmO.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-rHjmO.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-rHjmO.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-rHjmO:after {height: unset;}
.brz .brz-css-rHjmO .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-rHjmO .brz-btn--story-container:after {height: unset;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rHjmO.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-rHjmO.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-rHjmO .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (max-width:767px) {.brz .brz-css-rHjmO.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-rHjmO.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-rHjmO:after {height: unset;}
.brz .brz-css-rHjmO .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-rHjmO .brz-btn--story-container:after {height: unset;}}
@media (max-width:767px) {.brz .brz-css-rHjmO.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-rHjmO.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-rHjmO .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
.brz .brz-css-bnFFy.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 700;font-size: 15px;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;border: 0px solid rgba(35,157,219,0);border-radius: 100px;padding: 14px 42px 14px 42px;padding: 14px 42px;}
.brz .brz-css-bnFFy .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);border-radius: 100px;}
@media (min-width:991px) {.brz .brz-css-bnFFy.brz-btn:hover {border: 0px solid rgba(28,28,28,.8);background-color: rgba(var(--brz-global-color1),1);}
.brz .brz-css-bnFFy.brz-btn.brz-btn-submit:hover {background-color: rgba(var(--brz-global-color1),1);}
.brz .brz-css-bnFFy:hover .brz-btn--story-container {border: 0px solid rgba(28,28,28,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bnFFy.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 700;font-size: 15px;line-height: 1.8;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;border: 0px solid rgba(35,157,219,0);border-radius: 100px;padding: 14px 42px 14px 42px;padding: 14px 42px;}
.brz .brz-css-bnFFy .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);border-radius: 100px;}}
@media (max-width:767px) {.brz .brz-css-bnFFy.brz-btn {font-family: "Montserrat",sans-serif;font-weight: 700;font-size: 14px;line-height: 1.8;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;border: 0px solid rgba(35,157,219,0);border-radius: 100px;padding: 14px 42px 14px 42px;padding: 14px 42px;}
.brz .brz-css-bnFFy .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);border-radius: 100px;}}
.brz .brz-css-tIK_S {padding: 80px 100px 90px 100px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tIK_S {padding: 60px 15px 60px 15px;}}
@media (max-width:767px) {.brz .brz-css-tIK_S {padding: 35px;}}
@media (min-width:991px) {.brz .brz-css-o9S10 {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-o9S10 {max-width: 80%;}}
@media (max-width:767px) {.brz .brz-css-o9S10 {max-width: 100%;}}
.brz .brz-css-zwPHC {flex: 1 1 33.3%;max-width: 33.3%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zwPHC {flex: 1 1 33.3%;max-width: 33.3%;}}
@media (max-width:767px) {.brz .brz-css-zwPHC {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-sI0Sq {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sI0Sq {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-sI0Sq {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-pw8Aj {animation-name: fadeInLeft;animation-duration: 1000ms;animation-delay: 500ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pw8Aj {animation-name: fadeInLeft;animation-duration: 1000ms;animation-delay: 500ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-pw8Aj {animation-name: fadeInLeft;animation-duration: 1000ms;animation-delay: 500ms;animation-iteration-count: unset;}}
.brz .brz-css-cH87C {padding: 5px 55px 5px 55px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cH87C {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-cH87C {padding: 0;}}
.brz .brz-css-j4aSk {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-j4aSk {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-j4aSk {justify-content: flex-start;}}
.brz .brz-css-wYaze {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-wYaze {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
@media (min-width:991px) {.brz .brz-css-wYaze:hover {color: rgba(var(--brz-global-color3),.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wYaze {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-wYaze {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
@media (max-width:767px) {.brz .brz-css-wYaze {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-wYaze {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
.brz .brz-css-vtkmV {font-size: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vtkmV {font-size: 50px;}}
@media (max-width:767px) {.brz .brz-css-vtkmV {font-size: 50px;}}
.brz .brz-css-bpmsH {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bpmsH {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-bpmsH {margin: 0;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pncoM {display: none;}}
@media (max-width:767px) {.brz .brz-css-pncoM {display: none;}}
.brz .brz-css-hPXdP {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hPXdP {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-hPXdP {height: 50px;}}
.brz .brz-css-rJ7bu {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rJ7bu {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-rJ7bu {height: 10px;}}
.brz .brz-css-mryva {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 28px;line-height: 1.4;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-mryva {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 26px;line-height: 1.3;font-weight: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-mryva {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.3;font-weight: 700;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-fGFZj {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-fGFZj {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;}}
@media (max-width:767px) {.brz .brz-css-fGFZj {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-dC_c8 {flex: 1 1 33.3%;max-width: 33.3%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dC_c8 {flex: 1 1 33.3%;max-width: 33.3%;}}
@media (max-width:767px) {.brz .brz-css-dC_c8 {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-lx_zA {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lx_zA {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-lx_zA {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-oRgNC {animation-name: fadeInUp;animation-duration: 1000.00002ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oRgNC {animation-name: fadeInUp;animation-duration: 1000.00002ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-oRgNC {animation-name: fadeInUp;animation-duration: 1000.00002ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-n_Yb3 {padding: 5px 55px 5px 55px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-n_Yb3 {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-n_Yb3 {padding: 0;}}
.brz .brz-css-qNDsi {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qNDsi {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-qNDsi {justify-content: flex-start;}}
.brz .brz-css-z8H5k {font-size: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-z8H5k {font-size: 50px;}}
@media (max-width:767px) {.brz .brz-css-z8H5k {font-size: 50px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dAsRL {display: none;}}
@media (max-width:767px) {.brz .brz-css-dAsRL {display: none;}}
.brz .brz-css-rN2xI {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rN2xI {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-rN2xI {height: 10px;}}
.brz .brz-css-usj0M {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 28px;line-height: 1.4;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-usj0M {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 26px;line-height: 1.3;font-weight: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-usj0M {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.3;font-weight: 700;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-rnd6T {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-rnd6T {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;}}
@media (max-width:767px) {.brz .brz-css-rnd6T {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-e9b8e {flex: 1 1 33.4%;max-width: 33.4%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-e9b8e {flex: 1 1 33.4%;max-width: 33.4%;}}
@media (max-width:767px) {.brz .brz-css-e9b8e {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-hFQvE {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hFQvE {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-hFQvE {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-o2qLg {animation-name: fadeInRight;animation-duration: 1000ms;animation-delay: 1500ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-o2qLg {animation-name: fadeInRight;animation-duration: 1000ms;animation-delay: 1500ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-o2qLg {animation-name: fadeInRight;animation-duration: 1000ms;animation-delay: 1500ms;animation-iteration-count: unset;}}
.brz .brz-css-sHJpz {padding: 5px 55px 5px 55px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sHJpz {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-sHJpz {padding: 0;}}
.brz .brz-css-lxxRA {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lxxRA {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-lxxRA {justify-content: flex-start;}}
.brz .brz-css-rcPjV {font-size: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rcPjV {font-size: 50px;}}
@media (max-width:767px) {.brz .brz-css-rcPjV {font-size: 50px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mAoMa {display: none;}}
@media (max-width:767px) {.brz .brz-css-mAoMa {display: none;}}
.brz .brz-css-rw9cp {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rw9cp {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-rw9cp {height: 10px;}}
.brz .brz-css-xSMFP {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 28px;line-height: 1.4;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-xSMFP {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 26px;line-height: 1.3;font-weight: 700;letter-spacing: -1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
@media (max-width:767px) {.brz .brz-css-xSMFP {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 22px;line-height: 1.3;font-weight: 700;letter-spacing: -.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}}
.brz .brz-css-bQuYX {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-bQuYX {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;}}
@media (max-width:767px) {.brz .brz-css-bQuYX {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-f17II {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-f17II {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-f17II {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-dgXBa {animation-name: slideInUp;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dgXBa {animation-name: slideInUp;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-dgXBa {animation-name: slideInUp;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-j5AZx {padding: 0px 100px 0px 100px;}
.brz .brz-css-j5AZx > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color3),1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-j5AZx {padding: 0;}
.brz .brz-css-j5AZx > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color3),1);}}
@media (max-width:767px) {.brz .brz-css-j5AZx {padding: 0;}
.brz .brz-css-j5AZx > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color3),1);}}
.brz .brz-css-nWsWN {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nWsWN {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-nWsWN {margin: 0;}}
.brz .brz-css-hZ7kQ {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hZ7kQ {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-hZ7kQ {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-vInVq {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vInVq {animation-name: slideInUp;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
@media (max-width:767px) {.brz .brz-css-vInVq {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;animation-iteration-count: unset;}}
.brz .brz-css-kqJjr {width: 100%;border: 0px solid rgba(0,0,0,1);background-color: rgba(26,134,242,1);box-shadow: none;border-radius: 0px;padding: 15px;}
.brz .brz-css-kqJjr .brz-ed-box__resizer {padding: 15px;}
.brz .brz-css-kqJjr .brz-alert-title {font-family: "Lato",sans-serif;font-size: 20px;line-height: 1.3;font-weight: 700;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;display: block;text-shadow: 2px 2px 4px rgba(255,0,0,0);text-align: left;}
.brz .brz-css-kqJjr .brz-alert-description {font-family: "Lato",sans-serif;font-size: 13px;line-height: 1.3;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;display: block;display: block;text-shadow: 2px 2px 4px rgba(255,0,0,0);text-align: left;padding-top: 0px;}
.brz .brz-css-kqJjr .brz-alert-close {display: block;font-size: 16px;top: 20px;right: 20px;border-radius: 0px;color: rgba(0,0,0,1);background-color: rgba(0,0,0,0);box-shadow: none;}
.brz .brz-css-kqJjr .brz-alert-close-icon {padding: 0px;}
@media (min-width:991px) {.brz .brz-css-kqJjr {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-title {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-description {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-close {transition-duration: .5s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kqJjr {width: 100%;border: 0px solid rgba(0,0,0,1);background-color: rgba(26,134,242,1);box-shadow: none;border-radius: 0px;padding: 15px;}
.brz .brz-css-kqJjr .brz-ed-box__resizer {padding: 15px;}
.brz .brz-css-kqJjr .brz-alert-title {font-family: "Lato",sans-serif;font-size: 20px;line-height: 1.3;font-weight: 700;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;display: block;text-shadow: 2px 2px 4px rgba(255,0,0,0);text-align: left;}
.brz .brz-css-kqJjr .brz-alert-description {font-family: "Lato",sans-serif;font-size: 13px;line-height: 1.3;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;display: block;display: block;text-shadow: 2px 2px 4px rgba(255,0,0,0);text-align: left;padding-top: 0px;}
.brz .brz-css-kqJjr .brz-alert-close {display: block;font-size: 16px;top: 20px;right: 20px;border-radius: 0px;color: rgba(0,0,0,1);background-color: rgba(0,0,0,0);box-shadow: none;}
.brz .brz-css-kqJjr .brz-alert-close-icon {padding: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kqJjr {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-title {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-description {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-close {transition-duration: .5s;}}
@media (max-width:767px) {.brz .brz-css-kqJjr {width: 100%;border: 0px solid rgba(0,0,0,1);background-color: rgba(26,134,242,1);box-shadow: none;border-radius: 0px;padding: 15px;}
.brz .brz-css-kqJjr .brz-ed-box__resizer {padding: 15px;}
.brz .brz-css-kqJjr .brz-alert-title {font-family: "Lato",sans-serif;font-size: 20px;line-height: 1.3;font-weight: 700;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;display: block;text-shadow: 2px 2px 4px rgba(255,0,0,0);text-align: left;}
.brz .brz-css-kqJjr .brz-alert-description {font-family: "Lato",sans-serif;font-size: 13px;line-height: 1.3;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;display: block;display: block;text-shadow: 2px 2px 4px rgba(255,0,0,0);text-align: left;padding-top: 0px;}
.brz .brz-css-kqJjr .brz-alert-close {display: block;font-size: 16px;top: 20px;right: 20px;border-radius: 0px;color: rgba(0,0,0,1);background-color: rgba(0,0,0,0);box-shadow: none;}
.brz .brz-css-kqJjr .brz-alert-close-icon {padding: 0px;}}
@media (max-width:767px) {.brz .brz-css-kqJjr {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-title {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-description {transition-duration: .5s;}
.brz .brz-css-kqJjr .brz-alert-close {transition-duration: .5s;}}
.brz .brz-css-k3iK8 {background-color: rgba(var(--brz-global-color3),1);padding: 15px;}
.brz .brz-css-k3iK8 .brz-ed-box__resizer {padding: 15px;}
.brz .brz-css-k3iK8 .brz-alert-title {font-family: "Montserrat",sans-serif;}
.brz .brz-css-k3iK8 .brz-alert-description {font-family: "Montserrat",sans-serif;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-k3iK8 {background-color: rgba(var(--brz-global-color3),1);padding: 30px 25% 30px 10%;}
.brz .brz-css-k3iK8 .brz-ed-box__resizer {padding: 30px 25% 30px 10%;}
.brz .brz-css-k3iK8 .brz-alert-title {font-family: "Montserrat",sans-serif;}
.brz .brz-css-k3iK8 .brz-alert-description {font-family: "Montserrat",sans-serif;}}
@media (max-width:767px) {.brz .brz-css-k3iK8 {background-color: rgba(var(--brz-global-color3),1);padding: 30px 25% 30px 10%;}
.brz .brz-css-k3iK8 .brz-ed-box__resizer {padding: 30px 25% 30px 10%;}
.brz .brz-css-k3iK8 .brz-alert-title {font-family: "Montserrat",sans-serif;}
.brz .brz-css-k3iK8 .brz-alert-description {font-family: "Montserrat",sans-serif;}}
@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;}