-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaq.html
More file actions
1107 lines (1100 loc) · 207 KB
/
faq.html
File metadata and controls
1107 lines (1100 loc) · 207 KB
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:type" content="article" /><meta property="og:url" content="/faq" /><meta content="summary_large_image" name="twitter:card" />
<meta property="og:title" content="FAQ" />
<meta name="twitter:title" content="FAQ" />
<meta property="og:description" content="Here's some common questions you might be asking for with the answer." />
<meta name="twitter:description" content="Here's some common questions you might be asking for with the answer." />
<meta property="og:image" content="assets/img/671a1892465a5f11251a8129c8312c8c.jpg" />
<meta property="twitter:image" content="assets/img/671a1892465a5f11251a8129c8312c8c.jpg">
<title>FAQ | hackerman14 Bot</title>
<meta name="description" content="Here's some common questions you might be asking for with the answer." />
<link rel="apple-touch-icon-precomposed" href="https://cloud-1de12d.becdn.net/media/iW=180&iH=any/a333692f76204dddaf79dc03dae3fab8.png"/><link rel="apple-touch-icon-precomposed" href="https://cloud-1de12d.becdn.net/media/iW=256&iH=256/a333692f76204dddaf79dc03dae3fab8.png"/><link rel="canonical" href="/faq" /><link rel="icon" href="https://cloud-1de12d.becdn.net/media/iW=32%26iH=any/16ed4a641cb945224e56a2d55d83919b.png" sizes="32x32"/><link rel="icon" href="https://cloud-1de12d.becdn.net/media/iW=192%26iH=any/16ed4a641cb945224e56a2d55d83919b.png" sizes="192x192"/><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 class="brz-link brz-link-bunny-fonts-prefetch" rel="dns-prefetch" href="https://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.becdn.net" crossorigin><meta name="viewport" content="width=device-width, initial-scale=1"><link href="assets/384680b3e5d999e9d3fe8dcf377a4302.css" class="brz-link brz-link-preview-lib-pro" media="print" onload="this.media='all'" data-brz-group="group-1_2" rel="stylesheet"/><link href="assets/7bad176b866ffd3736f5d04137036730.css" class="brz-link brz-link-preview-pro" media="print" onload="this.media='all'" rel="stylesheet"/><link href="assets/7e89a418bb7f7538a687cc7951016d06.css" class="brz-link brz-link-preview" rel="stylesheet"/><style class="brz-style">.brz .brz-css-d-richtext {width: 100%;mix-blend-mode: normal;}
.brz .brz-css-d-sectionitem-bg {padding: 75px 0px 75px 0px;}
.brz .brz-css-d-sectionitem-bg > .brz-bg {border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-d-sectionitem-bg > .brz-bg {border: 0px solid rgba(102,115,141,0);}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-d-sectionitem-bg > .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-d-sectionitem-bg > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-d-sectionitem-bg > .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-d-sectionitem-bg > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {display: none;background-position: 50% 50%;}
.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: none;}
.brz .brz-css-d-sectionitem-bg > .brz-bg, .brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-image, .brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-map, .brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-color, .brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
@media (min-width:991px) {.brz .brz-css-d-sectionitem-bg > .brz-bg > .brz-bg-image {background-attachment: scroll;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-sectionitem-bg {padding: 50px 15px 50px 15px;}}
@media (max-width:767px) {.brz .brz-css-d-sectionitem-bg {padding: 25px 15px 25px 15px;}}
.brz .brz-css-d-sectionheaderitem-container {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-d-sectionheaderitem-container {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-sectionheaderitem-container {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-d-sectionheaderitem-container {max-width: 100%;}}
.brz .brz-css-d-row-row {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-d-row-row > .brz-bg {border-radius: 0px;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-d-row-row > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-d-row-row > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-d-row-row > .brz-row {border: 0px solid transparent;}
.brz .brz-css-d-row-row > .brz-row, .brz .brz-css-d-row-row > .brz-bg > .brz-bg-video, .brz .brz-css-d-row-row > .brz-bg, .brz .brz-css-d-row-row > .brz-bg > .brz-bg-image, .brz .brz-css-d-row-row > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
@media (min-width:991px) {.brz .brz-css-d-row-row {min-height: auto;display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-row-row > .brz-row {flex-direction: row;flex-wrap: wrap;justify-content: flex-start;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-row-row {min-height: auto;display: flex;}}
@media (max-width:767px) {.brz .brz-css-d-row-row > .brz-row {flex-direction: row;flex-wrap: wrap;justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-d-row-row {min-height: auto;display: flex;}}
.brz .brz-css-d-row-container {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-row-container {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-d-row-container {padding: 0;}}
.brz .brz-css-d-column-column {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;max-height: none;}
.brz .brz-css-d-column-column .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-d-column-column > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-d-column-column > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-d-column-column > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-d-column-column > .brz-bg, .brz .brz-css-d-column-column > .brz-bg > .brz-bg-image, .brz .brz-css-d-column-column > .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-d-column-column {flex: 1 1 100%;max-width: 100%;}
.brz .brz-css-d-column-column > .brz-bg {margin: 10px 0px 10px 0px;}}
.brz .brz-css-d-column-bg.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
@media (min-width:991px) {.brz .brz-css-d-column-bg {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-column-bg {display: flex;}}
@media (max-width:767px) {.brz .brz-css-d-column-bg.brz-column__items {margin: 10px 0px 10px 0px;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-d-column-bg {display: flex;}}
.brz .brz-css-d-spacer {height: 50px;}
.brz .brz-css-d-cloneable {z-index: auto;position: relative;margin: 10px 0px 10px 0px;justify-content: center;padding: 0;gap: 20px 10px;}
@media (min-width:991px) {.brz .brz-css-d-cloneable {position: relative;}
.brz .brz-css-d-cloneable {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-cloneable {position: relative;}
.brz .brz-css-d-cloneable {display: flex;}}
@media (max-width:767px) {.brz .brz-css-d-cloneable {position: relative;}
.brz .brz-css-d-cloneable {display: flex;}}
.brz .brz-css-d-cloneable-container {justify-content: center;padding: 0;gap: 20px 10px;}
.brz .brz-css-d-button.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-d-button.brz-btn--hover-in:before {background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-d-button.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-d-button.brz-btn--hover-in {background-color: rgba(var(--brz-global-color3),.8);background-image: none;}
.brz .brz-css-d-button.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-d-button.brz-btn--hover-in:before, .brz .brz-css-d-button.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-d-button.brz-btn--hover-in {transition-duration: .6s;}
@media (min-width:991px) {.brz .brz-css-d-button.brz-back-pulse:before {animation-duration: .6s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-button.brz-back-pulse:before {animation-duration: .6s;}}
@media (max-width:767px) {.brz .brz-css-d-button.brz-back-pulse:before {animation-duration: .6s;}}
.brz .brz-css-d-button-bg.brz-btn {font-family: var(--brz-buttonfontfamily,initial);font-weight: var(--brz-buttonfontweight,initial);font-weight: var(--brz-buttonbold,initial);font-size: var(--brz-buttonfontsize,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);font-style: var(--brz-buttonitalic,initial);text-decoration: var(--brz-buttontextdecoration,initial) !important;text-transform: var(--brz-buttontexttransform,initial) !important;border-radius: 0;flex-flow: row-reverse nowrap;padding: 14px 42px 14px 42px;padding: 14px 42px;width: auto;}
.brz .brz-css-d-button-bg.brz-btn {color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),1);box-shadow: none;}
.brz .brz-css-d-button-bg.brz-btn:not(.brz-btn--hover) {background-color: rgba(var(--brz-global-color3),1);background-image: none;}
.brz .brz-css-d-button-bg.brz-btn .brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-d-button-bg.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-d-button-bg:after {height: unset;}
.brz .brz-css-d-button-bg .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),1);flex-flow: row-reverse nowrap;border-radius: 0;}
.brz .brz-css-d-button-bg .brz-btn--story-container:after {height: unset;}
.brz .brz-css-d-button-bg.brz-btn, .brz .brz-css-d-button-bg.brz-btn .brz-icon-svg-custom, .brz .brz-css-d-button-bg.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
@media (min-width:991px) {.brz .brz-css-d-button-bg.brz-btn:not(.brz-btn--hover):hover {background-color: rgba(var(--brz-global-color3),.8);}
.brz .brz-css-d-button-bg.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-d-button-bg.brz-btn {font-weight: var(--brz-buttontabletfontweight,initial);font-weight: var(--brz-buttontabletbold,initial);font-size: var(--brz-buttontabletfontsize,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);font-style: var(--brz-buttontabletitalic,initial);text-decoration: var(--brz-buttontablettextdecoration,initial) !important;text-transform: var(--brz-buttontablettexttransform,initial) !important;padding: 11px 26px 11px 26px;padding: 11px 26px;width: auto;}}
@media (max-width:767px) {.brz .brz-css-d-button-bg.brz-btn {font-weight: var(--brz-buttonmobilefontweight,initial);font-weight: var(--brz-buttonmobilebold,initial);font-size: var(--brz-buttonmobilefontsize,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);font-style: var(--brz-buttonmobileitalic,initial);text-decoration: var(--brz-buttonmobiletextdecoration,initial) !important;text-transform: var(--brz-buttonmobiletexttransform,initial) !important;padding: 11px 26px 11px 26px;padding: 11px 26px;width: auto;}}
.brz .brz-css-d-menu-menu-container .brz-mm-menu__icon {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
@media (min-width:991px) {.brz .brz-css-d-menu-menu-container .brz-mm-menu__icon {display: none;width: 18px;}
.brz .brz-css-d-menu-menu-container .brz-mm-menu__icon {color: rgba(51,51,51,1);}
.brz .brz-css-d-menu-menu-container .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-menu-menu-container .brz-mm-menu__icon {display: flex;width: 18px;}
.brz .brz-css-d-menu-menu-container .brz-mm-menu__icon {color: rgba(51,51,51,1);}
.brz .brz-css-d-menu-menu-container .brz-menu {display: none;}}
@media (max-width:767px) {.brz .brz-css-d-menu-menu-container .brz-mm-menu__icon {display: flex;width: 18px;}
.brz .brz-css-d-menu-menu-container .brz-mm-menu__icon {color: rgba(51,51,51,1);}
.brz .brz-css-d-menu-menu-container .brz-menu {display: none;}}
.brz .brz-css-d-menu-menu > .brz-menu__ul {font-family: var(--brz-buttonfontfamily,initial);display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul {color: rgba(0,0,0,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item > .brz-a {flex-flow: row nowrap;padding: 0px 5px 0px 5px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-d-menu-menu > .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-d-menu-menu > .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-d-menu-menu > .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-d-menu-menu > .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-d-menu-menu > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {margin: 0;margin-inline-end: 15px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(0,0,0,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(0,0,0,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(0,0,0,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item {border-radius: 0px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item > a {border-radius: 0px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {font-family: var(--brz-buttonfontfamily,initial);border-radius: 0px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {color: rgba(255,255,255,1);background-color: rgba(51,51,51,1);box-shadow: none;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item > .brz-a {flex-flow: row nowrap;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-a > .brz-icon-svg {margin: 0;margin-inline-end: 15px;font-size: 12px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current {background-color: rgba(51,51,51,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__item--current .brz-menu__sub-menu {box-shadow: none;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item:not(.brz-menu__item.brz-menu__item--current) > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}
.brz .brz-css-d-menu-menu .brz-menu__item-dropdown .brz-menu__item, .brz .brz-css-d-menu-menu .brz-menu__sub-menu .brz-menu__item-dropdown .brz-a:after, .brz .brz-css-d-menu-menu .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-d-menu-menu .brz-menu__sub-menu > .brz-menu__item:not(.brz-menu__item.brz-menu__item--current) > .brz-a > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-d-menu-menu .brz-menu__sub-menu > .brz-menu__item > .brz-a > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-d-menu-menu .brz-menu__item--current .brz-menu__sub-menu, .brz .brz-css-d-menu-menu .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current, .brz .brz-css-d-menu-menu .brz-menu__ul, .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item > .brz-a, .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a, .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item.brz-menu__item--opened, .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active), .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active), .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-d-menu-menu .brz-menu__ul > .brz-menu__item, .brz .brz-css-d-menu-menu .brz-menu__sub-menu, .brz .brz-css-d-menu-menu:hover .brz-menu__sub-menu .brz-a, .brz .brz-css-d-menu-menu .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a, .brz .brz-css-d-menu-menu .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
@media (min-width:991px) {.brz .brz-css-d-menu-menu > .brz-menu__ul {font-size: var(--brz-buttonfontsize,initial);font-weight: var(--brz-buttonfontweight,initial);font-weight: var(--brz-buttonbold,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);font-style: var(--brz-buttonitalic,initial);text-decoration: var(--brz-buttontextdecoration,initial) !important;text-transform: var(--brz-buttontexttransform,initial) !important;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {font-size: 12px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {font-size: var(--brz-buttonfontsize,initial);font-weight: var(--brz-buttonfontweight,initial);font-weight: var(--brz-buttonbold,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);font-style: var(--brz-buttonitalic,initial);text-decoration: var(--brz-buttontextdecoration,initial) !important;text-transform: var(--brz-buttontexttransform,initial) !important;position: absolute;top: 0;width: 305px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown [data-popper-placement='left-start'] {inset-inline-end: calc(100% + 5px);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown [data-popper-placement='right-start'] {inset-inline-start: calc(100% + 5px);}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__sub-menu {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {inset-inline-start: 0;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-mega-menu .brz-mega-menu__dropdown {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-menu-menu > .brz-menu__ul {font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);font-weight: var(--brz-buttontabletbold,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);font-style: var(--brz-buttontabletitalic,initial);text-decoration: var(--brz-buttontablettextdecoration,initial) !important;text-transform: var(--brz-buttontablettexttransform,initial) !important;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {font-size: 12px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);font-weight: var(--brz-buttontabletbold,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);font-style: var(--brz-buttontabletitalic,initial);text-decoration: var(--brz-buttontablettextdecoration,initial) !important;text-transform: var(--brz-buttontablettexttransform,initial) !important;position: absolute;top: 0;width: 305px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__sub-menu {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {inset-inline-start: 0;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item-dropdown .brz-menu__sub-menu {position: relative;top: auto;inset-inline-start: auto;transform: translate(0,0);height: 0;overflow: hidden;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item--opened > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-d-menu-menu.brz-menu__preview > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-mega-menu .brz-mega-menu__dropdown {display: none;}}
@media (max-width:767px) {.brz .brz-css-d-menu-menu > .brz-menu__ul {font-size: var(--brz-buttonmobilefontsize,initial);font-weight: var(--brz-buttonmobilefontweight,initial);font-weight: var(--brz-buttonmobilebold,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);font-style: var(--brz-buttonmobileitalic,initial);text-decoration: var(--brz-buttonmobiletextdecoration,initial) !important;text-transform: var(--brz-buttonmobiletexttransform,initial) !important;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {font-size: 12px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {font-size: var(--brz-buttonmobilefontsize,initial);font-weight: var(--brz-buttonmobilefontweight,initial);font-weight: var(--brz-buttonmobilebold,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);font-style: var(--brz-buttonmobileitalic,initial);text-decoration: var(--brz-buttonmobiletextdecoration,initial) !important;text-transform: var(--brz-buttonmobiletexttransform,initial) !important;position: absolute;top: 0;width: 305px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__sub-menu {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {inset-inline-start: 0;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item-dropdown .brz-menu__sub-menu {position: relative;top: auto;inset-inline-start: auto;transform: translate(0,0);height: 0;overflow: hidden;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item--opened > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-d-menu-menu.brz-menu__preview > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-d-menu-menu > .brz-menu__ul > .brz-menu__item-mega-menu .brz-mega-menu__dropdown {display: block;}}
.brz .brz-css-d-menu-mmenu .brz-mm-navbar .brz-mm-close {font-size: 16px;margin: 0;padding: 10px 15px 10px 10px;}
.brz .brz-css-d-menu-mmenu .brz-mm-navbar .brz-mm-close {color: rgba(255,255,255,1);background-color: #333;}
.brz .brz-css-d-menu-mmenu .brz-menu__item {font-family: var(--brz-buttonfontfamily,initial);}
.brz .brz-css-d-menu-mmenu .brz-menu__item {color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-d-menu-mmenu {background-color: rgba(51,51,51,.8);}
.brz .brz-css-d-menu-mmenu.brz-mm-menu .brz-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;flex-flow: row nowrap;}
.brz .brz-css-d-menu-mmenu .brz-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-mmenu .brz-menu__item .brz-mm-menu__item__icon.brz-icon-svg-custom {background-color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-mmenu .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-mmenu .brz-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-mmenu.brz-mm-menu.brz-mm-menu_theme-dark.brz-mm-menu_opened .brz-mm-panels {background-image: none;}
.brz .brz-css-d-menu-mmenu.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-d-menu-mmenu .brz-mm-panels > .brz-mm-panel:before {background-image: none;background-color: rgba(51,51,51,.8);}
.brz .brz-css-d-menu-mmenu.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-d-menu-mmenu .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,.8);}
.brz .brz-css-d-menu-mmenu .brz-mm-panels > .brz-mm-panel {background-image: none;background-color: rgba(51,51,51,.8);}
.brz .brz-css-d-menu-mmenu.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-d-menu-mmenu .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-d-menu-mmenu .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-mmenu .brz-menu__item.brz-menu__item--current:not(brz-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-mmenu .brz-menu__item.brz-menu__item--current:not(brz-menu__item.brz-menu__item--current:active) > .brz-mm-listitem__text > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(255,255,255,1);}
.brz .brz-css-d-menu-mmenu .brz-mm-listitem, .brz .brz-css-d-menu-mmenu.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after, .brz .brz-css-d-menu-mmenu .brz-menu__item, .brz .brz-css-d-menu-mmenu.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-d-menu-mmenu .brz-mm-panels > .brz-mm-panel, .brz .brz-css-d-menu-mmenu.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-d-menu-mmenu .brz-mm-panels > .brz-mm-panel:before, .brz .brz-css-d-menu-mmenu .brz-menu__item.brz-mm-listitem_opened, .brz .brz-css-d-menu-mmenu .brz-mm-navbar, .brz nav.brz-mm-menu.brz-css-d-menu-mmenu, .brz .brz-css-d-menu-mmenu .brz-menu__item > .brz-mm-listitem__text, .brz .brz-css-d-menu-mmenu .brz-menu__item .brz-mm-menu__item__icon.brz-icon-svg-custom {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
@media (min-width:991px) {.brz .brz-css-d-menu-mmenu .brz-mm-navbar .brz-mm-close {transition-duration: .3s;}
.brz .brz-css-d-menu-mmenu .brz-menu__item {font-size: var(--brz-buttonfontsize,initial);font-weight: var(--brz-buttonfontweight,initial);font-weight: var(--brz-buttonbold,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);font-style: var(--brz-buttonitalic,initial);text-decoration: var(--brz-buttontextdecoration,initial) !important;text-transform: var(--brz-buttontexttransform,initial) !important;}
.brz .brz-css-d-menu-mmenu .brz-menu__item .brz-a {justify-content: flex-start;text-align: start;}
.brz .brz-css-d-menu-mmenu .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-d-menu-mmenu .brz-mm-navbar {font-family: var(--brz-buttonfontfamily,initial);font-size: var(--brz-buttonfontsize,initial);font-weight: var(--brz-buttonfontweight,initial);font-weight: var(--brz-buttonbold,initial);line-height: var(--brz-buttonlineheight,initial);letter-spacing: var(--brz-buttonletterspacing,initial);font-variation-settings: var(--brz-buttonfontvariation,initial);font-style: var(--brz-buttonitalic,initial);text-decoration: var(--brz-buttontextdecoration,initial) !important;text-transform: var(--brz-buttontexttransform,initial) !important;border-color: rgba(85,85,85,1);}
.brz .brz-css-d-menu-mmenu.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;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-menu-mmenu .brz-mm-navbar .brz-mm-close {transition-duration: .3s;}
.brz .brz-css-d-menu-mmenu .brz-menu__item {font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);font-weight: var(--brz-buttontabletbold,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);font-style: var(--brz-buttontabletitalic,initial);text-decoration: var(--brz-buttontablettextdecoration,initial) !important;text-transform: var(--brz-buttontablettexttransform,initial) !important;}
.brz .brz-css-d-menu-mmenu .brz-menu__item .brz-a {justify-content: flex-start;text-align: start;}
.brz .brz-css-d-menu-mmenu .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-d-menu-mmenu .brz-mm-navbar {font-family: var(--brz-buttonfontfamily,initial);font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);font-weight: var(--brz-buttontabletbold,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);font-style: var(--brz-buttontabletitalic,initial);text-decoration: var(--brz-buttontablettextdecoration,initial) !important;text-transform: var(--brz-buttontablettexttransform,initial) !important;border-color: rgba(85,85,85,1);}
.brz .brz-css-d-menu-mmenu.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;}}
@media (max-width:767px) {.brz .brz-css-d-menu-mmenu .brz-mm-navbar .brz-mm-close {transition-duration: .3s;}
.brz .brz-css-d-menu-mmenu .brz-menu__item {font-size: var(--brz-buttonmobilefontsize,initial);font-weight: var(--brz-buttonmobilefontweight,initial);font-weight: var(--brz-buttonmobilebold,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);font-style: var(--brz-buttonmobileitalic,initial);text-decoration: var(--brz-buttonmobiletextdecoration,initial) !important;text-transform: var(--brz-buttonmobiletexttransform,initial) !important;}
.brz .brz-css-d-menu-mmenu .brz-menu__item .brz-a {justify-content: flex-start;text-align: start;}
.brz .brz-css-d-menu-mmenu .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-d-menu-mmenu .brz-mm-navbar {font-family: var(--brz-buttonfontfamily,initial);font-size: var(--brz-buttonmobilefontsize,initial);font-weight: var(--brz-buttonmobilefontweight,initial);font-weight: var(--brz-buttonmobilebold,initial);line-height: var(--brz-buttonmobilelineheight,initial);letter-spacing: var(--brz-buttonmobileletterspacing,initial);font-variation-settings: var(--brz-buttonmobilefontvariation,initial);font-style: var(--brz-buttonmobileitalic,initial);text-decoration: var(--brz-buttonmobiletextdecoration,initial) !important;text-transform: var(--brz-buttonmobiletexttransform,initial) !important;border-color: rgba(85,85,85,1);}
.brz .brz-css-d-menu-mmenu.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;}}
@media (min-width:991px) {.brz .brz-css-d-sectionheader {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-sectionheader {display: block;}}
@media (max-width:767px) {.brz .brz-css-d-sectionheader {display: block;}}
.brz .brz-css-d-sectionheaderitem {padding: 75px 0px 75px 0px;margin: 0;}
.brz .brz-css-d-sectionheaderitem > .brz-bg {border-radius: 0px;}
.brz .brz-css-d-sectionheaderitem > .brz-bg {border: 0px solid rgba(102,115,141,0);}
.brz .brz-css-d-sectionheaderitem > .brz-bg:after {box-shadow: none;}
.brz .brz-css-d-sectionheaderitem > .brz-bg > .brz-bg-image {-webkit-mask-image: none;mask-image: none;background-size: cover;background-repeat: no-repeat;}
.brz .brz-css-d-sectionheaderitem > .brz-bg > .brz-bg-image {background-image: none;filter: none;}
.brz .brz-css-d-sectionheaderitem > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-d-sectionheaderitem > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-d-sectionheaderitem > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-d-sectionheaderitem > .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-d-sectionheaderitem > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-d-sectionheaderitem > .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-d-sectionheaderitem > .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-d-sectionheaderitem {padding: 50px 15px 50px 15px;}}
@media (max-width:767px) {.brz .brz-css-d-sectionheaderitem {padding: 25px 15px 25px 15px;}}
.brz .brz-css-d-sectionitem-container {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-d-sectionitem-container {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-sectionitem-container {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-d-sectionitem-container {max-width: 100%;}}
.brz .brz-css-d-wrapper {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-d-wrapper .brz-wrapper-transform {transform: none;}
@media (min-width:991px) {.brz .brz-css-d-wrapper {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-wrapper {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-d-wrapper {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-d-section {z-index: auto;margin: 0;}
.brz .brz-css-d-section.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-d-section .brz-container {justify-content: center;}
.brz .brz-css-d-section > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-d-section > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
.brz .brz-css-d-section > .slick-slider > .brz-slick-slider__dots > .brz-slick-slider__pause {color: rgba(0,0,0,1);}
@media (min-width:991px) {.brz .brz-css-d-section {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-section {display: block;}}
@media (max-width:767px) {.brz .brz-css-d-section {display: block;}}
.brz .brz-css-d-sectionfooter-container {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-d-sectionfooter-container {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-sectionfooter-container {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-d-sectionfooter-container {max-width: 100%;}}
.brz .brz-css-d-sectionfooter-section {padding: 75px 0px 75px 0px;min-height: auto;margin: 0;z-index: auto;}
.brz .brz-css-d-sectionfooter-section {display: flex;}
.brz .brz-css-d-sectionfooter-section > .brz-bg {border-radius: 0px;}
.brz .brz-css-d-sectionfooter-section > .brz-bg {border: 0px solid rgba(102,115,141,0);}
.brz .brz-css-d-sectionfooter-section > .brz-bg:after {box-shadow: none;}
.brz .brz-css-d-sectionfooter-section > .brz-bg > .brz-bg-image {-webkit-mask-image: none;mask-image: none;background-size: cover;background-repeat: no-repeat;}
.brz .brz-css-d-sectionfooter-section > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-d-sectionfooter-section > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-d-sectionfooter-section > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-d-sectionfooter-section > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-d-sectionfooter-section > .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-d-sectionfooter-section > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-d-sectionfooter-section > .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-d-sectionfooter-section > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-d-sectionfooter-section .brz-container {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-d-sectionfooter-section {padding: 25px 15px 25px 15px;}}
@media (max-width:767px) {.brz .brz-css-d-sectionfooter-section {padding: 25px 15px 25px 15px;}}
.brz .brz-css-r-wrapper {margin: 0;}
@media (min-width:991px) {.brz .brz-css-1r124dl.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-1r124dl:hover {display: flex;}}
@media (min-width:991px) {.brz .brz-css-a29fif {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-a29fif .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-a29fif {display: flex;z-index: auto;position: relative;}}
@media (min-width:991px) {.brz .brz-css-1oj1h72 {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-roIur {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.3;font-weight: 700;letter-spacing: -1.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-roIur {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.3;font-weight: 700;letter-spacing: -1.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-roIur {font-size: 38px;line-height: 1.2;letter-spacing: -1px;}}
@media (max-width:767px) {.brz .brz-css-roIur {font-size: 36px;letter-spacing: -1px;}}
@media (min-width:991px) {.brz .brz-css-uemauj {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;max-height: none;}
.brz .brz-css-uemauj .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-uemauj > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-uemauj:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-uemauj > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-uemauj:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-uemauj:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-uemauj > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-uemauj:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-uemauj > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-uemauj:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-uemauj > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-uemauj:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-uemauj > .brz-bg, .brz .brz-css-uemauj > .brz-bg > .brz-bg-image, .brz .brz-css-uemauj > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-u7PMa {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 (min-width:991px) {.brz .brz-css-u7PMa {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-u7PMa {text-align: right !important;font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-u7PMa {font-size: 15px;line-height: 1.6;}}
.brz .brz-css-r9AMf {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 (min-width:991px) {.brz .brz-css-r9AMf {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-r9AMf {text-align: right !important;font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-r9AMf {font-size: 15px;line-height: 1.6;}}
@media (min-width:991px) {.brz .brz-css-f8obzg.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-f8obzg:hover {display: flex;}}
@media (min-width:991px) {.brz .brz-css-z0ycpa {padding: 0;margin: 0;justify-content: center;position: relative;}
.brz .brz-css-z0ycpa .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-z0ycpa {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-z0ycpa {display: none;}}
@media (max-width:767px) {.brz .brz-css-z0ycpa {display: none;}}
.brz .brz-css-oy1Yd {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.3;font-weight: 700;letter-spacing: -1.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-oy1Yd {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 46px;line-height: 1.3;font-weight: 700;letter-spacing: -1.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oy1Yd {font-size: 38px;line-height: 1.2;letter-spacing: -1px;}}
@media (max-width:767px) {.brz .brz-css-oy1Yd {font-size: 36px;letter-spacing: -1px;}}
@media (min-width:991px) {.brz .brz-css-1wivdq7 {width: 100%;mix-blend-mode: normal;}}
@media (min-width:991px) {.brz .brz-css-1kvkv0m {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-1kvkv0m .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-1kvkv0m {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-1ggfjwf.brz-column__items {padding: 5px 15px 5px 15px;}
@media (min-width:991px) {.brz .brz-css-1ggfjwf.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-1ggfjwf:hover {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-1ggfjwf.brz-column__items {padding: 5px 15px 35px 15px;}}
@media (max-width:767px) {.brz .brz-css-1ggfjwf.brz-column__items {padding: 0px 0px 15px 0px;}}
.brz .brz-css-o6gdx7 {flex: 1 1 40.3%;max-width: 40.3%;justify-content: flex-end;}
.brz .brz-css-o6gdx7 .brz-columns__scroll-effect {justify-content: flex-end;}
@media (min-width:991px) {.brz .brz-css-o6gdx7 {z-index: auto;flex: 1 1 40.3%;max-width: 40.3%;justify-content: flex-end;max-height: none;}
.brz .brz-css-o6gdx7 .brz-columns__scroll-effect {justify-content: flex-end;}
.brz .brz-css-o6gdx7 > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-o6gdx7:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-o6gdx7 > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-o6gdx7:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-o6gdx7:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-o6gdx7 > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-o6gdx7:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-o6gdx7 > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-o6gdx7:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-o6gdx7 > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-o6gdx7:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-o6gdx7 > .brz-bg, .brz .brz-css-o6gdx7 > .brz-bg > .brz-bg-image, .brz .brz-css-o6gdx7 > .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-o6gdx7 {flex: 1 1 100%;max-width: 100%;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-o6gdx7 > * {display: none;}
.brz .brz-css-o6gdx7 > .brz-column__items {display: none;}}
@media (max-width:767px) {.brz .brz-css-o6gdx7 {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-19n5hmy {margin: 0px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-19n5hmy {padding: 0;margin: 0px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-19n5hmy .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-19n5hmy {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-19n5hmy {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-19n5hmy {display: none;}}
@media (min-width:991px) {.brz .brz-css-10c9az1 {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-10c9az1 > .brz-bg {border-radius: 0px;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-10c9az1:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-10c9az1 > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-10c9az1:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-10c9az1:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-10c9az1 > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-10c9az1:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-10c9az1 > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-10c9az1:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-10c9az1 > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-10c9az1:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-10c9az1:hover > .brz-row {border: 0px solid transparent;}
.brz .brz-css-10c9az1 > .brz-row, .brz .brz-css-10c9az1 > .brz-bg > .brz-bg-video, .brz .brz-css-10c9az1 > .brz-bg, .brz .brz-css-10c9az1 > .brz-bg > .brz-bg-image, .brz .brz-css-10c9az1 > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-10c9az1 {min-height: auto;display: flex;}}
@media (min-width:991px) {.brz .brz-css-1tmso07 {width: 100%;mix-blend-mode: normal;}}
@media (min-width:991px) {.brz .brz-css-3fb8h6 {padding: 10px;max-width: 100%;}}
@media (min-width:991px) {.brz .brz-css-gihqch {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-o17c0e {height: 20px;}
@media (min-width:991px) {.brz .brz-css-o17c0e {height: 20px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-o17c0e {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-o17c0e {height: 10px;}}
@media (min-width:991px) {.brz .brz-css-5sh9d2.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-5sh9d2:hover {display: flex;}}
.brz .brz-css-qQX9q {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-qQX9q {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qQX9q {font-size: 13px;line-height: 1.7;letter-spacing: 2px;}}
@media (max-width:767px) {.brz .brz-css-qQX9q {font-size: 13px;line-height: 1.7;letter-spacing: 2px;}}
@media (min-width:991px) {.brz .brz-css-uwqw6x {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-uwqw6x .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-uwqw6x {display: flex;z-index: auto;position: relative;}}
@media (min-width:991px) {.brz .brz-css-tvp3i8 {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-cMY0h {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 (min-width:991px) {.brz .brz-css-cMY0h {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cMY0h {font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-cMY0h {font-size: 15px;line-height: 1.6;}}
.brz .brz-css-uMI8N {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 (min-width:991px) {.brz .brz-css-uMI8N {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uMI8N {font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-uMI8N {font-size: 15px;line-height: 1.6;}}
.brz .brz-css-9nso5c {flex: 1 1 19.2%;max-width: 19.2%;}
@media (min-width:991px) {.brz .brz-css-9nso5c {z-index: auto;flex: 1 1 19.2%;max-width: 19.2%;justify-content: flex-start;max-height: none;}
.brz .brz-css-9nso5c .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-9nso5c > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-9nso5c:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-9nso5c > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-9nso5c:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-9nso5c:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-9nso5c > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-9nso5c:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-9nso5c > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-9nso5c:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-9nso5c > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-9nso5c:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-9nso5c > .brz-bg, .brz .brz-css-9nso5c > .brz-bg > .brz-bg-image, .brz .brz-css-9nso5c > .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-9nso5c {flex: 1 1 30%;max-width: 30%;}}
@media (max-width:767px) {.brz .brz-css-9nso5c {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-1k5m1tl {margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-1k5m1tl {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-1k5m1tl .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-1k5m1tl {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-1k5m1tl {margin: 0;}}
.brz .brz-css-156grna {margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-156grna {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-156grna .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-156grna {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-156grna {margin: 0;}}
@media (min-width:991px) {.brz .brz-css-1opt0ns {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-sKKjy {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-sKKjy {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sKKjy {font-size: 13px;line-height: 1.7;letter-spacing: 2px;}}
@media (max-width:767px) {.brz .brz-css-sKKjy {font-size: 13px;line-height: 1.7;letter-spacing: 2px;}}
@media (min-width:991px) {.brz .brz-css-16rw4v2 {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-16rw4v2 .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-16rw4v2 {display: flex;z-index: auto;position: relative;}}
@media (min-width:991px) {.brz .brz-css-oc3g1n {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-x4iOZ {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 (min-width:991px) {.brz .brz-css-x4iOZ {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-x4iOZ {font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-x4iOZ {font-size: 15px;line-height: 1.6;}}
.brz .brz-css-rB5tH {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 (min-width:991px) {.brz .brz-css-rB5tH {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rB5tH {font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-rB5tH {font-size: 15px;line-height: 1.6;}}
.brz .brz-css-q4_kk {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 (min-width:991px) {.brz .brz-css-q4_kk {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-q4_kk {font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-q4_kk {font-size: 15px;line-height: 1.6;}}
@media (min-width:991px) {.brz .brz-css-3wr35g {width: 100%;mix-blend-mode: normal;}}
@media (min-width:991px) {.brz .brz-css-ryhum3.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-ryhum3:hover {display: flex;}}
.brz .brz-css-15jd64x {margin: 0px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-15jd64x {padding: 0;margin: 0px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-15jd64x .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-15jd64x {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-15jd64x {display: none;}}
.brz .brz-css-iziah {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 (min-width:991px) {.brz .brz-css-iziah {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iziah {text-align: center !important;font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-iziah {font-size: 15px;line-height: 1.6;}}
@media (min-width:991px) {.brz .brz-css-1kcv6it {padding: 10px;max-width: 100%;}}
.brz .brz-css-q6MSg {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 (min-width:991px) {.brz .brz-css-q6MSg {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-q6MSg {font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-q6MSg {font-size: 15px;line-height: 1.6;}}
.brz .brz-css-kCa0x {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 (min-width:991px) {.brz .brz-css-kCa0x {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kCa0x {font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-kCa0x {font-size: 15px;line-height: 1.6;}}
.brz .brz-css-j7eh63 {margin: 0px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-j7eh63 {display: none;}}
@media (min-width:991px) {.brz .brz-css-j7eh63 {padding: 0;margin: 0px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-j7eh63 .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-j7eh63 {display: flex;display: none;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-j7eh63 {display: none;}}
@media (min-width:991px) {.brz .brz-css-rr4wli {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-rasYU {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 (min-width:991px) {.brz .brz-css-rasYU {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rasYU {text-align: center !important;font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-rasYU {font-size: 15px;line-height: 1.6;}}
.brz .brz-css-gorz4o {flex: 1 1 18%;max-width: 18%;}
@media (min-width:991px) {.brz .brz-css-gorz4o {z-index: auto;flex: 1 1 18%;max-width: 18%;justify-content: flex-start;max-height: none;}
.brz .brz-css-gorz4o .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-gorz4o > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-gorz4o:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-gorz4o > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gorz4o:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-gorz4o:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-gorz4o > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gorz4o:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-gorz4o > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-gorz4o:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-gorz4o > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-gorz4o:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-gorz4o > .brz-bg, .brz .brz-css-gorz4o > .brz-bg > .brz-bg-image, .brz .brz-css-gorz4o > .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-gorz4o {flex: 1 1 30%;max-width: 30%;}}
@media (max-width:767px) {.brz .brz-css-gorz4o {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-h7y74f {flex: 1 1 22.5%;max-width: 22.5%;}
@media (min-width:991px) {.brz .brz-css-h7y74f {z-index: auto;flex: 1 1 22.5%;max-width: 22.5%;justify-content: flex-start;max-height: none;}
.brz .brz-css-h7y74f .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-h7y74f > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-h7y74f:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-h7y74f > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h7y74f:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-h7y74f:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-h7y74f > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-h7y74f:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-h7y74f > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-h7y74f:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-h7y74f > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-h7y74f:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-h7y74f > .brz-bg, .brz .brz-css-h7y74f > .brz-bg > .brz-bg-image, .brz .brz-css-h7y74f > .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-h7y74f {flex: 1 1 40%;max-width: 40%;}}
@media (max-width:767px) {.brz .brz-css-h7y74f {flex: 1 1 100%;max-width: 100%;}}
@media (min-width:991px) {.brz .brz-css-v5zo3k.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-v5zo3k:hover {display: flex;}}
.brz .brz-css-1e0o9e3 {margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-1e0o9e3 {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-1e0o9e3 .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-1e0o9e3 {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-1e0o9e3 {margin: 0;}}
@media (min-width:991px) {.brz .brz-css-1fm9wlv {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-rhVr7 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-rhVr7 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 20px;line-height: 1.5;font-weight: 700;letter-spacing: 1.1px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rhVr7 {font-size: 13px;line-height: 1.7;letter-spacing: 2px;}}
@media (max-width:767px) {.brz .brz-css-rhVr7 {font-size: 13px;line-height: 1.7;letter-spacing: 2px;}}
@media (min-width:991px) {.brz .brz-css-25cfwa {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-25cfwa .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-25cfwa {display: flex;z-index: auto;position: relative;}}
@media (min-width:991px) {.brz .brz-css-kav5hh {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-jAyKa {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 (min-width:991px) {.brz .brz-css-jAyKa {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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jAyKa {text-align: justify !important;font-size: 15px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-jAyKa {font-size: 15px;line-height: 1.6;}}
@media (min-width:991px) {.brz .brz-css-1ogfpya {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;max-height: none;}
.brz .brz-css-1ogfpya .brz-columns__scroll-effect {justify-content: flex-start;}
.brz .brz-css-1ogfpya > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-1ogfpya:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-1ogfpya > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-1ogfpya:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-1ogfpya:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-1ogfpya > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-1ogfpya:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-1ogfpya > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-1ogfpya:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-1ogfpya > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-1ogfpya:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-1ogfpya > .brz-bg, .brz .brz-css-1ogfpya > .brz-bg > .brz-bg-image, .brz .brz-css-1ogfpya > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-1b43c32.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-1b43c32.brz-btn--hover-in:before {border: 0 !important;background-color: transparent !important;box-shadow: none !important;}
.brz .brz-css-1b43c32.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-1b43c32.brz-btn--hover-in {background-color: rgba(0,0,0,0);background: transparent;}
@media (min-width:991px) {.brz .brz-css-1b43c32.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-1b43c32.brz-btn--hover-in:before {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background-image: none;}
.brz .brz-css-1b43c32.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-1b43c32.brz-btn--hover-in {background-color: rgba(0,0,0,0);background: transparent;}
.brz .brz-css-1b43c32.brz-btn--hover:not(.brz-btn--hover-in), .brz .brz-css-1b43c32.brz-btn--hover-in:before, .brz .brz-css-1b43c32.brz-btn--hover:not(.brz-btn--hover-in):before, .brz .brz-css-1b43c32.brz-btn--hover-in {transition-duration: .6s;}}
@media (min-width:991px) {.brz .brz-css-1b43c32.brz-back-pulse:before:hover {animation-duration: .6s;}}
@media (min-width:991px) {.brz .brz-css-uj9v9e {display: none;}}
@media (min-width:991px) {.brz .brz-css-uj9v9e {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-uj9v9e > .brz-bg {border-radius: 0px;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-uj9v9e:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-uj9v9e > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-uj9v9e:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-uj9v9e:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-uj9v9e > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-uj9v9e:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-uj9v9e > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-uj9v9e:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-uj9v9e > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-uj9v9e:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-uj9v9e:hover > .brz-row {border: 0px solid transparent;}
.brz .brz-css-uj9v9e > .brz-row, .brz .brz-css-uj9v9e > .brz-bg > .brz-bg-video, .brz .brz-css-uj9v9e > .brz-bg, .brz .brz-css-uj9v9e > .brz-bg > .brz-bg-image, .brz .brz-css-uj9v9e > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-uj9v9e {min-height: auto;display: flex;display: none;}}
@media (max-width:767px) {.brz .brz-css-uj9v9e {display: none;}}
.brz .brz-css-myCYH {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-myCYH {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-myCYH {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-myCYH {line-height: 1.9;}}
.brz .brz-css-yQY5v {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-yQY5v {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yQY5v {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-yQY5v {line-height: 1.9;}}
.brz .brz-css-igy14 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-igy14 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-igy14 {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-igy14 {line-height: 1.9;}}
.brz .brz-css-oBc97 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-oBc97 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oBc97 {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-oBc97 {line-height: 1.9;}}
.brz .brz-css-ms5dp {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-ms5dp {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ms5dp {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-ms5dp {line-height: 1.9;}}
.brz .brz-css-xrd6C {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-xrd6C {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xrd6C {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-xrd6C {line-height: 1.9;}}
.brz .brz-css-mzPKD {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-mzPKD {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mzPKD {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-mzPKD {line-height: 1.9;}}
.brz .brz-css-asQu4 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-asQu4 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-asQu4 {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-asQu4 {line-height: 1.9;}}
.brz .brz-css-m9CvG {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-m9CvG {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-m9CvG {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-m9CvG {line-height: 1.9;}}
.brz .brz-css-cBFh2 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-cBFh2 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cBFh2 {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-cBFh2 {line-height: 1.9;}}
.brz .brz-css-vyv2L {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-vyv2L {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vyv2L {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-vyv2L {line-height: 1.9;}}
.brz .brz-css-kaT3e {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-kaT3e {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kaT3e {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-kaT3e {line-height: 1.9;}}
.brz .brz-css-fiqcG {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-fiqcG {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fiqcG {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-fiqcG {line-height: 1.9;}}
@media (min-width:991px) {.brz .brz-css-7vgypk {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-n0bpT {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-n0bpT {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-n0bpT {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-n0bpT {line-height: 1.9;}}
@media (min-width:991px) {.brz .brz-css-1mc6fzj {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-1mc6fzj .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-1mc6fzj {display: flex;z-index: auto;position: relative;}}
@media (min-width:991px) {.brz .brz-css-1jidju2 {max-width: calc(.9 * var(--brz-section-container-max-width,1170px));}}
@media (min-width:991px) {.brz .brz-css-1jidju2:hover {border: 0px solid transparent;}}
@media (min-width:991px) {.brz .brz-css-1jidju2 {max-width: calc(.9 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-1jidju2 {max-width: 95%;}}
@media (max-width:767px) {.brz .brz-css-1jidju2 {max-width: 100%;}}
.brz .brz-css-1yyqadv {padding: 50px 0px 60px 0px;}
@media (min-width:991px) {.brz .brz-css-1yyqadv {padding: 50px 0px 60px 0px;}
.brz .brz-css-1yyqadv > .brz-bg {border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-1yyqadv:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);}
.brz .brz-css-1yyqadv > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-1yyqadv:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-1yyqadv:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-1yyqadv > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-1yyqadv:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-1yyqadv > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-1yyqadv:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-1yyqadv > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-1yyqadv:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-1yyqadv > .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-1yyqadv > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-1yyqadv > .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-1yyqadv > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-1yyqadv > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {display: none;background-position: 50% 50%;}
.brz .brz-css-1yyqadv:hover > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: none;}
.brz .brz-css-1yyqadv > .brz-bg, .brz .brz-css-1yyqadv > .brz-bg > .brz-bg-image, .brz .brz-css-1yyqadv > .brz-bg > .brz-bg-map, .brz .brz-css-1yyqadv > .brz-bg > .brz-bg-color, .brz .brz-css-1yyqadv > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-1yyqadv:hover > .brz-bg > .brz-bg-image {background-attachment: scroll;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-1yyqadv {padding: 50px;}}
@media (max-width:767px) {.brz .brz-css-1yyqadv {padding: 35px;}}
@media (min-width:991px) {.brz .brz-css-1y9cap {z-index: auto;margin: 0;}
.brz .brz-css-1y9cap.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-1y9cap .brz-container {justify-content: center;}
.brz .brz-css-1y9cap > .slick-slider > .brz-slick-slider__dots:hover {color: rgba(0,0,0,1);}
.brz .brz-css-1y9cap > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,.7);}
.brz .brz-css-1y9cap > .slick-slider > .brz-slick-slider__dots > .brz-slick-slider__pause:hover {color: rgba(0,0,0,1);}}
@media (min-width:991px) {.brz .brz-css-1y9cap:hover {display: block;}}
.brz .brz-css-tKXj1 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-tKXj1 {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 18px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tKXj1 {font-size: 16px;line-height: 1.6;}}
@media (max-width:767px) {.brz .brz-css-tKXj1 {font-size: 16px;line-height: 1.6;}}
@media (min-width:991px) {.brz .brz-css-p9qnic {width: 100%;mix-blend-mode: normal;}}
@media (min-width:991px) {.brz .brz-css-w0iiuc {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-w0iiuc .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-w0iiuc {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-g2XtT {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 72px;line-height: 1.3;font-weight: 700;letter-spacing: -1.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-g2XtT {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 72px;line-height: 1.3;font-weight: 700;letter-spacing: -1.5px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-g2XtT {font-size: 50px;line-height: 1.2;letter-spacing: -1px;}}
@media (max-width:767px) {.brz .brz-css-g2XtT {font-size: 40px;letter-spacing: -1px;}}
@media (min-width:991px) {.brz .brz-css-1doa1k2 {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-1unx6fc {padding: 10px 0px 0px 0px;}
@media (min-width:991px) {.brz .brz-css-1unx6fc {padding: 10px 0px 0px 0px;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
.brz .brz-css-1unx6fc .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-1unx6fc {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-1unx6fc {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-1unx6fc {padding: 0;}}
@media (min-width:991px) {.brz .brz-css-1fgduyk {max-width: calc(.89 * var(--brz-section-container-max-width,1170px));}}
@media (min-width:991px) {.brz .brz-css-1fgduyk:hover {border: 0px solid transparent;}}
@media (min-width:991px) {.brz .brz-css-1fgduyk {max-width: calc(.89 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-1fgduyk {max-width: 95%;}}
@media (max-width:767px) {.brz .brz-css-1fgduyk {max-width: 100%;}}
.brz .brz-css-8fzt1v {padding: 160px 0px 80px 0px;}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-image {background-image: url("assets/img/129f7f9bf7f2e7c40497337adf713024.jpg");background-position: 44% 100%;}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/129f7f9bf7f2e7c40497337adf713024.jpg");}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.5);}
@media (min-width:991px) {.brz .brz-css-8fzt1v {padding: 160px 0px 80px 0px;}
.brz .brz-css-8fzt1v > .brz-bg {border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-8fzt1v:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-8fzt1v:hover > .brz-bg > .brz-bg-image {background-image: url("assets/img/129f7f9bf7f2e7c40497337adf713024.jpg");filter: none;background-position: 44% 100%;display: block;}
.brz .brz-css-8fzt1v:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: url("assets/img/129f7f9bf7f2e7c40497337adf713024.jpg");}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-8fzt1v:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.5);background-image: none;}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-8fzt1v:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-8fzt1v:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-8fzt1v > .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-8fzt1v > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-8fzt1v > .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-8fzt1v > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {display: none;background-position: 50% 50%;}
.brz .brz-css-8fzt1v:hover > .brz-bg > .brz-bg-slideshow .brz-bg-slideshow-item {filter: none;}
.brz .brz-css-8fzt1v > .brz-bg, .brz .brz-css-8fzt1v > .brz-bg > .brz-bg-image, .brz .brz-css-8fzt1v > .brz-bg > .brz-bg-map, .brz .brz-css-8fzt1v > .brz-bg > .brz-bg-color, .brz .brz-css-8fzt1v > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-8fzt1v:hover > .brz-bg > .brz-bg-image {background-attachment: scroll;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-8fzt1v {padding: 50px;}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-image {background-position: 45% 29%;}}
@media (max-width:767px) {.brz .brz-css-8fzt1v {padding: 35px;}
.brz .brz-css-8fzt1v > .brz-bg > .brz-bg-image {background-position: 50% 76%;}}
.brz .brz-css-ggd_Z {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-ggd_Z {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ggd_Z {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-ggd_Z {line-height: 1.9;}}
.brz .brz-css-s3aRZ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-s3aRZ {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-s3aRZ {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-s3aRZ {line-height: 1.9;}}
@media (min-width:991px) {.brz .brz-css-21wbr7 {max-width: calc(.95 * var(--brz-section-container-max-width,1170px));}}
@media (min-width:991px) {.brz .brz-css-21wbr7:hover {border: 0px solid transparent;}}
@media (min-width:991px) {.brz .brz-css-21wbr7 {max-width: calc(.95 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-21wbr7 {max-width: 95%;}}
@media (max-width:767px) {.brz .brz-css-21wbr7 {max-width: 100%;}}
.brz .brz-css-3v3nbs.brz-column__items {margin: 0;}
@media (min-width:991px) {.brz .brz-css-3v3nbs.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-3v3nbs:hover {display: flex;}}
@media (max-width:767px) {.brz .brz-css-3v3nbs.brz-column__items {margin: -5px 0px 0px 0px;}}
.brz .brz-css-gofm2b {padding: 50px 0px 50px 0px;}
.brz .brz-css-gofm2b > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);}
@media (min-width:991px) {.brz .brz-css-gofm2b {padding: 50px 0px 50px 0px;min-height: auto;margin: 0;z-index: auto;}
.brz .brz-css-gofm2b:hover {display: flex;}
.brz .brz-css-gofm2b > .brz-bg {border-radius: 0px;}
.brz .brz-css-gofm2b:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);}
.brz .brz-css-gofm2b:hover > .brz-bg:after {box-shadow: none;}
.brz .brz-css-gofm2b > .brz-bg > .brz-bg-image {-webkit-mask-image: none;mask-image: none;background-size: cover;background-repeat: no-repeat;}
.brz .brz-css-gofm2b:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-gofm2b:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-gofm2b > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-gofm2b:hover > .brz-bg > .brz-bg-color {background-color: rgba(var(--brz-global-color2),1);background-image: none;}
.brz .brz-css-gofm2b > .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-gofm2b > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-gofm2b > .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-gofm2b > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-gofm2b .brz-container {justify-content: center;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gofm2b {padding: 40px 30px 40px 30px;}}
@media (max-width:767px) {.brz .brz-css-gofm2b {padding: 35px;}}
.brz .brz-css-15hdf5d .brz-menu__item {font-family: var(--brz-heading6fontfamily,initial);}
.brz .brz-css-15hdf5d .brz-menu__item {color: rgba(var(--brz-global-color8),1);border-color: rgba(var(--brz-global-color8),.08);}
.brz nav.brz-mm-menu.brz-css-15hdf5d {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-15hdf5d .brz-menu__item:hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d .brz-menu__item .brz-mm-menu__item__icon.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d .brz-mm-navbar {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d .brz-menu__item.brz-mm-listitem_opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-15hdf5d .brz-mm-panels > .brz-mm-panel:before {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-15hdf5d.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-15hdf5d .brz-mm-panels > .brz-mm-panel {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-15hdf5d .brz-mm-panels > .brz-mm-panel {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-15hdf5d.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-15hdf5d .brz-mm-listitem {border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-15hdf5d .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-15hdf5d .brz-menu__item.brz-menu__item--current:not(brz-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d .brz-menu__item.brz-menu__item--current:not(brz-menu__item.brz-menu__item--current:active) > .brz-mm-listitem__text > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
@media (min-width:991px) {.brz .brz-css-15hdf5d .brz-menu__item {font-size: var(--brz-heading6fontsize,initial);font-weight: var(--brz-heading6fontweight,initial);font-weight: var(--brz-heading6bold,initial);line-height: var(--brz-heading6lineheight,initial);letter-spacing: var(--brz-heading6letterspacing,initial);font-variation-settings: var(--brz-heading6fontvariation,initial);font-style: var(--brz-heading6italic,initial);text-decoration: var(--brz-heading6textdecoration,initial) !important;text-transform: var(--brz-heading6texttransform,initial) !important;}
.brz .brz-css-15hdf5d .brz-mm-menu__item__icon {font-size: 12px;}
.brz .brz-css-15hdf5d .brz-mm-navbar {font-family: var(--brz-heading6fontfamily,initial);font-size: var(--brz-heading6fontsize,initial);font-weight: var(--brz-heading6fontweight,initial);font-weight: var(--brz-heading6bold,initial);line-height: var(--brz-heading6lineheight,initial);letter-spacing: var(--brz-heading6letterspacing,initial);font-variation-settings: var(--brz-heading6fontvariation,initial);font-style: var(--brz-heading6italic,initial);text-decoration: var(--brz-heading6textdecoration,initial) !important;text-transform: var(--brz-heading6texttransform,initial) !important;border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-15hdf5d.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;}}
@media (min-width:991px) {.brz .brz-css-15hdf5d .brz-mm-navbar .brz-mm-close {font-size: 16px;margin: 0;padding: 10px 15px 10px 10px;}
.brz .brz-css-15hdf5d .brz-mm-navbar .brz-mm-close:hover {color: rgba(255,255,255,1);background-color: #333;}
.brz .brz-css-15hdf5d .brz-menu__item {font-family: var(--brz-heading6fontfamily,initial);}
.brz .brz-css-15hdf5d .brz-menu__item:hover {color: rgba(var(--brz-global-color8),1);border-color: rgba(var(--brz-global-color8),.08);}
.brz nav.brz-mm-menu.brz-css-15hdf5d {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-15hdf5d.brz-mm-menu .brz-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;flex-flow: row nowrap;}
.brz .brz-css-15hdf5d:hover .brz-menu__item:hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d .brz-menu__item:hover .brz-mm-menu__item__icon.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d .brz-mm-navbar {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d:hover .brz-menu__item.brz-mm-listitem_opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d.brz-mm-menu.brz-mm-menu_theme-dark.brz-mm-menu_opened .brz-mm-panels {background-image: none;}
.brz .brz-css-15hdf5d.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-15hdf5d .brz-mm-panels > .brz-mm-panel:before {background-image: none;background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-15hdf5d.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-15hdf5d:hover .brz-mm-panels > .brz-mm-panel {background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-15hdf5d .brz-mm-panels > .brz-mm-panel {background-image: none;background-color: rgba(var(--brz-global-color2),.8);}
.brz .brz-css-15hdf5d.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-15hdf5d:hover .brz-mm-listitem {border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-15hdf5d .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active):hover {color: rgba(var(--brz-global-color8),1);}
.brz:hover .brz-css-15hdf5d .brz-menu__item.brz-menu__item--current:not(brz-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d .brz-menu__item.brz-menu__item--current:not(brz-menu__item.brz-menu__item--current:active):hover > .brz-mm-listitem__text > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-15hdf5d .brz-mm-listitem, .brz .brz-css-15hdf5d.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after, .brz .brz-css-15hdf5d .brz-menu__item:hover, .brz .brz-css-15hdf5d.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-15hdf5d .brz-mm-panels > .brz-mm-panel, .brz .brz-css-15hdf5d.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-15hdf5d .brz-mm-panels > .brz-mm-panel:before, .brz .brz-css-15hdf5d .brz-menu__item.brz-mm-listitem_opened, .brz .brz-css-15hdf5d .brz-mm-navbar, .brz nav.brz-mm-menu.brz-css-15hdf5d, .brz .brz-css-15hdf5d .brz-menu__item > .brz-mm-listitem__text, .brz .brz-css-15hdf5d .brz-menu__item .brz-mm-menu__item__icon.brz-icon-svg-custom {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (min-width:991px) {.brz .brz-css-15hdf5d .brz-mm-navbar .brz-mm-close:hover {transition-duration: .3s;}
.brz .brz-css-15hdf5d .brz-menu__item {font-size: var(--brz-heading6fontsize,initial);font-weight: var(--brz-heading6fontweight,initial);font-weight: var(--brz-heading6bold,initial);line-height: var(--brz-heading6lineheight,initial);letter-spacing: var(--brz-heading6letterspacing,initial);font-variation-settings: var(--brz-heading6fontvariation,initial);font-style: var(--brz-heading6italic,initial);text-decoration: var(--brz-heading6textdecoration,initial) !important;text-transform: var(--brz-heading6texttransform,initial) !important;}
.brz .brz-css-15hdf5d .brz-menu__item .brz-a {justify-content: flex-start;text-align: start;}
.brz .brz-css-15hdf5d .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-15hdf5d .brz-mm-navbar {font-family: var(--brz-heading6fontfamily,initial);font-size: var(--brz-heading6fontsize,initial);font-weight: var(--brz-heading6fontweight,initial);font-weight: var(--brz-heading6bold,initial);line-height: var(--brz-heading6lineheight,initial);letter-spacing: var(--brz-heading6letterspacing,initial);font-variation-settings: var(--brz-heading6fontvariation,initial);font-style: var(--brz-heading6italic,initial);text-decoration: var(--brz-heading6textdecoration,initial) !important;text-transform: var(--brz-heading6texttransform,initial) !important;border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-15hdf5d.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;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-15hdf5d .brz-menu__item {font-family: var(--brz-buttonfontfamily,initial);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-15hdf5d .brz-menu__item {font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);font-weight: var(--brz-buttontabletbold,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);font-style: var(--brz-buttontabletitalic,initial);text-decoration: var(--brz-buttontablettextdecoration,initial) !important;text-transform: var(--brz-buttontablettexttransform,initial) !important;}
.brz .brz-css-15hdf5d .brz-mm-menu__item__icon {font-size: 12px;}
.brz .brz-css-15hdf5d .brz-mm-navbar {font-family: var(--brz-buttonfontfamily,initial);font-size: var(--brz-buttontabletfontsize,initial);font-weight: var(--brz-buttontabletfontweight,initial);font-weight: var(--brz-buttontabletbold,initial);line-height: var(--brz-buttontabletlineheight,initial);letter-spacing: var(--brz-buttontabletletterspacing,initial);font-variation-settings: var(--brz-buttontabletfontvariation,initial);font-style: var(--brz-buttontabletitalic,initial);text-decoration: var(--brz-buttontablettextdecoration,initial) !important;text-transform: var(--brz-buttontablettexttransform,initial) !important;border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-15hdf5d.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;}}
@media (max-width:767px) {.brz .brz-css-15hdf5d .brz-menu__item {font-size: 18px;font-weight: 700;line-height: 2.5;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}
.brz .brz-css-15hdf5d .brz-mm-menu__item__icon {font-size: 18px;}
.brz .brz-css-15hdf5d .brz-mm-navbar {font-family: var(--brz-heading6fontfamily,initial);font-size: 18px;font-weight: 700;line-height: 2.5;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;border-color: rgba(var(--brz-global-color8),.08);}
.brz .brz-css-15hdf5d.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(2.5 * 18px + 10px + 10px);padding-right: 20px;}}
.brz .brz-css-13h7sa1 > .brz-menu__ul {font-family: "Montserrat",sans-serif;margin: 0px -22.5px 0px -22.5px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .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-13h7sa1 > .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-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {margin: 0;margin-inline-end: 8px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {font-family: "Montserrat",sans-serif;border-radius: 10px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-a:hover {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-a > .brz-icon-svg {margin: 0;margin-inline-end: 8px;font-size: 15px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item:not(.brz-menu__item.brz-menu__item--current) > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .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-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}
@media (min-width:991px) {.brz .brz-css-13h7sa1 > .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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {font-size: 20px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 22.5px;margin-left: 22.5px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (min-width:991px) {.brz .brz-css-13h7sa1 > .brz-menu__ul {font-family: "Montserrat",sans-serif;display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -22.5px 0px -22.5px;}
.brz .brz-css-13h7sa1:hover > .brz-menu__ul {color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a {flex-flow: row nowrap;padding: 0px 5px 0px 5px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a:hover {color: rgba(var(--brz-global-color3),1);background-color: rgba(255,255,255,0);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a:hover {color: rgba(var(--brz-global-color3),1);background-color: rgba(255,255,255,0);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--opened:hover {color: rgba(var(--brz-global-color3),1);background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active):hover {color: rgba(var(--brz-global-color8),1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active):hover {color: rgba(var(--brz-global-color8),1);background-color: rgba(255,255,255,0);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {margin: 0;margin-inline-end: 8px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a:hover > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active):hover > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active):hover > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item {border-radius: 0px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item:hover {color: rgba(var(--brz-global-color3),1);background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > a {border-radius: 0px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {font-family: "Montserrat",sans-serif;border-radius: 10px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu:hover {color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color2),1);box-shadow: none;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item > .brz-a {flex-flow: row nowrap;}
.brz .brz-css-13h7sa1:hover > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-a:hover {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-a > .brz-icon-svg {margin: 0;margin-inline-end: 8px;font-size: 15px;}
.brz .brz-css-13h7sa1:hover > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1:hover > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-13h7sa1:hover > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-13h7sa1:hover > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__item--current .brz-menu__sub-menu {box-shadow: none;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item > .brz-a:hover > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item:not(.brz-menu__item.brz-menu__item--current):hover > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1:hover > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a > .brz-icon-svg.brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(var(--brz-global-color2),1);color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu .brz-menu__item-dropdown:hover .brz-a:hover:after {border-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-13h7sa1:hover > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}
.brz .brz-css-13h7sa1 .brz-menu__item-dropdown .brz-menu__item, .brz .brz-css-13h7sa1 .brz-menu__sub-menu .brz-menu__item-dropdown .brz-a:after, .brz .brz-css-13h7sa1 .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-13h7sa1 .brz-menu__sub-menu > .brz-menu__item:not(.brz-menu__item.brz-menu__item--current) > .brz-a > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-13h7sa1 .brz-menu__sub-menu > .brz-menu__item > .brz-a > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-13h7sa1 .brz-menu__item--current .brz-menu__sub-menu, .brz .brz-css-13h7sa1 .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current, .brz .brz-css-13h7sa1:hover .brz-menu__ul, .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item > .brz-a, .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a, .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item.brz-menu__item--opened, .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active), .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active), .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) > .brz-icon-svg.brz-icon-svg-custom, .brz .brz-css-13h7sa1 .brz-menu__ul > .brz-menu__item, .brz .brz-css-13h7sa1 .brz-menu__sub-menu, .brz .brz-css-13h7sa1:hover .brz-menu__sub-menu .brz-a, .brz .brz-css-13h7sa1 .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current > .brz-a, .brz .brz-css-13h7sa1 .brz-menu__sub-menu > .brz-menu__item.brz-menu__item--current {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (min-width:991px) {.brz .brz-css-13h7sa1 > .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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {font-size: 20px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 22.5px;margin-left: 22.5px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;position: absolute;top: 0;width: 305px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown [data-popper-placement='left-start'] {inset-inline-end: calc(100% + 5px);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown [data-popper-placement='right-start'] {inset-inline-start: calc(100% + 5px);}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__sub-menu {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {inset-inline-start: 0;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-mega-menu .brz-mega-menu__dropdown {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-13h7sa1 > .brz-menu__ul {margin: 0px -10px 0px -10px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-13h7sa1 > .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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {font-size: 17px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:767px) {.brz .brz-css-13h7sa1 > .brz-menu__ul {margin: 0px -10px 0px -10px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {font-family: var(--brz-heading6fontfamily,initial);}}
@media (max-width:767px) {.brz .brz-css-13h7sa1 > .brz-menu__ul {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 700,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item > .brz-a > .brz-icon-svg {font-size: 12px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-13h7sa1 > .brz-menu__ul > .brz-menu__item-dropdown .brz-menu__sub-menu {font-size: var(--brz-heading6mobilefontsize,initial);font-weight: var(--brz-heading6mobilefontweight,initial);font-weight: var(--brz-heading6mobilebold,initial);line-height: var(--brz-heading6mobilelineheight,initial);letter-spacing: var(--brz-heading6mobileletterspacing,initial);font-variation-settings: var(--brz-heading6mobilefontvariation,initial);font-style: var(--brz-heading6mobileitalic,initial);text-decoration: var(--brz-heading6mobiletextdecoration,initial) !important;text-transform: var(--brz-heading6mobiletexttransform,initial) !important;}}
@media (min-width:991px) {.brz .brz-css-ih10oi .brz-mm-menu__icon {display: none;width: 25px;}
.brz .brz-css-ih10oi .brz-mm-menu__icon {color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-ih10oi .brz-menu {display: flex;}}
@media (min-width:991px) {.brz .brz-css-ih10oi .brz-mm-menu__icon {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (min-width:991px) {.brz .brz-css-ih10oi .brz-mm-menu__icon {display: none;width: 25px;}
.brz .brz-css-ih10oi:hover .brz-mm-menu__icon {color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-ih10oi .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ih10oi .brz-mm-menu__icon {display: none;width: 25px;}
.brz .brz-css-ih10oi .brz-mm-menu__icon {color: rgba(var(--brz-global-color2),1);}
.brz .brz-css-ih10oi .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-ih10oi .brz-mm-menu__icon {display: flex;width: 25px;}
.brz .brz-css-ih10oi .brz-mm-menu__icon {color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-ih10oi .brz-menu {display: none;}}
.brz .brz-css-16flznw {margin: 10px 0px 0px 0px;justify-content: flex-end;}
@media (min-width:991px) {.brz .brz-css-16flznw {padding: 0;margin: 10px 0px 0px 0px;justify-content: flex-end;position: relative;}
.brz .brz-css-16flznw .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-16flznw {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-16flznw {margin: 0;}}
.brz .brz-css-12njc37.brz-column__items {padding: 0px 15px 0px 15px;}
@media (min-width:991px) {.brz .brz-css-12njc37.brz-column__items {z-index: auto;margin: 0;border: 0px solid transparent;padding: 0px 15px 0px 15px;min-height: 100%;max-height: none;justify-content: inherit;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (min-width:991px) {.brz .brz-css-12njc37:hover {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-12njc37.brz-column__items {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-12njc37.brz-column__items {padding: 0;}}
.brz .brz-css-1uasjgr {flex: 1 1 57.6%;max-width: 57.6%;justify-content: center;}
.brz .brz-css-1uasjgr .brz-columns__scroll-effect {justify-content: center;}
@media (min-width:991px) {.brz .brz-css-1uasjgr {z-index: auto;flex: 1 1 57.6%;max-width: 57.6%;justify-content: center;max-height: none;}
.brz .brz-css-1uasjgr .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-1uasjgr > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-1uasjgr:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-1uasjgr > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-1uasjgr:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-1uasjgr:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-1uasjgr > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-1uasjgr:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-1uasjgr > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-1uasjgr:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-1uasjgr > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-1uasjgr:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-1uasjgr > .brz-bg, .brz .brz-css-1uasjgr > .brz-bg > .brz-bg-image, .brz .brz-css-1uasjgr > .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-1uasjgr {flex: 1 1 65%;max-width: 65%;}}
@media (max-width:767px) {.brz .brz-css-1uasjgr {flex: 1 1 50%;max-width: 50%;}}
.brz .brz-css-1xntqk8.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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;padding: 14px 0px;}
.brz .brz-css-1xntqk8.brz-btn {border: 0px solid rgba(187,187,187,0);}
.brz .brz-css-1xntqk8.brz-btn:not(.brz-btn--hover) {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-1xntqk8.brz-btn.brz-btn-submit {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-1xntqk8 .brz-btn--story-container {border: 0;border-radius: 0 !important;}
@media (min-width:991px) {.brz .brz-css-1xntqk8.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;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;flex-flow: row-reverse nowrap;padding: 14px 42px 14px 42px;padding: 14px 0px;}
.brz .brz-css-1xntqk8.brz-btn:hover {color: rgba(var(--brz-global-color8),1);border: 0px solid rgba(0,0,0,0);box-shadow: none;}
.brz .brz-css-1xntqk8.brz-btn:not(.brz-btn--hover):hover {border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-1xntqk8.brz-btn:hover .brz-icon-svg-custom {background-color: rgba(var(--brz-global-color8),1);}
.brz .brz-css-1xntqk8.brz-btn.brz-btn-submit:hover {color: rgba(var(--brz-global-color8),1);border: 0 !important;background-color: transparent !important;box-shadow: none !important;background: transparent;}
.brz .brz-css-1xntqk8:after {height: unset;}
.brz .brz-css-1xntqk8 .brz-btn--story-container {border: 0;border-radius: 0 !important;flex-flow: row-reverse nowrap;}
.brz .brz-css-1xntqk8 .brz-btn--story-container:after {height: unset;}
.brz .brz-css-1xntqk8.brz-btn, .brz .brz-css-1xntqk8.brz-btn .brz-icon-svg-custom, .brz .brz-css-1xntqk8.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-1xntqk8.brz-btn {font-size: 24px;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;padding: 11px 0px;}}
@media (max-width:767px) {.brz .brz-css-1xntqk8.brz-btn {font-size: 24px;line-height: 1.6;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;padding: 11px 0px;}}
.brz .brz-css-b5j2t0 {margin: -100px 0px 0px 0px;}
@media (min-width:991px) {.brz .brz-css-b5j2t0 {z-index: auto;margin: -100px 0px 0px 0px;}
.brz .brz-css-b5j2t0.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-b5j2t0 .brz-container {justify-content: center;}
.brz .brz-css-b5j2t0 > .slick-slider > .brz-slick-slider__dots:hover {color: rgba(0,0,0,1);}
.brz .brz-css-b5j2t0 > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,.7);}
.brz .brz-css-b5j2t0 > .slick-slider > .brz-slick-slider__dots > .brz-slick-slider__pause:hover {color: rgba(0,0,0,1);}}
@media (min-width:991px) {.brz .brz-css-b5j2t0:hover {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-b5j2t0 {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-b5j2t0 {margin: 0;}}
.brz .brz-css-107blum {justify-content: flex-start;}
@media (min-width:991px) {.brz .brz-css-107blum {justify-content: flex-start;padding: 0;gap: 20px 10px;}}
.brz .brz-css-1mnm3wr {margin: -10px 0px -10px -10px;justify-content: flex-start;}
@media (min-width:991px) {.brz .brz-css-1mnm3wr {z-index: auto;position: relative;margin: -10px 0px -10px -10px;justify-content: flex-start;padding: 0;gap: 20px 10px;}}
@media (min-width:991px) {.brz .brz-css-1mnm3wr {position: relative;}
.brz .brz-css-1mnm3wr:hover {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-1mnm3wr {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-1mnm3wr {margin: 5px 0px 0px 0px;}}
@media (min-width:991px) {.brz .brz-css-1w7wd36 {padding: 0;margin: 0;justify-content: center;position: relative;}
.brz .brz-css-1w7wd36 .brz-wrapper-transform {transform: none;}}
@media (min-width:991px) {.brz .brz-css-1w7wd36 {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-1w7wd36 {display: none;}}
.brz .brz-css-1ei2uq0 {flex: 1 1 42.4%;max-width: 42.4%;justify-content: center;}
.brz .brz-css-1ei2uq0 .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-1ei2uq0 > .brz-bg {margin: 0;}
@media (min-width:991px) {.brz .brz-css-1ei2uq0 {z-index: auto;flex: 1 1 42.4%;max-width: 42.4%;justify-content: center;max-height: none;}
.brz .brz-css-1ei2uq0 .brz-columns__scroll-effect {justify-content: center;}
.brz .brz-css-1ei2uq0 > .brz-bg {margin: 0;mix-blend-mode: normal;border-radius: 0px;}
.brz .brz-css-1ei2uq0:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}
.brz .brz-css-1ei2uq0 > .brz-bg > .brz-bg-image {background-size: cover;background-repeat: no-repeat;-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-1ei2uq0:hover > .brz-bg > .brz-bg-image {background-image: none;filter: none;display: block;}
.brz .brz-css-1ei2uq0:hover > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-1ei2uq0 > .brz-bg > .brz-bg-color {-webkit-mask-image: none;mask-image: none;}
.brz .brz-css-1ei2uq0:hover > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-1ei2uq0 > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-1ei2uq0:hover > .brz-bg > .brz-bg-map {filter: none;}
.brz .brz-css-1ei2uq0 > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-1ei2uq0:hover > .brz-bg > .brz-bg-video {filter: none;}
.brz .brz-css-1ei2uq0 > .brz-bg, .brz .brz-css-1ei2uq0 > .brz-bg > .brz-bg-image, .brz .brz-css-1ei2uq0 > .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-1ei2uq0 {flex: 1 1 35%;max-width: 35%;}}
@media (max-width:767px) {.brz .brz-css-1ei2uq0 {flex: 1 1 50%;max-width: 50%;}
.brz .brz-css-1ei2uq0 > .brz-bg {margin: -5px 0px 0px 0px;}}
.brz .brz-css-t99Pj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;}
@media (min-width:991px) {.brz .brz-css-t99Pj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left !important;font-family: "Montserrat",sans-serif !important;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;font-variation-settings: "wght" 400,"wdth" 100,"SOFT" 0;font-style: inherit;text-decoration: inherit !important;text-transform: inherit !important;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-t99Pj {line-height: 1.9;}}
@media (max-width:767px) {.brz .brz-css-t99Pj {line-height: 1.9;}}
.brz .brz-css-1akalr6 {padding: 0;}
@media (min-width:991px) {.brz .brz-css-1akalr6 {padding: 0;max-width: 100%;}}
@media (min-width:991px) {.brz .brz-css-z3ukzp {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-z3ukzp > .brz-bg {border-radius: 0px;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-z3ukzp:hover > .brz-bg {border: 0px solid rgba(102,115,141,0);box-shadow: none;}