-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebdesign-en.html
1337 lines (1337 loc) · 192 KB
/
webdesign-en.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=""><head><meta charset="utf-8"><link rel="canonical" href="https://brizy-project-3061450-kfvmdc0nl-bodnar1212.vercel.app/webdesign-en" /><link rel="icon" href="https://a-cloud.b-cdn.net/media/iW=32&iH=any/c5a4ee02ac9ab9b50b97e9c0198d0027.png" sizes="32x32"/><link rel="icon" href="https://a-cloud.b-cdn.net/media/iW=192&iH=any/c5a4ee02ac9ab9b50b97e9c0198d0027.png" sizes="192x192"/><link rel="apple-touch-icon-precomposed" href="https://a-cloud.b-cdn.net/media/iW=180&iH=any/c5a4ee02ac9ab9b50b97e9c0198d0027.png"/><title>Webdesign | Prize Agência de Propaganda</title><meta name="description" content="Prize Ad Agency develops fast websites, responsive, exclusive and original."><meta property="og:title" content="Prize Comunicação"><meta property="og:description" content="Agência de propaganda e marketing especializada em comunicação integrada com conteúdos originais para mídias e redes sociais."><meta property="og:image" content="assets/img/3a1e03bc56f0783fc4a79bfbb5fe0b7d.png"><meta property="og:url" content="https://brizy-project-3061450-kfvmdc0nl-bodnar1212.vercel.app/webdesign-en"><meta content="summary_large_image" name="twitter:card"><meta content="width=device-width,initial-scale=1" name="viewport"><link class="brz-link brz-link-preview" href="assets/d52cf5be957ba78be421aa8a36beec85.css" rel="stylesheet"><link class="brz-link brz-link-preview-pro" href="assets/45a0eafa711e5f8433709ee1ec7a1960.css" rel="stylesheet"><style class="brz-style">.brz .css-1h9r0b, .brz [data-css-1h9r0b] {color: rgba(28,28,28,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 48px;height: 48px;font-size: 48px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-1h9r0b:hover, .brz [data-css-1h9r0b]:hover {color: rgba(28,28,28,.8);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1h9r0b, .brz [data-css-1h9r0b] {width: 48px;height: 48px;font-size: 48px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-1h9r0b, .brz [data-css-1h9r0b] {width: 48px;height: 48px;font-size: 48px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-1rwad8p, .brz [data-css-1rwad8p] {color: rgba(255,255,255,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-1rwad8p:hover, .brz [data-css-1rwad8p]:hover {color: rgba(73,108,209,.8);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1rwad8p, .brz [data-css-1rwad8p] {width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-1rwad8p, .brz [data-css-1rwad8p] {width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-1p8yzav, .brz [data-css-1p8yzav] {color: rgba(255,255,255,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-1p8yzav:hover, .brz [data-css-1p8yzav]:hover {color: rgba(235,82,82,.8);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1p8yzav, .brz [data-css-1p8yzav] {width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-1p8yzav, .brz [data-css-1p8yzav] {width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0px;stroke-width: 0;}}</style><style class="brz-style">@media (min-width:991px) {.brz .brz-css-rjqjh {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rjqjh {display: block;}}
@media (max-width:767px) {.brz .brz-css-rjqjh {display: block;}}
.brz .brz-css-awyrz {padding: 75px 0px 75px 0px;margin: 0;}
.brz .brz-css-awyrz > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-awyrz {padding: 50px 15px 50px 15px;margin: 0;}
.brz .brz-css-awyrz > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}}
@media (max-width:767px) {.brz .brz-css-awyrz {padding: 25px 15px 25px 15px;margin: 0;}
.brz .brz-css-awyrz > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-awyrz > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}}
.brz .brz-css-wneis {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-wneis {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wneis {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wneis {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-wneis {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-wneis {max-width: 100%;}}
.brz .brz-css-lrlqw {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-lrlqw > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-lrlqw > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-lrlqw {min-height: auto;display: flex;}
.brz .brz-css-lrlqw > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .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-lrlqw {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-lrlqw > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-lrlqw > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lrlqw {min-height: auto;display: flex;}
.brz .brz-css-lrlqw > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .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-lrlqw {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-lrlqw > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-lrlqw > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-lrlqw {min-height: auto;display: flex;}
.brz .brz-css-lrlqw > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-lrlqw > .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-jquuy {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jquuy {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-jquuy {padding: 0;max-width: 100%;}}
.brz .brz-css-ylaho {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-ylaho > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
@media (min-width:991px) {.brz .brz-css-ylaho > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ylaho > .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-ylaho {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-ylaho > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ylaho > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ylaho > .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-ylaho {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-ylaho > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 10px 0px 10px 0px;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}}
@media (max-width:767px) {.brz .brz-css-ylaho > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-ylaho > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-yuanc {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;}
@media (min-width:991px) {.brz .brz-css-yuanc {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-yuanc {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yuanc {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-yuanc {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-yuanc {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-xjgry {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-xjgry {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xjgry {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xjgry {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-xjgry {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-xjgry {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-ncbcx {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ncbcx {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-ncbcx {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-rdrao {max-width: 93%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-rdrao {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rdrao:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rdrao .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rdrao {max-width: 18%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rdrao {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rdrao:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rdrao .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-rdrao {max-width: 35%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-rdrao {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rdrao:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rdrao .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-uflbm {padding-top: 31.6689%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uflbm {padding-top: 33.3333%;}}
@media (max-width:767px) {.brz .brz-css-uflbm {padding-top: 32.206%;}}
.brz .brz-css-coahl {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-coahl {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-coahl {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (min-width:991px) {.brz .brz-css-ibbji .brz-mm-menu__icon {display: none;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-ibbji .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ibbji .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-ibbji .brz-menu {display: none;}}
@media (max-width:767px) {.brz .brz-css-ibbji .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-ibbji .brz-menu {display: none;}}
.brz .brz-css-plztq {font-family: Overpass,sans-serif;color: rgba(0,0,0,1);}
.brz .brz-css-plztq .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-plztq .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-plztq .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-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-plztq .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-mm-menu__item {font-family: Overpass,sans-serif;color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-plztq {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-plztq .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-plztq.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-plztq .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq.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-plztq .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__sub-menu {font-family: Overpass,sans-serif;color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-plztq .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: undefined;}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-plztq .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}
@media (min-width:991px) {.brz .brz-css-plztq {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-plztq .brz-mm-menu__item {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-plztq .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-plztq .brz-mm-navbar {font-family: Overpass,sans-serif;font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;border-color: rgba(85,85,85,1);}
.brz .brz-css-plztq.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(24px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-plztq .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-plztq .brz-menu__dropdown-left {left: calc(100% + 5px);}
.brz .brz-css-plztq .brz-menu__dropdown-right {right: calc(100% + 5px);}
.brz .brz-css-plztq .brz-menu__dropdown-left:before {left: -5px;}
.brz .brz-css-plztq .brz-menu__dropdown-right:before {right: -5px;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-plztq .brz-mega-menu__dropdown {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-plztq {font-family: Overpass,sans-serif;color: rgba(0,0,0,1);}
.brz .brz-css-plztq .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-plztq .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-plztq .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-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-plztq .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-mm-menu__item {font-family: Overpass,sans-serif;color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-plztq {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-plztq .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-plztq.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-plztq .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq.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-plztq .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__sub-menu {font-family: Overpass,sans-serif;color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-plztq .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: undefined;}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-plztq .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-plztq .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-plztq {font-size: 17px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-plztq .brz-mm-menu__item {font-size: 17px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-plztq .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-plztq .brz-mm-navbar {font-family: Overpass,sans-serif;font-size: 17px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;border-color: rgba(85,85,85,1);}
.brz .brz-css-plztq.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(27.2px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-plztq .brz-menu__sub-menu {font-size: 17px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-plztq .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-plztq .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-plztq .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-plztq.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-plztq .brz-mega-menu__dropdown {display: none;}}
@media (max-width:767px) {.brz .brz-css-plztq {font-family: Overpass,sans-serif;color: rgba(0,0,0,1);}
.brz .brz-css-plztq .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-plztq .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-plztq .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-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-plztq .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-mm-menu__item {font-family: Overpass,sans-serif;color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-plztq {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-plztq .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-plztq.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-plztq .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq.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-plztq .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__sub-menu {font-family: Overpass,sans-serif;color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-plztq .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: undefined;}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-plztq .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-plztq .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-plztq .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:767px) {.brz .brz-css-plztq {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-plztq .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-plztq .brz-mm-menu__item {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-plztq .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-plztq .brz-mm-navbar {font-family: Overpass,sans-serif;font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;border-color: rgba(85,85,85,1);}
.brz .brz-css-plztq.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(24px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-plztq .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-plztq .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-plztq > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-plztq .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-plztq .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-plztq .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-plztq.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-plztq .brz-mega-menu__dropdown {display: block;}}
.brz .brz-css-crsfq {max-width: 100%;}
@media (min-width:991px) {.brz .brz-css-crsfq {padding: 10px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-crsfq {max-width: 100%;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-crsfq {padding: 10px;}}
@media (max-width:767px) {.brz .brz-css-crsfq {max-width: 80%;}}
@media (max-width:767px) {.brz .brz-css-crsfq {padding: 0px;}}
.brz .brz-css-bugno > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.9);background-image: none;}
.brz .brz-css-bugno > .brz-bg-content {padding: 15px;}
@media (min-width:991px) {.brz .brz-css-bugno {display: block;}
.brz .brz-css-bugno > .brz-bg {transition-duration: .5s;transition-property: filter,background,border,border-radius;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,background,border,border-radius;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,background,border,border-radius;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bugno > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.9);background-image: none;}
.brz .brz-css-bugno > .brz-bg-content {padding: 25px 15px 25px 15px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bugno {display: block;}
.brz .brz-css-bugno > .brz-bg {transition-duration: .5s;transition-property: filter,background,border,border-radius;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,background,border,border-radius;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,background,border,border-radius;}}
@media (max-width:767px) {.brz .brz-css-bugno > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.9);background-image: none;}
.brz .brz-css-bugno > .brz-bg-content {padding: 25px 15px 25px 15px;}}
@media (max-width:767px) {.brz .brz-css-bugno {display: block;}
.brz .brz-css-bugno > .brz-bg {transition-duration: .5s;transition-property: filter,background,border,border-radius;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,background,border,border-radius;}
.brz .brz-css-bugno > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,background,border,border-radius;}}
.brz .brz-css-qqnsu {padding: 15px;min-height: auto;justify-content: flex-start;border: 0px solid transparent;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qqnsu {padding: 25px 15px 25px 15px;min-height: auto;justify-content: flex-start;border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-qqnsu {padding: 25px 15px 25px 15px;min-height: auto;justify-content: flex-start;border: 0px solid transparent;}}
.brz .brz-css-spxfs {width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-spxfs {width: 100%;}}
@media (max-width:767px) {.brz .brz-css-spxfs {width: 100%;}}
.brz .brz-css-mxvxj {width: 75%;}
.brz .brz-css-mxvxj .brz-hr {border-top: 2px solid rgba(102,102,102,.75);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mxvxj {width: 75%;}
.brz .brz-css-mxvxj .brz-hr {border-top: 2px solid rgba(102,102,102,.75);}}
@media (max-width:767px) {.brz .brz-css-mxvxj {width: 75%;}
.brz .brz-css-mxvxj .brz-hr {border-top: 2px solid rgba(102,102,102,.75);}}
.brz .brz-css-seefv .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-seefv .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-seefv .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-seefv .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-seefv .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-seefv .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-seefv .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-seefv .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}}
@media (max-width:767px) {.brz .brz-css-seefv .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-seefv .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-seefv .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-seefv .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}}
.brz .brz-css-xcqox {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 18px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xcqox .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-xcqox .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-xcqox .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: 0;min-height: 57px;}
.brz .brz-css-xcqox.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-xcqox .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 14px 24px 14px 24px;}
.brz .brz-css-xcqox .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-xcqox .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-xcqox .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-xcqox .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-xcqox .form-alert {font-family: Lato,sans-serif;}
@media (min-width:991px) {.brz .brz-css-xcqox .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__select-item__input {transition-duration: .5s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xcqox {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xcqox .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-xcqox .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-xcqox .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: 0;min-height: 51px;}
.brz .brz-css-xcqox.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-xcqox .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 14px 24px 14px 24px;}
.brz .brz-css-xcqox .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-xcqox .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-xcqox .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-xcqox .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-xcqox .form-alert {font-family: Lato,sans-serif;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xcqox .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__select-item__input {transition-duration: .5s;}}
@media (max-width:767px) {.brz .brz-css-xcqox {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 14px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xcqox .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-xcqox .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-xcqox .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: 0;min-height: 43px;}
.brz .brz-css-xcqox.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-xcqox .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 10px 20px 10px 20px;}
.brz .brz-css-xcqox .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-xcqox .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-xcqox .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-xcqox .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-xcqox .form-alert {font-family: Lato,sans-serif;}}
@media (max-width:767px) {.brz .brz-css-xcqox .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-xcqox .brz-forms2__select-item__input {transition-duration: .5s;}}
.brz .brz-css-flzhl .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: 0;}
.brz .brz-css-flzhl .select2-results__option {border-bottom: 1px solid rgba(220,222,225,1);}
.brz .brz-css-flzhl .select2-selection--single {padding: 14px 24px 14px 24px;}
.brz .brz-css-flzhl .select2-selection--multiple {padding: 14px 24px 14px 24px;}
.brz .brz-css-flzhl .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,.2);}
@media (min-width:991px) {.brz .brz-css-flzhl .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-flzhl .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: 0;}
.brz .brz-css-flzhl .select2-results__option {border-bottom: 1px solid rgba(220,222,225,1);}
.brz .brz-css-flzhl .select2-selection--single {padding: 14px 24px 14px 24px;}
.brz .brz-css-flzhl .select2-selection--multiple {padding: 14px 24px 14px 24px;}
.brz .brz-css-flzhl .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,.2);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-flzhl .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
@media (max-width:767px) {.brz .brz-css-flzhl .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: 0;}
.brz .brz-css-flzhl .select2-results__option {border-bottom: 1px solid rgba(220,222,225,1);}
.brz .brz-css-flzhl .select2-selection--single {padding: 10px 20px 10px 20px;}
.brz .brz-css-flzhl .select2-selection--multiple {padding: 10px 20px 10px 20px;}
.brz .brz-css-flzhl .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,.2);}}
@media (max-width:767px) {.brz .brz-css-flzhl .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
.brz .brz-css-oqekh {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-oqekh .brz-textarea {height: auto;}
.brz .brz-css-oqekh .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-oqekh .brz-forms2__radio-option {flex-basis: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oqekh {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-oqekh .brz-textarea {height: auto;}
.brz .brz-css-oqekh .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-oqekh .brz-forms2__radio-option {flex-basis: 100%;}}
@media (max-width:767px) {.brz .brz-css-oqekh {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-oqekh .brz-textarea {height: auto;}
.brz .brz-css-oqekh .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-oqekh .brz-forms2__radio-option {flex-basis: 100%;}}
.brz .brz-css-bmgjs.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Overpass,sans-serif;font-weight: 700;font-size: 15px;line-height: 1.6;letter-spacing: 0px;color: rgba(255,255,255,1);border: 2px solid rgba(38,172,177,0);border-radius: 2px;background-color: rgba(38,172,177,1);background-image: none;padding: 14px 42px 14px 42px;flex-flow: row-reverse nowrap;}
.brz .brz-css-bmgjs.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);background-color: rgba(38,172,177,1);}
.brz .brz-css-bmgjs .brz-btn--story-container {border: 2px solid rgba(38,172,177,0);flex-flow: row-reverse nowrap;border-radius: 2px;}
@media (min-width:991px) {.brz .brz-css-bmgjs.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
@media (min-width:991px) {.brz .brz-css-bmgjs.brz-btn:hover {background-color: rgba(38,172,177,.8);}
.brz .brz-css-bmgjs.brz-btn.brz-btn-submit:hover {background-color: rgba(38,172,177,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bmgjs.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Overpass,sans-serif;font-weight: 700;font-size: 17px;line-height: 1.6;letter-spacing: 0px;color: rgba(255,255,255,1);border: 2px solid rgba(38,172,177,0);border-radius: 2px;background-color: rgba(38,172,177,1);background-image: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-bmgjs.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);background-color: rgba(38,172,177,1);}
.brz .brz-css-bmgjs .brz-btn--story-container {border: 2px solid rgba(38,172,177,0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bmgjs.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
@media (max-width:767px) {.brz .brz-css-bmgjs.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Overpass,sans-serif;font-weight: 700;font-size: 15px;line-height: 1.6;letter-spacing: 0px;color: rgba(255,255,255,1);border: 2px solid rgba(38,172,177,0);border-radius: 2px;background-color: rgba(38,172,177,1);background-image: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-bmgjs.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);background-color: rgba(38,172,177,1);}
.brz .brz-css-bmgjs .brz-btn--story-container {border: 2px solid rgba(38,172,177,0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:767px) {.brz .brz-css-bmgjs.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
.brz .brz-css-rplve {max-width: 75%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-rplve {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rplve:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rplve .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rplve {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rplve {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rplve:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rplve .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-rplve {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-rplve {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rplve:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rplve .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-obotq {padding-top: 100.0541%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-obotq {padding-top: 99.862%;}}
@media (max-width:767px) {.brz .brz-css-obotq {padding-top: 100%;}}
.brz .brz-css-ygpjj {max-width: 39%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ygpjj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ygpjj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ygpjj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ygpjj {max-width: 58%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ygpjj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ygpjj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ygpjj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ygpjj {max-width: 93%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ygpjj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ygpjj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ygpjj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-amgnx {padding-top: 98.8292%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-amgnx {padding-top: 99.1361%;}}
@media (max-width:767px) {.brz .brz-css-amgnx {padding-top: 100%;}}
.brz .brz-css-fcqnm {z-index: auto;margin: 0;}
.brz .brz-css-fcqnm .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-fcqnm .brz-container {justify-content: center;}
.brz .brz-css-fcqnm > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-fcqnm > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-fcqnm {display: block;}}
@media (min-width:991px) {.brz .brz-css-fcqnm > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fcqnm {z-index: auto;margin: 0;}
.brz .brz-css-fcqnm .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-fcqnm .brz-container {justify-content: center;}
.brz .brz-css-fcqnm > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-fcqnm > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fcqnm {display: block;}}
@media (max-width:767px) {.brz .brz-css-fcqnm {z-index: auto;margin: 0;}
.brz .brz-css-fcqnm .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-fcqnm .brz-container {justify-content: center;}
.brz .brz-css-fcqnm > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-fcqnm > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-fcqnm {display: block;}}
.brz .brz-css-rljsi {padding: 75px 0px 75px 0px;}
.brz .brz-css-rljsi > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
@media (min-width:991px) {.brz .brz-css-rljsi > .brz-bg > .brz-bg-image {background-attachment: scroll;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rljsi {padding: 50px 15px 50px 15px;}
.brz .brz-css-rljsi > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}}
@media (max-width:767px) {.brz .brz-css-rljsi {padding: 25px 15px 25px 15px;}
.brz .brz-css-rljsi > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-rljsi > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}}
.brz .brz-css-szlwg {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-szlwg {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-szlwg {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-szlwg {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-szlwg {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-szlwg {max-width: 100%;}}
.brz .brz-css-ewuro {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ewuro {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-ewuro {height: 50px;}}
.brz .brz-css-duzsk.brz-lottie {width: 75%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-duzsk.brz-lottie {width: 75%;}}
@media (max-width:767px) {.brz .brz-css-duzsk.brz-lottie {width: 75%;}}
.brz .brz-css-sfhar {width: 100%;}
.brz .brz-css-sfhar:before {border: 0px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-sfhar .brz-shortcode__placeholder {border-radius: 0;}
@media (min-width:991px) {.brz .brz-css-sfhar:before {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sfhar .brz-shortcode__placeholder {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sfhar {width: 100%;}
.brz .brz-css-sfhar:before {border: 0px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-sfhar .brz-shortcode__placeholder {border-radius: 0;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sfhar:before {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sfhar .brz-shortcode__placeholder {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-sfhar {width: 100%;}
.brz .brz-css-sfhar:before {border: 0px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-sfhar .brz-shortcode__placeholder {border-radius: 0;}}
@media (max-width:767px) {.brz .brz-css-sfhar:before {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-sfhar .brz-shortcode__placeholder {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-pxmdt {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pxmdt {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-pxmdt {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-cbgwb {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-cbgwb {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cbgwb {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cbgwb {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-cbgwb {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-cbgwb {display: flex;position: relative;}}
.brz .brz-css-hntgf {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hntgf {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
@media (max-width:767px) {.brz .brz-css-hntgf {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
.brz .brz-css-umavn {padding: 0px 5px 20px 5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-umavn {padding: 0px 5px 20px 5px;}}
@media (max-width:767px) {.brz .brz-css-umavn {padding: 0px 5px 20px 5px;}}
.brz .brz-css-fwwtv {padding: 75px 0px 75px 0px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-fwwtv > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-fwwtv .brz-container {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fwwtv {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-fwwtv > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-fwwtv .brz-container {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-fwwtv {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-fwwtv > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-shape__top {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(0deg) rotateY(0deg);z-index: auto;}
.brz .brz-css-fwwtv > .brz-bg > .brz-bg-shape__bottom {background-image: none;background-size: 100% 100px;height: 100px;transform: rotateX(-180deg) rotateY(-180deg);z-index: auto;}
.brz .brz-css-fwwtv .brz-container {justify-content: center;}}
.brz .brz-css-spmrc {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-spmrc {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-spmrc {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-spmrc {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-spmrc {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-spmrc {max-width: 100%;}}
.brz .brz-css-vyear {max-width: 53%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-vyear {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vyear:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vyear .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vyear {max-width: 53%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vyear {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vyear:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vyear .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-vyear {max-width: 47%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-vyear {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vyear:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vyear .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-ruvwu {padding-top: 22.4576%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ruvwu {padding-top: 22.4537%;}}
@media (max-width:767px) {.brz .brz-css-ruvwu {padding-top: 22.5374%;}}
.brz .brz-css-dfjgb > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-dfjgb > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-dfjgb > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dfjgb > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-dfjgb > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-dfjgb > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}}
@media (max-width:767px) {.brz .brz-css-dfjgb > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-dfjgb > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-dfjgb > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}}
.brz .brz-css-vltcp {justify-content: center;align-items: center;}
.brz .brz-css-vltcp > .brz-container__wrap {width: 1170px;}
.brz .brz-css-vltcp > .brz-container__wrap .brz-popup2__close {display: block;top: -36px;right: -36px;left: auto;bottom: auto;color: rgba(255,255,255,1);}
.brz .brz-css-vltcp > .brz-container__wrap .brz-popup2__close .brz-icon-svg {font-size: 16px;padding: 0px;background-color: rgba(0,0,0,0);border-radius: 0px;}
.brz .brz-css-vltcp .brz-container > .brz-row__container {min-height: auto;align-items: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vltcp {justify-content: center;align-items: center;}
.brz .brz-css-vltcp > .brz-container__wrap {width: 1170px;}
.brz .brz-css-vltcp > .brz-container__wrap .brz-popup2__close {display: block;top: -36px;right: -36px;left: auto;bottom: auto;color: rgba(255,255,255,1);}
.brz .brz-css-vltcp > .brz-container__wrap .brz-popup2__close .brz-icon-svg {font-size: 16px;padding: 0px;background-color: rgba(0,0,0,0);border-radius: 0px;}
.brz .brz-css-vltcp .brz-container > .brz-row__container {min-height: auto;align-items: center;}}
@media (max-width:767px) {.brz .brz-css-vltcp {justify-content: center;align-items: center;}
.brz .brz-css-vltcp > .brz-container__wrap {width: 1170px;}
.brz .brz-css-vltcp > .brz-container__wrap .brz-popup2__close {display: block;top: -36px;right: -36px;left: auto;bottom: auto;color: rgba(255,255,255,1);}
.brz .brz-css-vltcp > .brz-container__wrap .brz-popup2__close .brz-icon-svg {font-size: 16px;padding: 0px;background-color: rgba(0,0,0,0);border-radius: 0px;}
.brz .brz-css-vltcp .brz-container > .brz-row__container {min-height: auto;align-items: center;}}
.brz .brz-css-phmib {max-width: 39%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-phmib {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-phmib:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-phmib .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-phmib {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-phmib {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-phmib:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-phmib .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-phmib {max-width: 40%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-phmib {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-phmib:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-phmib .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-jrmvz {padding-top: 33.3361%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jrmvz {padding-top: 33.3333%;}}
@media (max-width:767px) {.brz .brz-css-jrmvz {padding-top: 33.3333%;}}
.brz .brz-css-xdamm {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xdamm {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-xdamm {padding: 0;}}
.brz .brz-css-cftlf {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cftlf {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-cftlf {margin: 0;}}
.brz .brz-css-wbims {padding: 10px 0px 0px 0px;}
.brz .brz-css-wbims > .brz-bg:after {box-shadow: inset 0 6px 6px -6px rgba(0,0,0,.1),inset 0 -6px 6px -6px rgba(0,0,0,.1);display: block;}
.brz .brz-css-wbims > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wbims {padding: 0px 15px 118px 15px;}
.brz .brz-css-wbims > .brz-bg:after {box-shadow: inset 0 6px 6px -6px rgba(0,0,0,.1),inset 0 -6px 6px -6px rgba(0,0,0,.1);display: block;}
.brz .brz-css-wbims > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}}
@media (max-width:767px) {.brz .brz-css-wbims {padding: 25px 15px 0px 15px;}
.brz .brz-css-wbims > .brz-bg:after {box-shadow: inset 0 6px 6px -6px rgba(0,0,0,.1),inset 0 -6px 6px -6px rgba(0,0,0,.1);display: block;}
.brz .brz-css-wbims > .brz-bg > .brz-bg-color {background-color: rgba(28,28,28,0);}}
@media (min-width:991px) {.brz .brz-css-xtars {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xtars {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-xtars {max-width: 89%;}}
.brz .brz-css-ztxfw {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ztxfw {margin: 10px 0px -50px 0px;}}
@media (max-width:767px) {.brz .brz-css-ztxfw {margin: 0;}}
.brz .brz-css-uvoqd {padding: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uvoqd {padding: 16px 0px 0px 0px;}}
@media (max-width:767px) {.brz .brz-css-uvoqd {padding: 6px 0px 0px 0px;}}
.brz .brz-css-zgjqa {flex: 1 1 11.1%;max-width: 11.1%;justify-content: center;}
.brz .brz-css-zgjqa > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zgjqa {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-zgjqa > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-zgjqa {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-zgjqa > .brz-bg {margin: 0;}}
.brz .brz-css-iixoa {margin: 0;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iixoa {margin: 0;padding: 20px 15px 5px 20px;}}
@media (max-width:767px) {.brz .brz-css-iixoa {margin: 0;padding: 0;}}
.brz .brz-css-vfkcd {margin: 10px 0px 10px 0px;justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vfkcd {margin: 10px 0px 10px 0px;justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-vfkcd {margin: 0;justify-content: flex-start;}}
.brz .brz-css-plqml {animation-name: fadeInDown;animation-delay: 600ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-plqml {animation-name: none;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-plqml {animation-name: none;animation-delay: 1000ms;}}
.brz .brz-css-ypmwg {flex: 1 1 70.4%;max-width: 70.4%;justify-content: center;}
.brz .brz-css-ypmwg > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ypmwg {flex: 1 1 16.5%;max-width: 16.5%;justify-content: center;}
.brz .brz-css-ypmwg > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-ypmwg {flex: 1 1 38.8%;max-width: 38.8%;justify-content: center;}
.brz .brz-css-ypmwg > .brz-bg {margin: -43px 100px 0px 0px;}}
.brz .brz-css-tpkhh {animation-name: none;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tpkhh {animation-name: fadeInDown;}}
@media (max-width:767px) {.brz .brz-css-tpkhh {animation-name: none;}}
.brz .brz-css-divox {margin: 0;padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-divox {margin: 0;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-divox {margin: -43px 100px 0px 0px;padding: 0px 0px 0px 24px;}}
.brz .brz-css-hjcir {padding: 0;margin: 10px 0px 10px 0px;justify-content: flex-end;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hjcir {padding: 0;margin: 0;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-hjcir {padding: 0px 0px 0px 15px;margin: 0;justify-content: flex-end;}}
.brz .brz-css-odjbd {animation-name: fadeInDown;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-odjbd {animation-name: none;}}
@media (max-width:767px) {.brz .brz-css-odjbd {animation-name: none;}}
@media (min-width:991px) {.brz .brz-css-wffna .brz-mm-menu__icon {font-size: 23px;color: rgba(255,255,255,.86);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wffna .brz-mm-menu__icon {font-size: 31px;color: rgba(255,255,255,.86);}}
@media (max-width:767px) {.brz .brz-css-wffna .brz-mm-menu__icon {font-size: 30px;color: rgba(255,255,255,.86);}}
.brz .brz-css-przbx {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -16.5px 0px -16.5px;}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(255,255,255,1);border-width: 0px 0px 2px 0px;border-style: solid;border-color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-mm-menu__item {color: rgba(28,28,28,1);border-color: rgba(28,28,28,.08);}
.brz nav.brz-mm-menu.brz-css-przbx {background-color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-mm-navbar {color: rgba(28,28,28,1);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(28,28,28,1);}
.brz .brz-css-przbx.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-przbx .brz-mm-panels > .brz-mm-panel {background-color: rgba(255,255,255,1);}
.brz .brz-css-przbx.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(28,28,28,.08);}
.brz .brz-css-przbx .brz-mm-listitem {border-color: rgba(28,28,28,.08);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(28,28,28,1);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(28,28,28,1);}
@media (min-width:991px) {.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 16.5px;margin-left: 16.5px;}
.brz .brz-css-przbx .brz-mm-menu__item {font-size: 16px;line-height: 1.5;}
.brz .brz-css-przbx .brz-mm-menu__item .brz-a {justify-content: center;}
.brz .brz-css-przbx .brz-mm-navbar {font-size: 16px;line-height: 1.5;border-color: rgba(28,28,28,.08);}
.brz .brz-css-przbx.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(24px + 10px + 10px);padding-right: 20px;}}
@media (min-width:991px) {.brz .brz-css-przbx:hover {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item > .brz-a:hover {color: rgba(38,172,177,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-przbx {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -5px 0px -5px;}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(255,255,255,1);border-width: 0px 0px 2px 0px;border-style: solid;border-color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-mm-menu__item {color: rgba(28,28,28,1);border-color: rgba(28,28,28,.08);}
.brz nav.brz-mm-menu.brz-css-przbx {background-color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-mm-navbar {color: rgba(28,28,28,1);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(28,28,28,1);}
.brz .brz-css-przbx.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-przbx .brz-mm-panels > .brz-mm-panel {background-color: rgba(255,255,255,1);}
.brz .brz-css-przbx.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(28,28,28,.08);}
.brz .brz-css-przbx .brz-mm-listitem {border-color: rgba(28,28,28,.08);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(28,28,28,1);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(28,28,28,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-przbx .brz-mm-menu__item {font-size: 16px;line-height: 1.5;}
.brz .brz-css-przbx .brz-mm-menu__item .brz-a {justify-content: center;}
.brz .brz-css-przbx .brz-mm-navbar {font-size: 16px;line-height: 1.5;border-color: rgba(28,28,28,.08);}
.brz .brz-css-przbx.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(24px + 10px + 10px);padding-right: 20px;}}
@media (max-width:767px) {.brz .brz-css-przbx {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -5px 0px -5px;}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(255,255,255,1);border-width: 0px 0px 2px 0px;border-style: solid;border-color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-mm-menu__item {color: rgba(28,28,28,1);border-color: rgba(28,28,28,.08);}
.brz nav.brz-mm-menu.brz-css-przbx {background-color: rgba(255,255,255,1);}
.brz .brz-css-przbx .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(38,172,177,1);}
.brz .brz-css-przbx .brz-mm-navbar {color: rgba(28,28,28,1);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(28,28,28,1);}
.brz .brz-css-przbx.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-przbx .brz-mm-panels > .brz-mm-panel {background-color: rgba(255,255,255,1);}
.brz .brz-css-przbx.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(28,28,28,.08);}
.brz .brz-css-przbx .brz-mm-listitem {border-color: rgba(28,28,28,.08);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(28,28,28,1);}
.brz .brz-css-przbx .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(28,28,28,1);}}
@media (max-width:767px) {.brz .brz-css-przbx .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-przbx .brz-mm-menu__item {font-size: 16px;line-height: 1.5;}
.brz .brz-css-przbx .brz-mm-menu__item .brz-a {justify-content: center;}
.brz .brz-css-przbx .brz-mm-navbar {font-size: 16px;line-height: 1.5;border-color: rgba(28,28,28,.08);}
.brz .brz-css-przbx.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(24px + 10px + 10px);padding-right: 20px;}}
.brz .brz-css-yvgzc {flex: 1 1 7.1%;max-width: 7.1%;justify-content: center;}
.brz .brz-css-yvgzc > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yvgzc {flex: 1 1 69.1%;max-width: 69.1%;justify-content: center;}
.brz .brz-css-yvgzc > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-yvgzc {flex: 1 1 60.2%;max-width: 60.2%;justify-content: center;}
.brz .brz-css-yvgzc > .brz-bg {margin: -110px 0px 0px 0px;}}
.brz .brz-css-zorrr {animation-name: fadeIn;animation-delay: 1300ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zorrr {animation-name: fadeIn;animation-delay: 1300ms;}}
@media (max-width:767px) {.brz .brz-css-zorrr {animation-name: fadeIn;animation-delay: 1300ms;}}
.brz .brz-css-xemnr {margin: 0;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xemnr {margin: 0;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-xemnr {margin: -110px 0px 0px 0px;padding: 100px 0px 93px 22px;}}
.brz .brz-css-xmkfm {margin: 10px 0px 10px 0px;justify-content: center;}
@media (min-width:991px) {.brz .brz-css-xmkfm {z-index: 18;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xmkfm {margin: 0;justify-content: flex-end;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xmkfm {z-index: 18;}}
@media (max-width:767px) {.brz .brz-css-xmkfm {margin: -27px -7px 10px 0px;justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-xmkfm {display: none;z-index: 18;}}
@media (min-width:991px) {.brz .brz-css-uuuys .brz-mm-menu__icon {display: none;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-uuuys .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uuuys .brz-mm-menu__icon {display: none;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-uuuys .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-uuuys .brz-mm-menu__icon {display: none;font-size: 29px;color: rgba(255,255,255,1);}
.brz .brz-css-uuuys .brz-menu {display: flex;}}
.brz .brz-css-qhrkd {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,1);padding: 0px 0px 0px 5px;}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(38,172,177,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(38,172,177,1);}
@media (min-width:991px) {.brz .brz-css-qhrkd .brz-menu__item__icon {font-size: 33px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qhrkd {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,1);padding: 5px;}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(38,172,177,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(38,172,177,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qhrkd .brz-menu__item__icon {font-size: 29px;}}
@media (max-width:767px) {.brz .brz-css-qhrkd {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,1);padding: 0px 0px 0px 5px;}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(255,255,255,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(38,172,177,1);}
.brz .brz-css-qhrkd .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(38,172,177,1);}}
@media (max-width:767px) {.brz .brz-css-qhrkd .brz-menu__item__icon {font-size: 32px;}}
.brz .brz-css-dmnlt {max-width: 100%;}
@media (min-width:991px) {.brz .brz-css-dmnlt {padding: 27px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dmnlt {max-width: 100%;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dmnlt {padding: 7px;}}
@media (max-width:767px) {.brz .brz-css-dmnlt {max-width: 300px;}}
@media (max-width:767px) {.brz .brz-css-dmnlt {padding: 8px;}}
.brz .brz-css-rphoy > .brz-bg > .brz-bg-color {background-color: rgba(16,81,83,1);}
.brz .brz-css-rphoy > .brz-bg-content {padding: 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rphoy > .brz-bg > .brz-bg-color {background-color: rgba(16,81,83,1);}
.brz .brz-css-rphoy > .brz-bg-content {padding: 25px 100px 25px 15px;}}
@media (max-width:767px) {.brz .brz-css-rphoy > .brz-bg > .brz-bg-color {background-color: rgba(16,81,83,1);}
.brz .brz-css-rphoy > .brz-bg-content {padding: 25px 15px 25px 15px;}}
.brz .brz-css-wubmw {padding: 15px;min-height: 193px;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wubmw {padding: 25px 100px 25px 15px;min-height: auto;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-wubmw {padding: 25px 15px 25px 15px;min-height: 193px;justify-content: center;}}
.brz .brz-css-mllci {margin: -17px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mllci {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-mllci {margin: -19px 0px 10px 0px;}}
.brz .brz-css-igndy {width: 74%;}
.brz .brz-css-igndy .brz-hr {border-top: 2px solid rgba(255,255,255,.75);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-igndy {width: 74%;}
.brz .brz-css-igndy .brz-hr {border-top: 2px solid rgba(255,255,255,.75);}}
@media (max-width:767px) {.brz .brz-css-igndy {width: 44%;}
.brz .brz-css-igndy .brz-hr {border-top: 2px solid rgba(255,255,255,.75);}}
.brz .brz-css-xtbfs {margin: -14px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xtbfs {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-xtbfs {margin: -14px 0px 10px 0px;}}
.brz .brz-css-meets .brz-form {margin: -0px -4.5px -9px -4.5px;}
.brz .brz-css-meets .brz-forms2__item {padding: 0px 4.5px 9px 4.5px;}
.brz .brz-css-meets .brz-forms2__item-button {margin-left: auto;margin-right: auto;max-width: 75%;flex-basis: 75%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-meets .brz-form {margin: -0px -4.5px -9px -4.5px;}
.brz .brz-css-meets .brz-forms2__item {padding: 0px 4.5px 9px 4.5px;}
.brz .brz-css-meets .brz-forms2__item-button {margin-left: auto;margin-right: auto;max-width: 75%;flex-basis: 75%;}}
@media (max-width:767px) {.brz .brz-css-meets .brz-form {margin: -0px -4.5px -9px -4.5px;}
.brz .brz-css-meets .brz-forms2__item {padding: 0px 4.5px 9px 4.5px;}
.brz .brz-css-meets .brz-forms2__item-button {margin-left: auto;margin-right: auto;max-width: 75%;flex-basis: 75%;}}
.brz .brz-css-suaik {font-size: 14px;}
.brz .brz-css-suaik .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-radius: 10px;min-height: 36px;}
.brz .brz-css-suaik .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 10px 20px 10px 20px;}
.brz .brz-css-suaik .brz-forms2__field-paragraph {line-height: 1;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-suaik {font-size: 14px;}
.brz .brz-css-suaik .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-radius: 10px;min-height: 51px;}
.brz .brz-css-suaik .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 14px 24px 14px 24px;}
.brz .brz-css-suaik .brz-forms2__field-paragraph {line-height: 1.5;}}
@media (max-width:767px) {.brz .brz-css-suaik {font-size: 14px;}
.brz .brz-css-suaik .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-radius: 10px;min-height: 43px;}
.brz .brz-css-suaik .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 10px 20px 10px 20px;}
.brz .brz-css-suaik .brz-forms2__field-paragraph {line-height: 1.5;}}
.brz .brz-css-yyksd .select2-results__options {font-size: 14px;line-height: 1;}
.brz .brz-css-yyksd .select2-selection--single {padding: 10px 20px 10px 20px;}
.brz .brz-css-yyksd .select2-selection--multiple {padding: 10px 20px 10px 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yyksd .select2-results__options {font-size: 14px;line-height: 1.5;}
.brz .brz-css-yyksd .select2-selection--single {padding: 14px 24px 14px 24px;}
.brz .brz-css-yyksd .select2-selection--multiple {padding: 14px 24px 14px 24px;}}
@media (max-width:767px) {.brz .brz-css-yyksd .select2-results__options {font-size: 14px;line-height: 1.5;}
.brz .brz-css-yyksd .select2-selection--single {padding: 10px 20px 10px 20px;}
.brz .brz-css-yyksd .select2-selection--multiple {padding: 10px 20px 10px 20px;}}
.brz .brz-css-qlfhr.brz-btn {font-size: 16px;line-height: 1.2;border: 0px solid rgba(35,157,219,0);border-radius: 10px;padding: 7px 26px 7px 26px;flex-flow: row nowrap;}
.brz .brz-css-qlfhr .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;border-radius: 10px;}
@media (min-width:991px) {.brz .brz-css-qlfhr.brz-btn:hover {border: 0px solid rgba(38,172,177,.8);}
.brz .brz-css-qlfhr:hover .brz-btn--story-container {border: 0px solid rgba(38,172,177,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qlfhr.brz-btn {font-size: 17px;line-height: 1.6;border: 0px solid rgba(35,157,219,0);border-radius: 10px;padding: 11px 26px 11px 26px;flex-flow: row nowrap;}
.brz .brz-css-qlfhr .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;border-radius: 10px;}}
@media (max-width:767px) {.brz .brz-css-qlfhr.brz-btn {font-size: 15px;line-height: 1.6;border: 0px solid rgba(35,157,219,0);border-radius: 10px;padding: 11px 26px 11px 26px;flex-flow: row nowrap;}
.brz .brz-css-qlfhr .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;border-radius: 10px;}}
.brz .brz-css-yynoz {z-index: 24;flex: 1 1 11.4%;max-width: 11.4%;justify-content: center;}
.brz .brz-css-yynoz > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yynoz {z-index: 24;flex: 1 1 12.6%;max-width: 12.6%;justify-content: center;}
.brz .brz-css-yynoz > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-yynoz {z-index: 24;flex: 1 1 23.7%;max-width: 23.7%;justify-content: center;}
.brz .brz-css-yynoz > .brz-bg {margin: 13px 20px 0px 27px;}}
.brz .brz-css-bffqr {animation-name: fadeIn;animation-delay: 1300ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bffqr {animation-name: fadeIn;animation-delay: 1300ms;}}
@media (max-width:767px) {.brz .brz-css-bffqr {animation-name: fadeIn;animation-delay: 1300ms;}}
.brz .brz-css-eisdl {z-index: 24;margin: 0;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eisdl {z-index: 24;margin: 0;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-eisdl {z-index: 24;margin: 13px 20px 0px 27px;padding: 120px 0px 93px 0px;}}
.brz .brz-css-whfwj {flex: 1 1 49.8%;max-width: 49.8%;}
.brz .brz-css-whfwj > .brz-bg {margin: 0px 16px 0px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-whfwj {flex: 1 1 49.9%;max-width: 49.9%;}
.brz .brz-css-whfwj > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-whfwj {flex: 1 1 140.3%;max-width: 140.3%;}
.brz .brz-css-whfwj > .brz-bg {margin: 0px 15px 0px 0px;}}
.brz .brz-css-envrs {margin: 0px 16px 0px 0px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-envrs {margin: 0;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-envrs {margin: 0px 15px 0px 0px;padding: 0;}}
.brz .brz-css-jhpbf {margin: 0;justify-content: center;}
@media (min-width:991px) {.brz .brz-css-jhpbf {z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jhpbf {margin: 0;justify-content: center;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jhpbf {z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-jhpbf {margin: 10px 0px 10px 0px;justify-content: flex-start;display: flex;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-jhpbf {z-index: 11;position: absolute;width: 96%;align-items: stretch;top: -259px;bottom: unset;right: unset;left: 176px;}}
.brz .brz-css-zcrte {flex: 1 1 50.2%;max-width: 50.2%;}
.brz .brz-css-zcrte > .brz-bg {margin: 0px 0px 0px -24px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zcrte {flex: 1 1 49.5%;max-width: 49.5%;}
.brz .brz-css-zcrte > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-zcrte {flex: 1 1 140.3%;max-width: 140.3%;}
.brz .brz-css-zcrte > .brz-bg {margin: 0;}}
.brz .brz-css-iikew {margin: 0px 0px 0px -24px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iikew {margin: 0;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-iikew {margin: 0;padding: 0px 0px 0px 4px;}}
.brz .brz-css-qqnwd {margin: 0;justify-content: center;}
@media (min-width:991px) {.brz .brz-css-qqnwd {z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qqnwd {margin: 0;justify-content: center;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qqnwd {z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-qqnwd {margin: 10px 0px 10px 0px;justify-content: flex-end;display: flex;width: 100%;}}
@media (max-width:767px) {.brz .brz-css-qqnwd {z-index: 11;position: absolute;width: 100%;align-items: stretch;top: -259px;bottom: unset;right: unset;left: 220px;}}
.brz .brz-css-dxjrv {margin: -100px 0px -2px 0px;}
.brz .brz-css-dxjrv .brz-section__content {min-height: 100vh;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dxjrv {margin: -250px 0px -100px 0px;}
.brz .brz-css-dxjrv .brz-section__content {min-height: 100vh;}}
@media (max-width:767px) {.brz .brz-css-dxjrv {margin: -390px 0px -150px 0px;}
.brz .brz-css-dxjrv .brz-section__content {min-height: 100vh;}}
.brz .brz-css-jbvhj {padding: 80px 0px 15px 0px;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-image {background-image: none;display: none;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.8);}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-video {display: block;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 77px;height: 77px;transform: rotateX(-180deg) rotateY(0deg);z-index: 10;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jbvhj {padding: 50px 15px 15px 15px;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-image {background-image: url("assets/img/570594a8627f89339053976599cee719.png");background-position: 35% 39%;display: block;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,.69);}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 77px;height: 77px;transform: rotateX(-180deg) rotateY(0deg);z-index: 10;}}
@media (max-width:767px) {.brz .brz-css-jbvhj {padding: 100px 15px 15px 15px;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,1);}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-jbvhj > .brz-bg > .brz-bg-shape__bottom {background-size: 100% 77px;height: 77px;transform: rotateX(-180deg) rotateY(0deg);z-index: 10;}}
.brz .brz-css-ctygb {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ctygb {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-ctygb {height: 0px;}}
.brz .brz-css-qruhj {height: 286px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qruhj {height: 286px;}}
@media (max-width:767px) {.brz .brz-css-qruhj {height: 0px;}}
.brz .brz-css-bdxko > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bdxko > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-bdxko > .brz-bg {margin: 0;}}
.brz .brz-css-ghmml {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ghmml {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-ghmml {margin: 0;}}
.brz .brz-css-xrklz {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xrklz {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-xrklz {padding: 0px 66px 0px 0px;}}
.brz .brz-css-rgvqy {animation-name: fadeInUp;animation-delay: 1200ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rgvqy {animation-name: fadeInUp;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-rgvqy {animation-name: fadeInUp;animation-delay: 1000ms;}}
.brz .brz-css-rgjcg.brz-lottie {width: 57%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rgjcg.brz-lottie {width: 57%;}}
@media (max-width:767px) {.brz .brz-css-rgjcg.brz-lottie {width: 65%;}}
.brz .brz-css-qkjgm {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qkjgm {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-qkjgm {justify-content: center;}}
.brz .brz-css-jcrfh {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jcrfh {padding: 5px 43px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-jcrfh {padding: 0px 15px 0px 0px;}}
.brz .brz-css-ibyhe {animation-name: fadeInUp;animation-delay: 1400ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ibyhe {animation-name: fadeInUp;animation-delay: 1400ms;}}
@media (max-width:767px) {.brz .brz-css-ibyhe {animation-name: fadeInUp;animation-delay: 1000ms;}}
.brz .brz-css-erqnv {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-erqnv {margin: 3px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-erqnv {margin: 10px 0px 10px 0px;}}
.brz .brz-css-bloll {animation-name: fadeInUp;animation-delay: 1600ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bloll {animation-name: fadeInUp;animation-delay: 1600ms;}}
@media (max-width:767px) {.brz .brz-css-bloll {animation-name: fadeInUp;animation-delay: 1200ms;}}
.brz .brz-css-xkjui {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xkjui {margin: -64px 0px 0px 0px;}}
@media (max-width:767px) {.brz .brz-css-xkjui {margin: 56px 0px 0px 0px;}}
.brz .brz-css-ivgnn {padding: 95px 0px 15px 0px;}
.brz .brz-css-ivgnn > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,1);}
.brz .brz-css-ivgnn > .brz-bg > .brz-bg-shape__top {background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgxMCwgMTAsIDEwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMTkyMCAxMjkuNzUxQzE3NjAgMTkxLjkxNyAxNjAwIDIyMyAxNDQwIDIyM2MtMTUyLjg5MiAwLTM5OS41MzItMzEuMzg0LTYyMC40NzUtNTMuNzg0QzY4NyAxOTEgNTU3LjEwOCAyMDUuNDY1IDQ3MCAyMDZjLTE2Mi0yLTMxOC42NjctMjEuMzMzLTQ3MC01OFYwaDE5MjB2MTI5Ljc1MXoiIG9wYWNpdHk9Ii4yMDMiLz48cGF0aCBkPSJNMjMwIDE5MGMxNjAgMzMuMzMzIDMyMCA1MCA0ODAgNTAgMjQwIDAgNzc2LTEwNSA5MjMtMTE1IDk4LTYuNjY3IDE5My42NjcgMSAyODcgMjNWMEgwdjE0OGM0NS4wNzMgMTAuNDE2IDgxLjA3MyAxOC4wODMgMTA4IDIzIDI2LjkyNyA0LjkxNyA2Ny41OTQgMTEuMjUgMTIyIDE5eiIgb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCAxNDhjMTYwIDM4LjQ3NiAzMjAgNTcuNzE0IDQ4MCA1Ny43MTQgMjQwIDAgNzIwLTExOC43MSA5NjAtMTE3LjIzNSAxNjAgLjk4MyAzMjAgMjAuODI0IDQ4MCA1OS41MjFWMEgwdjE0OHoiLz48L2c+PC9zdmc+");background-size: 100% 56px;height: 56px;z-index: 10;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ivgnn {padding: 50px 35px 50px 35px;}
.brz .brz-css-ivgnn > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,1);}
.brz .brz-css-ivgnn > .brz-bg > .brz-bg-shape__top {background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgxMCwgMTAsIDEwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMTkyMCAxMjkuNzUxQzE3NjAgMTkxLjkxNyAxNjAwIDIyMyAxNDQwIDIyM2MtMTUyLjg5MiAwLTM5OS41MzItMzEuMzg0LTYyMC40NzUtNTMuNzg0QzY4NyAxOTEgNTU3LjEwOCAyMDUuNDY1IDQ3MCAyMDZjLTE2Mi0yLTMxOC42NjctMjEuMzMzLTQ3MC01OFYwaDE5MjB2MTI5Ljc1MXoiIG9wYWNpdHk9Ii4yMDMiLz48cGF0aCBkPSJNMjMwIDE5MGMxNjAgMzMuMzMzIDMyMCA1MCA0ODAgNTAgMjQwIDAgNzc2LTEwNSA5MjMtMTE1IDk4LTYuNjY3IDE5My42NjcgMSAyODcgMjNWMEgwdjE0OGM0NS4wNzMgMTAuNDE2IDgxLjA3MyAxOC4wODMgMTA4IDIzIDI2LjkyNyA0LjkxNyA2Ny41OTQgMTEuMjUgMTIyIDE5eiIgb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCAxNDhjMTYwIDM4LjQ3NiAzMjAgNTcuNzE0IDQ4MCA1Ny43MTQgMjQwIDAgNzIwLTExOC43MSA5NjAtMTE3LjIzNSAxNjAgLjk4MyAzMjAgMjAuODI0IDQ4MCA1OS41MjFWMEgwdjE0OHoiLz48L2c+PC9zdmc+");background-size: 100% 43px;height: 43px;z-index: 10;}}
@media (max-width:767px) {.brz .brz-css-ivgnn {padding: 42px 15px 25px 15px;}
.brz .brz-css-ivgnn > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,1);}
.brz .brz-css-ivgnn > .brz-bg > .brz-bg-shape__top {background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgxMCwgMTAsIDEwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMTkyMCAxMjkuNzUxQzE3NjAgMTkxLjkxNyAxNjAwIDIyMyAxNDQwIDIyM2MtMTUyLjg5MiAwLTM5OS41MzItMzEuMzg0LTYyMC40NzUtNTMuNzg0QzY4NyAxOTEgNTU3LjEwOCAyMDUuNDY1IDQ3MCAyMDZjLTE2Mi0yLTMxOC42NjctMjEuMzMzLTQ3MC01OFYwaDE5MjB2MTI5Ljc1MXoiIG9wYWNpdHk9Ii4yMDMiLz48cGF0aCBkPSJNMjMwIDE5MGMxNjAgMzMuMzMzIDMyMCA1MCA0ODAgNTAgMjQwIDAgNzc2LTEwNSA5MjMtMTE1IDk4LTYuNjY3IDE5My42NjcgMSAyODcgMjNWMEgwdjE0OGM0NS4wNzMgMTAuNDE2IDgxLjA3MyAxOC4wODMgMTA4IDIzIDI2LjkyNyA0LjkxNyA2Ny41OTQgMTEuMjUgMTIyIDE5eiIgb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCAxNDhjMTYwIDM4LjQ3NiAzMjAgNTcuNzE0IDQ4MCA1Ny43MTQgMjQwIDAgNzIwLTExOC43MSA5NjAtMTE3LjIzNSAxNjAgLjk4MyAzMjAgMjAuODI0IDQ4MCA1OS41MjFWMEgwdjE0OHoiLz48L2c+PC9zdmc+");background-size: 100% 27px;height: 27px;z-index: 10;}}
.brz .brz-css-yjvjj {animation-name: fadeInUp;animation-delay: 800ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yjvjj {animation-name: fadeInUp;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-yjvjj {animation-name: fadeInUp;animation-delay: 1000ms;}}