-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2316 lines (2316 loc) · 421 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><link rel="canonical" href="https://contractor-vzsu.onrender.com" /><link rel="icon" href="https://a-cloud.b-cdn.net/images/cropped-favicon-192x192.png" sizes="16x16"><title>Home</title><meta name="description" content=""><meta property="og:title" content=""><meta property="og:description" content=""><meta property="og:url" content="https://contractor-vzsu.onrender.com"><meta content="summary_large_image" name="twitter:card"><!-- ASSETS --><meta name="viewport" content="width=device-width, initial-scale=1"><link class="brz-link brz-link-bunny-fonts-prefetch" rel="dns-prefetch" href="//fonts.bunny.net"><link class="brz-link brz-link-bunny-fonts-preconnect" rel="preconnect" href="https://fonts.bunny.net/" crossorigin><link class="brz-link brz-link-cdn-preconnect" rel="preconnect" href="https://a-cloud.b-cdn.net" crossorigin><link href="https://fonts.bunny.net/css?family=Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic|Barlow:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic|Alata:regular&subset=arabic,bengali,cyrillic,cyrillic-ext,devanagari,greek,greek-ext,gujarati,hebrew,khmer,korean,latin-ext,tamil,telugu,thai,vietnamese&display=swap" class="brz-link brz-link-google" type="text/css" rel="stylesheet"/><link href="assets/05e105c42aee4ad61b5eec76be599581.css" class="brz-link brz-link-preview-lib" data-group="group-1_2" rel="stylesheet"/><link href="assets/b4d0f3255df5faabbbb32cd1b6509799.css" class="brz-link brz-link-preview-lib-pro" data-group="group-2" rel="stylesheet"/><link href="assets/df07ac1789dff5d6707a15b02c0d083b.css" class="brz-link brz-link-preview-pro" rel="stylesheet"/><style class="brz-style"></style><style class="brz-style">@media (min-width:991px) {.brz .brz-css-zfbdn {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zfbdn {display: block;}}
@media (max-width:767px) {.brz .brz-css-zfbdn {display: block;}}
.brz .brz-css-tslfe {padding: 75px 0px 75px 0px;margin: 0;}
.brz .brz-css-tslfe > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-tslfe > .brz-bg:after {box-shadow: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-tslfe > .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-tslfe {padding: 50px 15px 50px 15px;margin: 0;}
.brz .brz-css-tslfe > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-tslfe > .brz-bg:after {box-shadow: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}}
@media (max-width:767px) {.brz .brz-css-tslfe {padding: 25px 15px 25px 15px;margin: 0;}
.brz .brz-css-tslfe > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-tslfe > .brz-bg:after {box-shadow: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-tslfe > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}}
.brz .brz-css-bytmv {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-bytmv {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bytmv {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bytmv {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-bytmv {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-bytmv {max-width: 100%;}}
.brz .brz-css-nvgxp {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-nvgxp > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-nvgxp > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-nvgxp {min-height: auto;display: flex;}
.brz .brz-css-nvgxp > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-row {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nvgxp {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-nvgxp > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-nvgxp > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nvgxp {min-height: auto;display: flex;}
.brz .brz-css-nvgxp > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-row {flex-direction: row;flex-wrap: wrap;justify-content: flex-start;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-nvgxp {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-nvgxp > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;max-width: 100%;mix-blend-mode: normal;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-nvgxp > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-nvgxp {min-height: auto;display: flex;}
.brz .brz-css-nvgxp > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nvgxp > .brz-row {flex-direction: row;flex-wrap: wrap;justify-content: flex-start;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-ryqou {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ryqou {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-ryqou {padding: 0;max-width: 100%;}}
.brz .brz-css-jxyde {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-jxyde > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;margin: 0;mix-blend-mode: normal;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-video {display: none;}
@media (min-width:991px) {.brz .brz-css-jxyde > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jxyde > .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-jxyde {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-jxyde > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;margin: 0;mix-blend-mode: normal;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-video {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jxyde > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jxyde > .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-jxyde {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-jxyde > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;box-shadow: none;margin: 10px 0px 10px 0px;mix-blend-mode: normal;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-video {display: none;}}
@media (max-width:767px) {.brz .brz-css-jxyde > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jxyde > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-bomnj {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: auto;}
@media (min-width:991px) {.brz .brz-css-bomnj {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bomnj {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;min-height: auto;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bomnj {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-bomnj {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;min-height: auto;}}
@media (max-width:767px) {.brz .brz-css-bomnj {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-mggus {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-mggus {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mggus {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mggus {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-mggus {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-mggus {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-gdpen {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-gdpen .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-gdpen .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-gdpen {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdpen .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdpen .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gdpen {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-gdpen .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-gdpen .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gdpen {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdpen .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdpen .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-gdpen {max-width: 80%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-gdpen .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-gdpen .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-gdpen {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdpen .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-gdpen .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-rllfy {padding-top: 15.512%;}
.brz .brz-css-rllfy > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rllfy {padding-top: 15.5122%;}
.brz .brz-css-rllfy > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-rllfy {padding-top: 15.5116%;}
.brz .brz-css-rllfy > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-nqqon {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nqqon {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-nqqon {height: 50px;}}
.brz .brz-css-tnzva {width: 100%;mix-blend-mode: normal;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tnzva {width: 100%;mix-blend-mode: normal;}}
@media (max-width:767px) {.brz .brz-css-tnzva {width: 100%;mix-blend-mode: normal;}}
.brz .brz-css-fdofv {flex-direction: row;}
.brz .brz-css-fdofv .brz-icon__container {margin-left: auto;margin-right: 20px;align-items: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fdofv {flex-direction: row;}
.brz .brz-css-fdofv .brz-icon__container {margin-left: auto;margin-right: 20px;align-items: flex-start;}}
@media (max-width:767px) {.brz .brz-css-fdofv {flex-direction: row;}
.brz .brz-css-fdofv .brz-icon__container {margin-left: auto;margin-right: 20px;align-items: flex-start;}}
.brz .brz-css-tipqo {color: rgba(var(--brz-global-color3),1);background-color: rgba(189,225,244,0);background-image: none;background-image: transparent;border: 0px solid rgba(35,157,219,0);border: 0;box-shadow: none;box-shadow: initial;font-size: 48px;background: transparent;padding: 0;stroke-width: 1;}
@media (min-width:991px) {.brz .brz-css-tipqo {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
@media (min-width:991px) {.brz .brz-css-tipqo:hover {color: rgba(var(--brz-global-color3),.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tipqo {color: rgba(var(--brz-global-color3),1);background-color: rgba(189,225,244,0);background-image: none;background-image: transparent;border: 0px solid rgba(35,157,219,0);border: 0;box-shadow: none;box-shadow: initial;font-size: 48px;background: transparent;padding: 0;stroke-width: 1;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tipqo {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
@media (max-width:767px) {.brz .brz-css-tipqo {color: rgba(var(--brz-global-color3),1);background-color: rgba(189,225,244,0);background-image: none;background-image: transparent;border: 0px solid rgba(35,157,219,0);border: 0;box-shadow: none;box-shadow: initial;font-size: 48px;background: transparent;padding: 0;stroke-width: 1;}}
@media (max-width:767px) {.brz .brz-css-tipqo {transition-duration: .5s;transition-property: color,box-shadow,background,border,border-color;}}
@media (min-width:991px) {.brz .brz-css-vlgle .brz-mm-menu__icon {display: none;font-size: 18px;color: rgba(51,51,51,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-vlgle .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vlgle .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-vlgle .brz-menu {display: none;}}
@media (max-width:767px) {.brz .brz-css-vlgle .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-vlgle .brz-menu {display: none;}}
.brz .brz-css-sjisw .brz-menu__ul {font-family: var(--brz-buttonfontfamily);color: rgba(0,0,0,1);}
.brz .brz-css-sjisw .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-sjisw .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-sjisw .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-sjisw .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-sjisw .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-sjisw .brz-menu__item__icon {margin: 0 15px 0 0;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);border-radius: 0px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > a {border-radius: 0px;}
.brz .brz-css-sjisw .brz-mm-menu__item {font-family: var(--brz-buttonfontfamily);color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-sjisw {background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel:before {background-image: none;background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {background-image: none;}
.brz .brz-css-sjisw.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-sjisw .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-menu__item--current:not(.brz-mm-menu__item.brz-mm-menu__item--current:active) {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-menu__item--current:not(brz-mm-menu__item.brz-mm-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__sub-menu {font-family: var(--brz-buttonfontfamily);color: rgba(255,255,255,1);background-color: rgba(51,51,51,1);box-shadow: none;border-radius: 0px;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a {flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__sub-item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(51,51,51,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-sjisw .brz-menu__item--current .brz-menu__sub-menu {box-shadow: none;}
.brz .brz-css-sjisw .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}
@media (min-width:991px) {.brz .brz-css-sjisw .brz-menu__ul {font-size: var(--brz-buttonfontsize);font-weight: var(--brz-buttonfontweight);line-height: var(--brz-buttonlineheight);letter-spacing: var(--brz-buttonletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item {font-size: var(--brz-buttonfontsize);font-weight: var(--brz-buttonfontweight);line-height: var(--brz-buttonlineheight);letter-spacing: var(--brz-buttonletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz nav.brz-mm-menu.brz-css-sjisw {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item:hover > .brz-mm-listitem__text {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-sjisw .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-sjisw .brz-mm-navbar {font-family: var(--brz-buttonfontfamily);font-size: var(--brz-buttonfontsize);font-weight: var(--brz-buttonfontweight);line-height: var(--brz-buttonlineheight);letter-spacing: var(--brz-buttonletterspacing);border-color: rgba(85,85,85,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-listitem_opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(var(--brz-buttonlineheight) * var(--brz-buttonfontsize) + 10px + 10px);padding-right: 20px;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-listitem {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__sub-menu {font-size: var(--brz-buttonfontsize);font-weight: var(--brz-buttonfontweight);line-height: var(--brz-buttonlineheight);letter-spacing: var(--brz-buttonletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item--current .brz-menu__sub-menu {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item-dropdown .brz-menu__item {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-sjisw [data-popper-placement='left-start'] {right: calc(100% + 5px);}
.brz .brz-css-sjisw [data-popper-placement='right-start'] {left: calc(100% + 5px);}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {left: 0;}
.brz .brz-css-sjisw .brz-mega-menu__dropdown {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sjisw .brz-menu__ul {font-family: var(--brz-buttonfontfamily);color: rgba(0,0,0,1);}
.brz .brz-css-sjisw .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-sjisw .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-sjisw .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-sjisw .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-sjisw .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-sjisw .brz-menu__item__icon {margin: 0 15px 0 0;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);border-radius: 0px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > a {border-radius: 0px;}
.brz .brz-css-sjisw .brz-mm-menu__item {font-family: var(--brz-buttonfontfamily);color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-sjisw {background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel:before {background-image: none;background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {background-image: none;}
.brz .brz-css-sjisw.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-sjisw .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-menu__item--current:not(.brz-mm-menu__item.brz-mm-menu__item--current:active) {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-menu__item--current:not(brz-mm-menu__item.brz-mm-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__sub-menu {font-family: var(--brz-buttonfontfamily);color: rgba(255,255,255,1);background-color: rgba(51,51,51,1);box-shadow: none;border-radius: 0px;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a {flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__sub-item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(51,51,51,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-sjisw .brz-menu__item--current .brz-menu__sub-menu {box-shadow: none;}
.brz .brz-css-sjisw .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sjisw .brz-menu__ul {font-size: var(--brz-buttontabletfontsize);font-weight: var(--brz-buttontabletfontweight);line-height: var(--brz-buttontabletlineheight);letter-spacing: var(--brz-buttontabletletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item {font-size: var(--brz-buttontabletfontsize);font-weight: var(--brz-buttontabletfontweight);line-height: var(--brz-buttontabletlineheight);letter-spacing: var(--brz-buttontabletletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz nav.brz-mm-menu.brz-css-sjisw {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item:hover > .brz-mm-listitem__text {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-sjisw .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-sjisw .brz-mm-navbar {font-family: var(--brz-buttonfontfamily);font-size: var(--brz-buttontabletfontsize);font-weight: var(--brz-buttontabletfontweight);line-height: var(--brz-buttontabletlineheight);letter-spacing: var(--brz-buttontabletletterspacing);border-color: rgba(85,85,85,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-listitem_opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(var(--brz-buttontabletlineheight) * var(--brz-buttontabletfontsize) + 10px + 10px);padding-right: 20px;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-listitem {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__sub-menu {font-size: var(--brz-buttontabletfontsize);font-weight: var(--brz-buttontabletfontweight);line-height: var(--brz-buttontabletlineheight);letter-spacing: var(--brz-buttontabletletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item--current .brz-menu__sub-menu {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item-dropdown .brz-menu__item {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {left: 0;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown .brz-menu__dropdown {position: relative;top: auto;left: auto;transform: translate(0,0);height: 0;overflow: hidden;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-sjisw.brz-menu__preview .brz-menu__dropdown .brz-menu__item:hover > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-sjisw .brz-mega-menu__dropdown {display: none;}}
@media (max-width:767px) {.brz .brz-css-sjisw .brz-menu__ul {font-family: var(--brz-buttonfontfamily);color: rgba(0,0,0,1);}
.brz .brz-css-sjisw .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-sjisw .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-sjisw .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-sjisw .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-sjisw .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-sjisw .brz-menu__item__icon {margin: 0 15px 0 0;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item {color: rgba(0,0,0,1);background-color: transparent;border: 0px solid rgba(85,85,85,1);border-radius: 0px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > a {border-radius: 0px;}
.brz .brz-css-sjisw .brz-mm-menu__item {font-family: var(--brz-buttonfontfamily);color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-sjisw {background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel:before {background-image: none;background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,.8);}
.brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {background-image: none;}
.brz .brz-css-sjisw.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-sjisw .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-menu__item--current:not(.brz-mm-menu__item.brz-mm-menu__item--current:active) {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-menu__item--current:not(brz-mm-menu__item.brz-mm-menu__item--current:active):hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__sub-menu {font-family: var(--brz-buttonfontfamily);color: rgba(255,255,255,1);background-color: rgba(51,51,51,1);box-shadow: none;border-radius: 0px;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a {flex-flow: row nowrap;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__sub-item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: rgba(51,51,51,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-sjisw .brz-menu__item--current .brz-menu__sub-menu {box-shadow: none;}
.brz .brz-css-sjisw .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:767px) {.brz .brz-css-sjisw .brz-menu__ul {font-size: var(--brz-buttonmobilefontsize);font-weight: var(--brz-buttonmobilefontweight);line-height: var(--brz-buttonmobilelineheight);letter-spacing: var(--brz-buttonmobileletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--current:not(.brz-menu__item.brz-menu__item--current:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:not(.brz-a:active) {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-sjisw .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item {font-size: var(--brz-buttonmobilefontsize);font-weight: var(--brz-buttonmobilefontweight);line-height: var(--brz-buttonmobilelineheight);letter-spacing: var(--brz-buttonmobileletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz nav.brz-mm-menu.brz-css-sjisw {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item:hover > .brz-mm-listitem__text {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-sjisw .brz-mm-menu__item__icon {margin: 0 15px 0 0;font-size: 12px;}
.brz .brz-css-sjisw .brz-mm-navbar {font-family: var(--brz-buttonfontfamily);font-size: var(--brz-buttonmobilefontsize);font-weight: var(--brz-buttonmobilefontweight);line-height: var(--brz-buttonmobilelineheight);letter-spacing: var(--brz-buttonmobileletterspacing);border-color: rgba(85,85,85,1);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-menu__item.brz-mm-listitem_opened {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(var(--brz-buttonmobilelineheight) * var(--brz-buttonmobilefontsize) + 10px + 10px);padding-right: 20px;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-sjisw .brz-mm-panels > .brz-mm-panel {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-mm-listitem {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__sub-menu {font-size: var(--brz-buttonmobilefontsize);font-weight: var(--brz-buttonmobilefontweight);line-height: var(--brz-buttonmobilelineheight);letter-spacing: var(--brz-buttonmobileletterspacing);transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__sub-menu .brz-a:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item--current .brz-menu__sub-menu {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__item-dropdown .brz-menu__item {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:hover:after {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sjisw .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start'] {right: 0;}
.brz .brz-css-sjisw > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start'] {left: 0;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item-dropdown .brz-menu__dropdown {position: relative;top: auto;left: auto;transform: translate(0,0);height: 0;overflow: hidden;}
.brz .brz-css-sjisw .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-sjisw.brz-menu__preview .brz-menu__dropdown .brz-menu__item:hover > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-sjisw .brz-mega-menu__dropdown {display: block;}}
.brz .brz-css-lvcsw {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-lvcsw {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lvcsw {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lvcsw {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-lvcsw {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-lvcsw {display: flex;position: relative;}}
.brz .brz-css-bonir {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bonir {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
@media (max-width:767px) {.brz .brz-css-bonir {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
.brz .brz-css-bmhry {padding: 0px 5px 20px 5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bmhry {padding: 0px 5px 20px 5px;}}
@media (max-width:767px) {.brz .brz-css-bmhry {padding: 0px 5px 20px 5px;}}
.brz .brz-css-vbehc {z-index: auto;margin: 0;}
.brz .brz-css-vbehc.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-vbehc .brz-container {justify-content: center;}
.brz .brz-css-vbehc > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-vbehc > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-vbehc {display: block;}}
@media (min-width:991px) {.brz .brz-css-vbehc > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vbehc {z-index: auto;margin: 0;}
.brz .brz-css-vbehc.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-vbehc .brz-container {justify-content: center;}
.brz .brz-css-vbehc > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-vbehc > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vbehc {display: block;}}
@media (max-width:767px) {.brz .brz-css-vbehc {z-index: auto;margin: 0;}
.brz .brz-css-vbehc.brz-section .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-vbehc .brz-container {justify-content: center;}
.brz .brz-css-vbehc > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-vbehc > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-vbehc {display: block;}}
.brz .brz-css-nawap {padding: 75px 0px 75px 0px;}
.brz .brz-css-nawap > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image {background-image: none;display: block;background-size: cover;background-repeat: no-repeat;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
@media (min-width:991px) {.brz .brz-css-nawap > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image {background-attachment: scroll;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nawap {padding: 50px 15px 50px 15px;}
.brz .brz-css-nawap > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image {background-image: none;display: block;background-size: cover;background-repeat: no-repeat;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-nawap > .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-nawap > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-nawap {padding: 25px 15px 25px 15px;}
.brz .brz-css-nawap > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0px;mix-blend-mode: normal;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image {background-image: none;display: block;background-size: cover;background-repeat: no-repeat;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__top {background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__top::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-shape__bottom::after {background-image: none;-webkit-mask-image: none;background-size: 100% 100px;height: 100px;}}
@media (max-width:767px) {.brz .brz-css-nawap > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-map {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nawap > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-cfvxd {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-cfvxd {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cfvxd {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cfvxd {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-cfvxd {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-cfvxd {max-width: 100%;}}
.brz .brz-css-sosxv.brz-btn {display: flex;align-items: center;justify-content: center;font-family: var(--brz-buttonfontfamily);font-weight: var(--brz-buttonfontweight);font-size: var(--brz-buttonfontsize);line-height: var(--brz-buttonlineheight);letter-spacing: var(--brz-buttonletterspacing);color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),0);border-radius: 2px;background-color: rgba(var(--brz-global-color3),1);background-image: none;box-shadow: none;padding: 14px 42px 14px 42px;flex-flow: row-reverse nowrap;}
.brz .brz-css-sosxv.brz-btn.brz-btn-submit {color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-sosxv .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),0);flex-flow: row-reverse nowrap;border-radius: 2px;}
@media (min-width:991px) {.brz .brz-css-sosxv.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sosxv.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sosxv .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (min-width:991px) {.brz .brz-css-sosxv.brz-btn:hover {background-color: rgba(var(--brz-global-color3),.8);}
.brz .brz-css-sosxv.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-sosxv.brz-btn {display: flex;align-items: center;justify-content: center;font-family: var(--brz-buttonfontfamily);font-weight: var(--brz-buttontabletfontweight);font-size: var(--brz-buttontabletfontsize);line-height: var(--brz-buttontabletlineheight);letter-spacing: var(--brz-buttontabletletterspacing);color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),0);border-radius: 2px;background-color: rgba(var(--brz-global-color3),1);background-image: none;box-shadow: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-sosxv.brz-btn.brz-btn-submit {color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-sosxv .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sosxv.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sosxv.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sosxv .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
@media (max-width:767px) {.brz .brz-css-sosxv.brz-btn {display: flex;align-items: center;justify-content: center;font-family: var(--brz-buttonfontfamily);font-weight: var(--brz-buttonmobilefontweight);font-size: var(--brz-buttonmobilefontsize);line-height: var(--brz-buttonmobilelineheight);letter-spacing: var(--brz-buttonmobileletterspacing);color: rgba(var(--brz-global-color8),1);border: 2px solid rgba(var(--brz-global-color3),0);border-radius: 2px;background-color: rgba(var(--brz-global-color3),1);background-image: none;box-shadow: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-sosxv.brz-btn.brz-btn-submit {color: rgba(var(--brz-global-color8),1);background-color: rgba(var(--brz-global-color3),1);}
.brz .brz-css-sosxv .brz-btn--story-container {border: 2px solid rgba(var(--brz-global-color3),0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:767px) {.brz .brz-css-sosxv.brz-btn {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sosxv.brz-btn.brz-btn-submit {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}
.brz .brz-css-sosxv .brz-btn--story-container {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow;}}
.brz .brz-css-qgcsj {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qgcsj {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}}
@media (max-width:767px) {.brz .brz-css-qgcsj {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 1;}}
.brz .brz-css-ywneb {width: 75%;}
.brz .brz-css-ywneb .brz-hr {border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-container:before {mask-size: 20px 100%;-webkit-mask-size: 20px 100%;border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-container:after {display: none;mask-size: 20px 100%;-webkit-mask-size: 20px 100%;border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-content {color: rgba(0,0,0,1);}
.brz .brz-css-ywneb.brz-line-text .brz-line-content {font-family: Lato,sans-serif;font-size: 20px;line-height: 1;font-weight: 400;letter-spacing: 0px;margin: 0 10px;}
.brz .brz-css-ywneb.brz-line-icon .brz-line-content {font-size: 16px;transform: rotate(0deg);}
.brz .brz-css-ywneb .brz-line-icon-wrapper {box-shadow: none;border-radius: 0px;margin: 0 10px;background-color: rgba(255,0,0,0);border: 0px solid rgba(0,0,0,0);padding: 0px;}
@media (min-width:991px) {.brz .brz-css-ywneb .brz-hr {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-container:before {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-container:after {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-content {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-icon-wrapper {transition-duration: .5s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ywneb {width: 75%;}
.brz .brz-css-ywneb .brz-hr {border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-container:before {mask-size: 20px 100%;-webkit-mask-size: 20px 100%;border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-container:after {display: none;mask-size: 20px 100%;-webkit-mask-size: 20px 100%;border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-content {color: rgba(0,0,0,1);}
.brz .brz-css-ywneb.brz-line-text .brz-line-content {font-family: Lato,sans-serif;font-size: 20px;line-height: 1;font-weight: 400;letter-spacing: 0px;margin: 0 10px;}
.brz .brz-css-ywneb.brz-line-icon .brz-line-content {font-size: 16px;transform: rotate(0deg);}
.brz .brz-css-ywneb .brz-line-icon-wrapper {box-shadow: none;border-radius: 0px;margin: 0 10px;background-color: rgba(255,0,0,0);border: 0px solid rgba(0,0,0,0);padding: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ywneb .brz-hr {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-container:before {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-container:after {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-content {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-icon-wrapper {transition-duration: .5s;}}
@media (max-width:767px) {.brz .brz-css-ywneb {width: 75%;}
.brz .brz-css-ywneb .brz-hr {border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-container:before {mask-size: 20px 100%;-webkit-mask-size: 20px 100%;border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-container:after {display: none;mask-size: 20px 100%;-webkit-mask-size: 20px 100%;border-top: 2px solid rgba(var(--brz-global-color7),.75);border-radius: 0px;}
.brz .brz-css-ywneb .brz-line-content {color: rgba(0,0,0,1);}
.brz .brz-css-ywneb.brz-line-text .brz-line-content {font-family: Lato,sans-serif;font-size: 20px;line-height: 1;font-weight: 400;letter-spacing: 0px;margin: 0 10px;}
.brz .brz-css-ywneb.brz-line-icon .brz-line-content {font-size: 16px;transform: rotate(0deg);}
.brz .brz-css-ywneb .brz-line-icon-wrapper {box-shadow: none;border-radius: 0px;margin: 0 10px;background-color: rgba(255,0,0,0);border: 0px solid rgba(0,0,0,0);padding: 0px;}}
@media (max-width:767px) {.brz .brz-css-ywneb .brz-hr {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-container:before {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-container:after {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-content {transition-duration: .5s;}
.brz .brz-css-ywneb .brz-line-icon-wrapper {transition-duration: .5s;}}
.brz .brz-css-zvnth {max-width: 100%;}
.brz .brz-css-zvnth .brz-video-content {border: 0px solid rgba(102,115,141,0);box-shadow: none;border-radius: 0px;background-color: rgba(255,255,255,0);background-image: none;}
.brz .brz-css-zvnth.brz-custom-video video {padding: 0;}
.brz .brz-css-zvnth .brz-iframe {padding: 0;}
.brz .brz-css-zvnth .brz-video-content .brz-video-elem {padding: 0;}
@media (min-width:991px) {.brz .brz-css-zvnth {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth .brz-video-content {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth .brz-iframe, .brz-css-zvnth:hover .brz-video__cover:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth.brz-custom-video video {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zvnth {max-width: 100%;}
.brz .brz-css-zvnth .brz-video-content {border: 0px solid rgba(102,115,141,0);box-shadow: none;border-radius: 0px;background-color: rgba(255,255,255,0);background-image: none;}
.brz .brz-css-zvnth.brz-custom-video video {padding: 0;}
.brz .brz-css-zvnth .brz-iframe {padding: 0;}
.brz .brz-css-zvnth .brz-video-content .brz-video-elem {padding: 0;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zvnth {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth .brz-video-content {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth .brz-iframe, .brz-css-zvnth:hover .brz-video__cover:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth.brz-custom-video video {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}}
@media (max-width:767px) {.brz .brz-css-zvnth {max-width: 100%;}
.brz .brz-css-zvnth .brz-video-content {border: 0px solid rgba(102,115,141,0);box-shadow: none;border-radius: 0px;background-color: rgba(255,255,255,0);background-image: none;}
.brz .brz-css-zvnth.brz-custom-video video {padding: 0;}
.brz .brz-css-zvnth .brz-iframe {padding: 0;}
.brz .brz-css-zvnth .brz-video-content .brz-video-elem {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-zvnth {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth .brz-video-content {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth .brz-iframe, .brz-css-zvnth:hover .brz-video__cover:before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-zvnth.brz-custom-video video {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}}
.brz .brz-css-ghdps {padding-top: 56.25%;}
.brz .brz-css-ghdps .brz-video__cover::before {background-image: none;background-position: 50% 50%;background-size: 100%;margin: 0;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon {font-size: 28px;width: 80px;height: 80px;background-color: rgba(214,43,99,.75);}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon .brz-span {color: rgba(0,0,238,1);}
@media (min-width:991px) {.brz .brz-css-ghdps .brz-video__cover::before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon .brz-span {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}}
@media (min-width:991px) {.brz .brz-css-ghdps:hover .brz-video__cover .brz-video__cover-icon {background-color: rgba(35,157,219,.75);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ghdps {padding-top: 56.25%;}
.brz .brz-css-ghdps .brz-video__cover::before {background-image: none;background-position: 50% 50%;background-size: 100%;margin: 0;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon {font-size: 28px;width: 80px;height: 80px;background-color: rgba(214,43,99,.75);}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon .brz-span {color: rgba(0,0,238,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ghdps .brz-video__cover::before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon .brz-span {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}}
@media (max-width:767px) {.brz .brz-css-ghdps {padding-top: 56.25%;}
.brz .brz-css-ghdps .brz-video__cover::before {background-image: none;background-position: 50% 50%;background-size: 100%;margin: 0;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon {font-size: 28px;width: 80px;height: 80px;background-color: rgba(214,43,99,.75);}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon .brz-span {color: rgba(0,0,238,1);}}
@media (max-width:767px) {.brz .brz-css-ghdps .brz-video__cover::before {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}
.brz .brz-css-ghdps .brz-video__cover .brz-video__cover-icon .brz-span {transition-duration: .5s;transition-property: filter,color,background,border-color,box-shadow,transform;}}
.brz .brz-css-zphyh {max-width: 36%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-zphyh .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-zphyh .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-zphyh {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-zphyh .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-zphyh .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zphyh {max-width: 36%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-zphyh .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-zphyh .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zphyh {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-zphyh .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-zphyh .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-zphyh {max-width: 36%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-zphyh .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-zphyh .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-zphyh {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-zphyh .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-zphyh .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-tzhvy {padding-top: 81.3016%;}
.brz .brz-css-tzhvy > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tzhvy {padding-top: 81.2929%;}
.brz .brz-css-tzhvy > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-tzhvy {padding-top: 81.3049%;}
.brz .brz-css-tzhvy > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-bdlyd {max-width: 32%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-bdlyd .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-bdlyd .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-bdlyd {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-bdlyd .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-bdlyd .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bdlyd {max-width: 32%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-bdlyd .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-bdlyd .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bdlyd {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-bdlyd .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-bdlyd .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-bdlyd {max-width: 32%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-bdlyd .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-bdlyd .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-bdlyd {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-bdlyd .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-bdlyd .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-cvknw {padding-top: 98.0357%;}
.brz .brz-css-cvknw > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cvknw {padding-top: 98.0324%;}
.brz .brz-css-cvknw > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-cvknw {padding-top: 98.0378%;}
.brz .brz-css-cvknw > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-njjkx {max-width: 33%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-njjkx .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-njjkx .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-njjkx {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-njjkx .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-njjkx .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-njjkx {max-width: 33%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-njjkx .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-njjkx .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-njjkx {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-njjkx .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-njjkx .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-njjkx {max-width: 33%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-njjkx .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-njjkx .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-njjkx {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-njjkx .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-njjkx .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-vompw {padding-top: 100%;}
.brz .brz-css-vompw > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vompw {padding-top: 100%;}
.brz .brz-css-vompw > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-vompw {padding-top: 100%;}
.brz .brz-css-vompw > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-cznhi {max-width: 34%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-cznhi .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-cznhi .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-cznhi {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cznhi .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cznhi .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cznhi {max-width: 34%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-cznhi .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-cznhi .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cznhi {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cznhi .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cznhi .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-cznhi {max-width: 34%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-cznhi .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-cznhi .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-cznhi {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cznhi .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cznhi .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-wvdcn {padding-top: 100%;}
.brz .brz-css-wvdcn > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wvdcn {padding-top: 100%;}
.brz .brz-css-wvdcn > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-wvdcn {padding-top: 100%;}
.brz .brz-css-wvdcn > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-focgr {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-focgr .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-focgr .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-focgr {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-focgr .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-focgr .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-focgr {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-focgr .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-focgr .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-focgr {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-focgr .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-focgr .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-focgr {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-focgr .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-focgr .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-focgr {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-focgr .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-focgr .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-dleqk {padding-top: 67.3331%;}
.brz .brz-css-dleqk > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dleqk {padding-top: 67.3327%;}
.brz .brz-css-dleqk > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-dleqk {padding-top: 67.3326%;}
.brz .brz-css-dleqk > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-dalio {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-dalio .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-dalio .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-dalio {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-dalio .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-dalio .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dalio {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-dalio .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-dalio .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dalio {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-dalio .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-dalio .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-dalio {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-dalio .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-dalio .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-dalio {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-dalio .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-dalio .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-ynozr {padding-top: 67.2442%;}
.brz .brz-css-ynozr > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ynozr {padding-top: 67.2441%;}
.brz .brz-css-ynozr > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-ynozr {padding-top: 67.2442%;}
.brz .brz-css-ynozr > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-acjya {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-acjya .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-acjya .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-acjya {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-acjya .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-acjya .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-acjya {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-acjya .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-acjya .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-acjya {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-acjya .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-acjya .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-acjya {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-acjya .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-acjya .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-acjya {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-acjya .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-acjya .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-zdkxp {padding-top: 67.3836%;}
.brz .brz-css-zdkxp > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zdkxp {padding-top: 67.3819%;}
.brz .brz-css-zdkxp > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-zdkxp {padding-top: 67.3837%;}
.brz .brz-css-zdkxp > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-smjtk .brz-carousel__slider {padding-left: 70px;padding-right: 70px;}
.brz .brz-css-smjtk .brz-carousel__slider .slick-list {padding-top: 10px;padding-bottom: 30px;margin-left: 0px;margin-right: 0px;}
.brz .brz-css-smjtk .brz-carousel__slider .slick-list .slick-track .slick-slide {padding-left: calc(0px / 2);padding-right: calc(0px / 2);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow {color: rgba(0,0,0,1);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow-prev {left: 30px;}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow-next {right: 30px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-smjtk .brz-carousel__slider {padding-left: 0px;padding-right: 0px;}
.brz .brz-css-smjtk .brz-carousel__slider .slick-list {padding-top: 10px;padding-bottom: 30px;margin-left: 0px;margin-right: 0px;}
.brz .brz-css-smjtk .brz-carousel__slider .slick-list .slick-track .slick-slide {padding-left: calc(0px / 2);padding-right: calc(0px / 2);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow {color: rgba(0,0,0,1);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow-prev {left: 30px;}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow-next {right: 30px;}}
@media (max-width:767px) {.brz .brz-css-smjtk .brz-carousel__slider {padding-left: 0px;padding-right: 0px;}
.brz .brz-css-smjtk .brz-carousel__slider .slick-list {padding-top: 10px;padding-bottom: 30px;margin-left: 0px;margin-right: 0px;}
.brz .brz-css-smjtk .brz-carousel__slider .slick-list .slick-track .slick-slide {padding-left: calc(0px / 2);padding-right: calc(0px / 2);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow {color: rgba(0,0,0,1);}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow-prev {left: 30px;}
.brz .brz-css-smjtk .brz-carousel__slider .brz-slick-slider__arrow-next {right: 30px;}}
.brz .brz-css-ghoro {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-ghoro .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-ghoro .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-ghoro {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ghoro .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ghoro .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ghoro {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-ghoro .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-ghoro .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ghoro {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ghoro .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ghoro .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-ghoro {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-ghoro .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-ghoro .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-ghoro {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ghoro .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ghoro .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-oszil {padding-top: 75.1387%;}
.brz .brz-css-oszil > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oszil {padding-top: 75.1384%;}
.brz .brz-css-oszil > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-oszil {padding-top: 75.1395%;}
.brz .brz-css-oszil > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-jzkmr {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-jzkmr .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-jzkmr .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-jzkmr {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jzkmr .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jzkmr .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jzkmr {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-jzkmr .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-jzkmr .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jzkmr {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jzkmr .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jzkmr .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-jzkmr {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-jzkmr .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-jzkmr .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-jzkmr {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jzkmr .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-jzkmr .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-grwgu {padding-top: 75.5207%;}
.brz .brz-css-grwgu > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-grwgu {padding-top: 75.5198%;}
.brz .brz-css-grwgu > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-grwgu {padding-top: 75.5209%;}
.brz .brz-css-grwgu > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-kcvbl {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-kcvbl .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-kcvbl .brz-picture {-webkit-mask-image: none;mask-image: none;}
@media (min-width:991px) {.brz .brz-css-kcvbl {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-kcvbl .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-kcvbl .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kcvbl {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-kcvbl .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-kcvbl .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kcvbl {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-kcvbl .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-kcvbl .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-kcvbl {max-width: 100%;height: auto;box-shadow: none;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
.brz .brz-css-kcvbl .brz-picture:after {box-shadow: none;background-color: rgba(255,255,255,0);background-image: none;border-radius: 0px;}
.brz .brz-css-kcvbl .brz-picture {-webkit-mask-image: none;mask-image: none;}}
@media (max-width:767px) {.brz .brz-css-kcvbl {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-kcvbl .brz-picture:after {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-kcvbl .brz-picture {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-ldkai {padding-top: 75.3333%;}
.brz .brz-css-ldkai > .brz-img {position: absolute;width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ldkai {padding-top: 75.3333%;}
.brz .brz-css-ldkai > .brz-img {position: absolute;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-ldkai {padding-top: 75.3326%;}
.brz .brz-css-ldkai > .brz-img {position: absolute;width: 100%;}}
.brz .brz-css-exoys .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-exoys .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-exoys .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-exoys .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-exoys .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-exoys .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-exoys .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-exoys .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}}
@media (max-width:767px) {.brz .brz-css-exoys .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-exoys .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-exoys .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-exoys .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}}
.brz .brz-css-upuop {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 18px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__field-label {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 16px;font-weight: 400;letter-spacing: 0px;text-align: left;line-height: 1.5;}
.brz .brz-css-upuop .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 1px solid rgba(220,222,225,1);border-radius: 0px;box-shadow: none;min-height: 57px;}
.brz .brz-css-upuop.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 14px 24px 14px 24px;}
.brz .brz-css-upuop .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-upuop .brz-forms2__radio {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__checkbox {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-upuop .form-alert {font-family: Lato,sans-serif;}
@media (min-width:991px) {.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__select-item__input {transition-duration: .5s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-upuop {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__field-label {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;font-weight: 400;letter-spacing: 0px;text-align: left;line-height: 1.5;}
.brz .brz-css-upuop .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 1px solid rgba(220,222,225,1);border-radius: 0px;box-shadow: none;min-height: 51px;}
.brz .brz-css-upuop.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 14px 24px 14px 24px;}
.brz .brz-css-upuop .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-upuop .brz-forms2__radio {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__checkbox {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-upuop .form-alert {font-family: Lato,sans-serif;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__select-item__input {transition-duration: .5s;}}
@media (max-width:767px) {.brz .brz-css-upuop {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__field-label {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;font-weight: 400;letter-spacing: 0px;text-align: left;line-height: 1.5;}
.brz .brz-css-upuop .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 1px solid rgba(220,222,225,1);border-radius: 0px;box-shadow: none;min-height: 43px;}
.brz .brz-css-upuop.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 10px 20px 10px 20px;}
.brz .brz-css-upuop .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-upuop .brz-forms2__radio {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__checkbox {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-upuop .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-upuop .form-alert {font-family: Lato,sans-serif;}}
@media (max-width:767px) {.brz .brz-css-upuop .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-upuop .brz-forms2__select-item__input {transition-duration: .5s;}}
.brz .brz-css-fnvhe .select2-dropdown {box-shadow: none;}
.brz .brz-css-fnvhe .select2-results__options {font-family: Lato,sans-serif;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border-radius: 0px;}
.brz .brz-css-fnvhe .select2-results__option {border: 1px solid rgba(220,222,225,1);}
.brz .brz-css-fnvhe .select2-selection--single {padding: 14px 24px 14px 24px;}
.brz .brz-css-fnvhe .select2-selection--multiple {padding: 14px 24px 14px 24px;}
.brz .brz-css-fnvhe .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,1);}
@media (min-width:991px) {.brz .brz-css-fnvhe .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fnvhe .select2-dropdown {box-shadow: none;}
.brz .brz-css-fnvhe .select2-results__options {font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border-radius: 0px;}
.brz .brz-css-fnvhe .select2-results__option {border: 1px solid rgba(220,222,225,1);}
.brz .brz-css-fnvhe .select2-selection--single {padding: 14px 24px 14px 24px;}
.brz .brz-css-fnvhe .select2-selection--multiple {padding: 14px 24px 14px 24px;}
.brz .brz-css-fnvhe .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fnvhe .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
@media (max-width:767px) {.brz .brz-css-fnvhe .select2-dropdown {box-shadow: none;}
.brz .brz-css-fnvhe .select2-results__options {font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border-radius: 0px;}
.brz .brz-css-fnvhe .select2-results__option {border: 1px solid rgba(220,222,225,1);}
.brz .brz-css-fnvhe .select2-selection--single {padding: 10px 20px 10px 20px;}
.brz .brz-css-fnvhe .select2-selection--multiple {padding: 10px 20px 10px 20px;}
.brz .brz-css-fnvhe .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,1);}}
@media (max-width:767px) {.brz .brz-css-fnvhe .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
.brz .brz-css-zsekj {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-zsekj .brz-textarea {height: auto;}
.brz .brz-css-zsekj .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-zsekj .brz-forms2__radio-option {flex-basis: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zsekj {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-zsekj .brz-textarea {height: auto;}
.brz .brz-css-zsekj .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-zsekj .brz-forms2__radio-option {flex-basis: 100%;}}
@media (max-width:767px) {.brz .brz-css-zsekj {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-zsekj .brz-textarea {height: auto;}
.brz .brz-css-zsekj .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-zsekj .brz-forms2__radio-option {flex-basis: 100%;}}
.brz .brz-css-vgept {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vgept {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-vgept {padding: 0;}}
.brz .brz-css-fheik {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fheik {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-fheik {margin: 0;}}
.brz .brz-css-olrtq {flex: 1 1 100%;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-olrtq {flex: 1 1 100%;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-olrtq {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-rkykv {padding: 15px 0px 0px 0px;}
.brz .brz-css-rkykv > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,0);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rkykv {padding: 15px 0px 0px 0px;}
.brz .brz-css-rkykv > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,0);}}
@media (max-width:767px) {.brz .brz-css-rkykv {padding: 15px 0px 0px 0px;}
.brz .brz-css-rkykv > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,0);}}
.brz .brz-css-qxmak {padding: 5px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qxmak {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-qxmak {padding: 0;}}
.brz .brz-css-kktqy {flex: 1 1 18.3%;max-width: 18.3%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kktqy {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-kktqy {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
.brz .brz-css-urepw {padding: 0px 5px 0px 5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-urepw {padding: 5px 35% 5px 35%;}}
@media (max-width:767px) {.brz .brz-css-urepw {padding: 0px 25% 25px 25%;}}
.brz .brz-css-emaog {margin: 10px 0px 10px 0px;justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-emaog {margin: 10px 0px 10px 0px;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-emaog {margin: 10px 0px 0px 0px;justify-content: center;}}
.brz .brz-css-tvtqc {flex: 1 1 81.7%;max-width: 81.7%;justify-content: center;}
.brz .brz-css-tvtqc > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tvtqc {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-tvtqc > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-tvtqc {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-tvtqc > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-tvtqc > * {display: none;}}
.brz .brz-css-qyonc {margin: 0;padding: 0px 0px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qyonc {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-qyonc {margin: 0;padding: 0;}}
.brz .brz-css-tlcaq {flex: 1 1 29.8%;max-width: 29.8%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tlcaq {flex: 1 1 8.1%;max-width: 8.1%;}}
@media (max-width:767px) {.brz .brz-css-tlcaq {flex: 1 1 100%;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-tlcaq > * {display: none;}}
.brz .brz-css-fwaol {flex: 1 1 25.2%;max-width: 25.2%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fwaol {flex: 1 1 27.1%;max-width: 27.1%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-fwaol {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}}
.brz .brz-css-vyirh {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vyirh {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-vyirh {padding: 0px 15px 0px 0px;}}
.brz .brz-css-zscsh {margin: 10px 0px 5px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zscsh {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-zscsh {margin: 10px 0px 10px 0px;}}
.brz .brz-css-gifmn {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: var(--brz-heading6fontfamily) !important;font-size: var(--brz-heading6fontsize);line-height: var(--brz-heading6lineheight);font-weight: var(--brz-heading6fontweight);letter-spacing: var(--brz-heading6letterspacing);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gifmn {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: var(--brz-heading6fontfamily) !important;font-size: var(--brz-heading6tabletfontsize);line-height: var(--brz-heading6tabletlineheight);font-weight: var(--brz-heading6tabletfontweight);letter-spacing: var(--brz-heading6tabletletterspacing);}}
@media (max-width:767px) {.brz .brz-css-gifmn {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: var(--brz-heading6fontfamily) !important;font-size: var(--brz-heading6mobilefontsize);line-height: var(--brz-heading6mobilelineheight);font-weight: var(--brz-heading6mobilefontweight);letter-spacing: var(--brz-heading6mobileletterspacing);}}
.brz .brz-css-tnffo {margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tnffo {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-tnffo {margin: 10px 0px 10px 0px;}}
.brz .brz-css-elioi .brz-icon__container {margin-left: auto;margin-right: 13px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-elioi .brz-icon__container {margin-left: auto;margin-right: 13px;}}
@media (max-width:767px) {.brz .brz-css-elioi .brz-icon__container {margin-left: auto;margin-right: 13px;}}
.brz .brz-css-ckohe {font-size: 17px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ckohe {font-size: 17px;}}
@media (max-width:767px) {.brz .brz-css-ckohe {font-size: 17px;}}
.brz .brz-css-wieqn {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: Barlow,sans-serif !important;font-size: 16px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wieqn {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: Barlow,sans-serif !important;font-size: 15px;line-height: 1.1;font-weight: 400;letter-spacing: 0px;}}