-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalidation.html
More file actions
1573 lines (1573 loc) · 250 KB
/
Copy pathvalidation.html
File metadata and controls
1573 lines (1573 loc) · 250 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><link rel="canonical" href="assets/d41d8cd98f00b204e9800998ecf8427e.html" /><link rel="icon" href="assets/img/7d20a12c0c58326ae499a3062c4750cb.png" sizes="32x32"/><link rel="icon" href="assets/img/add27080836b3e6dee35d4cae67ac1f5.png" sizes="192x192"/><link rel="apple-touch-icon-precomposed" href="assets/img/70a87e04f33b2e29f852a3b5d30251f7.png"/><title>Validation | Kanteron Systems website</title><meta name="description" content="Kanteron Systems validation: quality, awards, and media"><meta property="og:title" content=""><meta property="og:description" content=""><meta property="og:url" content="/validation"><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/80148cec64b5bf1a2cb7b7e5bb180a76.css" rel="stylesheet"><link class="brz-link brz-link-preview-pro" href="assets/1ebe53c029fe22ca76dc1a8d5b694f7b.css" rel="stylesheet"><style class="brz-style">.brz .css-1o6c7ho, .brz [data-css-1o6c7ho] {color: rgba(255,141,0,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: 80px;height: 80px;font-size: 80px;padding: 0px;border-radius: 7px;stroke-width: 3;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-1o6c7ho:hover, .brz [data-css-1o6c7ho]:hover {color: rgba(255,255,255,1);border-color: rgba(35,157,219,0);background-color: rgba(255,141,0,.9);background-image: none;}}
@media (max-width: 991px) {.brz .css-1o6c7ho, .brz [data-css-1o6c7ho] {width: 64px;height: 64px;font-size: 64px;padding: 0px;border-radius: 0px;stroke-width: 2.3;}}
@media (max-width: 767px) {.brz .css-1o6c7ho, .brz [data-css-1o6c7ho] {width: 64px;height: 64px;font-size: 64px;padding: 0px;border-radius: 0px;stroke-width: 2.3;}}
.brz .css-6ehdze, .brz [data-css-6ehdze] {color: rgba(237,238,250,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: 32px;height: 32px;font-size: 32px;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-6ehdze:hover, .brz [data-css-6ehdze]:hover {color: rgba(255,141,0,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-6ehdze, .brz [data-css-6ehdze] {width: 32px;height: 32px;font-size: 32px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-6ehdze, .brz [data-css-6ehdze] {width: 32px;height: 32px;font-size: 32px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-1vkydon, .brz [data-css-1vkydon] {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: 32px;height: 32px;font-size: 32px;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-1vkydon:hover, .brz [data-css-1vkydon]:hover {color: rgba(255,141,0,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1vkydon, .brz [data-css-1vkydon] {width: 32px;height: 32px;font-size: 32px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-1vkydon, .brz [data-css-1vkydon] {width: 32px;height: 32px;font-size: 32px;padding: 0px;border-radius: 0px;stroke-width: 0;}}</style><style class="brz-style">@media (min-width:991px) {.brz .brz-css-rwfvo {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rwfvo {display: block;}}
@media (max-width:767px) {.brz .brz-css-rwfvo {display: block;}}
.brz .brz-css-jdueu {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-jdueu > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-jdueu > .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-jdueu > .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-jdueu {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-jdueu > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-jdueu > .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-jdueu > .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-jdueu {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-jdueu > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-jdueu > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-jdueu > .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-jdueu > .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-fcdwe {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-fcdwe {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fcdwe {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fcdwe {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-fcdwe {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-fcdwe {max-width: 100%;}}
.brz .brz-css-hesxa {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-hesxa > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-hesxa > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-hesxa {min-height: auto;display: flex;}
.brz .brz-css-hesxa > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .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-hesxa {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-hesxa > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-hesxa > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hesxa {min-height: auto;display: flex;}
.brz .brz-css-hesxa > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .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-hesxa {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-hesxa > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-hesxa > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-hesxa {min-height: auto;display: flex;}
.brz .brz-css-hesxa > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hesxa > .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-gptpj {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gptpj {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-gptpj {padding: 0;max-width: 100%;}}
.brz .brz-css-hjiuy {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-hjiuy > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
@media (min-width:991px) {.brz .brz-css-hjiuy > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hjiuy > .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-hjiuy {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-hjiuy > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-hjiuy > .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-hjiuy > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hjiuy > .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-hjiuy {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-hjiuy > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 10px 0px 10px 0px;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}}
@media (max-width:767px) {.brz .brz-css-hjiuy > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-hjiuy > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-rkvsc {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;}
@media (min-width:991px) {.brz .brz-css-rkvsc {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-rkvsc {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-rkvsc {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-rkvsc {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-rkvsc {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-ofcaw {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-ofcaw {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ofcaw {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ofcaw {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-ofcaw {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-ofcaw {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-epzpr {max-width: 8%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-epzpr {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-epzpr:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-epzpr .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-epzpr {max-width: 75%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-epzpr {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-epzpr:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-epzpr .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-epzpr {max-width: 30%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-epzpr {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-epzpr:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-epzpr .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-wrwwn {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wrwwn {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-wrwwn {padding-top: 100%;}}
@media (min-width:991px) {.brz .brz-css-rihzh .brz-mm-menu__icon {display: none;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-rihzh .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rihzh .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-rihzh .brz-menu {display: none;}}
@media (max-width:767px) {.brz .brz-css-rihzh .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-rihzh .brz-menu {display: none;}}
.brz .brz-css-ykrno {font-family: Montserrat,sans-serif;color: rgba(0,0,0,1);}
.brz .brz-css-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-ykrno .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-ykrno .brz-mm-menu__item {font-family: Montserrat,sans-serif;color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-ykrno {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-ykrno .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-ykrno .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno.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-ykrno .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__sub-menu {font-family: Montserrat,sans-serif;color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-ykrno .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: undefined;}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-ykrno .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}
@media (min-width:991px) {.brz .brz-css-ykrno {font-size: 12px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-ykrno .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-ykrno .brz-mm-menu__item {font-size: 12px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-ykrno .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-ykrno .brz-mm-navbar {font-family: Montserrat,sans-serif;font-size: 12px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;border-color: rgba(85,85,85,1);}
.brz .brz-css-ykrno.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(18px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-ykrno .brz-menu__sub-menu {font-size: 12px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-ykrno .brz-menu__dropdown-left {left: calc(100% + 5px);}
.brz .brz-css-ykrno .brz-menu__dropdown-right {right: calc(100% + 5px);}
.brz .brz-css-ykrno .brz-menu__dropdown-left:before {left: -5px;}
.brz .brz-css-ykrno .brz-menu__dropdown-right:before {right: -5px;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-ykrno .brz-mega-menu__dropdown {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ykrno {font-family: Montserrat,sans-serif;color: rgba(0,0,0,1);}
.brz .brz-css-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-ykrno .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-ykrno .brz-mm-menu__item {font-family: Montserrat,sans-serif;color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-ykrno {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-ykrno .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-ykrno .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno.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-ykrno .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__sub-menu {font-family: Montserrat,sans-serif;color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-ykrno .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: undefined;}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-ykrno .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .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-ykrno {font-size: 12px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-ykrno .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-ykrno .brz-mm-menu__item {font-size: 12px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-ykrno .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-ykrno .brz-mm-navbar {font-family: Montserrat,sans-serif;font-size: 12px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;border-color: rgba(85,85,85,1);}
.brz .brz-css-ykrno.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(18px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-ykrno .brz-menu__sub-menu {font-size: 12px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-ykrno .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-ykrno .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-ykrno .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-ykrno.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-ykrno .brz-mega-menu__dropdown {display: none;}}
@media (max-width:767px) {.brz .brz-css-ykrno {font-family: Montserrat,sans-serif;color: rgba(0,0,0,1);}
.brz .brz-css-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .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-ykrno .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-ykrno .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-ykrno .brz-mm-menu__item {font-family: Montserrat,sans-serif;color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz nav.brz-mm-menu.brz-css-ykrno {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-ykrno .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-ykrno .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno.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-ykrno .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__sub-menu {font-family: Montserrat,sans-serif;color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-ykrno .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current {background-color: undefined;}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-ykrno .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-ykrno .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-ykrno .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:767px) {.brz .brz-css-ykrno {font-size: 13px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-ykrno .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-ykrno .brz-mm-menu__item {font-size: 13px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-ykrno .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-ykrno .brz-mm-navbar {font-family: Montserrat,sans-serif;font-size: 13px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;border-color: rgba(85,85,85,1);}
.brz .brz-css-ykrno.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(19.5px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-ykrno .brz-menu__sub-menu {font-size: 13px;font-weight: 600;line-height: 1.5;letter-spacing: 1px;}
.brz .brz-css-ykrno .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-ykrno > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-ykrno .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-ykrno .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-ykrno .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-ykrno.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-ykrno .brz-mega-menu__dropdown {display: block;}}
.brz .brz-css-sylhq {width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sylhq {width: 100%;}}
@media (max-width:767px) {.brz .brz-css-sylhq {width: 100%;}}
.brz .brz-css-lpnkc {padding: 75px 0px 75px 0px;margin: 0;}
.brz .brz-css-lpnkc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-lpnkc > .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-lpnkc > .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-lpnkc {padding: 50px 15px 50px 15px;margin: 0;}
.brz .brz-css-lpnkc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-lpnkc > .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-lpnkc > .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-lpnkc {padding: 25px 15px 25px 15px;margin: 0;}
.brz .brz-css-lpnkc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-lpnkc > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-lpnkc > .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-lpnkc > .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-wlfme {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-wlfme {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wlfme {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wlfme {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-wlfme {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-wlfme {max-width: 100%;}}
.brz .brz-css-xhjen {max-width: 50%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-xhjen {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xhjen:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xhjen .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xhjen {max-width: 75%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xhjen {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xhjen:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xhjen .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-xhjen {max-width: 40%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-xhjen {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xhjen:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xhjen .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-pcaew {padding-top: 21.5774%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pcaew {padding-top: 23.9738%;}}
@media (max-width:767px) {.brz .brz-css-pcaew {padding-top: 21.5756%;}}
.brz .brz-css-nwqik {z-index: auto;margin: 0;}
.brz .brz-css-nwqik .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-nwqik .brz-container {justify-content: center;}
.brz .brz-css-nwqik > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-nwqik > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-nwqik {display: block;}}
@media (min-width:991px) {.brz .brz-css-nwqik > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nwqik {z-index: auto;margin: 0;}
.brz .brz-css-nwqik .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-nwqik .brz-container {justify-content: center;}
.brz .brz-css-nwqik > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-nwqik > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nwqik {display: block;}}
@media (max-width:767px) {.brz .brz-css-nwqik {z-index: auto;margin: 0;}
.brz .brz-css-nwqik .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-nwqik .brz-container {justify-content: center;}
.brz .brz-css-nwqik > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-nwqik > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-nwqik {display: block;}}
.brz .brz-css-mdosh {padding: 75px 0px 75px 0px;}
.brz .brz-css-mdosh > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-mdosh > .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-mdosh > .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-mdosh > .brz-bg > .brz-bg-image {background-attachment: scroll;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mdosh {padding: 50px 15px 50px 15px;}
.brz .brz-css-mdosh > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-mdosh > .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-mdosh > .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-mdosh {padding: 25px 15px 25px 15px;}
.brz .brz-css-mdosh > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-image:after {content: "";background-image: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-mdosh > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-mdosh > .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-mdosh > .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-lbvos {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-lbvos {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lbvos {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lbvos {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-lbvos {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-lbvos {max-width: 100%;}}
.brz .brz-css-xdvsw {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-xdvsw {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xdvsw {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xdvsw {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-xdvsw {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-xdvsw {display: flex;position: relative;}}
.brz .brz-css-qissz {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qissz {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
@media (max-width:767px) {.brz .brz-css-qissz {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
.brz .brz-css-yxwgu {padding: 0px 5px 20px 5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yxwgu {padding: 0px 5px 20px 5px;}}
@media (max-width:767px) {.brz .brz-css-yxwgu {padding: 0px 5px 20px 5px;}}
.brz .brz-css-jiryg {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jiryg {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 0;}}
@media (max-width:767px) {.brz .brz-css-jiryg {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 0;}}
.brz .brz-css-ntraw.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Montserrat,sans-serif;font-weight: 600;font-size: 12px;line-height: 1.5;letter-spacing: 1px;color: rgba(255,255,255,1);border: 2px solid rgba(69,218,204,0);border-radius: 2px;background-color: rgba(69,218,204,1);background-image: none;padding: 14px 42px 14px 42px;flex-flow: row-reverse nowrap;}
.brz .brz-css-ntraw.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);background-color: rgba(69,218,204,1);}
.brz .brz-css-ntraw .brz-btn--story-container {border: 2px solid rgba(69,218,204,0);flex-flow: row-reverse nowrap;border-radius: 2px;}
@media (min-width:991px) {.brz .brz-css-ntraw.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
@media (min-width:991px) {.brz .brz-css-ntraw.brz-btn:hover {background-color: rgba(69,218,204,.8);}
.brz .brz-css-ntraw.brz-btn.brz-btn-submit:hover {background-color: rgba(69,218,204,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ntraw.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Montserrat,sans-serif;font-weight: 600;font-size: 12px;line-height: 1.5;letter-spacing: 1px;color: rgba(255,255,255,1);border: 2px solid rgba(69,218,204,0);border-radius: 2px;background-color: rgba(69,218,204,1);background-image: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-ntraw.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);background-color: rgba(69,218,204,1);}
.brz .brz-css-ntraw .brz-btn--story-container {border: 2px solid rgba(69,218,204,0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ntraw.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
@media (max-width:767px) {.brz .brz-css-ntraw.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Montserrat,sans-serif;font-weight: 600;font-size: 13px;line-height: 1.5;letter-spacing: 1px;color: rgba(255,255,255,1);border: 2px solid rgba(69,218,204,0);border-radius: 2px;background-color: rgba(69,218,204,1);background-image: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-ntraw.brz-btn.brz-btn-submit {color: rgba(255,255,255,1);background-color: rgba(69,218,204,1);}
.brz .brz-css-ntraw .brz-btn--story-container {border: 2px solid rgba(69,218,204,0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:767px) {.brz .brz-css-ntraw.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
.brz .brz-css-zmtiq {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-zmtiq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-zmtiq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-zmtiq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zmtiq {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zmtiq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-zmtiq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-zmtiq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-zmtiq {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-zmtiq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-zmtiq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-zmtiq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-jtkxp {padding-top: 25.3333%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jtkxp {padding-top: 25.3333%;}}
@media (max-width:767px) {.brz .brz-css-jtkxp {padding-top: 25.3326%;}}
.brz .brz-css-etywh {max-width: 31%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-etywh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-etywh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-etywh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-etywh {max-width: 31%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-etywh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-etywh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-etywh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-etywh {max-width: 31%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-etywh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-etywh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-etywh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-roxgp {padding-top: 75%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-roxgp {padding-top: 75.01%;}}
@media (max-width:767px) {.brz .brz-css-roxgp {padding-top: 75.0038%;}}
.brz .brz-css-bonsb {max-width: 64%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-bonsb {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bonsb:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bonsb .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bonsb {max-width: 64%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bonsb {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bonsb:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bonsb .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-bonsb {max-width: 64%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-bonsb {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bonsb:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bonsb .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-focyq {padding-top: 37.9301%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-focyq {padding-top: 37.9244%;}}
@media (max-width:767px) {.brz .brz-css-focyq {padding-top: 37.9288%;}}
.brz .brz-css-obrzo {max-width: 56%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-obrzo {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-obrzo:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-obrzo .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-obrzo {max-width: 56%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-obrzo {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-obrzo:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-obrzo .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-obrzo {max-width: 56%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-obrzo {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-obrzo:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-obrzo .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-bdskp {padding-top: 45.2842%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bdskp {padding-top: 45.2822%;}}
@media (max-width:767px) {.brz .brz-css-bdskp {padding-top: 45.2824%;}}
.brz .brz-css-ydbpv {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ydbpv {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ydbpv:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ydbpv .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ydbpv {max-width: 90%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ydbpv {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ydbpv:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ydbpv .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ydbpv {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ydbpv {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ydbpv:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ydbpv .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-bjtlg {padding-top: 65.401%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bjtlg {padding-top: 65.4046%;}}
@media (max-width:767px) {.brz .brz-css-bjtlg {padding-top: 65.3995%;}}
.brz .brz-css-dgcit {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-dgcit {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-dgcit:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-dgcit .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dgcit {max-width: 80%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dgcit {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-dgcit:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-dgcit .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-dgcit {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-dgcit {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-dgcit:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-dgcit .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-euyiq {padding-top: 65.401%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-euyiq {padding-top: 65.3981%;}}
@media (max-width:767px) {.brz .brz-css-euyiq {padding-top: 65.3995%;}}
.brz .brz-css-ymygu {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ymygu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ymygu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ymygu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ymygu {max-width: 75%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ymygu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ymygu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ymygu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ymygu {max-width: 55%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ymygu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ymygu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ymygu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-ohwhj {padding-top: 65.401%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ohwhj {padding-top: 65.402%;}}
@media (max-width:767px) {.brz .brz-css-ohwhj {padding-top: 65.402%;}}
.brz .brz-css-jkiuz {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-jkiuz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkiuz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkiuz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jkiuz {max-width: 90%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jkiuz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkiuz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkiuz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-jkiuz {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-jkiuz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkiuz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkiuz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-ksnbs {padding-top: 65.401%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ksnbs {padding-top: 65.4046%;}}
@media (max-width:767px) {.brz .brz-css-ksnbs {padding-top: 65.3995%;}}
.brz .brz-css-kdbqz {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-kdbqz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kdbqz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kdbqz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kdbqz {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kdbqz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kdbqz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kdbqz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-kdbqz {max-width: 50%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-kdbqz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kdbqz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kdbqz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-qpykq {padding-top: 65.401%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qpykq {padding-top: 65.4065%;}}
@media (max-width:767px) {.brz .brz-css-qpykq {padding-top: 65.3995%;}}
.brz .brz-css-ldbql {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ldbql {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ldbql:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ldbql .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ldbql {max-width: 75%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ldbql {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ldbql:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ldbql .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ldbql {max-width: 55%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ldbql {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ldbql:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ldbql .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-jxryb {padding-top: 65.4001%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jxryb {padding-top: 65.3968%;}}
@media (max-width:767px) {.brz .brz-css-jxryb {padding-top: 65.402%;}}
.brz .brz-css-eraji {font-family: Lato,sans-serif;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-eraji .brz-accordion__item:not(.brz-accordion__item--active) {border: 2px solid rgba(220,222,225,1);color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);}
.brz .brz-css-eraji .brz-accordion__item {border-radius: 0;}
.brz .brz-css-eraji .brz-accordion__item.brz-accordion__item--active {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);}
.brz .brz-css-eraji .brz-accordion__nav--icon {font-size: 12px;}
.brz .brz-css-eraji .brz-accordion__item:not(:last-child) {margin-bottom: 3px;}
.brz .brz-css-eraji .brz-accordion__item-content {padding: 0px 10px 0px 10px;transition: height .3s ease-out;margin-top: -2px;}
.brz .brz-css-eraji .brz-accordion__filter-wrapper {justify-content: flex-start;font-family: Lato,sans-serif;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-eraji .brz-accordion__filter {margin-bottom: 20px;}
.brz .brz-css-eraji .brz-accordion__filter__item {margin: 1px 3px 0 3px;}
.brz .brz-css-eraji .brz-accordion__filter__item {color: rgba(115,119,127,.7);}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1:not(.brz-accordion__filter__item--active) {background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1 {padding: 10px;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1.brz-accordion__filter__item--active {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);}
.brz .brz-css-eraji .brz-accordion__filter--style-2 {padding: 10px;background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);border-radius: 0;display: inline-flex;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-2.brz-accordion__filter__item--active {color: rgba(115,119,127,.7);}
@media (min-width:991px) {.brz .brz-css-eraji .brz-accordion__item:not(.brz-accordion__item--active) {transition-duration: .5s;transition-property: color,box-shadow,background,border;}
.brz .brz-css-eraji .brz-accordion__item.brz-accordion__item--active {transition-duration: .5s;transition-property: color,box-shadow,background,border;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eraji {font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-eraji .brz-accordion__item:not(.brz-accordion__item--active) {border: 2px solid rgba(220,222,225,1);color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);}
.brz .brz-css-eraji .brz-accordion__item {border-radius: 0;}
.brz .brz-css-eraji .brz-accordion__item.brz-accordion__item--active {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);}
.brz .brz-css-eraji .brz-accordion__nav--icon {font-size: 10.5px;}
.brz .brz-css-eraji .brz-accordion__item:not(:last-child) {margin-bottom: 3px;}
.brz .brz-css-eraji .brz-accordion__item-content {padding: 0px 10px 0px 10px;transition: height .3s ease-out;margin-top: -2px;}
.brz .brz-css-eraji .brz-accordion__filter-wrapper {justify-content: flex-start;font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-eraji .brz-accordion__filter {margin-bottom: 20px;}
.brz .brz-css-eraji .brz-accordion__filter__item {margin: 1px 3px 0 3px;}
.brz .brz-css-eraji .brz-accordion__filter__item {color: rgba(115,119,127,.7);}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1:not(.brz-accordion__filter__item--active) {background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1 {padding: 10px;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1.brz-accordion__filter__item--active {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);}
.brz .brz-css-eraji .brz-accordion__filter--style-2 {padding: 10px;background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);border-radius: 0;display: inline-flex;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-2.brz-accordion__filter__item--active {color: rgba(115,119,127,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eraji .brz-accordion__item:not(.brz-accordion__item--active) {transition-duration: .5s;transition-property: color,box-shadow,background,border;}
.brz .brz-css-eraji .brz-accordion__item.brz-accordion__item--active {transition-duration: .5s;transition-property: color,box-shadow,background,border;}}
@media (max-width:767px) {.brz .brz-css-eraji {font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-eraji .brz-accordion__item:not(.brz-accordion__item--active) {border: 2px solid rgba(220,222,225,1);color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);}
.brz .brz-css-eraji .brz-accordion__item {border-radius: 0;}
.brz .brz-css-eraji .brz-accordion__item.brz-accordion__item--active {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);}
.brz .brz-css-eraji .brz-accordion__nav--icon {font-size: 10.5px;}
.brz .brz-css-eraji .brz-accordion__item:not(:last-child) {margin-bottom: 3px;}
.brz .brz-css-eraji .brz-accordion__item-content {padding: 0px 10px 0px 10px;transition: height .3s ease-out;margin-top: -2px;}
.brz .brz-css-eraji .brz-accordion__filter-wrapper {justify-content: flex-start;font-family: Lato,sans-serif;font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-eraji .brz-accordion__filter {margin-bottom: 20px;}
.brz .brz-css-eraji .brz-accordion__filter__item {margin: 1px 3px 0 3px;}
.brz .brz-css-eraji .brz-accordion__filter__item {color: rgba(115,119,127,.7);}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1:not(.brz-accordion__filter__item--active) {background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1 {padding: 10px;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-1.brz-accordion__filter__item--active {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);}
.brz .brz-css-eraji .brz-accordion__filter--style-2 {padding: 10px;background-color: rgba(255,255,255,1);border: 2px solid rgba(220,222,225,1);border-radius: 0;display: inline-flex;}
.brz .brz-css-eraji .brz-accordion__filter__item--style-2.brz-accordion__filter__item--active {color: rgba(115,119,127,.7);}}
@media (max-width:767px) {.brz .brz-css-eraji .brz-accordion__item:not(.brz-accordion__item--active) {transition-duration: .5s;transition-property: color,box-shadow,background,border;}
.brz .brz-css-eraji .brz-accordion__item.brz-accordion__item--active {transition-duration: .5s;transition-property: color,box-shadow,background,border;}}
.brz .brz-css-uudnn {max-width: 62%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-uudnn {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uudnn:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uudnn .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uudnn {max-width: 90%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uudnn {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uudnn:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uudnn .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-uudnn {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-uudnn {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uudnn:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uudnn .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-ygpgc {padding-top: 23.1248%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ygpgc {padding-top: 23.1248%;}}
@media (max-width:767px) {.brz .brz-css-ygpgc {padding-top: 23.1187%;}}
.brz .brz-css-rfrzw {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-rfrzw {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rfrzw:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rfrzw .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rfrzw {max-width: 80%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rfrzw {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rfrzw:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rfrzw .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-rfrzw {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-rfrzw {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rfrzw:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rfrzw .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-hzrfr {padding-top: 16.0009%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hzrfr {padding-top: 16.0014%;}}
@media (max-width:767px) {.brz .brz-css-hzrfr {padding-top: 15.9943%;}}
.brz .brz-css-fxaiz {max-width: 98%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-fxaiz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-fxaiz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-fxaiz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fxaiz {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fxaiz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-fxaiz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-fxaiz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-fxaiz {max-width: 50%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-fxaiz {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-fxaiz:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-fxaiz .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-kfqen {padding-top: 17.6267%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kfqen {padding-top: 17.6271%;}}
@media (max-width:767px) {.brz .brz-css-kfqen {padding-top: 17.6261%;}}
.brz .brz-css-wdqqe {max-width: 69%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-wdqqe {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wdqqe:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wdqqe .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wdqqe {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wdqqe {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wdqqe:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wdqqe .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-wdqqe {max-width: 50%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-wdqqe {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wdqqe:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wdqqe .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-pmpqw {padding-top: 22.7171%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pmpqw {padding-top: 22.7191%;}}
@media (max-width:767px) {.brz .brz-css-pmpqw {padding-top: 22.7153%;}}
.brz .brz-css-qovrm {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qovrm {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-qovrm {height: 50px;}}
.brz .brz-css-ikoco {max-width: 44%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ikoco {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ikoco:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ikoco .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ikoco {max-width: 90%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ikoco {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ikoco:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ikoco .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ikoco {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ikoco {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ikoco:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ikoco .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-acris {padding-top: 35.246%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-acris {padding-top: 35.2474%;}}
@media (max-width:767px) {.brz .brz-css-acris {padding-top: 35.247%;}}
.brz .brz-css-enwjp {max-width: 35%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-enwjp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-enwjp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-enwjp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-enwjp {max-width: 80%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-enwjp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-enwjp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-enwjp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-enwjp {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-enwjp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-enwjp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-enwjp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-ayozd {padding-top: 68.4178%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ayozd {padding-top: 68.4174%;}}
@media (max-width:767px) {.brz .brz-css-ayozd {padding-top: 68.4251%;}}
.brz .brz-css-ojvpy {max-width: 30%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ojvpy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ojvpy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ojvpy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ojvpy {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ojvpy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ojvpy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ojvpy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ojvpy {max-width: 50%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ojvpy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ojvpy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ojvpy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-vpnjn {padding-top: 50.0071%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vpnjn {padding-top: 50%;}}
@media (max-width:767px) {.brz .brz-css-vpnjn {padding-top: 50.0078%;}}
.brz .brz-css-rmhrb {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-rmhrb {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rmhrb:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rmhrb .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rmhrb {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rmhrb {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rmhrb:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rmhrb .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-rmhrb {max-width: 50%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-rmhrb {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rmhrb:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-rmhrb .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-jqnpt {padding-top: 13.802%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jqnpt {padding-top: 13.7955%;}}
@media (max-width:767px) {.brz .brz-css-jqnpt {padding-top: 13.7936%;}}
.brz .brz-css-aogja {max-width: 87%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-aogja {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aogja:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aogja .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aogja {max-width: 90%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aogja {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aogja:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aogja .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-aogja {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-aogja {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aogja:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aogja .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-pcaib {padding-top: 18.2441%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pcaib {padding-top: 18.2462%;}}
@media (max-width:767px) {.brz .brz-css-pcaib {padding-top: 18.2441%;}}
.brz .brz-css-djjjg {max-width: 35%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-djjjg {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-djjjg:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-djjjg .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-djjjg {max-width: 80%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-djjjg {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-djjjg:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-djjjg .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-djjjg {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-djjjg {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-djjjg:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-djjjg .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-bczth {padding-top: 66.6667%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bczth {padding-top: 66.6667%;}}
@media (max-width:767px) {.brz .brz-css-bczth {padding-top: 66.6667%;}}
.brz .brz-css-gpekh {max-width: 88%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-gpekh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gpekh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gpekh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gpekh {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gpekh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gpekh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gpekh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-gpekh {max-width: 50%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-gpekh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gpekh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gpekh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-viidp {padding-top: 17.9981%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-viidp {padding-top: 17.9972%;}}
@media (max-width:767px) {.brz .brz-css-viidp {padding-top: 17.9984%;}}
.brz .brz-css-eorgx {max-width: 75%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-eorgx {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-eorgx:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-eorgx .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eorgx {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eorgx {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-eorgx:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-eorgx .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-eorgx {max-width: 50%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-eorgx {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-eorgx:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-eorgx .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-msylj {padding-top: 20.911%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-msylj {padding-top: 20.9184%;}}
@media (max-width:767px) {.brz .brz-css-msylj {padding-top: 20.9154%;}}
.brz .brz-css-gdnrl {max-width: 74%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-gdnrl {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gdnrl:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gdnrl .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gdnrl {max-width: 74%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gdnrl {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gdnrl:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gdnrl .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-gdnrl {max-width: 74%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-gdnrl {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gdnrl:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-gdnrl .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-isaqd {padding-top: 19.1778%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-isaqd {padding-top: 19.1786%;}}
@media (max-width:767px) {.brz .brz-css-isaqd {padding-top: 19.1766%;}}
.brz .brz-css-kebvy {width: 75%;}
.brz .brz-css-kebvy .brz-hr {border-top: 2px solid rgba(118,138,157,.75);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kebvy {width: 75%;}
.brz .brz-css-kebvy .brz-hr {border-top: 2px solid rgba(118,138,157,.75);}}
@media (max-width:767px) {.brz .brz-css-kebvy {width: 75%;}
.brz .brz-css-kebvy .brz-hr {border-top: 2px solid rgba(118,138,157,.75);}}
.brz .brz-css-tikol {width: 100%;}
.brz .brz-css-tikol:before {border: 0px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-tikol .brz-shortcode__placeholder {border-radius: 0;}
@media (min-width:991px) {.brz .brz-css-tikol:before {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tikol .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-tikol {width: 100%;}
.brz .brz-css-tikol:before {border: 0px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-tikol .brz-shortcode__placeholder {border-radius: 0;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tikol:before {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tikol .brz-shortcode__placeholder {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-tikol {width: 100%;}
.brz .brz-css-tikol:before {border: 0px solid rgba(220,222,225,1);border-radius: 0;}
.brz .brz-css-tikol .brz-shortcode__placeholder {border-radius: 0;}}
@media (max-width:767px) {.brz .brz-css-tikol:before {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-tikol .brz-shortcode__placeholder {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-esccu {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-esccu {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-esccu {padding: 0;}}
.brz .brz-css-wegfe {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wegfe {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-wegfe {margin: 0;}}
.brz .brz-css-mlydl > .brz-bg > .brz-bg-color {background-color: transparent;background-image: linear-gradient(90deg,rgba(9,20,38,1) 0%,rgba(5,22,112,1) 100%);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mlydl > .brz-bg > .brz-bg-color {background-color: transparent;background-image: linear-gradient(90deg,rgba(9,20,38,1) 0%,rgba(5,22,112,1) 100%);}}
@media (max-width:767px) {.brz .brz-css-mlydl > .brz-bg > .brz-bg-color {background-color: transparent;background-image: linear-gradient(90deg,rgba(9,20,38,1) 0%,rgba(5,22,112,1) 100%);}}
.brz .brz-css-zvono {flex: 1 1 32.7%;max-width: 32.7%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zvono {flex: 1 1 8.6%;max-width: 8.6%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-zvono {flex: 1 1 14%;max-width: 14%;justify-content: center;}}
.brz .brz-css-slmye {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-slmye {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-slmye {padding: 0;}}
.brz .brz-css-wxznw {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wxznw {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-wxznw {justify-content: center;}}
.brz .brz-css-mtmar {flex: 1 1 30.1%;max-width: 30.1%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mtmar {flex: 1 1 45.9%;max-width: 45.9%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-mtmar {flex: 1 1 52.8%;max-width: 52.8%;justify-content: center;}}
.brz .brz-css-shvcz {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-shvcz {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-shvcz {padding: 0;}}
.brz .brz-css-gpgqj {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gpgqj {justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-gpgqj {justify-content: center;}}
@media (min-width:991px) {.brz .brz-css-bmqds .brz-mm-menu__icon {display: none;font-size: 23px;color: rgba(255,255,255,1);}
.brz .brz-css-bmqds .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bmqds .brz-mm-menu__icon {display: none;font-size: 23px;color: rgba(255,255,255,1);}
.brz .brz-css-bmqds .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-bmqds .brz-mm-menu__icon {display: none;font-size: 23px;color: rgba(255,255,255,1);}
.brz .brz-css-bmqds .brz-menu {display: flex;}}
.brz .brz-css-rdrds {font-family: Red Hat Text,sans-serif;color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -24.5px 0px -24.5px;}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(255,141,0,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(255,141,0,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz nav.brz-mm-menu.brz-css-rdrds {background-color: rgba(26,41,69,1);}
.brz .brz-css-rdrds.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-rdrds .brz-mm-panels > .brz-mm-panel {background-color: rgba(26,41,69,1);}
.brz .brz-css-rdrds.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(255,255,255,.08);}
.brz .brz-css-rdrds .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-rdrds .brz-menu__sub-menu {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__sub-menu .brz-a:hover {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-rdrds .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-rdrds .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}
@media (min-width:991px) {.brz .brz-css-rdrds {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 24.5px;margin-left: 24.5px;}
.brz .brz-css-rdrds .brz-mm-menu__item {font-size: 26px;font-weight: 400;line-height: 1.4;letter-spacing: 0px;}
.brz .brz-css-rdrds .brz-mm-menu__item .brz-a {justify-content: center;}
.brz .brz-css-rdrds .brz-mm-navbar {font-size: 26px;font-weight: 400;line-height: 1.4;letter-spacing: 0px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-rdrds.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(36.4px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-rdrds .brz-menu__sub-menu {font-size: 13px;font-weight: 400;letter-spacing: 0px;}}
@media (min-width:991px) {.brz .brz-css-rdrds:hover {color: rgba(255,141,0,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item > .brz-a:hover {color: rgba(255,141,0,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rdrds {font-family: Montserrat,sans-serif;color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -7.5px 0px -7.5px;}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(255,141,0,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(255,141,0,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz nav.brz-mm-menu.brz-css-rdrds {background-color: rgba(26,41,69,1);}
.brz .brz-css-rdrds.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-rdrds .brz-mm-panels > .brz-mm-panel {background-color: rgba(26,41,69,1);}
.brz .brz-css-rdrds.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(255,255,255,.08);}
.brz .brz-css-rdrds .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-rdrds .brz-menu__sub-menu {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__sub-menu .brz-a:hover {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-rdrds .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-rdrds .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rdrds {font-size: 13px;font-weight: 400;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 7.5px;margin-left: 7.5px;}
.brz .brz-css-rdrds .brz-mm-menu__item {font-size: 13px;font-weight: 400;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-rdrds .brz-mm-menu__item .brz-a {justify-content: center;}
.brz .brz-css-rdrds .brz-mm-navbar {font-size: 13px;font-weight: 400;line-height: 1.6;letter-spacing: 0px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-rdrds.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(20.8px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-rdrds .brz-menu__sub-menu {font-size: 12px;font-weight: 600;letter-spacing: 1px;}}
@media (max-width:767px) {.brz .brz-css-rdrds {font-family: Red Hat Text,sans-serif;color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(255,141,0,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(255,141,0,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,255,255,.8);}
.brz .brz-css-rdrds .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz nav.brz-mm-menu.brz-css-rdrds {background-color: rgba(26,41,69,1);}
.brz .brz-css-rdrds.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-rdrds .brz-mm-panels > .brz-mm-panel {background-color: rgba(26,41,69,1);}
.brz .brz-css-rdrds.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(255,255,255,.08);}
.brz .brz-css-rdrds .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-rdrds .brz-menu__sub-menu {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__sub-menu .brz-a:hover {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-rdrds .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-rdrds .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,141,0,1);}
.brz .brz-css-rdrds .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:767px) {.brz .brz-css-rdrds {font-size: 15px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-rdrds .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-rdrds .brz-mm-menu__item {font-size: 14px;font-weight: 600;line-height: 1.4;letter-spacing: 0px;}
.brz .brz-css-rdrds .brz-mm-menu__item .brz-a {justify-content: center;}
.brz .brz-css-rdrds .brz-mm-navbar {font-size: 14px;font-weight: 600;line-height: 1.4;letter-spacing: 0px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-rdrds.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(19.6px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-rdrds .brz-menu__sub-menu {font-size: 13px;font-weight: 600;letter-spacing: 1px;}}
.brz .brz-css-kanvh {flex: 1 1 37.2%;max-width: 37.2%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kanvh {flex: 1 1 26.8%;max-width: 26.8%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-kanvh {flex: 1 1 32.3%;max-width: 32.3%;justify-content: center;}}
.brz .brz-css-vyxfl {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vyxfl {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-vyxfl {padding: 0;}}
.brz .brz-css-eeiat {padding: 10px 0px 20px 0px;}
.brz .brz-css-eeiat > .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-eeiat > .brz-bg > .brz-bg-color {background-color: transparent;background-image: linear-gradient(90deg,rgba(9,20,38,1) 0%,rgba(5,22,112,1) 100%);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eeiat {padding: 15px;}
.brz .brz-css-eeiat > .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-eeiat > .brz-bg > .brz-bg-color {background-color: transparent;background-image: linear-gradient(90deg,rgba(9,20,38,1) 0%,rgba(5,22,112,1) 100%);}}
@media (max-width:767px) {.brz .brz-css-eeiat {padding: 15px;}
.brz .brz-css-eeiat > .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-eeiat > .brz-bg > .brz-bg-color {background-color: transparent;background-image: linear-gradient(90deg,rgba(9,20,38,1) 0%,rgba(5,22,112,1) 100%);}}
.brz .brz-css-oaemr {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oaemr {flex: 1 1 26.4%;max-width: 26.4%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-oaemr {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
.brz .brz-css-ozxns {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ozxns {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-ozxns {padding: 0;}}
.brz .brz-css-mtjxw {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mtjxw {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-mtjxw {justify-content: center;}}
.brz .brz-css-akotp {flex: 1 1 28.9%;max-width: 28.9%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-akotp {flex: 1 1 46.4%;max-width: 46.4%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-akotp {flex: 1 1 65.8%;max-width: 65.8%;justify-content: center;}}
.brz .brz-css-ikgbc {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ikgbc {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-ikgbc {padding: 0;}}
.brz .brz-css-chhkd {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-chhkd {justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-chhkd {justify-content: center;}}
@media (min-width:991px) {.brz .brz-css-yeube .brz-mm-menu__icon {display: none;font-size: 23px;}
.brz .brz-css-yeube .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yeube .brz-mm-menu__icon {display: none;font-size: 23px;}
.brz .brz-css-yeube .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-yeube .brz-mm-menu__icon {display: none;font-size: 23px;}
.brz .brz-css-yeube .brz-menu {display: flex;}}
.brz .brz-css-ynphk {font-family: Red Hat Text,sans-serif;color: rgba(255,255,255,.8);}
.brz .brz-css-ynphk .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -28.5px 0px -28.5px;}
.brz .brz-css-ynphk .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(255,255,255,.8);}
.brz .brz-css-ynphk .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(255,141,0,1);}
.brz .brz-css-ynphk .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(255,141,0,1);}