-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
1233 lines (1233 loc) · 168 KB
/
portfolio.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>Portfolio</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/portfolio"><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-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;}
.brz .brz-ff-lato {font-family: Lato,sans-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|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|Lato:100,100italic,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">.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-vdosg {display: block;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-vdosg {display: block;}}
@media (max-width:767px) {.brz .brz-css-vdosg {display: block;}}
.brz .brz-css-tkayk {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-tkayk > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-tkayk > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-tkayk > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-tkayk > .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-tkayk > .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-tkayk {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-tkayk > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-tkayk > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-tkayk > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-tkayk > .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-tkayk > .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-tkayk {padding: 10px 0px 10px 0px;margin: 0;}
.brz .brz-css-tkayk > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-tkayk > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-tkayk > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);background-image: none;}
.brz .brz-css-tkayk > .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-tkayk > .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-heuee {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-heuee {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-heuee {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-heuee {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-heuee {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-heuee {max-width: 100%;}}
.brz .brz-css-poafy {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-poafy > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-poafy > .brz-row {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-poafy {min-height: auto;display: flex;}
.brz .brz-css-poafy > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .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-poafy {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-poafy > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-poafy > .brz-row {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-poafy {min-height: auto;display: flex;}
.brz .brz-css-poafy > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .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-poafy {margin: 0;z-index: auto;align-items: flex-start;}
.brz .brz-css-poafy > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;max-width: 100%;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-poafy > .brz-row {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-poafy {min-height: auto;display: flex;}
.brz .brz-css-poafy > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .brz-bg > .brz-bg-video {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-poafy > .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-zctld {padding: 10px;max-width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zctld {padding: 0;max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-zctld {padding: 0;max-width: 100%;}}
.brz .brz-css-iqscd {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-iqscd > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
@media (min-width:991px) {.brz .brz-css-iqscd > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-iqscd > .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-iqscd {z-index: auto;flex: 1 1 50%;max-width: 50%;justify-content: flex-start;}
.brz .brz-css-iqscd > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 0;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-iqscd > .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-iqscd > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-iqscd > .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-iqscd {z-index: auto;flex: 1 1 100%;max-width: 100%;justify-content: flex-start;}
.brz .brz-css-iqscd > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;margin: 10px 0px 10px 0px;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}}
@media (max-width:767px) {.brz .brz-css-iqscd > .brz-bg {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-image {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}
.brz .brz-css-iqscd > .brz-bg > .brz-bg-color {transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-kaemt {z-index: auto;margin: 0;border: 0px solid transparent;padding: 5px 15px 5px 15px;}
@media (min-width:991px) {.brz .brz-css-kaemt {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-kaemt {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-kaemt {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
@media (max-width:767px) {.brz .brz-css-kaemt {z-index: auto;margin: 10px 0px 10px 0px;border: 0px solid transparent;padding: 0;}}
@media (max-width:767px) {.brz .brz-css-kaemt {display: flex;transition-duration: .5s;transition-property: filter,box-shadow,background,border-radius,border-color;}}
.brz .brz-css-xlcsg {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}
@media (min-width:991px) {.brz .brz-css-xlcsg {display: flex;z-index: auto;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xlcsg {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xlcsg {display: flex;z-index: auto;position: relative;}}
@media (max-width:767px) {.brz .brz-css-xlcsg {padding: 0;margin: 10px 0px 10px 0px;justify-content: center;position: relative;}}
@media (max-width:767px) {.brz .brz-css-xlcsg {display: flex;z-index: auto;position: relative;}}
.brz .brz-css-wcfpv {max-width: 70%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-wcfpv {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wcfpv:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wcfpv .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wcfpv {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-wcfpv {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wcfpv:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wcfpv .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-wcfpv {max-width: 80%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-wcfpv {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wcfpv:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-wcfpv .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-mujxp {padding-top: 21.4681%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mujxp {padding-top: 21.4663%;}}
@media (max-width:767px) {.brz .brz-css-mujxp {padding-top: 21.468%;}}
@media (min-width:991px) {.brz .brz-css-mkgtw .brz-mm-menu__icon {display: none;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-mkgtw .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mkgtw .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-mkgtw .brz-menu {display: none;}}
@media (max-width:767px) {.brz .brz-css-mkgtw .brz-mm-menu__icon {display: flex;font-size: 18px;color: rgba(51,51,51,1);}
.brz .brz-css-mkgtw .brz-menu {display: none;}}
.brz .brz-css-xhamk {font-family: Comfortaa,display;color: rgba(0,0,0,1);}
.brz .brz-css-xhamk .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-xhamk .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-xhamk .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-xhamk .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-xhamk .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-xhamk .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-xhamk .brz-mm-menu__item {font-family: Comfortaa,display;color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz .brz-css-xhamk.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-xhamk .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-xhamk .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk.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-xhamk .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-menu__sub-menu {font-family: Comfortaa,display;color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-xhamk .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item--current {background-color: undefined;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}
@media (min-width:991px) {.brz .brz-css-xhamk {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-xhamk .brz-mm-menu__item {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-xhamk .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-xhamk .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-xhamk.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(24px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-xhamk .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-xhamk .brz-menu__dropdown-left {left: calc(100% + 5px);}
.brz .brz-css-xhamk .brz-menu__dropdown-right {right: calc(100% + 5px);}
.brz .brz-css-xhamk .brz-menu__dropdown-left:before {left: -5px;}
.brz .brz-css-xhamk .brz-menu__dropdown-right:before {right: -5px;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-xhamk .brz-mega-menu__dropdown {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xhamk {color: rgba(0,0,0,1);}
.brz .brz-css-xhamk .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-xhamk .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-xhamk .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-xhamk .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-xhamk .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-xhamk .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-xhamk .brz-mm-menu__item {color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz .brz-css-xhamk.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-xhamk .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-xhamk .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk.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-xhamk .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-menu__sub-menu {color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-xhamk .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item--current {background-color: undefined;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .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-xhamk {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-xhamk .brz-mm-menu__item {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-xhamk .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-xhamk .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-xhamk.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(20.8px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-xhamk .brz-menu__sub-menu {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-xhamk .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-xhamk .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-xhamk .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-xhamk.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-xhamk .brz-mega-menu__dropdown {display: none;}}
@media (max-width:767px) {.brz .brz-css-xhamk {color: rgba(0,0,0,1);}
.brz .brz-css-xhamk .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-xhamk .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-xhamk .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-xhamk .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-xhamk .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(0,0,0,1);background-color: transparent;}
.brz .brz-css-xhamk .brz-menu__item__icon {margin-right: 15px;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item {background-color: transparent;border: 0px solid rgba(85,85,85,1);}
.brz .brz-css-xhamk .brz-mm-menu__item {color: rgba(255,255,255,1);border-color: rgba(85,85,85,1);}
.brz .brz-css-xhamk.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text {padding: 10px 20px 10px 20px;}
.brz .brz-css-xhamk .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-navbar {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-listitem_opened {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-xhamk .brz-mm-panels > .brz-mm-panel {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk.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-xhamk .brz-mm-listitem {border-color: rgba(85,85,85,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-menu__item--current {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-menu__sub-menu {color: rgba(255,255,255,1);border-radius: 0;}
.brz .brz-css-xhamk .brz-menu__sub-menu .brz-a:hover {color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-menu__sub-item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item--current {background-color: undefined;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item--current:hover {background-color: undefined;}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(51,51,51,1);}
.brz .brz-css-xhamk .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(255,255,255,1);}
.brz .brz-css-xhamk .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(85,85,85,1);}}
@media (max-width:767px) {.brz .brz-css-xhamk {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-menu__item__icon {font-size: 12px;}
.brz .brz-css-xhamk .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 5px;margin-left: 5px;}
.brz .brz-css-xhamk .brz-mm-menu__item {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-mm-menu__item .brz-a {justify-content: flex-start;}
.brz .brz-css-xhamk .brz-mm-menu__item__icon {margin-right: 15px;font-size: 12px;}
.brz .brz-css-xhamk .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-xhamk.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next {height: calc(20.8px + 10px + 10px);padding-right: 20px;}
.brz .brz-css-xhamk .brz-menu__sub-menu {font-size: 13px;font-weight: 600;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-xhamk .brz-menu__dropdown {position: absolute;top: 0;width: 305px;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {top: calc(100% + 5px);width: 300px;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {left: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {right: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before {top: -5px;left: 0;}
.brz .brz-css-xhamk > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before {top: -5px;right: 0;}
.brz .brz-css-xhamk .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after {border-right-style: solid;border-left-style: none;}
.brz .brz-css-xhamk .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-xhamk .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown {height: auto;width: 100%;left: auto;right: auto;}
.brz .brz-css-xhamk.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-xhamk .brz-mega-menu__dropdown {display: block;}}
.brz .brz-css-wukii {padding: 75px 0px 75px 0px;margin: 0;}
.brz .brz-css-wukii > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-wukii > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-wukii > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-wukii > .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-wukii > .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-wukii {padding: 50px 15px 50px 15px;margin: 0;}
.brz .brz-css-wukii > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-wukii > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-wukii > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-wukii > .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-wukii > .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-wukii {padding: 25px 15px 25px 15px;margin: 0;}
.brz .brz-css-wukii > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-wukii > .brz-bg > .brz-bg-image {background-image: none;}
.brz .brz-css-wukii > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-wukii > .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-wukii > .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-shrld {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-shrld {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-shrld {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-shrld {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-shrld {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-shrld {max-width: 100%;}}
.brz .brz-css-yjoye {width: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yjoye {width: 100%;}}
@media (max-width:767px) {.brz .brz-css-yjoye {width: 100%;}}
.brz .brz-css-zmicj {z-index: auto;margin: 0;}
.brz .brz-css-zmicj .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-zmicj .brz-container {justify-content: center;}
.brz .brz-css-zmicj > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-zmicj > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}
@media (min-width:991px) {.brz .brz-css-zmicj {display: block;}}
@media (min-width:991px) {.brz .brz-css-zmicj > .slick-slider > .brz-slick-slider__arrow:hover {color: rgba(0,0,0,1);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zmicj {z-index: auto;margin: 0;}
.brz .brz-css-zmicj .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-zmicj .brz-container {justify-content: center;}
.brz .brz-css-zmicj > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-zmicj > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zmicj {display: block;}}
@media (max-width:767px) {.brz .brz-css-zmicj {z-index: auto;margin: 0;}
.brz .brz-css-zmicj .brz-section__content {min-height: auto;display: flex;}
.brz .brz-css-zmicj .brz-container {justify-content: center;}
.brz .brz-css-zmicj > .slick-slider > .brz-slick-slider__dots {color: rgba(0,0,0,1);}
.brz .brz-css-zmicj > .slick-slider > .brz-slick-slider__arrow {color: rgba(0,0,0,.7);}}
@media (max-width:767px) {.brz .brz-css-zmicj {display: block;}}
.brz .brz-css-bbsnh {padding: 75px 0px 75px 0px;}
.brz .brz-css-bbsnh > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-bbsnh > .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-bbsnh > .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-bbsnh > .brz-bg > .brz-bg-image {background-attachment: scroll;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bbsnh {padding: 50px 15px 50px 15px;}
.brz .brz-css-bbsnh > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-bbsnh > .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-bbsnh > .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-bbsnh {padding: 25px 15px 25px 15px;}
.brz .brz-css-bbsnh > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-map {display: none;}
.brz .brz-css-bbsnh > .brz-bg > .brz-bg-video {display: none;}
.brz .brz-css-bbsnh > .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-bbsnh > .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-atwvv {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-atwvv {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-atwvv {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-atwvv {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-atwvv {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-atwvv {max-width: 100%;}}
.brz .brz-css-zsmpn {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zsmpn {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-zsmpn {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-msopa {height: 50px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-msopa {height: 50px;}}
@media (max-width:767px) {.brz .brz-css-msopa {height: 50px;}}
.brz .brz-css-lcnai {max-width: 8%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-lcnai {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lcnai:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lcnai .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lcnai {max-width: 8%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lcnai {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lcnai:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lcnai .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-lcnai {max-width: 20%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-lcnai {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lcnai:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-lcnai .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-fdnot {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fdnot {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-fdnot {padding-top: 100%;}}
.brz .brz-css-aklwy {max-width: 8%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-aklwy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aklwy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aklwy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aklwy {max-width: 8%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aklwy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aklwy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aklwy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-aklwy {max-width: 20%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-aklwy {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aklwy:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-aklwy .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-yvsod {padding-top: 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yvsod {padding-top: 100%;}}
@media (max-width:767px) {.brz .brz-css-yvsod {padding-top: 100%;}}
.brz .brz-css-imjoi {padding: 75px 0px 75px 0px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-imjoi > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-imjoi > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-imjoi > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-imjoi > .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-imjoi > .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-imjoi .brz-container {justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-imjoi {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-imjoi > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-imjoi > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-imjoi > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-imjoi > .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-imjoi > .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-imjoi .brz-container {justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-imjoi {padding: 25px 15px 25px 15px;min-height: auto;display: flex;margin: 0;}
.brz .brz-css-imjoi > .brz-bg {border: 0px solid rgba(102,115,141,0);border-radius: 0;}
.brz .brz-css-imjoi > .brz-bg > .brz-bg-image {background-image: none;display: block;}
.brz .brz-css-imjoi > .brz-bg > .brz-bg-color {background-color: rgba(0,0,0,0);background-image: none;}
.brz .brz-css-imjoi > .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-imjoi > .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-imjoi .brz-container {justify-content: center;}}
.brz .brz-css-jvsve {border: 0px solid transparent;}
@media (min-width:991px) {.brz .brz-css-jvsve {max-width: calc(1 * var(--brz-section-container-max-width,1170px));}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jvsve {border: 0px solid transparent;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jvsve {max-width: 100%;}}
@media (max-width:767px) {.brz .brz-css-jvsve {border: 0px solid transparent;}}
@media (max-width:767px) {.brz .brz-css-jvsve {max-width: 100%;}}
.brz .brz-css-geqqf {max-width: 53%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}
@media (min-width:991px) {.brz .brz-css-geqqf {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-geqqf:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-geqqf .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-geqqf {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-geqqf {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-geqqf:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-geqqf .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
@media (max-width:767px) {.brz .brz-css-geqqf {max-width: 40%;height: auto;border: 0px solid rgba(102,115,141,0);border-radius: 0px;}}
@media (max-width:767px) {.brz .brz-css-geqqf {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-geqqf:after {transition-duration: .5s;transition-property: border,box-shadow,filter;}
.brz .brz-css-geqqf .brz-picture {transition-duration: .5s;transition-property: border,box-shadow,filter;}}
.brz .brz-css-snvra {padding-top: 21.4631%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-snvra {padding-top: 21.4669%;}}
@media (max-width:767px) {.brz .brz-css-snvra {padding-top: 21.4667%;}}
.brz .brz-css-kwjib {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}
@media (min-width:991px) {.brz .brz-css-kwjib {display: flex;position: relative;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kwjib {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kwjib {display: flex;position: relative;}}
@media (max-width:767px) {.brz .brz-css-kwjib {z-index: auto;position: relative;margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-kwjib {display: flex;position: relative;}}
.brz .brz-css-quhvb {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-quhvb {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
@media (max-width:767px) {.brz .brz-css-quhvb {justify-content: center;padding: 0;margin: 0px -5px -20px -5px;}}
.brz .brz-css-upkig {padding: 0px 5px 20px 5px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-upkig {padding: 0px 5px 20px 5px;}}
@media (max-width:767px) {.brz .brz-css-upkig {padding: 0px 5px 20px 5px;}}
.brz .brz-css-aeuib {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-aeuib {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-aeuib {padding: 0;}}
.brz .brz-css-zjhkm {margin: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zjhkm {margin: 0;}}
@media (max-width:767px) {.brz .brz-css-zjhkm {margin: 0;}}
.brz .brz-css-qhvbu {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qhvbu {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-qhvbu {padding: 0;}}
.brz .brz-css-iaybf {flex: 1 1 18%;max-width: 18%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iaybf {flex: 1 1 24.6%;max-width: 24.6%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-iaybf {flex: 1 1 48.4%;max-width: 48.4%;justify-content: center;}}
.brz .brz-css-qcbpq {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qcbpq {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-qcbpq {padding: 0;}}
.brz .brz-css-xmmsq {justify-content: flex-start;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xmmsq {justify-content: flex-start;}}
@media (max-width:767px) {.brz .brz-css-xmmsq {justify-content: flex-start;}}
.brz .brz-css-tosjy {flex: 1 1 82%;max-width: 82%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-tosjy {flex: 1 1 74.4%;max-width: 74.4%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-tosjy {flex: 1 1 51.6%;max-width: 51.6%;justify-content: center;}}
.brz .brz-css-wqdcb {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wqdcb {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-wqdcb {padding: 0;}}
.brz .brz-css-crpot {justify-content: flex-end;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-crpot {justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-crpot {justify-content: flex-end;}}
@media (min-width:991px) {.brz .brz-css-dehwu .brz-mm-menu__icon {display: flex;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-dehwu .brz-menu {display: none;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dehwu .brz-mm-menu__icon {display: none;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-dehwu .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-dehwu .brz-mm-menu__icon {display: flex;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-dehwu .brz-menu {display: none;}}
.brz .brz-css-yxuil {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -22.5px 0px -22.5px;}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-yxuil .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-yxuil.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-yxuil .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-yxuil .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-yxuil .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}
@media (min-width:991px) {.brz .brz-css-yxuil {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 22.5px;margin-left: 22.5px;}
.brz .brz-css-yxuil .brz-mm-menu__item {font-size: 16px;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-yxuil .brz-mm-navbar {font-size: 16px;line-height: 1.5;letter-spacing: 0px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
@media (min-width:991px) {.brz .brz-css-yxuil:hover {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil .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-yxuil {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-yxuil .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-yxuil.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-yxuil .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-yxuil .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-yxuil .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .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-yxuil {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-yxuil .brz-mm-menu__item {font-size: 13px;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-yxuil .brz-mm-navbar {font-size: 13px;line-height: 1.6;letter-spacing: 1px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-yxuil {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-yxuil .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-yxuil.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-yxuil .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-yxuil .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-yxuil .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-yxuil .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-yxuil .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:767px) {.brz .brz-css-yxuil {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-yxuil .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-yxuil .brz-mm-menu__item {font-size: 13px;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-yxuil .brz-mm-navbar {font-size: 13px;line-height: 1.6;letter-spacing: 1px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-yxuil .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
.brz .brz-css-cglel {padding: 15px 0px 15px 0px;}
.brz .brz-css-cglel > .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-cglel > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cglel {padding: 15px;}
.brz .brz-css-cglel > .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-cglel > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}}
@media (max-width:767px) {.brz .brz-css-cglel {padding: 15px;}
.brz .brz-css-cglel > .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-cglel > .brz-bg > .brz-bg-color {background-color: rgba(255,255,255,1);}}
.brz .brz-css-pwwpz {padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pwwpz {padding: 0;}}
@media (max-width:767px) {.brz .brz-css-pwwpz {padding: 0;}}
.brz .brz-css-mjbjo {flex: 1 1 33.9%;max-width: 33.9%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mjbjo {flex: 1 1 24.5%;max-width: 24.5%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-mjbjo {flex: 1 1 48.4%;max-width: 48.4%;justify-content: center;}}
.brz .brz-css-obshx {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-obshx {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-obshx {padding: 0;}}
.brz .brz-css-wvfmr {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-wvfmr {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-wvfmr {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-whedf {flex: 1 1 66.1%;max-width: 66.1%;justify-content: center;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-whedf {flex: 1 1 73.5%;max-width: 73.5%;justify-content: center;}}
@media (max-width:767px) {.brz .brz-css-whedf {flex: 1 1 51.6%;max-width: 51.6%;justify-content: center;}}
.brz .brz-css-anrok {padding: 0px 15px 0px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-anrok {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-anrok {padding: 0;}}
.brz .brz-css-mrviy {justify-content: flex-end;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mrviy {justify-content: flex-end;}}
@media (max-width:767px) {.brz .brz-css-mrviy {justify-content: flex-end;}}
@media (min-width:991px) {.brz .brz-css-kwueh .brz-mm-menu__icon {display: none;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-kwueh .brz-menu {display: flex;}}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kwueh .brz-mm-menu__icon {display: none;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-kwueh .brz-menu {display: flex;}}
@media (max-width:767px) {.brz .brz-css-kwueh .brz-mm-menu__icon {display: flex;font-size: 25px;color: rgba(12,33,23,1);}
.brz .brz-css-kwueh .brz-menu {display: none;}}
.brz .brz-css-iwvmj {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -22.5px 0px -22.5px;}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-iwvmj .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj.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-iwvmj .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-iwvmj .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-iwvmj .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}
@media (min-width:991px) {.brz .brz-css-iwvmj {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 22.5px;margin-left: 22.5px;}
.brz .brz-css-iwvmj .brz-mm-menu__item {font-size: 16px;line-height: 1.5;letter-spacing: 0px;}
.brz .brz-css-iwvmj .brz-mm-navbar {font-size: 16px;line-height: 1.5;letter-spacing: 0px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
@media (min-width:991px) {.brz .brz-css-iwvmj:hover {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj .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-iwvmj {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-iwvmj .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj.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-iwvmj .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-iwvmj .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-iwvmj .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .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-iwvmj {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-iwvmj .brz-mm-menu__item {font-size: 13px;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-iwvmj .brz-mm-navbar {font-size: 13px;line-height: 1.6;letter-spacing: 1px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-menu__sub-menu {font-size: 15px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-iwvmj {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul:not(.brz-mm-listview) {margin: 0px -10px 0px -10px;}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--opened {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--current {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-mm-menu__item {border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-mm-menu__item:hover > .brz-mm-listitem__text {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz .brz-css-iwvmj .brz-mm-panels > .brz-mm-panel {background-color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj.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-iwvmj .brz-mm-listitem {border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-menu__sub-menu {color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__sub-menu .brz-a:hover {color: rgba(51,212,230,1);}
.brz .brz-css-iwvmj .brz-menu__item-dropdown .brz-menu__item {background-color: rgba(255,255,255,1);}
.brz .brz-css-iwvmj .brz-menu__item-dropdown .brz-menu__item:hover {background-color: rgba(255,255,255,1);}
.brz .brz-css-iwvmj .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after {border-color: rgba(12,33,23,1);}
.brz .brz-css-iwvmj .brz-menu__dropdown > .brz-menu__item {border-bottom: 1px solid rgba(0,0,0,.08);}}
@media (max-width:767px) {.brz .brz-css-iwvmj {font-size: 15px;font-weight: 700;line-height: 1.6;letter-spacing: 0px;}
.brz .brz-css-iwvmj .brz-menu__ul > .brz-menu__item {padding-top: 0px;padding-bottom: 0px;margin-right: 10px;margin-left: 10px;}
.brz .brz-css-iwvmj .brz-mm-menu__item {font-size: 13px;line-height: 1.6;letter-spacing: 1px;}
.brz .brz-css-iwvmj .brz-mm-navbar {font-size: 13px;line-height: 1.6;letter-spacing: 1px;border-color: rgba(255,255,255,.08);}
.brz .brz-css-iwvmj .brz-menu__sub-menu {font-size: 16px;font-weight: 700;line-height: 1.5;letter-spacing: 0px;}}
.brz .brz-css-jksub {padding: 150px;}
.brz .brz-css-jksub > .brz-bg > .brz-bg-image {background-image: url("assets/img/729595c55737c39647de497f69fc53f8.jpg");background-position: 50% 50%;}
.brz .brz-css-jksub > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.85);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jksub {padding: 50px 15px 50px 15px;}
.brz .brz-css-jksub > .brz-bg > .brz-bg-image {background-image: url("assets/img/729595c55737c39647de497f69fc53f8.jpg");background-position: 50% 50%;}
.brz .brz-css-jksub > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.85);}}
@media (max-width:767px) {.brz .brz-css-jksub {padding: 25px 15px 25px 15px;}
.brz .brz-css-jksub > .brz-bg > .brz-bg-image {background-image: url("assets/img/729595c55737c39647de497f69fc53f8.jpg");background-position: 50% 50%;}
.brz .brz-css-jksub > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.85);}}
.brz .brz-css-xxeck {margin: 10px 0px 0px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xxeck {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-xxeck {margin: 10px 0px 10px 0px;}}
.brz .brz-css-sapmg {animation-name: fadeInDown;animation-duration: 900ms;animation-delay: 0ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sapmg {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-sapmg {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-uvxvn {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-uvxvn {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-uvxvn {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-hbnan {margin: 0px 0px 10px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hbnan {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-hbnan {margin: 10px 0px 10px 0px;}}
.brz .brz-css-bsxqc {animation-name: fadeInUp;animation-duration: 900ms;animation-delay: 0ms;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bsxqc {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
@media (max-width:767px) {.brz .brz-css-bsxqc {animation-name: none;animation-duration: 1000ms;animation-delay: 1000ms;}}
.brz .brz-css-tkubj {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-tkubj {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-tkubj {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-lrosi {padding: 110px 0px 110px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lrosi {padding: 50px 15px 50px 15px;}}
@media (max-width:767px) {.brz .brz-css-lrosi {padding: 25px 15px 25px 15px;}}
.brz .brz-css-quhhg {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-quhhg > .brz-bg {margin: 15px;}
.brz .brz-css-quhhg > .brz-bg > .brz-bg-image {background-image: url("assets/img/bc8f4910e54b0cf5a99953897881c1af.jpeg");background-position: 50% 50%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-quhhg {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-quhhg > .brz-bg {margin: 0;}
.brz .brz-css-quhhg > .brz-bg > .brz-bg-image {background-image: url("assets/img/bc8f4910e54b0cf5a99953897881c1af.jpeg");background-position: 50% 50%;}}
@media (max-width:767px) {.brz .brz-css-quhhg {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-quhhg > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-quhhg > .brz-bg > .brz-bg-image {background-image: url("assets/img/bc8f4910e54b0cf5a99953897881c1af.jpeg");background-position: 50% 50%;}}
.brz .brz-css-jhekj {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-jhekj {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-jhekj {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-eeilm {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-eeilm {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-eeilm {height: 400px;}}
.brz .brz-css-ojcki {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-ojcki > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ojcki {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-ojcki > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-ojcki {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-ojcki > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-djkfq {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-djkfq {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-djkfq {padding: 0px 10px 0px 10px;}}
.brz .brz-css-nhexd {margin: 30px 0px 30px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nhexd {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-nhexd {margin: 10px 0px 10px 0px;}}
.brz .brz-css-mmbwo {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mmbwo {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-mmbwo {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
.brz .brz-css-jcopx {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-jcopx {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-jcopx {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-isnlt {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-isnlt > .brz-bg {margin: 15px;}
.brz .brz-css-isnlt > .brz-bg > .brz-bg-image {background-image: url("assets/img/8c05d45105527ff44756f34b1bcab5da.jpeg");background-position: 50% 50%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-isnlt {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-isnlt > .brz-bg {margin: 0;}
.brz .brz-css-isnlt > .brz-bg > .brz-bg-image {background-image: url("assets/img/8c05d45105527ff44756f34b1bcab5da.jpeg");background-position: 50% 50%;}}
@media (max-width:767px) {.brz .brz-css-isnlt {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-isnlt > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-isnlt > .brz-bg > .brz-bg-image {background-image: url("assets/img/8c05d45105527ff44756f34b1bcab5da.jpeg");background-position: 50% 50%;}}
.brz .brz-css-pmkdn {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pmkdn {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-pmkdn {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-xzgke {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xzgke {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-xzgke {height: 400px;}}
.brz .brz-css-pwbcs {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-pwbcs > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pwbcs {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-pwbcs > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-pwbcs {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-pwbcs > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-osxyq {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-osxyq {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-osxyq {padding: 0px 10px 0px 10px;}}
.brz .brz-css-yvzac {margin: 30px 0px 30px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yvzac {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-yvzac {margin: 10px 0px 10px 0px;}}
.brz .brz-css-csvbi {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-csvbi {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-csvbi {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
.brz .brz-css-lpogk {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-lpogk {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-lpogk {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-rudyr {flex: 1 1 33.4%;max-width: 33.4%;justify-content: center;}
.brz .brz-css-rudyr > .brz-bg {margin: 15px;}
.brz .brz-css-rudyr > .brz-bg > .brz-bg-image {background-image: url("assets/img/8fec93e6a2d85f6211582c49733173a8.jpeg");background-position: 50% 50%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-rudyr {flex: 1 1 33.4%;max-width: 33.4%;justify-content: center;}
.brz .brz-css-rudyr > .brz-bg {margin: 0;}
.brz .brz-css-rudyr > .brz-bg > .brz-bg-image {background-image: url("assets/img/8fec93e6a2d85f6211582c49733173a8.jpeg");background-position: 50% 50%;}}
@media (max-width:767px) {.brz .brz-css-rudyr {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-rudyr > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-rudyr > .brz-bg > .brz-bg-image {background-image: url("assets/img/8fec93e6a2d85f6211582c49733173a8.jpeg");background-position: 50% 50%;}}
.brz .brz-css-iwxmy {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-iwxmy {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-iwxmy {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-fuodp {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fuodp {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-fuodp {height: 400px;}}
.brz .brz-css-kmllx {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-kmllx > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kmllx {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-kmllx > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-kmllx {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-kmllx > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-qdwue {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qdwue {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-qdwue {padding: 0px 10px 0px 10px;}}
.brz .brz-css-lnwtf {margin: 30px 0px 30px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lnwtf {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-lnwtf {margin: 10px 0px 10px 0px;}}
.brz .brz-css-qmefr {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qmefr {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-qmefr {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
.brz .brz-css-lewqx {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-lewqx {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-lewqx {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-fmdsz {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-fmdsz > .brz-bg {margin: 15px;}
.brz .brz-css-fmdsz > .brz-bg > .brz-bg-image {background-image: url("assets/img/c6a539ce4e80781558e8f55b6f625500.jpeg");background-position: 50% 50%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-fmdsz {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-fmdsz > .brz-bg {margin: 0;}
.brz .brz-css-fmdsz > .brz-bg > .brz-bg-image {background-image: url("assets/img/c6a539ce4e80781558e8f55b6f625500.jpeg");background-position: 50% 50%;}}
@media (max-width:767px) {.brz .brz-css-fmdsz {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-fmdsz > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-fmdsz > .brz-bg > .brz-bg-image {background-image: url("assets/img/c6a539ce4e80781558e8f55b6f625500.jpeg");background-position: 50% 50%;}}
.brz .brz-css-mpptn {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mpptn {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-mpptn {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-gemun {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gemun {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-gemun {height: 400px;}}
.brz .brz-css-nzrwq {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-nzrwq > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-nzrwq {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-nzrwq > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-nzrwq {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-nzrwq > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-husmh {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-husmh {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-husmh {padding: 0px 10px 0px 10px;}}
.brz .brz-css-sdtkh {margin: 30px 0px 30px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-sdtkh {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-sdtkh {margin: 10px 0px 10px 0px;}}
.brz .brz-css-pwsch {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-pwsch {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-pwsch {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
.brz .brz-css-trkti {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-trkti {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-trkti {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-moylo {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-moylo > .brz-bg {margin: 15px;}
.brz .brz-css-moylo > .brz-bg > .brz-bg-image {background-image: url("assets/img/faa2ff2bf892174a8cece98d5fcd8998.jpeg");background-position: 50% 50%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-moylo {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-moylo > .brz-bg {margin: 0;}
.brz .brz-css-moylo > .brz-bg > .brz-bg-image {background-image: url("assets/img/faa2ff2bf892174a8cece98d5fcd8998.jpeg");background-position: 50% 50%;}}
@media (max-width:767px) {.brz .brz-css-moylo {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-moylo > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-moylo > .brz-bg > .brz-bg-image {background-image: url("assets/img/faa2ff2bf892174a8cece98d5fcd8998.jpeg");background-position: 50% 50%;}}
.brz .brz-css-yljgw {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yljgw {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-yljgw {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-xsyfx {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xsyfx {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-xsyfx {height: 400px;}}
.brz .brz-css-uxnxl {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-uxnxl > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uxnxl {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-uxnxl > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-uxnxl {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-uxnxl > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-dvsiu {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-dvsiu {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-dvsiu {padding: 0px 10px 0px 10px;}}
.brz .brz-css-qwkpw {margin: 30px 0px 30px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qwkpw {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-qwkpw {margin: 10px 0px 10px 0px;}}
.brz .brz-css-xjelw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-xjelw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-xjelw {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
.brz .brz-css-xoyjq {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-xoyjq {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-xoyjq {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-ecgwk {flex: 1 1 33.4%;max-width: 33.4%;justify-content: center;}
.brz .brz-css-ecgwk > .brz-bg {margin: 15px;}
.brz .brz-css-ecgwk > .brz-bg > .brz-bg-image {background-image: url("assets/img/295aacb2bfe9f15fbc6a5cdf66f2196c.jpeg");background-position: 48% 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ecgwk {flex: 1 1 33.4%;max-width: 33.4%;justify-content: center;}
.brz .brz-css-ecgwk > .brz-bg {margin: 0;}
.brz .brz-css-ecgwk > .brz-bg > .brz-bg-image {background-image: url("assets/img/295aacb2bfe9f15fbc6a5cdf66f2196c.jpeg");background-position: 48% 100%;}}
@media (max-width:767px) {.brz .brz-css-ecgwk {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-ecgwk > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-ecgwk > .brz-bg > .brz-bg-image {background-image: url("assets/img/295aacb2bfe9f15fbc6a5cdf66f2196c.jpeg");background-position: 48% 100%;}}
.brz .brz-css-hftws {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-hftws {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-hftws {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-acirh {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-acirh {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-acirh {height: 400px;}}
.brz .brz-css-knrul {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-knrul > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-knrul {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-knrul > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-knrul {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-knrul > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-ommbo {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-ommbo {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-ommbo {padding: 0px 10px 0px 10px;}}
.brz .brz-css-agnna {margin: 30px 0px 30px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-agnna {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-agnna {margin: 10px 0px 10px 0px;}}
.brz .brz-css-cveaj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-cveaj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-cveaj {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
.brz .brz-css-ppref {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-ppref {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-ppref {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-gxcut {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-gxcut > .brz-bg {margin: 15px;}
.brz .brz-css-gxcut > .brz-bg > .brz-bg-image {background-image: url("assets/img/e21db52e9d3a099b2eafbec23b378bd1.jpeg");background-position: 50% 50%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gxcut {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-gxcut > .brz-bg {margin: 0;}
.brz .brz-css-gxcut > .brz-bg > .brz-bg-image {background-image: url("assets/img/e21db52e9d3a099b2eafbec23b378bd1.jpeg");background-position: 50% 50%;}}
@media (max-width:767px) {.brz .brz-css-gxcut {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-gxcut > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-gxcut > .brz-bg > .brz-bg-image {background-image: url("assets/img/e21db52e9d3a099b2eafbec23b378bd1.jpeg");background-position: 50% 50%;}}
.brz .brz-css-kizql {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kizql {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-kizql {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-mxnkx {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-mxnkx {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-mxnkx {height: 400px;}}
.brz .brz-css-qnlwu {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-qnlwu > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qnlwu {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-qnlwu > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-qnlwu {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-qnlwu > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-kpmty {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-kpmty {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-kpmty {padding: 0px 10px 0px 10px;}}
.brz .brz-css-zabba {margin: 30px 0px 30px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-zabba {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-zabba {margin: 10px 0px 10px 0px;}}
.brz .brz-css-wkiuk {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wkiuk {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-wkiuk {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
.brz .brz-css-ztinc {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-ztinc {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-ztinc {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-gaiqq {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-gaiqq > .brz-bg {margin: 15px;}
.brz .brz-css-gaiqq > .brz-bg > .brz-bg-image {background-image: url("assets/img/cdd2c3df096e24cabaaef0ba57d58d18.jpeg");background-position: 51% 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-gaiqq {flex: 1 1 33.3%;max-width: 33.3%;justify-content: center;}
.brz .brz-css-gaiqq > .brz-bg {margin: 0;}
.brz .brz-css-gaiqq > .brz-bg > .brz-bg-image {background-image: url("assets/img/cdd2c3df096e24cabaaef0ba57d58d18.jpeg");background-position: 51% 100%;}}
@media (max-width:767px) {.brz .brz-css-gaiqq {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-gaiqq > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-gaiqq > .brz-bg > .brz-bg-image {background-image: url("assets/img/cdd2c3df096e24cabaaef0ba57d58d18.jpeg");background-position: 51% 100%;}}
.brz .brz-css-yumog {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yumog {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-yumog {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-qdctx {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-qdctx {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-qdctx {height: 400px;}}
.brz .brz-css-yqmyt {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-yqmyt > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-yqmyt {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-yqmyt > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-yqmyt {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-yqmyt > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-bfuxr {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-bfuxr {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-bfuxr {padding: 0px 10px 0px 10px;}}
.brz .brz-css-uktnc {margin: 30px 0px 30px 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-uktnc {margin: 10px 0px 10px 0px;}}
@media (max-width:767px) {.brz .brz-css-uktnc {margin: 10px 0px 10px 0px;}}
.brz .brz-css-utdrk {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-family: Comfortaa,display;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-utdrk {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
@media (max-width:767px) {.brz .brz-css-utdrk {margin-top: 0px !important;margin-bottom: 0px !important;text-align: center;font-size: 16px;line-height: 1.5;font-weight: 700;letter-spacing: 0px;}}
.brz .brz-css-nrxjf {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-nrxjf {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-nrxjf {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-lwhjk {flex: 1 1 33.4%;max-width: 33.4%;justify-content: center;}
.brz .brz-css-lwhjk > .brz-bg {margin: 15px;}
.brz .brz-css-lwhjk > .brz-bg > .brz-bg-image {background-image: url("assets/img/e7ba7977e96f41c21a9912978437f6d9.jpeg");background-position: 51% 100%;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-lwhjk {flex: 1 1 33.4%;max-width: 33.4%;justify-content: center;}
.brz .brz-css-lwhjk > .brz-bg {margin: 0;}
.brz .brz-css-lwhjk > .brz-bg > .brz-bg-image {background-image: url("assets/img/e7ba7977e96f41c21a9912978437f6d9.jpeg");background-position: 51% 100%;}}
@media (max-width:767px) {.brz .brz-css-lwhjk {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-lwhjk > .brz-bg {margin: 10px 0px 10px 0px;}
.brz .brz-css-lwhjk > .brz-bg > .brz-bg-image {background-image: url("assets/img/e7ba7977e96f41c21a9912978437f6d9.jpeg");background-position: 51% 100%;}}
.brz .brz-css-juxsr {margin: 15px;padding: 0;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-juxsr {margin: 0;padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-juxsr {margin: 10px 0px 10px 0px;padding: 0px 10px 0px 10px;}}
.brz .brz-css-irwup {height: 400px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-irwup {height: 400px;}}
@media (max-width:767px) {.brz .brz-css-irwup {height: 400px;}}
.brz .brz-css-skwho {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-skwho > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-skwho {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-skwho > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
@media (max-width:767px) {.brz .brz-css-skwho {flex: 1 1 100%;max-width: 100%;justify-content: center;}
.brz .brz-css-skwho > .brz-bg > .brz-bg-color {background-color: rgba(51,212,230,.9);}}
.brz .brz-css-wvrro {padding: 5px 15px 5px 15px;}
@media (max-width:991px) and (min-width:768px) {.brz .brz-css-wvrro {padding: 5px 15px 5px 15px;}}
@media (max-width:767px) {.brz .brz-css-wvrro {padding: 0px 10px 0px 10px;}}