-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2133 lines (2133 loc) · 354 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><link rel="icon" href="assets/fcde519aa431fc25c1beadadf0a41292.ico" sizes="16x16"><title>Skedu - Easy to use Appointment Booking App | Home</title><meta name="description" content="Skedu makes it easy to run your appointments based business with simple booking and scheduling tools that increases reoccurring bookings from your customers."><meta property="og:title" content="Skedu - Easy to use Appointment Booking App"><meta property="og:description" content="Skedu makes it easy to run your appointments based business with simple booking and scheduling tools that increases reoccurring bookings from your customers."><meta property="og:url" content="https://skedu.onrender.com"><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/e00de9e545cd5aa5adb23a95eb5745b8.css" rel="stylesheet"><link class="brz-link brz-link-preview-pro" href="assets/03dfe91f1ccb965c8211fe3b60ebf16f.css" rel="stylesheet"><style class="brz-style">.brz .css-1riziv1, .brz [data-css-1riziv1] {color: rgba(255,161,1,1);border-color: rgba(255,255,255,1);background-color: rgba(255,119,0,0);background-image: none;border-width: 2px;border-style: solid;width: 57px;height: 57px;font-size: 21px;padding: 16px;border-radius: 29px;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-1riziv1:hover, .brz [data-css-1riziv1]:hover {color: rgba(255,255,255,1);border-color: rgba(255,255,255,1);background-color: rgba(255,119,0,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1riziv1, .brz [data-css-1riziv1] {width: 57px;height: 57px;font-size: 21px;padding: 16px;border-radius: 29px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-1riziv1, .brz [data-css-1riziv1] {width: 57px;height: 57px;font-size: 21px;padding: 16px;border-radius: 29px;stroke-width: 0;}}
.brz .css-1v1pg38, .brz [data-css-1v1pg38] {color: rgba(1,95,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: 58px;height: 58px;font-size: 58px;padding: 0px;border-radius: 0;stroke-width: 2.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-1v1pg38:hover, .brz [data-css-1v1pg38]:hover {color: rgba(255,161,1,.8);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1v1pg38, .brz [data-css-1v1pg38] {width: 58px;height: 58px;font-size: 58px;padding: 0px;border-radius: 0px;stroke-width: 2.3;}}
@media (max-width: 767px) {.brz .css-1v1pg38, .brz [data-css-1v1pg38] {width: 58px;height: 58px;font-size: 58px;padding: 0px;border-radius: 0px;stroke-width: 2.3;}}
.brz .css-19rcg3, .brz [data-css-19rcg3] {color: rgba(5,202,182,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: 25px;height: 25px;font-size: 25px;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-19rcg3:hover, .brz [data-css-19rcg3]:hover {color: rgba(5,202,182,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-19rcg3, .brz [data-css-19rcg3] {width: 25px;height: 25px;font-size: 25px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-19rcg3, .brz [data-css-19rcg3] {width: 25px;height: 25px;font-size: 25px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-1de22m2, .brz [data-css-1de22m2] {color: rgba(255,161,1,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 48px;height: 48px;font-size: 48px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-1de22m2:hover, .brz [data-css-1de22m2]:hover {color: rgba(255,255,255,.84);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1de22m2, .brz [data-css-1de22m2] {width: 48px;height: 48px;font-size: 48px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-1de22m2, .brz [data-css-1de22m2] {width: 48px;height: 48px;font-size: 48px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-o1q7oi, .brz [data-css-o1q7oi] {color: rgba(28,28,28,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 22px;height: 22px;font-size: 22px;padding: 0px;border-radius: 0;stroke-width: 1;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-o1q7oi:hover, .brz [data-css-o1q7oi]:hover {color: rgba(245,212,209,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-o1q7oi, .brz [data-css-o1q7oi] {width: 22px;height: 22px;font-size: 22px;padding: 0px;border-radius: 0px;stroke-width: 1;}}
@media (max-width: 767px) {.brz .css-o1q7oi, .brz [data-css-o1q7oi] {width: 22px;height: 22px;font-size: 22px;padding: 0px;border-radius: 0px;stroke-width: 1;}}
.brz .css-w9j26t, .brz [data-css-w9j26t] {color: rgba(28,28,28,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-w9j26t:hover, .brz [data-css-w9j26t]:hover {color: rgba(28,28,28,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-w9j26t, .brz [data-css-w9j26t] {width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-w9j26t, .brz [data-css-w9j26t] {width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-1cigyll, .brz [data-css-1cigyll] {color: rgba(46,77,167,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-1cigyll:hover, .brz [data-css-1cigyll]:hover {color: rgba(73,108,209,.8);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1cigyll, .brz [data-css-1cigyll] {width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-1cigyll, .brz [data-css-1cigyll] {width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-d8vbex, .brz [data-css-d8vbex] {color: rgba(189,8,28,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-d8vbex:hover, .brz [data-css-d8vbex]:hover {color: rgba(214,61,78,.8);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-d8vbex, .brz [data-css-d8vbex] {width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-d8vbex, .brz [data-css-d8vbex] {width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-58z5hu, .brz [data-css-58z5hu] {color: rgba(29,156,235,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-58z5hu:hover, .brz [data-css-58z5hu]:hover {color: rgba(71,170,232,.8);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-58z5hu, .brz [data-css-58z5hu] {width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-58z5hu, .brz [data-css-58z5hu] {width: 18px;height: 18px;font-size: 18px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
.brz .css-1lt01gb, .brz [data-css-1lt01gb] {color: rgba(238,15,15,1);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;border-width: 0;border-style: solid;width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0;stroke-width: 0;transition: all .5s ease-in-out;transition-property: background,border-radius,color,border-color,box-shadow;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-webkit-transition-property: background,border-radius,color,border-color,box-shadow;-moz-transition-property: background,border-radius,color,border-color,box-shadow;}
@media (min-width: 991px) {.brz .css-1lt01gb:hover, .brz [data-css-1lt01gb]:hover {color: rgba(235,82,82,.8);border-color: rgba(35,157,219,0);background-color: rgba(189,225,244,0);background-image: none;}}
@media (max-width: 991px) {.brz .css-1lt01gb, .brz [data-css-1lt01gb] {width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0px;stroke-width: 0;}}
@media (max-width: 767px) {.brz .css-1lt01gb, .brz [data-css-1lt01gb] {width: 24px;height: 24px;font-size: 24px;padding: 0px;border-radius: 0px;stroke-width: 0;}}</style><style class="brz-style">@media (min-width:991px) {.brz .brz-css-gvwgf {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gvwgf {display: block;}}
@media (max-width:767px) {.brz .brz-css-gvwgf {display: block;}}
.brz .brz-css-fsfvc {padding: 10px 0px 10px 0px;}
.brz .brz-css-fsfvc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-fsfvc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-fsfvc > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-fsfvc > .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-fsfvc > .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-fsfvc {padding: 10px 0px 10px 0px;}
.brz .brz-css-fsfvc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-fsfvc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-fsfvc > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-fsfvc > .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-fsfvc > .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-fsfvc {padding: 10px 0px 10px 0px;}
.brz .brz-css-fsfvc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-fsfvc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-fsfvc > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-fsfvc > .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-fsfvc > .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-abpvn {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-abpvn {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-abpvn {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-abpvn {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:767px) {.brz .brz-css-abpvn {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-abpvn {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
.brz .brz-css-cbapk {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-cbapk > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-cbapk > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-cbapk {min-height: auto;display: flex;}
.brz .brz-css-cbapk > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .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-cbapk {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-cbapk > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-cbapk > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cbapk {min-height: auto;display: flex;}
.brz .brz-css-cbapk > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .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-cbapk {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-cbapk > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-cbapk > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-cbapk {min-height: auto;display: flex;}
.brz .brz-css-cbapk > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-cbapk > .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-koccg {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-koccg {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-koccg {padding: 0;max-width: 100%;}}
.brz .brz-css-fcxyu {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-fcxyu > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
@media (min-width:991px) {.brz .brz-css-fcxyu > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-fcxyu > .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-fcxyu {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-fcxyu > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-fcxyu > .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-fcxyu > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-fcxyu > .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-fcxyu {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-fcxyu > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 10px 0px 10px 0px;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}}
@media (max-width:767px) {.brz .brz-css-fcxyu > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-fcxyu > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-gvins {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;}
@media (min-width:991px) {.brz .brz-css-gvins {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-gvins {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-gvins {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-gvins {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-gvins {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-puqqr {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-puqqr {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-puqqr {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-puqqr {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-puqqr {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-puqqr {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-tpsny {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-tpsny {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-tpsny:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-tpsny .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tpsny {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-tpsny {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-tpsny:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-tpsny .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-tpsny {max-width: 30%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-tpsny {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-tpsny:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-tpsny .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-yymxa {padding-top: 21.3302%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yymxa {padding-top: 21.3342%;}}
@media (max-width:767px) {.brz .brz-css-yymxa {padding-top: 21.3333%;}}
.brz .brz-css-rnotx {width: 100%;}
.brz .brz-css-rnotx .menu {font-family: Lato,sans-serif;font-size: 14px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;}
.brz .brz-css-rnotx .menu .menu-item a {color: rgba(51,52,75,1);}
.brz .brz-css-rnotx .menu > .menu-item:not(:last-child) {margin-right: 15px;}
.brz .brz-css-rnotx .brz-menu-simple__icon--bars {color: rgba(51,52,75,1);background-color: rgba(51,52,75,1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rnotx {width: 100%;}
.brz .brz-css-rnotx .menu {font-size: 14px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;}
.brz .brz-css-rnotx .menu .menu-item a {color: rgba(51,52,75,1);}
.brz .brz-css-rnotx .menu > .menu-item:not(:last-child) {margin-right: 15px;}
.brz .brz-css-rnotx .brz-menu-simple__icon--bars {color: rgba(51,52,75,1);background-color: rgba(51,52,75,1);}}
@media (max-width:767px) {.brz .brz-css-rnotx {width: 100%;}
.brz .brz-css-rnotx .menu {font-size: 14px;line-height: 1.3;font-weight: 600;letter-spacing: 0px;}
.brz .brz-css-rnotx .menu .menu-item a {color: rgba(51,52,75,1);}
.brz .brz-css-rnotx .menu > .menu-item:not(:last-child) {margin-right: 15px;}
.brz .brz-css-rnotx .brz-menu-simple__icon--bars {color: rgba(51,52,75,1);background-color: rgba(51,52,75,1);}}
.brz .brz-css-avpka {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-avpka {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-avpka {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-avpka {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-avpka {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-avpka {display: flex;position: relative;}}
.brz .brz-css-xjmzq {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xjmzq {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
@media (max-width:767px) {.brz .brz-css-xjmzq {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
.brz .brz-css-qnpku {padding: 0px 5px 20px 5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qnpku {padding: 0px 5px 20px 5px;}}
@media (max-width:767px) {.brz .brz-css-qnpku {padding: 0px 5px 20px 5px;}}
.brz .brz-css-uxbyb {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uxbyb {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 0;}}
@media (max-width:767px) {.brz .brz-css-uxbyb {font-size: 16px;margin-left: 10px;margin-right: 0;stroke-width: 0;}}
.brz .brz-css-stoac.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Overpass,sans-serif;font-weight: 700;font-size: 15px;line-height: 1.6;letter-spacing: 0px;color: rgba(255,255,255,1);border: 2px solid rgba(5,202,182,0);border-radius: 2px;background-color: rgba(5,202,182,1);background-image: none;padding: 14px 42px 14px 42px;flex-flow: row-reverse nowrap;}
.brz .brz-css-stoac .brz-btn--story-container {border: 2px solid rgba(5,202,182,0);flex-flow: row-reverse nowrap;border-radius: 2px;}
@media (min-width:991px) {.brz .brz-css-stoac.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
@media (min-width:991px) {.brz .brz-css-stoac.brz-btn:hover {background-color: rgba(5,202,182,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-stoac.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Overpass,sans-serif;font-weight: 700;font-size: 17px;line-height: 1.6;letter-spacing: 0px;color: rgba(255,255,255,1);border: 2px solid rgba(5,202,182,0);border-radius: 2px;background-color: rgba(5,202,182,1);background-image: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-stoac .brz-btn--story-container {border: 2px solid rgba(5,202,182,0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-stoac.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
@media (max-width:767px) {.brz .brz-css-stoac.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Overpass,sans-serif;font-weight: 700;font-size: 15px;line-height: 1.6;letter-spacing: 0px;color: rgba(255,255,255,1);border: 2px solid rgba(5,202,182,0);border-radius: 2px;background-color: rgba(5,202,182,1);background-image: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-stoac .brz-btn--story-container {border: 2px solid rgba(5,202,182,0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:767px) {.brz .brz-css-stoac.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
.brz .brz-css-xnhzq {padding: 75px 0px 75px 0px;}
.brz .brz-css-xnhzq > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-xnhzq > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-xnhzq > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-xnhzq > .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-xnhzq > .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-xnhzq {padding: 50px 15px 50px 15px;}
.brz .brz-css-xnhzq > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-xnhzq > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-xnhzq > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-xnhzq > .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-xnhzq > .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-xnhzq {padding: 25px 15px 25px 15px;}
.brz .brz-css-xnhzq > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-xnhzq > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-xnhzq > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-xnhzq > .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-xnhzq > .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-jdfgu {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-jdfgu {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jdfgu {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jdfgu {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:767px) {.brz .brz-css-jdfgu {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-jdfgu {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
.brz .brz-css-kkcem {max-width: 80%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-kkcem {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kkcem:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kkcem .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kkcem {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-kkcem {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kkcem:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kkcem .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-kkcem {max-width: 40%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-kkcem {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kkcem:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-kkcem .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-nphzn {padding-top: 21.3321%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nphzn {padding-top: 21.3333%;}}
@media (max-width:767px) {.brz .brz-css-nphzn {padding-top: 21.3313%;}}
.brz .brz-css-fxflh {z-index: auto;margin: 0;}
.brz .brz-css-fxflh .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-fxflh .brz-container {justify-content: center;}
.brz .brz-css-fxflh > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-fxflh > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-fxflh {display: block;}}
@media (min-width:991px) {.brz .brz-css-fxflh > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fxflh {z-index: auto;margin: 0;}
.brz .brz-css-fxflh .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-fxflh .brz-container {justify-content: center;}
.brz .brz-css-fxflh > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-fxflh > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fxflh {display: block;}}
@media (max-width:767px) {.brz .brz-css-fxflh {z-index: auto;margin: 0;}
.brz .brz-css-fxflh .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-fxflh .brz-container {justify-content: center;}
.brz .brz-css-fxflh > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-fxflh > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-fxflh {display: block;}}
.brz .brz-css-zgcqb {padding: 75px 0px 75px 0px;}
.brz .brz-css-zgcqb > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-zgcqb > .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-zgcqb > .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-zgcqb > .brz-bg > .brz-bg-image {background-attachment: scroll;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zgcqb {padding: 50px 15px 50px 15px;}
.brz .brz-css-zgcqb > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-zgcqb > .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-zgcqb > .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-zgcqb {padding: 25px 15px 25px 15px;}
.brz .brz-css-zgcqb > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-zgcqb > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-zgcqb > .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-zgcqb > .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-funbd {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-funbd {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-funbd {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-funbd {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:767px) {.brz .brz-css-funbd {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-funbd {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
.brz .brz-css-zdxwy {width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zdxwy {width: 100%;}}
@media (max-width:767px) {.brz .brz-css-zdxwy {width: 100%;}}
.brz .brz-css-vdnum {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vdnum {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-vdnum {height: 50px;}}
.brz .brz-css-wwapx {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wwapx {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-wwapx {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-mygvp {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-mygvp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mygvp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mygvp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mygvp {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-mygvp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mygvp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mygvp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-mygvp {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-mygvp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mygvp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mygvp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-fjbyw {padding-top: 69.7694%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fjbyw {padding-top: 97.6775%;}}
@media (max-width:767px) {.brz .brz-css-fjbyw {padding-top: 48.8375%;}}
.brz .brz-css-kxmsd {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kxmsd {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-kxmsd {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-bqnuu {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-bqnuu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bqnuu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bqnuu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bqnuu {max-width: 51%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bqnuu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bqnuu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bqnuu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-bqnuu {max-width: 85%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-bqnuu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bqnuu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-bqnuu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-bhamt {padding-top: 78.9472%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bhamt {padding-top: 78.9465%;}}
@media (max-width:767px) {.brz .brz-css-bhamt {padding-top: 78.9471%;}}
.brz .brz-css-eyvze {flex-direction: row;}
.brz .brz-css-eyvze .brz-icon__container {margin-left: auto;margin-right: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eyvze {flex-direction: row;}
.brz .brz-css-eyvze .brz-icon__container {margin-left: auto;margin-right: 20px;}}
@media (max-width:767px) {.brz .brz-css-eyvze {flex-direction: row;}
.brz .brz-css-eyvze .brz-icon__container {margin-left: auto;margin-right: 20px;}}
@media (min-width:991px) {.brz .brz-css-zerpm {transition-duration: .5s;transition-property: box-shadow;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zerpm {transition-duration: .5s;transition-property: box-shadow;}}
@media (max-width:767px) {.brz .brz-css-zerpm {transition-duration: .5s;transition-property: box-shadow;}}
.brz .brz-css-xnkdq .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-xnkdq .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-xnkdq .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-xnkdq .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xnkdq .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-xnkdq .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-xnkdq .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-xnkdq .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}}
@media (max-width:767px) {.brz .brz-css-xnkdq .brz-form {margin: -0px -7.5px -15px -7.5px;}
.brz .brz-css-xnkdq .brz-forms2__item {padding: 0px 7.5px 15px 7.5px;}
.brz .brz-css-xnkdq .brz-forms2__item-button {margin-right: auto;margin-left: 0;max-width: 100%;flex-basis: 100%;}
.brz .brz-css-xnkdq .brz-forms2-story .brz-btn:before {content: "";padding-top: 15%;}}
.brz .brz-css-xldoh {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 18px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__field-label {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 16px;font-weight: 400;letter-spacing: 0px;text-align: left;line-height: 1.5;}
.brz .brz-css-xldoh .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 1px solid rgba(220,222,225,1);border-radius: 0;min-height: 57px;}
.brz .brz-css-xldoh.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 14px 24px 14px 24px;}
.brz .brz-css-xldoh .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-xldoh .brz-forms2__radio {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__checkbox {color: rgba(115,119,127,.7);font-family: Lato,sans-serif;font-size: 16px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-xldoh .form-alert {font-family: Lato,sans-serif;}
@media (min-width:991px) {.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__select-item__input {transition-duration: .5s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xldoh {color: rgba(115,119,127,.7);font-size: 14px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__field-label {color: rgba(115,119,127,.7);font-size: 14px;font-weight: 400;letter-spacing: 0px;text-align: left;line-height: 1.5;}
.brz .brz-css-xldoh .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 1px solid rgba(220,222,225,1);border-radius: 0;min-height: 51px;}
.brz .brz-css-xldoh.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 14px 24px 14px 24px;}
.brz .brz-css-xldoh .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-xldoh .brz-forms2__radio {color: rgba(115,119,127,.7);font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__checkbox {color: rgba(115,119,127,.7);font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-xldoh .form-alert {font-family: Lato,sans-serif;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__select-item__input {transition-duration: .5s;}}
@media (max-width:767px) {.brz .brz-css-xldoh {color: rgba(115,119,127,.7);font-size: 14px;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__field-label {color: rgba(115,119,127,.7);font-size: 14px;font-weight: 400;letter-spacing: 0px;text-align: left;line-height: 1.5;}
.brz .brz-css-xldoh .brz-forms2__field-label {padding: 0px 0px 5px 0px;}
.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border: 1px solid rgba(220,222,225,1);border-radius: 0;min-height: 43px;}
.brz .brz-css-xldoh.brz-forms2__item--error .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {border-color: #f00;}
.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox):not(.brz-forms2__field-select) {padding: 10px 20px 10px 20px;}
.brz .brz-css-xldoh .brz-forms2__field-paragraph {line-height: 1.5;}
.brz .brz-css-xldoh .brz-forms2__radio {color: rgba(115,119,127,.7);font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__checkbox {color: rgba(115,119,127,.7);font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;}
.brz .brz-css-xldoh .brz-forms2__select-item__input {color: rgba(115,119,127,.7);}
.brz .brz-css-xldoh .form-alert {font-family: Lato,sans-serif;}}
@media (max-width:767px) {.brz .brz-css-xldoh .brz-forms2__field:not(.brz-forms2__radio):not(.brz-forms2__checkbox) {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__radio {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__checkbox {transition-duration: .5s;}
.brz .brz-css-xldoh .brz-forms2__select-item__input {transition-duration: .5s;}}
.brz .brz-css-qahmd .select2-results__options {font-family: Lato,sans-serif;font-size: 18px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-qahmd .select2-results__option {border-bottom: 1px solid rgba(220,222,225,1);}
.brz .brz-css-qahmd .select2-selection--single {padding: 14px 24px 14px 24px;}
.brz .brz-css-qahmd .select2-selection--multiple {padding: 14px 24px 14px 24px;}
.brz .brz-css-qahmd .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,.2);}
@media (min-width:991px) {.brz .brz-css-qahmd .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qahmd .select2-results__options {font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-qahmd .select2-results__option {border-bottom: 1px solid rgba(220,222,225,1);}
.brz .brz-css-qahmd .select2-selection--single {padding: 14px 24px 14px 24px;}
.brz .brz-css-qahmd .select2-selection--multiple {padding: 14px 24px 14px 24px;}
.brz .brz-css-qahmd .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,.2);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qahmd .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
@media (max-width:767px) {.brz .brz-css-qahmd .select2-results__options {font-size: 14px;line-height: 1.5;font-weight: 400;letter-spacing: 0px;color: rgba(115,119,127,.7);background-color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-qahmd .select2-results__option {border-bottom: 1px solid rgba(220,222,225,1);}
.brz .brz-css-qahmd .select2-selection--single {padding: 10px 20px 10px 20px;}
.brz .brz-css-qahmd .select2-selection--multiple {padding: 10px 20px 10px 20px;}
.brz .brz-css-qahmd .select2-selection--multiple .select2-selection__choice {background-color: rgba(255,255,255,.2);}}
@media (max-width:767px) {.brz .brz-css-qahmd .select2-selection--multiple .select2-selection__choice {transition-duration: .5s;}}
.brz .brz-css-uigkm {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-uigkm .brz-textarea {height: auto;}
.brz .brz-css-uigkm .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-uigkm .brz-forms2__radio-option {flex-basis: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uigkm {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-uigkm .brz-textarea {height: auto;}
.brz .brz-css-uigkm .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-uigkm .brz-forms2__radio-option {flex-basis: 100%;}}
@media (max-width:767px) {.brz .brz-css-uigkm {max-width: 100%;flex-basis: 100%;}
.brz .brz-css-uigkm .brz-textarea {height: auto;}
.brz .brz-css-uigkm .brz-forms2__checkbox-option {flex-basis: 100%;}
.brz .brz-css-uigkm .brz-forms2__radio-option {flex-basis: 100%;}}
.brz .brz-css-qusxy {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-qusxy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qusxy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qusxy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qusxy {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-qusxy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qusxy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qusxy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-qusxy {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-qusxy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qusxy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qusxy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-hldnx {padding-top: 74.9805%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hldnx {padding-top: 74.9796%;}}
@media (max-width:767px) {.brz .brz-css-hldnx {padding-top: 74.9806%;}}
.brz .brz-css-qsztj {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-qsztj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qsztj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qsztj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qsztj {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-qsztj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qsztj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qsztj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-qsztj {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-qsztj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qsztj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qsztj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-ntlhd {padding-top: 74.9805%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ntlhd {padding-top: 74.9796%;}}
@media (max-width:767px) {.brz .brz-css-ntlhd {padding-top: 74.9806%;}}
.brz .brz-css-vixyj {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-vixyj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vixyj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vixyj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vixyj {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-vixyj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vixyj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vixyj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-vixyj {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-vixyj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vixyj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vixyj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-sabsw {padding-top: 74.9805%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sabsw {padding-top: 74.9796%;}}
@media (max-width:767px) {.brz .brz-css-sabsw {padding-top: 74.9806%;}}
.brz .brz-css-jkdwe {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-jkdwe {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkdwe:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkdwe .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jkdwe {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-jkdwe {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkdwe:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkdwe .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-jkdwe {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-jkdwe {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkdwe:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-jkdwe .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-ntmdh {padding-top: 74.9805%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ntmdh {padding-top: 74.9796%;}}
@media (max-width:767px) {.brz .brz-css-ntmdh {padding-top: 74.9806%;}}
.brz .brz-css-ghehq {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ghehq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ghehq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ghehq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ghehq {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-ghehq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ghehq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ghehq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ghehq {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ghehq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ghehq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ghehq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-knymb {padding-top: 74.9805%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-knymb {padding-top: 74.9796%;}}
@media (max-width:767px) {.brz .brz-css-knymb {padding-top: 74.9806%;}}
.brz .brz-css-qlixx {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-qlixx {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qlixx:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qlixx .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qlixx {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-qlixx {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qlixx:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qlixx .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-qlixx {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-qlixx {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qlixx:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-qlixx .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-riiqm {padding-top: 66.1841%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-riiqm {padding-top: 66.1834%;}}
@media (max-width:767px) {.brz .brz-css-riiqm {padding-top: 66.185%;}}
.brz .brz-css-uuyvy {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-uuyvy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uuyvy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uuyvy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uuyvy {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-uuyvy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uuyvy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uuyvy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-uuyvy {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-uuyvy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uuyvy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-uuyvy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-zqlbu {padding-top: 54.0487%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zqlbu {padding-top: 54.0503%;}}
@media (max-width:767px) {.brz .brz-css-zqlbu {padding-top: 54.05%;}}
.brz .brz-css-xpepj {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-xpepj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xpepj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xpepj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xpepj {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-xpepj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xpepj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xpepj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-xpepj {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-xpepj {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xpepj:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xpepj .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-qfvju {padding-top: 65.9127%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qfvju {padding-top: 65.9121%;}}
@media (max-width:767px) {.brz .brz-css-qfvju {padding-top: 65.9125%;}}
.brz .brz-css-vxonc {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-vxonc {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vxonc:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vxonc .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vxonc {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-vxonc {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vxonc:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vxonc .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-vxonc {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-vxonc {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vxonc:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vxonc .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-bzxip {padding-top: 85.5011%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bzxip {padding-top: 85.5%;}}
@media (max-width:767px) {.brz .brz-css-bzxip {padding-top: 85.5%;}}
.brz .brz-css-ggrsq {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ggrsq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ggrsq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ggrsq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ggrsq {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-ggrsq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ggrsq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ggrsq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ggrsq {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ggrsq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ggrsq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ggrsq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-fpksn {padding-top: 76.8671%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fpksn {padding-top: 76.8668%;}}
@media (max-width:767px) {.brz .brz-css-fpksn {padding-top: 76.8675%;}}
.brz .brz-css-nkzxa {max-width: 84%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-nkzxa {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nkzxa:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nkzxa .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nkzxa {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-nkzxa {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nkzxa:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nkzxa .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-nkzxa {max-width: 75%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-nkzxa {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nkzxa:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nkzxa .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-aqguu {padding-top: 82.9191%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aqguu {padding-top: 82.9201%;}}
@media (max-width:767px) {.brz .brz-css-aqguu {padding-top: 82.92%;}}
.brz .brz-css-oxree {width: 75%;}
.brz .brz-css-oxree .brz-hr {border-top: 2px solid rgba(102,102,102,.75);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oxree {width: 75%;}
.brz .brz-css-oxree .brz-hr {border-top: 2px solid rgba(102,102,102,.75);}}
@media (max-width:767px) {.brz .brz-css-oxree {width: 75%;}
.brz .brz-css-oxree .brz-hr {border-top: 2px solid rgba(102,102,102,.75);}}
.brz .brz-css-zqpib {padding: 75px 0px 75px 0px;min-height: auto;display: flex;}
.brz .brz-css-zqpib > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zqpib > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-zqpib > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-zqpib > .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-zqpib > .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-zqpib .brz-container {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zqpib {padding: 25px 15px 25px 15px;min-height: auto;display: flex;}
.brz .brz-css-zqpib > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zqpib > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-zqpib > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-zqpib > .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-zqpib > .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-zqpib .brz-container {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-zqpib {padding: 25px 15px 25px 15px;min-height: auto;display: flex;}
.brz .brz-css-zqpib > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zqpib > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-zqpib > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-zqpib > .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-zqpib > .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-zqpib .brz-container {justify-content: center;}}
.brz .brz-css-gefih {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-gefih {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gefih {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gefih {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:767px) {.brz .brz-css-gefih {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-gefih {max-width: 100%;width: calc(( 100 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
.brz .brz-css-gwltb {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gwltb {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-gwltb {padding: 0;}}
.brz .brz-css-xahqw {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xahqw {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-xahqw {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-roxdo {display: none;}}
.brz .brz-css-efwcm {padding: 10px 0px 15px 0px;}
.brz .brz-css-efwcm > .brz-bg:after {box-shadow: inset 0 8px 7px -7px rgba(0,0,0,.15),inset 0 0 0 0 rgba(0,0,0,.15);display: block;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-efwcm {padding: 10px 0px 10px 0px;}
.brz .brz-css-efwcm > .brz-bg:after {box-shadow: inset 0 8px 7px -7px rgba(0,0,0,.15),inset 0 0 0 0 rgba(0,0,0,.15);display: block;}}
@media (max-width:767px) {.brz .brz-css-efwcm {padding: 10px 0px 10px 0px;}
.brz .brz-css-efwcm > .brz-bg:after {box-shadow: inset 0 8px 7px -7px rgba(0,0,0,.15),inset 0 0 0 0 rgba(0,0,0,.15);display: block;}}
.brz .brz-css-jxldq {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jxldq {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-jxldq {padding: 0;}}
.brz .brz-css-yaaoq {flex: 1 1 18.7%;max-width: 18.7%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yaaoq {flex: 1 1 24.6%;max-width: 24.6%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-yaaoq {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
.brz .brz-css-nmnwq {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nmnwq {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-nmnwq {padding: 0;}}
.brz .brz-css-fojhz {margin: 0;justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fojhz {margin: 10px 0px 10px 0px;justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-fojhz {margin: 10px 0px 10px 0px;justify-content: center;}}
.brz .brz-css-xwvnz {flex: 1 1 55.5%;max-width: 55.5%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xwvnz {flex: 1 1 28%;max-width: 28%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-xwvnz {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
.brz .brz-css-jekdy {padding: 0px 0px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jekdy {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-jekdy {padding: 0;}}
.brz .brz-css-dvxke {width: auto;}
.brz .brz-css-dvxke .menu > .menu-item:not(:last-child) {margin-right: 46px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dvxke {width: auto;}
.brz .brz-css-dvxke .menu > .menu-item:not(:last-child) {margin-right: 46px;}}
@media (max-width:767px) {.brz .brz-css-dvxke {width: auto;}
.brz .brz-css-dvxke .menu > .menu-item:not(:last-child) {margin-right: 46px;}}
.brz .brz-css-gpaxv {flex: 1 1 25.8%;max-width: 25.8%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gpaxv {flex: 1 1 46.4%;max-width: 46.4%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-gpaxv {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
.brz .brz-css-owvhv {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-owvhv {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-owvhv {padding: 0;}}
.brz .brz-css-tqprq {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tqprq {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-tqprq {margin: 10px 0px 10px 0px;}}
.brz .brz-css-skuzf {justify-content: flex-end;margin: 0px -15px -20px -15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-skuzf {justify-content: flex-end;margin: 0px -15px -20px -15px;}}
@media (max-width:767px) {.brz .brz-css-skuzf {justify-content: center;margin: 0px -15px -20px -15px;}}
.brz .brz-css-koadk {padding: 0px 15px 20px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-koadk {padding: 0px 15px 20px 15px;}}
@media (max-width:767px) {.brz .brz-css-koadk {padding: 0px 15px 20px 15px;}}
.brz .brz-css-hvphb {font-size: 15px;margin-right: 6px;margin-left: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hvphb {font-size: 15px;margin-right: 6px;margin-left: 0;}}
@media (max-width:767px) {.brz .brz-css-hvphb {font-size: 15px;margin-right: 6px;margin-left: 0;}}
.brz .brz-css-lqcbt.brz-btn {font-weight: 400;font-size: 16px;line-height: 1.9;color: rgba(179,132,50,1);border: 0px solid rgba(35,157,219,0);background-color: rgba(35,157,219,0);padding: 14px 0px 14px 0px;flex-flow: row nowrap;}
.brz .brz-css-lqcbt .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;}
@media (min-width:991px) {.brz .brz-css-lqcbt.brz-btn:hover {color: rgba(206,148,48,1);border: 0px solid rgba(5,202,182,0);background-color: rgba(5,202,182,0);}
.brz .brz-css-lqcbt:hover .brz-btn--story-container {border: 0px solid rgba(5,202,182,0);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lqcbt.brz-btn {font-weight: 400;font-size: 15px;line-height: 1.7;color: rgba(179,132,50,1);border: 0px solid rgba(35,157,219,0);background-color: rgba(35,157,219,0);padding: 11px 10px 11px 10px;flex-flow: row nowrap;}
.brz .brz-css-lqcbt .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;}}
@media (max-width:767px) {.brz .brz-css-lqcbt.brz-btn {font-weight: 400;font-size: 15px;line-height: 1.7;color: rgba(179,132,50,1);border: 0px solid rgba(35,157,219,0);background-color: rgba(35,157,219,0);padding: 11px 10px 11px 10px;flex-flow: row nowrap;}
.brz .brz-css-lqcbt .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;}}
.brz .brz-css-ycaqs {padding: 15px 0px 15px 0px;}
.brz .brz-css-ycaqs > .brz-bg:after {box-shadow: inset 0 8px 7px -7px rgba(0,0,0,.15),inset 0 0 0 0 rgba(0,0,0,.15);display: block;}
.brz .brz-css-ycaqs > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ycaqs {padding: 15px;}
.brz .brz-css-ycaqs > .brz-bg:after {box-shadow: inset 0 8px 7px -7px rgba(0,0,0,.15),inset 0 0 0 0 rgba(0,0,0,.15);display: block;}
.brz .brz-css-ycaqs > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
@media (max-width:767px) {.brz .brz-css-ycaqs {padding: 15px;}
.brz .brz-css-ycaqs > .brz-bg:after {box-shadow: inset 0 8px 7px -7px rgba(0,0,0,.15),inset 0 0 0 0 rgba(0,0,0,.15);display: block;}
.brz .brz-css-ycaqs > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
.brz .brz-css-umqzh {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-umqzh {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-umqzh {padding: 0;}}
.brz .brz-css-xzcjc {flex: 1 1 18.7%;max-width: 18.7%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xzcjc {flex: 1 1 24.6%;max-width: 24.6%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-xzcjc {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
.brz .brz-css-ibmak {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ibmak {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-ibmak {padding: 0;}}
.brz .brz-css-mupog {margin: 0;justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mupog {margin: 10px 0px 10px 0px;justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-mupog {margin: 10px 0px 10px 0px;justify-content: center;}}
.brz .brz-css-bjqqu {flex: 1 1 55.4%;max-width: 55.4%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bjqqu {flex: 1 1 28%;max-width: 28%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-bjqqu {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-bjqqu > * {display: none;}}
.brz .brz-css-nddyw {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nddyw {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-nddyw {padding: 0;}}
.brz .brz-css-dptcg {margin: 10px -66px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dptcg {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-dptcg {margin: 10px 0px 10px 0px;}}
.brz .brz-css-vvpuc {width: auto;}
.brz .brz-css-vvpuc .menu {font-family: Montserrat,sans-serif;}
.brz .brz-css-vvpuc .menu .menu-item a {color: rgba(255,255,255,1);}
.brz .brz-css-vvpuc .menu > .menu-item:not(:last-child) {margin-right: 46px;}
.brz .brz-css-vvpuc .brz-menu-simple__icon--bars {color: rgba(255,255,255,1);background-color: rgba(255,255,255,1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vvpuc {width: auto;}
.brz .brz-css-vvpuc .menu .menu-item a {color: rgba(255,255,255,1);}
.brz .brz-css-vvpuc .menu > .menu-item:not(:last-child) {margin-right: 46px;}
.brz .brz-css-vvpuc .brz-menu-simple__icon--bars {color: rgba(255,255,255,1);background-color: rgba(255,255,255,1);}}
@media (max-width:767px) {.brz .brz-css-vvpuc {width: auto;}
.brz .brz-css-vvpuc .menu .menu-item a {color: rgba(255,255,255,1);}
.brz .brz-css-vvpuc .menu > .menu-item:not(:last-child) {margin-right: 46px;}
.brz .brz-css-vvpuc .brz-menu-simple__icon--bars {color: rgba(255,255,255,1);background-color: rgba(255,255,255,1);}}
.brz .brz-css-sqgfm {flex: 1 1 25.9%;max-width: 25.9%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sqgfm {flex: 1 1 46.4%;max-width: 46.4%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-sqgfm {flex: 1 1 100%;max-width: 100%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-sqgfm > * {display: none;}}
.brz .brz-css-hjjrq {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hjjrq {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-hjjrq {padding: 0;}}
.brz .brz-css-ilknp {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ilknp {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-ilknp {margin: 10px 0px 10px 0px;}}
.brz .brz-css-gbtxl {justify-content: flex-end;margin: 0px -15px -20px -15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gbtxl {justify-content: flex-end;margin: 0px -15px -20px -15px;}}
@media (max-width:767px) {.brz .brz-css-gbtxl {justify-content: center;margin: 0px -15px -20px -15px;}}
.brz .brz-css-vuqgp {padding: 0px 15px 20px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vuqgp {padding: 0px 15px 20px 15px;}}
@media (max-width:767px) {.brz .brz-css-vuqgp {padding: 0px 15px 20px 15px;}}
.brz .brz-css-evyin {font-size: 15px;margin-right: 6px;margin-left: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-evyin {font-size: 15px;margin-right: 6px;margin-left: 0;}}
@media (max-width:767px) {.brz .brz-css-evyin {font-size: 15px;margin-right: 6px;margin-left: 0;}}
.brz .brz-css-efbmh.brz-btn {font-weight: 400;font-size: 16px;line-height: 1.9;color: rgba(139,139,139,1);border: 0px solid rgba(35,157,219,0);background-color: rgba(35,157,219,0);padding: 14px 0px 14px 0px;flex-flow: row nowrap;}
.brz .brz-css-efbmh .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;}
@media (min-width:991px) {.brz .brz-css-efbmh.brz-btn:hover {color: rgba(184,140,65,1);border: 0px solid rgba(5,202,182,0);background-color: rgba(5,202,182,0);}
.brz .brz-css-efbmh:hover .brz-btn--story-container {border: 0px solid rgba(5,202,182,0);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-efbmh.brz-btn {font-weight: 400;font-size: 15px;line-height: 1.7;color: rgba(139,139,139,1);border: 0px solid rgba(35,157,219,0);background-color: rgba(35,157,219,0);padding: 11px 10px 11px 10px;flex-flow: row nowrap;}
.brz .brz-css-efbmh .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;}}
@media (max-width:767px) {.brz .brz-css-efbmh.brz-btn {font-weight: 400;font-size: 15px;line-height: 1.7;color: rgba(139,139,139,1);border: 0px solid rgba(35,157,219,0);background-color: rgba(35,157,219,0);padding: 11px 10px 11px 10px;flex-flow: row nowrap;}
.brz .brz-css-efbmh .brz-btn--story-container {border: 0px solid rgba(35,157,219,0);flex-flow: row nowrap;}}
.brz .brz-css-gelaj {padding: 100px 0px 100px 0px;}
.brz .brz-css-gelaj > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gelaj {padding: 50px 15px 50px 15px;}
.brz .brz-css-gelaj > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
@media (max-width:767px) {.brz .brz-css-gelaj {padding: 25px 15px 25px 15px;}
.brz .brz-css-gelaj > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pzptj > .brz-row {flex-direction: row;flex-wrap: wrap;justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-pzptj > .brz-row {flex-direction: row-reverse;flex-wrap: wrap-reverse;justify-content: flex-end;}}
.brz .brz-css-hdrkw {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hdrkw {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-hdrkw {justify-content: center;}}
.brz .brz-css-bxkex {padding: 5px 150px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bxkex {padding: 5px 40px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-bxkex {padding: 0px 30px 0px 30px;}}
.brz .brz-css-ssjse {padding: 0px 50px 0px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ssjse {padding: 0px 20px 0px 0px;}}
@media (max-width:767px) {.brz .brz-css-ssjse {padding: 0;}}
.brz .brz-css-zbttl {justify-content: flex-start;margin: 0px -17.5px -20px -17.5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zbttl {justify-content: flex-start;margin: 0px -17.5px -20px -17.5px;}}
@media (max-width:767px) {.brz .brz-css-zbttl {justify-content: flex-start;margin: 0px -17.5px -20px -17.5px;}}
.brz .brz-css-iudhg {padding: 0px 17.5px 20px 17.5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iudhg {padding: 0px 17.5px 20px 17.5px;}}
@media (max-width:767px) {.brz .brz-css-iudhg {padding: 0px 17.5px 20px 17.5px;}}
.brz .brz-css-jnwts.brz-btn {border: 2px solid rgba(255,161,1,0);border-radius: 500px;background-color: rgba(255,161,1,1);}
.brz .brz-css-jnwts .brz-btn--story-container {border: 2px solid rgba(255,161,1,0);border-radius: 500px;}
@media (min-width:991px) {.brz .brz-css-jnwts.brz-btn:hover {background-color: rgba(255,161,1,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jnwts.brz-btn {border: 2px solid rgba(255,161,1,0);border-radius: 500px;background-color: rgba(255,161,1,1);}
.brz .brz-css-jnwts .brz-btn--story-container {border: 2px solid rgba(255,161,1,0);border-radius: 500px;}}
@media (max-width:767px) {.brz .brz-css-jnwts.brz-btn {border: 2px solid rgba(255,161,1,0);border-radius: 500px;background-color: rgba(255,161,1,1);}
.brz .brz-css-jnwts .brz-btn--story-container {border: 2px solid rgba(255,161,1,0);border-radius: 500px;}}
.brz .brz-css-kiyes.brz-btn {border: 2px solid rgba(255,161,1,0);border-radius: 500px;background-color: rgba(255,161,1,1);}
.brz .brz-css-kiyes .brz-btn--story-container {border: 2px solid rgba(255,161,1,0);border-radius: 500px;}
@media (min-width:991px) {.brz .brz-css-kiyes.brz-btn:hover {background-color: rgba(255,161,1,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kiyes.brz-btn {border: 2px solid rgba(255,161,1,0);border-radius: 500px;background-color: rgba(255,161,1,1);}
.brz .brz-css-kiyes .brz-btn--story-container {border: 2px solid rgba(255,161,1,0);border-radius: 500px;}}
@media (max-width:767px) {.brz .brz-css-kiyes.brz-btn {border: 2px solid rgba(255,161,1,0);border-radius: 500px;background-color: rgba(255,161,1,1);}
.brz .brz-css-kiyes .brz-btn--story-container {border: 2px solid rgba(255,161,1,0);border-radius: 500px;}}
.brz .brz-css-glbpj {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-glbpj {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-glbpj {height: 20px;}}
.brz .brz-css-cawtn {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cawtn {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-cawtn {justify-content: center;}}
.brz .brz-css-nglem {animation-name: slideInRight;animation-duration: 700ms;animation-delay: 700ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nglem {animation-name: slideInRight;animation-duration: 700ms;animation-delay: 700ms;}}
@media (max-width:767px) {.brz .brz-css-nglem {animation-name: slideInRight;animation-duration: 700ms;animation-delay: 700ms;}}
.brz .brz-css-aeokf {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aeokf {padding: 5px 0px 5px 0px;}}
@media (max-width:767px) {.brz .brz-css-aeokf {padding: 0;}}
.brz .brz-css-lpcua {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lpcua {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-lpcua {margin: 10px 0px 10px 0px;}}
.brz .brz-css-fbcyc {border-radius: 6px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fbcyc {border-radius: 6px;}}
@media (max-width:767px) {.brz .brz-css-fbcyc {border-radius: 6px;}}
.brz .brz-css-otgqu {padding: 90px 0px 49px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-otgqu {padding: 50px 15px 50px 15px;}}
@media (max-width:767px) {.brz .brz-css-otgqu {padding: 25px 15px 25px 15px;}}
@media (min-width:991px) {.brz .brz-css-fvoyx {max-width: 100%;width: calc(( 65 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fvoyx {max-width: 100%;width: calc(( 65 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
@media (max-width:767px) {.brz .brz-css-fvoyx {max-width: 100%;width: calc(( 65 / 100 * var(--brz-section-container-width,1170) ) * 1px);}}
.brz .brz-css-blziw {animation-name: slideInUp;animation-duration: 500ms;animation-delay: 600ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-blziw {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-blziw {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-blngo {animation-name: slideInUp;animation-duration: 700ms;animation-delay: 800ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-blngo {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-blngo {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-ixgog {padding: 50px 0px 15px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ixgog {padding: 50px 15px 50px 15px;}}
@media (max-width:767px) {.brz .brz-css-ixgog {padding: 25px 15px 25px 15px;}}
.brz .brz-css-xutqk {flex: 1 1 100%;max-width: 100%;}
.brz .brz-css-xutqk > .brz-bg {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xutqk {flex: 1 1 85%;max-width: 85%;}
.brz .brz-css-xutqk > .brz-bg {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-xutqk {flex: 1 1 100%;max-width: 100%;}
.brz .brz-css-xutqk > .brz-bg {margin: 1px;}}
.brz .brz-css-ltqtm {margin: 0;padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ltqtm {margin: 0;padding: 5px 15px 5px 30px;}}
@media (max-width:767px) {.brz .brz-css-ltqtm {margin: 1px;padding: 0px 20px 0px 20px;}}
.brz .brz-css-akrim {height: 47px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-akrim {height: 18px;}}
@media (max-width:767px) {.brz .brz-css-akrim {height: 20px;}}
.brz .brz-css-tahor {flex: 1 1 25%;max-width: 25%;}
.brz .brz-css-tahor > .brz-bg {border-radius: 6px;margin: 15px;}
.brz .brz-css-tahor > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}
@media (min-width:991px) {.brz .brz-css-tahor:hover > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tahor {flex: 1 1 50.1%;max-width: 50.1%;}
.brz .brz-css-tahor > .brz-bg {border-radius: 6px;margin: 0px 15px 0px 15px;}
.brz .brz-css-tahor > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
@media (max-width:767px) {.brz .brz-css-tahor {flex: 1 1 100%;max-width: 100%;}
.brz .brz-css-tahor > .brz-bg {border-radius: 6px;margin: 20px;}
.brz .brz-css-tahor > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
.brz .brz-css-odiah {animation-name: slideInLeft;animation-duration: 400ms;animation-delay: 1600ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-odiah {animation-name: slideInLeft;animation-duration: 400ms;animation-delay: 1600ms;}}
@media (max-width:767px) {.brz .brz-css-odiah {animation-name: slideInLeft;animation-duration: 400ms;animation-delay: 1600ms;}}
.brz .brz-css-ubaaa {margin: 15px;padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ubaaa {margin: 0px 15px 0px 15px;padding: 5px 10px 5px 10px;}}
@media (max-width:767px) {.brz .brz-css-ubaaa {margin: 20px;padding: 0;}}
.brz .brz-css-wczuf {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wczuf {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-wczuf {height: 20px;}}
.brz .brz-css-obcfp {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-obcfp {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-obcfp {height: 10px;}}
.brz .brz-css-dhitb {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dhitb {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-dhitb {margin: 10px 0px 10px 0px;}}
.brz .brz-css-choeo {padding: 0px 20px 0px 20px;margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-choeo {padding: 0;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-choeo {padding: 0;margin: 10px 0px 10px 0px;}}
.brz .brz-css-lmqch {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lmqch {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-lmqch {height: 20px;}}
.brz .brz-css-hdeia {flex: 1 1 25%;max-width: 25%;}
.brz .brz-css-hdeia > .brz-bg {border-radius: 6px;margin: 15px;}
.brz .brz-css-hdeia > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}
@media (min-width:991px) {.brz .brz-css-hdeia:hover > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hdeia {flex: 1 1 50.1%;max-width: 50.1%;}
.brz .brz-css-hdeia > .brz-bg {border-radius: 6px;margin: 0px 15px 0px 15px;}
.brz .brz-css-hdeia > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
@media (max-width:767px) {.brz .brz-css-hdeia {flex: 1 1 100%;max-width: 100%;}
.brz .brz-css-hdeia > .brz-bg {border-radius: 6px;margin: 20px;}
.brz .brz-css-hdeia > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
.brz .brz-css-zgidl {animation-name: slideInLeft;animation-duration: 600ms;animation-delay: 1400ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zgidl {animation-name: slideInLeft;animation-duration: 600ms;animation-delay: 1400ms;}}
@media (max-width:767px) {.brz .brz-css-zgidl {animation-name: slideInLeft;animation-duration: 600ms;animation-delay: 1400ms;}}
.brz .brz-css-mrton {margin: 15px;padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mrton {margin: 0px 15px 0px 15px;padding: 5px 10px 5px 10px;}}
@media (max-width:767px) {.brz .brz-css-mrton {margin: 20px;padding: 0;}}
.brz .brz-css-vnqgi {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vnqgi {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-vnqgi {height: 20px;}}
.brz .brz-css-lqzfd {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lqzfd {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-lqzfd {height: 10px;}}
.brz .brz-css-xncks {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xncks {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-xncks {margin: 10px 0px 10px 0px;}}
.brz .brz-css-yivuc {padding: 0px 20px 0px 20px;margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yivuc {padding: 0;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-yivuc {padding: 0;margin: 10px 0px 10px 0px;}}
.brz .brz-css-vpuve {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vpuve {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-vpuve {height: 20px;}}
.brz .brz-css-qgnrm {flex: 1 1 25%;max-width: 25%;}
.brz .brz-css-qgnrm > .brz-bg {border-radius: 6px;margin: 15px;}
.brz .brz-css-qgnrm > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}
@media (min-width:991px) {.brz .brz-css-qgnrm:hover > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qgnrm {flex: 1 1 50.1%;max-width: 50.1%;}
.brz .brz-css-qgnrm > .brz-bg {border-radius: 6px;margin: 0px 15px 0px 15px;}
.brz .brz-css-qgnrm > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
@media (max-width:767px) {.brz .brz-css-qgnrm {flex: 1 1 100%;max-width: 100%;}
.brz .brz-css-qgnrm > .brz-bg {border-radius: 6px;margin: 20px;}
.brz .brz-css-qgnrm > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
.brz .brz-css-dpsof {animation-name: slideInLeft;animation-duration: 800ms;animation-delay: 1200ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dpsof {animation-name: slideInLeft;animation-duration: 800ms;animation-delay: 1200ms;}}
@media (max-width:767px) {.brz .brz-css-dpsof {animation-name: slideInLeft;animation-duration: 800ms;animation-delay: 1200ms;}}
.brz .brz-css-lyvke {margin: 15px;padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lyvke {margin: 0px 15px 0px 15px;padding: 5px 10px 5px 10px;}}
@media (max-width:767px) {.brz .brz-css-lyvke {margin: 20px;padding: 0;}}
.brz .brz-css-wpfha {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wpfha {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-wpfha {height: 20px;}}
.brz .brz-css-smtxx {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-smtxx {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-smtxx {height: 10px;}}
.brz .brz-css-vxvta {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vxvta {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-vxvta {margin: 10px 0px 10px 0px;}}
.brz .brz-css-xtflh {padding: 0px 20px 0px 20px;margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xtflh {padding: 0;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-xtflh {padding: 0;margin: 10px 0px 10px 0px;}}
.brz .brz-css-ozpro {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ozpro {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-ozpro {height: 20px;}}
.brz .brz-css-comvq {flex: 1 1 25%;max-width: 25%;}
.brz .brz-css-comvq > .brz-bg {border-radius: 6px;margin: 15px;}
.brz .brz-css-comvq > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}
@media (min-width:991px) {.brz .brz-css-comvq:hover > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-comvq {flex: 1 1 50.1%;max-width: 50.1%;}
.brz .brz-css-comvq > .brz-bg {border-radius: 6px;margin: 0px 15px 0px 15px;}
.brz .brz-css-comvq > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
@media (max-width:767px) {.brz .brz-css-comvq {flex: 1 1 100%;max-width: 100%;}
.brz .brz-css-comvq > .brz-bg {border-radius: 6px;margin: 20px;}
.brz .brz-css-comvq > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
.brz .brz-css-rtlac {animation-name: slideInLeft;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rtlac {animation-name: slideInLeft;}}
@media (max-width:767px) {.brz .brz-css-rtlac {animation-name: slideInLeft;}}
.brz .brz-css-zccwy {margin: 15px;padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zccwy {margin: 0px 15px 0px 15px;padding: 5px 10px 5px 10px;}}
@media (max-width:767px) {.brz .brz-css-zccwy {margin: 20px;padding: 0;}}
.brz .brz-css-tbrsu {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tbrsu {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-tbrsu {height: 20px;}}
.brz .brz-css-yvwht {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yvwht {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-yvwht {height: 10px;}}
.brz .brz-css-wsffr {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wsffr {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-wsffr {margin: 10px 0px 10px 0px;}}
.brz .brz-css-ioqab {padding: 0px 20px 0px 20px;margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ioqab {padding: 0;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-ioqab {padding: 0;margin: 10px 0px 10px 0px;}}
.brz .brz-css-pqwzf {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pqwzf {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-pqwzf {height: 20px;}}
.brz .brz-css-iihsa {padding: 15px 0px 90px 0px;}
.brz .brz-css-iihsa > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}
.brz .brz-css-iihsa > .brz-bg > .brz-bg-shape__bottom {background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgxLCA5NSwgMjU1LCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAyMDBWMGgxOTIweiIvPjxwYXRoIG9wYWNpdHk9Ii4yNTEiIGQ9Ik0wIDI0MFYwaDE5MjBMMTM3LjE5NSAyMjIuODV6Ii8+PC9nPjwvc3ZnPg==");background-size: 100% 66px;height: 66px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iihsa {padding: 50px 15px 50px 15px;}
.brz .brz-css-iihsa > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}
.brz .brz-css-iihsa > .brz-bg > .brz-bg-shape__bottom {background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgxLCA5NSwgMjU1LCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAyMDBWMGgxOTIweiIvPjxwYXRoIG9wYWNpdHk9Ii4yNTEiIGQ9Ik0wIDI0MFYwaDE5MjBMMTM3LjE5NSAyMjIuODV6Ii8+PC9nPjwvc3ZnPg==");background-size: 100% 66px;height: 66px;}}
@media (max-width:767px) {.brz .brz-css-iihsa {padding: 25px 15px 25px 15px;}
.brz .brz-css-iihsa > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}
.brz .brz-css-iihsa > .brz-bg > .brz-bg-shape__bottom {background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgxLCA5NSwgMjU1LCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAyMDBWMGgxOTIweiIvPjxwYXRoIG9wYWNpdHk9Ii4yNTEiIGQ9Ik0wIDI0MFYwaDE5MjBMMTM3LjE5NSAyMjIuODV6Ii8+PC9nPjwvc3ZnPg==");background-size: 100% 66px;height: 66px;}}
.brz .brz-css-mqtun {flex: 1 1 25%;max-width: 25%;}
.brz .brz-css-mqtun > .brz-bg {border-radius: 6px;margin: 15px;}
.brz .brz-css-mqtun > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}
@media (min-width:991px) {.brz .brz-css-mqtun:hover > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mqtun {flex: 1 1 50.1%;max-width: 50.1%;}
.brz .brz-css-mqtun > .brz-bg {border-radius: 6px;margin: 0px 15px 0px 15px;}
.brz .brz-css-mqtun > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
@media (max-width:767px) {.brz .brz-css-mqtun {flex: 1 1 100%;max-width: 100%;}
.brz .brz-css-mqtun > .brz-bg {border-radius: 6px;margin: 20px;}
.brz .brz-css-mqtun > .brz-bg > .brz-bg-color {background-color: rgba(1,95,255,.9);}}
.brz .brz-css-jyrdq {animation-name: slideInRight;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jyrdq {animation-name: slideInRight;}}
@media (max-width:767px) {.brz .brz-css-jyrdq {animation-name: slideInRight;}}
.brz .brz-css-bajuy {margin: 15px;padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bajuy {margin: 0px 15px 0px 15px;padding: 5px 10px 5px 10px;}}
@media (max-width:767px) {.brz .brz-css-bajuy {margin: 20px;padding: 0;}}
.brz .brz-css-ysxqz {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ysxqz {height: 20px;}}
@media (max-width:767px) {.brz .brz-css-ysxqz {height: 20px;}}
.brz .brz-css-vjsdy {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vjsdy {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-vjsdy {height: 10px;}}
.brz .brz-css-cpdoi {margin: 10px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cpdoi {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-cpdoi {margin: 10px 0px 10px 0px;}}
.brz .brz-css-vpyyf {padding: 0px 20px 0px 20px;margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vpyyf {padding: 0;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-vpyyf {padding: 0;margin: 10px 0px 10px 0px;}}
.brz .brz-css-onxme {height: 20px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-onxme {height: 20px;}}