-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
1251 lines (1251 loc) · 176 KB
/
about.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>About</title><meta name="description" content=""><meta property="og:title" content=""><meta property="og:description" content=""><meta property="og:url" content="https://brizy-gitdemo-hbs5guues.vercel.app/about"><meta content="summary_large_image" name="twitter:card"><!-- BRIZY ASSETS --><meta name="viewport" content="width=device-width, initial-scale=1"><link class="brz-link brz-link-google-prefetch" rel="dns-prefetch" href="//ajax.googleapis.com"><link class="brz-link brz-link-google-prefetch" rel="dns-prefetch" href="//fonts.googleapis.com"><link class="brz-link brz-link-google-preconnect" rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><link class="brz-link brz-link-cdn-preconnect" rel="preconnect" href="assets/6666cd76f96956469e7be39d750cc7d9." crossorigin><style class="brz-style brz-fonts__google">.brz .brz-ff-kaushan_script {font-family: Kaushan Script,handwriting !important;}
.brz .brz-ff-josefin_sans {font-family: Josefin Sans,sans-serif !important;}
.brz .brz-ff-overpass {font-family: Overpass,sans-serif !important;}
.brz .brz-ff-lato {font-family: Lato,sans-serif !important;}
.brz .brz-ff-red_hat_text {font-family: Red Hat Text,sans-serif !important;}
.brz .brz-ff-dm_serif_text {font-family: DM Serif Text,serif !important;}
.brz .brz-ff-blinker {font-family: Blinker,sans-serif !important;}
.brz .brz-ff-aleo {font-family: Aleo,serif !important;}
.brz .brz-ff-nunito {font-family: Nunito,sans-serif !important;}
.brz .brz-ff-knewave {font-family: Knewave,display !important;}
.brz .brz-ff-palanquin {font-family: Palanquin,sans-serif !important;}
.brz .brz-ff-palanquin_dark {font-family: Palanquin Dark,sans-serif !important;}
.brz .brz-ff-roboto {font-family: Roboto,sans-serif !important;}
.brz .brz-ff-oswald {font-family: Oswald,sans-serif !important;}
.brz .brz-ff-oxygen {font-family: Oxygen,sans-serif !important;}
.brz .brz-ff-playfair_display {font-family: Playfair Display,serif !important;}
.brz .brz-ff-fira_sans {font-family: Fira Sans,sans-serif !important;}
.brz .brz-ff-abril_fatface {font-family: Abril Fatface,display !important;}
.brz .brz-ff-comfortaa {font-family: Comfortaa,display !important;}
.brz .brz-ff-noto_serif {font-family: Noto Serif,serif !important;}
.brz .brz-ff-montserrat {font-family: Montserrat,sans-serif !important;}
.brz .brz-ff-molengo {font-family: Molengo,sans-serif !important;}
.brz .brz-ff-merriweather {font-family: Merriweather,serif !important;}</style><link class="brz-link brz-link-google" type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Kaushan Script:regular|Josefin Sans:100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic|Overpass:100,100italic,200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic|Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic|Red Hat Text:regular,italic,500,500italic,700,700italic|DM Serif Text:regular,italic|Blinker:100,200,300,regular,600,700,800,900|Aleo:300,300italic,regular,italic,700,700italic|Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic|Knewave:regular|Palanquin:100,200,300,regular,500,600,700|Palanquin Dark:regular,500,600,700|Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic|Oswald:200,300,regular,500,600,700|Oxygen:300,regular,700|Playfair Display:regular,italic,700,700italic,900,900italic|Fira Sans:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic|Abril Fatface:regular|Comfortaa:300,regular,500,600,700|Noto Serif:regular,italic,700,700italic|Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic|Molengo:regular|Merriweather:300,300italic,regular,italic,700,700italic,900,900italic&subset=arabic,bengali,cyrillic,cyrillic-ext,devanagari,greek,greek-ext,gujarati,hebrew,khmer,korean,latin-ext,tamil,telugu,thai,vietnamese&display=swap" /><link class="brz-link brz-link-preview-lib" href="https://b-cloud.b-cdn.net/builds/free/169-cloud/editor/css/group-2_3.css" rel="stylesheet"/><link class="brz-link brz-link-preview-lib-pro" href="https://b-cloud.b-cdn.net/builds/pro/54-cloud/css/group-2-pro.css" rel="stylesheet"/><link class="brz-link brz-link-preview-pro" href="https://b-cloud.b-cdn.net/builds/pro/54-cloud/css/preview.pro.css" rel="stylesheet"/><style class="brz-style">.css-9lcs2z > [data-slides-to-show="1"]:not(.slick-initialized) .brz-carousel__item, [data-css-9lcs2z] > [data-slides-to-show="1"]:not(.slick-initialized) .brz-carousel__item {flex-basis: 100%;-webkit-flex-basis: 100%;}
.css-9lcs2z > [data-slides-to-show="1"]:not(.slick-initialized) .brz-carousel__item:nth-child(1n+2), [data-css-9lcs2z] > [data-slides-to-show="1"]:not(.slick-initialized) .brz-carousel__item:nth-child(1n+2) {display: none;}
.css-9lcs2z > .brz-carousel__slider, [data-css-9lcs2z] > .brz-carousel__slider {padding-left: 60px;padding-right: 60px;}
.css-9lcs2z > .brz-carousel__slider > .slick-list, [data-css-9lcs2z] > .brz-carousel__slider > .slick-list {margin-left: -0px;margin-right: -0px;padding-top: 16px;padding-bottom: 12px;}
.css-9lcs2z > .brz-carousel__slider > .slick-list > .slick-track > .slick-slide, [data-css-9lcs2z] > .brz-carousel__slider > .slick-list > .slick-track > .slick-slide {padding-left: 0px;padding-right: 0px;}
.css-9lcs2z > .brz-carousel__slider > .brz-slick-slider__dots, [data-css-9lcs2z] > .brz-carousel__slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.css-9lcs2z > .brz-carousel__slider > .brz-slick-slider__arrow, [data-css-9lcs2z] > .brz-carousel__slider > .brz-slick-slider__arrow {color: rgba(0,0,0,1);}
.css-9lcs2z > .brz-carousel__slider > .brz-slick-slider__arrow-prev, [data-css-9lcs2z] > .brz-carousel__slider > .brz-slick-slider__arrow-prev {left: 30px;}
.css-9lcs2z > .brz-carousel__slider > .brz-slick-slider__arrow-next, [data-css-9lcs2z] > .brz-carousel__slider > .brz-slick-slider__arrow-next {right: 30px;}
@media (max-width: 991px) {.css-9lcs2z > .brz-carousel__slider, [data-css-9lcs2z] > .brz-carousel__slider {padding-left: 0px;padding-right: 0px;}
.css-9lcs2z > .brz-carousel__slider > .slick-list, [data-css-9lcs2z] > .brz-carousel__slider > .slick-list {margin-left: auto;margin-right: auto;padding-top: 10px;padding-bottom: 30px;}
.css-9lcs2z > .brz-carousel__slider > .slick-list > .slick-track > .slick-slide, [data-css-9lcs2z] > .brz-carousel__slider > .slick-list > .slick-track > .slick-slide {padding-left: 0;padding-right: 0;}
.css-9lcs2z > .brz-carousel__slider > .brz-slick-slider__arrow-prev, [data-css-9lcs2z] > .brz-carousel__slider > .brz-slick-slider__arrow-prev {left: 30px;}
.css-9lcs2z > .brz-carousel__slider > .brz-slick-slider__arrow-next, [data-css-9lcs2z] > .brz-carousel__slider > .brz-slick-slider__arrow-next {right: 30px;}}
@media (max-width: 767px) {.css-9lcs2z > .brz-carousel__slider, [data-css-9lcs2z] > .brz-carousel__slider {padding-left: 0px;padding-right: 0px;}
.css-9lcs2z > .brz-carousel__slider > .slick-list, [data-css-9lcs2z] > .brz-carousel__slider > .slick-list {margin-left: auto;margin-right: auto;padding-top: 10px;padding-bottom: 30px;}
.css-9lcs2z > .brz-carousel__slider > .slick-list > .slick-track > .slick-slide, [data-css-9lcs2z] > .brz-carousel__slider > .slick-list > .slick-track > .slick-slide {padding-left: 0;padding-right: 0;}
.css-9lcs2z > .brz-carousel__slider > .brz-slick-slider__arrow-prev, [data-css-9lcs2z] > .brz-carousel__slider > .brz-slick-slider__arrow-prev {left: 30px;}
.css-9lcs2z > .brz-carousel__slider > .brz-slick-slider__arrow-next, [data-css-9lcs2z] > .brz-carousel__slider > .brz-slick-slider__arrow-next {right: 30px;}}
.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-zdwdi {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zdwdi {display: block;}}
@media (max-width:767px) {.brz .brz-css-zdwdi {display: block;}}
.brz .brz-css-zzdkf {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-zzdkf > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zzdkf > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-zzdkf > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-zzdkf > .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-zzdkf > .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-zzdkf {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-zzdkf > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zzdkf > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-zzdkf > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-zzdkf > .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-zzdkf > .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-zzdkf {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-zzdkf > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-zzdkf > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-zzdkf > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-zzdkf > .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-zzdkf > .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-shbel {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-shbel {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-shbel {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-shbel {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-shbel {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-shbel {max-width: 100%;}}
.brz .brz-css-obsyn {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-obsyn > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-obsyn > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-obsyn {min-height: auto;display: flex;}
.brz .brz-css-obsyn > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .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-obsyn {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-obsyn > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-obsyn > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-obsyn {min-height: auto;display: flex;}
.brz .brz-css-obsyn > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .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-obsyn {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-obsyn > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-obsyn > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-obsyn {min-height: auto;display: flex;}
.brz .brz-css-obsyn > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-obsyn > .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-lqxnr {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lqxnr {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-lqxnr {padding: 0;max-width: 100%;}}
.brz .brz-css-nztoc {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-nztoc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
@media (min-width:991px) {.brz .brz-css-nztoc > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nztoc > .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-nztoc {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-nztoc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-nztoc > .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-nztoc > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nztoc > .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-nztoc {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-nztoc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 10px 0px 10px 0px;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}}
@media (max-width:767px) {.brz .brz-css-nztoc > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-nztoc > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-xjpzi {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;}
@media (min-width:991px) {.brz .brz-css-xjpzi {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-xjpzi {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-xjpzi {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-xjpzi {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-xjpzi {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-faudf {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-faudf {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-faudf {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-faudf {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-faudf {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-faudf {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-hsteg {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-hsteg {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-hsteg:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-hsteg .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hsteg {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-hsteg {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-hsteg:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-hsteg .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-hsteg {max-width: 80%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-hsteg {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-hsteg:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-hsteg .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-joayt {padding-top: 21.4681%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-joayt {padding-top: 21.4663%;}}
@media (max-width:767px) {.brz .brz-css-joayt {padding-top: 21.468%;}}
@media (min-width:991px) {.brz .brz-css-jusue .brz-mm-menu__icon {display: none;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-jusue .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jusue .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-jusue .brz-menu {display: none;}}
@media (max-width:767px) {.brz .brz-css-jusue .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-jusue .brz-menu {display: none;}}
.brz .brz-css-gokad {font-family: Comfortaa,display;color: rgba(0,0,0,1);}
.brz .brz-css-gokad .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-gokad .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-menu__item {font-family: Comfortaa,display;color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-gokad .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-gokad.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-gokad .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__sub-menu {font-family: Comfortaa,display;color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-gokad .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item--current {background-color: undefined;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}
@media (min-width:991px) {.brz .brz-css-gokad {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-gokad .brz-mm-menu__item {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-gokad .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-gokad .brz-mm-navbar {font-family: Comfortaa,display;font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 1px;border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(24px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-gokad .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-gokad .brz-menu__dropdown-left {left: calc(100% + 5px);}
.brz .brz-css-gokad .brz-menu__dropdown-right {right: calc(100% + 5px);}
.brz .brz-css-gokad .brz-menu__dropdown-left:before {left: -5px;}
.brz .brz-css-gokad .brz-menu__dropdown-right:before {right: -5px;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-gokad .brz-mega-menu__dropdown {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gokad {color: rgba(0,0,0,1);}
.brz .brz-css-gokad .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-gokad .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-menu__item {color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-gokad .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-gokad.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-gokad .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__sub-menu {color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-gokad .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item--current {background-color: undefined;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gokad {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-gokad .brz-mm-menu__item {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-gokad .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-gokad .brz-mm-navbar {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(20.8px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-gokad .brz-menu__sub-menu {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item-dropdown .brz-menu__dropdown {position: relative;top: auto;left: auto;transform: translate(0,0);height: 0;overflow: hidden;}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-gokad.brz-menu__preview .brz-menu__dropdown .brz-menu__item:hover > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-gokad .brz-mega-menu__dropdown {display: none;}}
@media (max-width:767px) {.brz .brz-css-gokad {color: rgba(0,0,0,1);}
.brz .brz-css-gokad .brz-menu__ul:not(.brz-mm-listview) {display: flex;flex-wrap: wrap;justify-content: inherit;align-items: center;max-width: none;margin: 0px -5px 0px -5px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);padding: 0px 5px 0px 5px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(0,0,0,1);background-color: rgba(255,255,255,0);border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-gokad .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-menu__item {color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-gokad .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-gokad.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-gokad .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__sub-menu {color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-gokad .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item--current {background-color: undefined;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-gokad .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:767px) {.brz .brz-css-gokad {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-gokad .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-gokad .brz-mm-menu__item {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-gokad .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-gokad .brz-mm-navbar {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;border-color: rgba(85,85,85,1);}
.brz .brz-css-gokad.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(20.8px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-gokad .brz-menu__sub-menu {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gokad .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-gokad > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item-dropdown .brz-menu__dropdown {position: relative;top: auto;left: auto;transform: translate(0,0);height: 0;overflow: hidden;}
.brz .brz-css-gokad .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-gokad.brz-menu__preview .brz-menu__dropdown .brz-menu__item:hover > .brz-menu__sub-menu {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-gokad .brz-mega-menu__dropdown {display: block;}}
.brz .brz-css-ccxcj {padding: 75px 0px 75px 0px;margin: 0;}
.brz .brz-css-ccxcj > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-ccxcj > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-ccxcj > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-ccxcj > .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-ccxcj > .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-ccxcj {padding: 50px 15px 50px 15px;margin: 0;}
.brz .brz-css-ccxcj > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-ccxcj > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-ccxcj > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-ccxcj > .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-ccxcj > .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-ccxcj {padding: 25px 15px 25px 15px;margin: 0;}
.brz .brz-css-ccxcj > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-ccxcj > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-ccxcj > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-ccxcj > .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-ccxcj > .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-kiwhb {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-kiwhb {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kiwhb {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kiwhb {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-kiwhb {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-kiwhb {max-width: 100%;}}
.brz .brz-css-gyyam {width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gyyam {width: 100%;}}
@media (max-width:767px) {.brz .brz-css-gyyam {width: 100%;}}
.brz .brz-css-vglvc {z-index: auto;margin: 0;}
.brz .brz-css-vglvc .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-vglvc .brz-container {justify-content: center;}
.brz .brz-css-vglvc > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-vglvc > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-vglvc {display: block;}}
@media (min-width:991px) {.brz .brz-css-vglvc > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vglvc {z-index: auto;margin: 0;}
.brz .brz-css-vglvc .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-vglvc .brz-container {justify-content: center;}
.brz .brz-css-vglvc > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-vglvc > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vglvc {display: block;}}
@media (max-width:767px) {.brz .brz-css-vglvc {z-index: auto;margin: 0;}
.brz .brz-css-vglvc .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-vglvc .brz-container {justify-content: center;}
.brz .brz-css-vglvc > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-vglvc > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-vglvc {display: block;}}
.brz .brz-css-gnfqc {padding: 75px 0px 75px 0px;}
.brz .brz-css-gnfqc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-gnfqc > .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-gnfqc > .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-gnfqc > .brz-bg > .brz-bg-image {background-attachment: scroll;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gnfqc {padding: 50px 15px 50px 15px;}
.brz .brz-css-gnfqc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-gnfqc > .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-gnfqc > .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-gnfqc {padding: 25px 15px 25px 15px;}
.brz .brz-css-gnfqc > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-gnfqc > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-gnfqc > .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-gnfqc > .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-cblno {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-cblno {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cblno {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cblno {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-cblno {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-cblno {max-width: 100%;}}
.brz .brz-css-uteda {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uteda {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-uteda {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-vawra {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-vawra {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vawra:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vawra .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vawra {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-vawra {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vawra:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vawra .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-vawra {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-vawra {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vawra:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-vawra .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-niibm {padding-top: 62.5003%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-niibm {padding-top: 62.4991%;}}
@media (max-width:767px) {.brz .brz-css-niibm {padding-top: 62.4992%;}}
.brz .brz-css-nbmdf {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-nbmdf {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nbmdf:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nbmdf .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nbmdf {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-nbmdf {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nbmdf:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nbmdf .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-nbmdf {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-nbmdf {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nbmdf:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-nbmdf .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-lxsqw {padding-top: 62.5003%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lxsqw {padding-top: 62.4991%;}}
@media (max-width:767px) {.brz .brz-css-lxsqw {padding-top: 62.4992%;}}
.brz .brz-css-engon {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-engon {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-engon:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-engon .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-engon {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-engon {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-engon:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-engon .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-engon {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-engon {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-engon:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-engon .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-fkoyf {padding-top: 62.5003%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fkoyf {padding-top: 62.4991%;}}
@media (max-width:767px) {.brz .brz-css-fkoyf {padding-top: 62.4992%;}}
.brz .brz-css-liakt {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-liakt {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-liakt:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-liakt .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-liakt {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-liakt {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-liakt:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-liakt .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-liakt {max-width: 100%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-liakt {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-liakt:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-liakt .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-lgodc {padding-top: 62.5003%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lgodc {padding-top: 62.4991%;}}
@media (max-width:767px) {.brz .brz-css-lgodc {padding-top: 62.4992%;}}
.brz .brz-css-gnusd {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gnusd {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-gnusd {height: 50px;}}
.brz .brz-css-oahhp {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-oahhp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-oahhp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-oahhp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oahhp {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-oahhp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-oahhp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-oahhp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-oahhp {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-oahhp {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-oahhp:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-oahhp .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-pxgeg {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pxgeg {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-pxgeg {padding-top: 100%;}}
.brz .brz-css-szzxo {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-szzxo {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-szzxo:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-szzxo .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-szzxo {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-szzxo {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-szzxo:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-szzxo .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-szzxo {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-szzxo {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-szzxo:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-szzxo .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-kconb {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kconb {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-kconb {padding-top: 100%;}}
.brz .brz-css-ohuvr {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-ohuvr {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ohuvr:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ohuvr .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ohuvr {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ohuvr {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ohuvr:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ohuvr .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-ohuvr {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-ohuvr {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ohuvr:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-ohuvr .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-whvsq {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-whvsq {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-whvsq {padding-top: 100%;}}
.brz .brz-css-wmnjr {width: 75%;}
.brz .brz-css-wmnjr .brz-hr {border-top: 2px solid rgba(92,97,94,.75);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wmnjr {width: 75%;}
.brz .brz-css-wmnjr .brz-hr {border-top: 2px solid rgba(92,97,94,.75);}}
@media (max-width:767px) {.brz .brz-css-wmnjr {width: 75%;}
.brz .brz-css-wmnjr .brz-hr {border-top: 2px solid rgba(92,97,94,.75);}}
.brz .brz-css-survt {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-survt {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-survt:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-survt .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-survt {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-survt {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-survt:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-survt .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-survt {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-survt {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-survt:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-survt .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-epfxn {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-epfxn {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-epfxn {padding-top: 100%;}}
.brz .brz-css-xypnq {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-xypnq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xypnq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xypnq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xypnq {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xypnq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xypnq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xypnq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-xypnq {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-xypnq {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xypnq:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-xypnq .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-dkahe {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dkahe {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-dkahe {padding-top: 100%;}}
.brz .brz-css-mlicu {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-mlicu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mlicu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mlicu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mlicu {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mlicu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mlicu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mlicu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-mlicu {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-mlicu {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mlicu:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-mlicu .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-zpiox {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zpiox {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-zpiox {padding-top: 100%;}}
.brz .brz-css-tpgjn {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-tpgjn {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tpgjn {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tpgjn {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-tpgjn {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-tpgjn {display: flex;position: relative;}}
.brz .brz-css-fskao {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fskao {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
@media (max-width:767px) {.brz .brz-css-fskao {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
.brz .brz-css-dbqng {padding: 0px 5px 20px 5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dbqng {padding: 0px 5px 20px 5px;}}
@media (max-width:767px) {.brz .brz-css-dbqng {padding: 0px 5px 20px 5px;}}
.brz .brz-css-qkpxf.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Comfortaa,display;font-weight: 700;font-size: 15px;line-height: 1.6;letter-spacing: 1px;color: rgba(255,255,255,1);border: 2px solid rgba(51,212,230,0);border-radius: 2px;background-color: rgba(51,212,230,1);background-image: none;padding: 14px 42px 14px 42px;flex-flow: row-reverse nowrap;}
.brz .brz-css-qkpxf .brz-btn--story-container {border: 2px solid rgba(51,212,230,0);flex-flow: row-reverse nowrap;border-radius: 2px;}
@media (min-width:991px) {.brz .brz-css-qkpxf.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
@media (min-width:991px) {.brz .brz-css-qkpxf.brz-btn:hover {background-color: rgba(51,212,230,.8);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qkpxf.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Comfortaa,display;font-weight: 600;font-size: 13px;line-height: 1.6;letter-spacing: 1px;color: rgba(255,255,255,1);border: 2px solid rgba(51,212,230,0);border-radius: 2px;background-color: rgba(51,212,230,1);background-image: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-qkpxf .brz-btn--story-container {border: 2px solid rgba(51,212,230,0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qkpxf.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
@media (max-width:767px) {.brz .brz-css-qkpxf.brz-btn {display: flex;align-items: center;justify-content: center;font-family: Comfortaa,display;font-weight: 600;font-size: 13px;line-height: 1.6;letter-spacing: 1px;color: rgba(255,255,255,1);border: 2px solid rgba(51,212,230,0);border-radius: 2px;background-color: rgba(51,212,230,1);background-image: none;padding: 11px 26px 11px 26px;flex-flow: row-reverse nowrap;}
.brz .brz-css-qkpxf .brz-btn--story-container {border: 2px solid rgba(51,212,230,0);flex-flow: row-reverse nowrap;border-radius: 2px;}}
@media (max-width:767px) {.brz .brz-css-qkpxf.brz-btn {transition-duration: .5s;transition-property: color,box-shadow,background,border-color;}}
.brz .brz-css-cazzo {padding: 75px 0px 75px 0px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-cazzo > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-cazzo > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-cazzo > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-cazzo > .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-cazzo > .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-cazzo .brz-container {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cazzo {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-cazzo > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-cazzo > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-cazzo > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-cazzo > .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-cazzo > .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-cazzo .brz-container {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-cazzo {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-cazzo > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-cazzo > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-cazzo > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-cazzo > .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-cazzo > .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-cazzo .brz-container {justify-content: center;}}
.brz .brz-css-nvapx {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-nvapx {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nvapx {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nvapx {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-nvapx {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-nvapx {max-width: 100%;}}
.brz .brz-css-lpalh {max-width: 53%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-lpalh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lpalh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lpalh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lpalh {max-width: 60%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lpalh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lpalh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lpalh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-lpalh {max-width: 40%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-lpalh {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lpalh:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lpalh .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-ggioa {padding-top: 21.4631%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ggioa {padding-top: 21.4669%;}}
@media (max-width:767px) {.brz .brz-css-ggioa {padding-top: 21.4667%;}}
.brz .brz-css-cisdo {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cisdo {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-cisdo {padding: 0;}}
.brz .brz-css-vfgrv {flex: 1 1 100%;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vfgrv {flex: 1 1 100%;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-vfgrv {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-cznhk {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cznhk {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-cznhk {margin: 0;}}
.brz .brz-css-vvpip {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vvpip {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-vvpip {padding: 0;}}
.brz .brz-css-hgjie {flex: 1 1 18%;max-width: 18%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hgjie {flex: 1 1 24.6%;max-width: 24.6%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-hgjie {flex: 1 1 48.4%;max-width: 48.4%;justify-content: center;}}
.brz .brz-css-eglev {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eglev {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-eglev {padding: 0;}}
.brz .brz-css-nappb {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nappb {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-nappb {justify-content: flex-start;}}
.brz .brz-css-mtrde {flex: 1 1 82%;max-width: 82%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mtrde {flex: 1 1 74.4%;max-width: 74.4%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-mtrde {flex: 1 1 51.6%;max-width: 51.6%;justify-content: center;}}
.brz .brz-css-qakhg {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qakhg {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-qakhg {padding: 0;}}
.brz .brz-css-hbfwa {justify-content: flex-end;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hbfwa {justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-hbfwa {justify-content: flex-end;}}
@media (min-width:991px) {.brz .brz-css-zrbsi .brz-mm-menu__icon {display: flex;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-zrbsi .brz-menu {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zrbsi .brz-mm-menu__icon {display: none;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-zrbsi .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-zrbsi .brz-mm-menu__icon {display: flex;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-zrbsi .brz-menu {display: none;}}
.brz .brz-css-wazig {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -22.5px 0px -22.5px;}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(51,212,230,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(51,212,230,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-wazig.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-wazig .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-wazig.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-wazig .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-wazig .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-wazig .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}
@media (min-width:991px) {.brz .brz-css-wazig {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 22.5px;margin-left: 22.5px;}
.brz .brz-css-wazig .brz-mm-menu__item {font-size: 16px;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-wazig .brz-mm-navbar {font-size: 16px;line-height: 1.5;letter-spacing: 0px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
@media (min-width:991px) {.brz .brz-css-wazig:hover {color: rgba(51,212,230,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item > .brz-a:hover {color: rgba(51,212,230,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wazig {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-wazig.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-wazig .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-wazig.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-wazig .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-wazig .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-wazig .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wazig {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-wazig .brz-mm-menu__item {font-size: 13px;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-wazig .brz-mm-navbar {font-size: 13px;line-height: 1.6;letter-spacing: 1px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-wazig {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-wazig.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-wazig .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-wazig.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-wazig .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-wazig .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-wazig .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-wazig .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:767px) {.brz .brz-css-wazig {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-wazig .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-wazig .brz-mm-menu__item {font-size: 13px;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-wazig .brz-mm-navbar {font-size: 13px;line-height: 1.6;letter-spacing: 1px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-wazig .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
.brz .brz-css-rwlxy {padding: 15px 0px 15px 0px;}
.brz .brz-css-rwlxy > .brz-bg:after {box-shadow: inset 0 5px 5px -5px rgba(0,0,0,.1),inset 0 -5px 5px -5px rgba(0,0,0,.1);display: block;}
.brz .brz-css-rwlxy > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rwlxy {padding: 15px;}
.brz .brz-css-rwlxy > .brz-bg:after {box-shadow: inset 0 5px 5px -5px rgba(0,0,0,.1),inset 0 -5px 5px -5px rgba(0,0,0,.1);display: block;}
.brz .brz-css-rwlxy > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}}
@media (max-width:767px) {.brz .brz-css-rwlxy {padding: 15px;}
.brz .brz-css-rwlxy > .brz-bg:after {box-shadow: inset 0 5px 5px -5px rgba(0,0,0,.1),inset 0 -5px 5px -5px rgba(0,0,0,.1);display: block;}
.brz .brz-css-rwlxy > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}}
.brz .brz-css-qbbig {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qbbig {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-qbbig {padding: 0;}}
.brz .brz-css-ljoqq {flex: 1 1 33.9%;max-width: 33.9%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ljoqq {flex: 1 1 24.5%;max-width: 24.5%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-ljoqq {flex: 1 1 48.4%;max-width: 48.4%;justify-content: center;}}
.brz .brz-css-bqmve {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bqmve {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-bqmve {padding: 0;}}
.brz .brz-css-rjbmz {margin-top: 0px !important;margin-bottom: 0px !important;text-align: justify;font-family: Kaushan Script,handwriting;font-size: 3em;line-height: 1.3;font-weight: 400;letter-spacing: -1.5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rjbmz {margin-top: 0px !important;margin-bottom: 0px !important;text-align: justify;font-size: 2em;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-rjbmz {margin-top: 0px !important;margin-bottom: 0px !important;text-align: justify;font-size: 2em;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-lhlpg {flex: 1 1 66.1%;max-width: 66.1%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lhlpg {flex: 1 1 73.5%;max-width: 73.5%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-lhlpg {flex: 1 1 51.6%;max-width: 51.6%;justify-content: center;}}
.brz .brz-css-bambq {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bambq {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-bambq {padding: 0;}}
.brz .brz-css-ultmq {justify-content: flex-end;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ultmq {justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-ultmq {justify-content: flex-end;}}
@media (min-width:991px) {.brz .brz-css-xmqqy .brz-mm-menu__icon {display: none;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-xmqqy .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xmqqy .brz-mm-menu__icon {display: none;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-xmqqy .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-xmqqy .brz-mm-menu__icon {display: flex;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-xmqqy .brz-menu {display: none;}}
.brz .brz-css-gtdmw {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -22.5px 0px -22.5px;}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-gtdmw .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-gtdmw .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-gtdmw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}
@media (min-width:991px) {.brz .brz-css-gtdmw {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 22.5px;margin-left: 22.5px;}
.brz .brz-css-gtdmw .brz-mm-menu__item {font-size: 16px;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-gtdmw .brz-mm-navbar {font-size: 16px;line-height: 1.5;letter-spacing: 0px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
@media (min-width:991px) {.brz .brz-css-gtdmw:hover {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item > .brz-a:hover {color: rgba(51,212,230,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gtdmw {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-gtdmw .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-gtdmw .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-gtdmw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gtdmw {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-gtdmw .brz-mm-menu__item {font-size: 13px;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gtdmw .brz-mm-navbar {font-size: 13px;line-height: 1.6;letter-spacing: 1px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-gtdmw {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-gtdmw .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-gtdmw .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-gtdmw .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-gtdmw .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-gtdmw .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:767px) {.brz .brz-css-gtdmw {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-gtdmw .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-gtdmw .brz-mm-menu__item {font-size: 13px;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-gtdmw .brz-mm-navbar {font-size: 13px;line-height: 1.6;letter-spacing: 1px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-gtdmw .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
.brz .brz-css-fgmeo {padding: 200px 0px 200px 0px;}
.brz .brz-css-fgmeo > .brz-bg > .brz-bg-image {background-image: url("assets/img/8f976819dc65365d89605229ca0d6f16.jpg");background-position: 50% 27%;}
.brz .brz-css-fgmeo > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.85);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fgmeo {padding: 50px 15px 50px 15px;}
.brz .brz-css-fgmeo > .brz-bg > .brz-bg-image {background-image: url("assets/img/8f976819dc65365d89605229ca0d6f16.jpg");background-position: 50% 27%;}
.brz .brz-css-fgmeo > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.85);}}
@media (max-width:767px) {.brz .brz-css-fgmeo {padding: 25px 15px 25px 15px;}
.brz .brz-css-fgmeo > .brz-bg > .brz-bg-image {background-image: url("assets/img/8f976819dc65365d89605229ca0d6f16.jpg");background-position: 50% 27%;}
.brz .brz-css-fgmeo > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.85);}}
.brz .brz-css-lsacb {animation-name: fadeInDown;animation-duration: 900ms;animation-delay: 0ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lsacb {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-lsacb {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-sxfgj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Kaushan Script,handwriting;font-size: 42px;line-height: 1.4;font-weight: 400;letter-spacing: -1px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sxfgj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 35px;line-height: 1.3;font-weight: 400;letter-spacing: -.5px;}}
@media (max-width:767px) {.brz .brz-css-sxfgj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 29px;line-height: 1.3;font-weight: 400;letter-spacing: -.5px;}}
.brz .brz-css-duiqq {animation-name: fadeInUp;animation-duration: 900ms;animation-delay: 0ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-duiqq {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-duiqq {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-rvnpf {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 17px;line-height: 1.8;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rvnpf {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 17px;line-height: 1.5;font-weight: 300;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-rvnpf {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 17px;line-height: 1.5;font-weight: 300;letter-spacing: 0px;}}
.brz .brz-css-jknzj {padding: 90px 0px 90px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jknzj {padding: 50px 15px 50px 15px;}}
@media (max-width:767px) {.brz .brz-css-jknzj {padding: 25px 15px 25px 15px;}}
.brz .brz-css-nbojr {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-nbojr > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nbojr {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-nbojr > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 0;}}
@media (max-width:767px) {.brz .brz-css-nbojr {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-nbojr > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 10px 0px 10px 0px;}}
.brz .brz-css-iymjp {margin: 15px;border: 2px solid transparent;padding: 30px 40px 30px 40px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iymjp {margin: 0;border: 2px solid transparent;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-iymjp {margin: 10px 0px 10px 0px;border: 2px solid transparent;padding: 0px 10px 0px 10px;}}
.brz .brz-css-zteaw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: Comfortaa,display;font-size: 22px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zteaw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 22px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-zteaw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 21px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-vdxox {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: Comfortaa,display;font-size: 16px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vdxox {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-vdxox {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-hxbwb {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-hxbwb > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hxbwb {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-hxbwb > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 0;}}
@media (max-width:767px) {.brz .brz-css-hxbwb {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-hxbwb > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 10px 0px 10px 0px;}}
.brz .brz-css-crleo {margin: 15px;border: 2px solid transparent;padding: 30px 40px 30px 40px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-crleo {margin: 0;border: 2px solid transparent;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-crleo {margin: 10px 0px 10px 0px;border: 2px solid transparent;padding: 0px 10px 0px 10px;}}
.brz .brz-css-duxmi {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: Comfortaa,display;font-size: 22px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-duxmi {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 22px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-duxmi {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 21px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-kjedb {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: Comfortaa,display;font-size: 16px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kjedb {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-kjedb {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-ccmts {flex: 1 1 33.4%;max-width: 33.4%;justify-content: center;}
.brz .brz-css-ccmts > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ccmts {flex: 1 1 33.4%;max-width: 33.4%;justify-content: center;}
.brz .brz-css-ccmts > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 0;}}
@media (max-width:767px) {.brz .brz-css-ccmts {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-ccmts > .brz-bg {border: 2px solid rgba(92,97,94,.25);margin: 10px 0px 10px 0px;}}
.brz .brz-css-zjklg {margin: 15px;border: 2px solid transparent;padding: 30px 40px 30px 40px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zjklg {margin: 0;border: 2px solid transparent;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-zjklg {margin: 10px 0px 10px 0px;border: 2px solid transparent;padding: 0px 10px 0px 10px;}}
.brz .brz-css-lpmff {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: Comfortaa,display;font-size: 22px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lpmff {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 22px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-lpmff {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 21px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-xesdx {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-family: Comfortaa,display;font-size: 16px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xesdx {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-xesdx {margin-top: 0px !important;margin-bottom: 0px !important;text-align: left;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-ieihu > .slick-slider > .brz-slick-slider__dots {color: rgba(128,193,159,1);}
.brz .brz-css-ieihu > .slick-slider > .brz-slick-slider__arrow {color: rgba(128,193,159,1);}
@media (min-width:991px) {.brz .brz-css-ieihu > .slick-slider > .brz-slick-slider__dots:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ieihu > .slick-slider > .brz-slick-slider__dots {color: rgba(128,193,159,1);}
.brz .brz-css-ieihu > .slick-slider > .brz-slick-slider__arrow {color: rgba(128,193,159,1);}}
@media (max-width:767px) {.brz .brz-css-ieihu > .slick-slider > .brz-slick-slider__dots {color: rgba(128,193,159,1);}
.brz .brz-css-ieihu > .slick-slider > .brz-slick-slider__arrow {color: rgba(128,193,159,1);}}
.brz .brz-css-spkgo {padding: 90px 0px 120px 0px;}
.brz .brz-css-spkgo > .brz-bg > .brz-bg-color {background-color: rgba(223,245,224,1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-spkgo {padding: 50px 15px 50px 15px;}
.brz .brz-css-spkgo > .brz-bg > .brz-bg-color {background-color: rgba(223,245,224,1);}}
@media (max-width:767px) {.brz .brz-css-spkgo {padding: 25px 15px 25px 15px;}
.brz .brz-css-spkgo > .brz-bg > .brz-bg-color {background-color: rgba(223,245,224,1);}}
@media (min-width:991px) {.brz .brz-css-hhnjy {max-width: calc(.83 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hhnjy {max-width: 83%;}}
@media (max-width:767px) {.brz .brz-css-hhnjy {max-width: 83%;}}
.brz .brz-css-tioeu {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Kaushan Script,handwriting;font-size: 32px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tioeu {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 27px;line-height: 1.3;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-tioeu {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 22px;line-height: 1.3;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-mwdba {margin: 10px -60px 10px -60px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mwdba {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-mwdba {margin: 10px 0px 10px 0px;}}
.brz .brz-css-utnel {padding: 5px 15px 20px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-utnel {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-utnel {padding: 0;}}
.brz .brz-css-gprlm {padding: 90px 0px 100px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gprlm {padding: 50px 15px 50px 15px;}}
@media (max-width:767px) {.brz .brz-css-gprlm {padding: 25px 15px 25px 15px;}}
.brz .brz-css-gvuul {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Kaushan Script,handwriting;font-size: 32px;line-height: 1.4;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gvuul {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 27px;line-height: 1.3;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-gvuul {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 22px;line-height: 1.3;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-vpwlq {flex: 1 1 33.3%;max-width: 33.3%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vpwlq {flex: 1 1 33.3%;max-width: 33.3%;}}
@media (max-width:767px) {.brz .brz-css-vpwlq {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-bfjcc {border-radius: 108px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bfjcc {border-radius: 65px;}}
@media (max-width:767px) {.brz .brz-css-bfjcc {border-radius: 120px;}}
.brz .brz-css-wmadn {margin: 10px 0px 0px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wmadn {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-wmadn {margin: 10px 0px 10px 0px;}}
.brz .brz-css-bnrlb {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 20px;line-height: 1.6;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bnrlb {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 19px;line-height: 1.5;font-weight: 600;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-bnrlb {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 18px;line-height: 1.5;font-weight: 600;letter-spacing: 0px;}}
.brz .brz-css-qigbt {margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qigbt {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-qigbt {margin: 10px 0px 10px 0px;}}
.brz .brz-css-dcjcf {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dcjcf {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-dcjcf {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-ydflu {flex: 1 1 33.3%;max-width: 33.3%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ydflu {flex: 1 1 33.3%;max-width: 33.3%;}}
@media (max-width:767px) {.brz .brz-css-ydflu {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-djhvh {border-radius: 108px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-djhvh {border-radius: 65px;}}
@media (max-width:767px) {.brz .brz-css-djhvh {border-radius: 120px;}}
.brz .brz-css-rgltv {margin: 10px 0px 0px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rgltv {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-rgltv {margin: 10px 0px 10px 0px;}}
.brz .brz-css-yjdix {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 20px;line-height: 1.6;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yjdix {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 19px;line-height: 1.5;font-weight: 600;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-yjdix {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 18px;line-height: 1.5;font-weight: 600;letter-spacing: 0px;}}
.brz .brz-css-vxmqr {margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vxmqr {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-vxmqr {margin: 10px 0px 10px 0px;}}
.brz .brz-css-rkxtj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rkxtj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-rkxtj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-nxvwc {flex: 1 1 33.4%;max-width: 33.4%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nxvwc {flex: 1 1 33.4%;max-width: 33.4%;}}
@media (max-width:767px) {.brz .brz-css-nxvwc {flex: 1 1 100%;max-width: 100%;}}
.brz .brz-css-nkucy {border-radius: 108px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nkucy {border-radius: 65px;}}
@media (max-width:767px) {.brz .brz-css-nkucy {border-radius: 120px;}}
.brz .brz-css-obonk {margin: 10px 0px 0px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-obonk {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-obonk {margin: 10px 0px 10px 0px;}}
.brz .brz-css-mwlwg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 20px;line-height: 1.6;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mwlwg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 19px;line-height: 1.5;font-weight: 600;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-mwlwg {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 18px;line-height: 1.5;font-weight: 600;letter-spacing: 0px;}}
.brz .brz-css-rtzbp {margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rtzbp {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-rtzbp {margin: 10px 0px 10px 0px;}}
.brz .brz-css-zjued {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.9;font-weight: 400;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zjued {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-zjued {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 15px;line-height: 1.6;font-weight: 400;letter-spacing: 0px;}}
.brz .brz-css-jvfim {height: 10px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jvfim {height: 10px;}}
@media (max-width:767px) {.brz .brz-css-jvfim {height: 10px;}}
.brz .brz-css-qymre {width: 25%;}
.brz .brz-css-qymre .brz-hr {border-top: 2px solid rgba(223,245,224,1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qymre {width: 25%;}