-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1317 lines (1247 loc) · 238 KB
/
index.html
File metadata and controls
1317 lines (1247 loc) · 238 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>Arena Animation Chowringhee</title>
<meta name="robots" content="max-image-preview:large">
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<link rel="alternate" type="application/rss+xml" title="Arena Animation Chowringhee » Feed" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?feed=rss2">
<link rel="alternate" type="application/rss+xml" title="Arena Animation Chowringhee » Comments Feed" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?feed=comments-rss2">
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/arnab0610.github.io\/Arena_Animation_Chowringhee\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.8.1"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"🏳️⚧️","🏳️⚧️")?!1:!n(e,"🇺🇳","🇺🇳")&&!n(e,"🏴","🏴");case"emoji":return!n(e,"🐦🔥","🐦🔥")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>
<link rel="stylesheet" id="astra-theme-css-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/themes/astra/assets/css/minified/main.min.css?ver=4.11.5" media="all">
<style id="astra-theme-css-inline-css">:root{--ast-post-nav-space:0;--ast-container-default-xlg-padding:2.5em;--ast-container-default-lg-padding:2.5em;--ast-container-default-slg-padding:2em;--ast-container-default-md-padding:2.5em;--ast-container-default-sm-padding:2.5em;--ast-container-default-xs-padding:2.4em;--ast-container-default-xxs-padding:1.8em;--ast-code-block-background:#ECEFF3;--ast-comment-inputs-background:#F9FAFB;--ast-normal-container-width:1200px;--ast-narrow-container-width:750px;--ast-blog-title-font-weight:600;--ast-blog-meta-weight:600;--ast-global-color-primary:var(--ast-global-color-4);--ast-global-color-secondary:var(--ast-global-color-5);--ast-global-color-alternate-background:var(--ast-global-color-6);--ast-global-color-subtle-background:var(--ast-global-color-7);--ast-bg-style-guide:#F8FAFC;--ast-shadow-style-guide:0px 0px 4px 0 #00000057;--ast-global-dark-bg-style:#fff;--ast-global-dark-lfs:#fbfbfb;--ast-widget-bg-color:#fafafa;--ast-wc-container-head-bg-color:#fbfbfb;--ast-title-layout-bg:#eeeeee;--ast-search-border-color:#e7e7e7;--ast-lifter-hover-bg:#e6e6e6;--ast-gallery-block-color:#000;--srfm-color-input-label:var(--ast-global-color-2);}html{font-size:100%;}a{color:var(--ast-global-color-0);}a:hover,a:focus{color:var(--ast-global-color-1);}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:16px;font-size:1rem;line-height:var(--ast-body-line-height,1.65);}blockquote{color:var(--ast-global-color-3);}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6,.site-title,.site-title a{font-weight:600;}.ast-site-identity .site-title a{color:var(--ast-global-color-2);}.site-title{font-size:26px;font-size:1.625rem;display:block;}.site-header .site-description{font-size:15px;font-size:0.9375rem;display:none;}.entry-title{font-size:20px;font-size:1.25rem;}.ast-blog-single-element.ast-taxonomy-container a{font-size:14px;font-size:0.875rem;}.ast-blog-meta-container{font-size:13px;font-size:0.8125rem;}.archive .ast-article-post .ast-article-inner,.blog .ast-article-post .ast-article-inner,.archive .ast-article-post .ast-article-inner:hover,.blog .ast-article-post .ast-article-inner:hover{border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;overflow:hidden;}h1,.entry-content h1{font-size:36px;font-size:2.25rem;font-weight:600;line-height:1.4em;}h2,.entry-content h2{font-size:30px;font-size:1.875rem;font-weight:600;line-height:1.3em;}h3,.entry-content h3{font-size:24px;font-size:1.5rem;font-weight:600;line-height:1.3em;}h4,.entry-content h4{font-size:20px;font-size:1.25rem;line-height:1.2em;font-weight:600;}h5,.entry-content h5{font-size:18px;font-size:1.125rem;line-height:1.2em;font-weight:600;}h6,.entry-content h6{font-size:16px;font-size:1rem;line-height:1.25em;font-weight:600;}::selection{background-color:var(--ast-global-color-0);color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-3);}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}input:focus,input[type="text"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="password"]:focus,input[type="reset"]:focus,input[type="search"]:focus,textarea:focus{border-color:var(--ast-global-color-0);}input[type="radio"]:checked,input[type=reset],input[type="checkbox"]:checked,input[type="checkbox"]:hover:checked,input[type="checkbox"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:var(--ast-global-color-0);}.entry-meta,.entry-meta *{line-height:1.45;color:var(--ast-global-color-0);font-weight:600;}.entry-meta a:not(.ast-button):hover,.entry-meta a:not(.ast-button):hover *,.entry-meta a:not(.ast-button):focus,.entry-meta a:not(.ast-button):focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:var(--ast-global-color-1);}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:var(--ast-global-color-0);}.secondary .calendar_wrap #today,.ast-progress-val span{background:var(--ast-global-color-0);}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:var(--ast-global-color-0);border-color:var(--ast-global-color-0);}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:var(--ast-global-color-3);}.ast-search-menu-icon .search-form button.search-submit{padding:0 4px;}.ast-search-menu-icon form.search-form{padding-right:0;}.ast-search-menu-icon.slide-search input.search-field{width:0;}.ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-form,.ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-field:focus{transition:all 0.2s;}.search-form input.search-field:focus{outline:none;}.ast-search-menu-icon .search-form button.search-submit:focus,.ast-theme-transparent-header .ast-header-search .ast-dropdown-active .ast-icon,.ast-theme-transparent-header .ast-inline-search .search-field:focus .ast-icon{color:var(--ast-global-color-1);}.ast-header-search .slide-search .search-form{border:2px solid var(--ast-global-color-0);}.ast-header-search .slide-search .search-field{background-color:(--ast-global-dark-bg-style);}.ast-archive-title{color:var(--ast-global-color-2);}.widget-title{font-size:22px;font-size:1.375rem;color:var(--ast-global-color-2);}.ast-single-post .entry-content a,.ast-comment-content a:not(.ast-comment-edit-reply-wrap a){text-decoration:underline;}.ast-single-post .elementor-widget-button .elementor-button,.ast-single-post .entry-content .uagb-tab a,.ast-single-post .entry-content .uagb-ifb-cta a,.ast-single-post .entry-content .uabb-module-content a,.ast-single-post .entry-content .uagb-post-grid a,.ast-single-post .entry-content .uagb-timeline a,.ast-single-post .entry-content .uagb-toc__wrap a,.ast-single-post .entry-content .uagb-taxomony-box a,.ast-single-post .entry-content .woocommerce a,.entry-content .wp-block-latest-posts > li > a,.ast-single-post .entry-content .wp-block-file__button,a.ast-post-filter-single,.ast-single-post .ast-comment-content .comment-reply-link,.ast-single-post .ast-comment-content .comment-edit-link{text-decoration:none;}.ast-search-menu-icon.slide-search a:focus-visible:focus-visible,.astra-search-icon:focus-visible,#close:focus-visible,a:focus-visible,.ast-menu-toggle:focus-visible,.site .skip-link:focus-visible,.wp-block-loginout input:focus-visible,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.ast-header-navigation-arrow:focus-visible,.woocommerce .wc-proceed-to-checkout > .checkout-button:focus-visible,.woocommerce .woocommerce-MyAccount-navigation ul li a:focus-visible,.ast-orders-table__row .ast-orders-table__cell:focus-visible,.woocommerce .woocommerce-order-details .order-again > .button:focus-visible,.woocommerce .woocommerce-message a.button.wc-forward:focus-visible,.woocommerce #minus_qty:focus-visible,.woocommerce #plus_qty:focus-visible,a#ast-apply-coupon:focus-visible,.woocommerce .woocommerce-info a:focus-visible,.woocommerce .astra-shop-summary-wrap a:focus-visible,.woocommerce a.wc-forward:focus-visible,#ast-apply-coupon:focus-visible,.woocommerce-js .woocommerce-mini-cart-item a.remove:focus-visible,#close:focus-visible,.button.search-submit:focus-visible,#search_submit:focus,.normal-search:focus-visible,.ast-header-account-wrap:focus-visible,.woocommerce .ast-on-card-button.ast-quick-view-trigger:focus,.astra-cart-drawer-close:focus,.ast-single-variation:focus,.ast-woocommerce-product-gallery__image:focus,.ast-button:focus{outline-style:dotted;outline-color:inherit;outline-width:thin;}input:focus,input[type="text"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="password"]:focus,input[type="reset"]:focus,input[type="search"]:focus,input[type="number"]:focus,textarea:focus,.wp-block-search__input:focus,[data-section="section-header-mobile-trigger"] .ast-button-wrap .ast-mobile-menu-trigger-minimal:focus,.ast-mobile-popup-drawer.active .menu-toggle-close:focus,.woocommerce-ordering select.orderby:focus,#ast-scroll-top:focus,#coupon_code:focus,.woocommerce-page #comment:focus,.woocommerce #reviews #respond input#submit:focus,.woocommerce a.add_to_cart_button:focus,.woocommerce .button.single_add_to_cart_button:focus,.woocommerce .woocommerce-cart-form button:focus,.woocommerce .woocommerce-cart-form__cart-item .quantity .qty:focus,.woocommerce .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper > .input-text:focus,.woocommerce #order_comments:focus,.woocommerce #place_order:focus,.woocommerce .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper > .input-text:focus,.woocommerce .woocommerce-MyAccount-content form button:focus,.woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row .woocommerce-Input.input-text:focus,.woocommerce .ast-woocommerce-container .woocommerce-pagination ul.page-numbers li a:focus,body #content .woocommerce form .form-row .select2-container--default .select2-selection--single:focus,#ast-coupon-code:focus,.woocommerce.woocommerce-js .quantity input[type=number]:focus,.woocommerce-js .woocommerce-mini-cart-item .quantity input[type=number]:focus,.woocommerce p#ast-coupon-trigger:focus{border-style:dotted;border-color:inherit;border-width:thin;}input{outline:none;}.ast-logo-title-inline .site-logo-img{padding-right:1em;}body .ast-oembed-container *{position:absolute;top:0;width:100%;height:100%;left:0;}body .wp-block-embed-pocket-casts .ast-oembed-container *{position:unset;}.ast-single-post-featured-section + article {margin-top: 2em;}.site-content .ast-single-post-featured-section img {width: 100%;overflow: hidden;object-fit: cover;}.ast-separate-container .site-content .ast-single-post-featured-section + article {margin-top: -80px;z-index: 9;position: relative;border-radius: 4px;}@media (min-width: 922px) {.ast-no-sidebar .site-content .ast-article-image-container--wide {margin-left: -120px;margin-right: -120px;max-width: unset;width: unset;}.ast-left-sidebar .site-content .ast-article-image-container--wide,.ast-right-sidebar .site-content .ast-article-image-container--wide {margin-left: -10px;margin-right: -10px;}.site-content .ast-article-image-container--full {margin-left: calc( -50vw + 50%);margin-right: calc( -50vw + 50%);max-width: 100vw;width: 100vw;}.ast-left-sidebar .site-content .ast-article-image-container--full,.ast-right-sidebar .site-content .ast-article-image-container--full {margin-left: -10px;margin-right: -10px;max-width: inherit;width: auto;}}.site > .ast-single-related-posts-container {margin-top: 0;}@media (min-width: 922px) {.ast-desktop .ast-container--narrow {max-width: var(--ast-narrow-container-width);margin: 0 auto;}}.ast-page-builder-template .hentry {margin: 0;}.ast-page-builder-template .site-content > .ast-container {max-width: 100%;padding: 0;}.ast-page-builder-template .site .site-content #primary {padding: 0;margin: 0;}.ast-page-builder-template .no-results {text-align: center;margin: 4em auto;}.ast-page-builder-template .ast-pagination {padding: 2em;}.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail {margin-top: 0;}.ast-page-builder-template .entry-header.ast-header-without-markup {margin-top: 0;margin-bottom: 0;}.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta {margin-bottom: 0;}.ast-page-builder-template.single .post-navigation {padding-bottom: 2em;}.ast-page-builder-template.single-post .site-content > .ast-container {max-width: 100%;}.ast-page-builder-template .entry-header {margin-top: 2em;margin-left: auto;margin-right: auto;}.ast-page-builder-template .ast-archive-description {margin: 2em auto 0;padding-left: 20px;padding-right: 20px;}.ast-page-builder-template .ast-row {margin-left: 0;margin-right: 0;}.single.ast-page-builder-template .entry-header + .entry-content,.single.ast-page-builder-template .ast-single-entry-banner + .site-content article .entry-content {margin-bottom: 2em;}@media(min-width: 921px) {.ast-page-builder-template.archive.ast-right-sidebar .ast-row article,.ast-page-builder-template.archive.ast-left-sidebar .ast-row article {padding-left: 0;padding-right: 0;}}input[type="text"],input[type="number"],input[type="email"],input[type="url"],input[type="password"],input[type="search"],input[type=reset],input[type=tel],input[type=date],select,textarea{font-size:16px;font-style:normal;font-weight:400;line-height:24px;width:100%;padding:12px 16px;border-radius:4px;box-shadow:0px 1px 2px 0px rgba(0,0,0,0.05);color:var(--ast-form-input-text,#475569);}input[type="text"],input[type="number"],input[type="email"],input[type="url"],input[type="password"],input[type="search"],input[type=reset],input[type=tel],input[type=date],select{height:40px;}input[type="date"]{border-width:1px;border-style:solid;border-color:var(--ast-border-color);background:var( --ast-global-color-secondary,--ast-global-color-5 );}input[type="text"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="password"]:focus,input[type="search"]:focus,input[type=reset]:focus,input[type="tel"]:focus,input[type="date"]:focus,select:focus,textarea:focus{border-color:#046BD2;box-shadow:none;outline:none;color:var(--ast-form-input-focus-text,#475569);}label,legend{color:#111827;font-size:14px;font-style:normal;font-weight:500;line-height:20px;}select{padding:6px 10px;}fieldset{padding:30px;border-radius:4px;}button,.ast-button,.button,input[type="button"],input[type="reset"],input[type="submit"]{border-radius:4px;box-shadow:0px 1px 2px 0px rgba(0,0,0,0.05);}:root{--ast-comment-inputs-background:#FFF;}::placeholder{color:var(--ast-form-field-color,#9CA3AF);}::-ms-input-placeholder{color:var(--ast-form-field-color,#9CA3AF);}@media (max-width:921.9px){#ast-desktop-header{display:none;}}@media (min-width:922px){#ast-mobile-header{display:none;}}.wp-block-buttons.aligncenter{justify-content:center;}@media (max-width:921px){.ast-theme-transparent-header #primary,.ast-theme-transparent-header #secondary{padding:0;}}@media (max-width:921px){.ast-plain-container.ast-no-sidebar #primary{padding:0;}}.ast-plain-container.ast-no-sidebar #primary{margin-top:0;margin-bottom:0;}.wp-block-button.is-style-outline .wp-block-button__link{border-color:var(--ast-global-color-0);}div.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),div.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color){color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:focus,.wp-block-buttons .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover,.wp-block-buttons .wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color):hover{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.post-page-numbers.current .page-link,.ast-pagination .page-numbers.current{color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button,.ast-outline-button,.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button{border-color:var(--ast-global-color-0);border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;font-family:inherit;font-weight:500;font-size:16px;font-size:1rem;line-height:1em;padding-top:13px;padding-right:30px;padding-bottom:13px;padding-left:30px;}.wp-block-buttons .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),.wp-block-buttons .wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color),.ast-outline-button{color:var(--ast-global-color-0);}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:focus,.wp-block-buttons .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover,.wp-block-buttons .wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color):hover,.ast-outline-button:hover,.ast-outline-button:focus,.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button:hover,.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.ast-single-post .entry-content a.ast-outline-button,.ast-single-post .entry-content .is-style-outline>.wp-block-button__link{text-decoration:none;}.wp-block-button .wp-block-button__link.wp-element-button.is-style-outline:not(.has-background),.wp-block-button.is-style-outline>.wp-block-button__link.wp-element-button:not(.has-background),.ast-outline-button{background-color:transparent;}.uagb-buttons-repeater.ast-outline-button{border-radius:9999px;}@media (max-width:921px){.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button,.ast-outline-button,.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button{padding-top:12px;padding-right:28px;padding-bottom:12px;padding-left:28px;}}@media (max-width:544px){.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button,.ast-outline-button,.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button{padding-top:10px;padding-right:24px;padding-bottom:10px;padding-left:24px;}}.entry-content[data-ast-blocks-layout] > figure{margin-bottom:1em;}h1.widget-title{font-weight:600;}h2.widget-title{font-weight:600;}h3.widget-title{font-weight:600;}#page{display:flex;flex-direction:column;min-height:100vh;}.ast-404-layout-1 h1.page-title{color:var(--ast-global-color-2);}.single .post-navigation a{line-height:1em;height:inherit;}.error-404 .page-sub-title{font-size:1.5rem;font-weight:inherit;}.search .site-content .content-area .search-form{margin-bottom:0;}#page .site-content{flex-grow:1;}.widget{margin-bottom:1.25em;}#secondary li{line-height:1.5em;}#secondary .wp-block-group h2{margin-bottom:0.7em;}#secondary h2{font-size:1.7rem;}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comment-respond{padding:3em;}.ast-separate-container .ast-article-single .ast-article-single{padding:0;}.ast-article-single .wp-block-post-template-is-layout-grid{padding-left:0;}.ast-separate-container .comments-title,.ast-narrow-container .comments-title{padding:1.5em 2em;}.ast-page-builder-template .comment-form-textarea,.ast-comment-formwrap .ast-grid-common-col{padding:0;}.ast-comment-formwrap{padding:0;display:inline-flex;column-gap:20px;width:100%;margin-left:0;margin-right:0;}.comments-area textarea#comment:focus,.comments-area textarea#comment:active,.comments-area .ast-comment-formwrap input[type="text"]:focus,.comments-area .ast-comment-formwrap input[type="text"]:active {box-shadow:none;outline:none;}.archive.ast-page-builder-template .entry-header{margin-top:2em;}.ast-page-builder-template .ast-comment-formwrap{width:100%;}.entry-title{margin-bottom:0.6em;}.ast-archive-description p{font-size:inherit;font-weight:inherit;line-height:inherit;}.ast-separate-container .ast-comment-list li.depth-1,.hentry{margin-bottom:1.5em;}.site-content section.ast-archive-description{margin-bottom:2em;}@media (min-width:921px){.ast-left-sidebar.ast-page-builder-template #secondary,.archive.ast-right-sidebar.ast-page-builder-template .site-main{padding-left:20px;padding-right:20px;}}@media (max-width:544px){.ast-comment-formwrap.ast-row{column-gap:10px;display:inline-block;}#ast-commentform .ast-grid-common-col{position:relative;width:100%;}}@media (min-width:1201px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .ast-author-box,.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:3em;}}@media (max-width:921px){.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}.elementor-widget-button .elementor-button{border-style:solid;text-decoration:none;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;}.elementor-button.elementor-size-sm,.elementor-button.elementor-size-xs,.elementor-button.elementor-size-md,.elementor-button.elementor-size-lg,.elementor-button.elementor-size-xl,.elementor-button{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}@media (max-width:921px){.elementor-widget-button .elementor-button.elementor-size-sm,.elementor-widget-button .elementor-button.elementor-size-xs,.elementor-widget-button .elementor-button.elementor-size-md,.elementor-widget-button .elementor-button.elementor-size-lg,.elementor-widget-button .elementor-button.elementor-size-xl,.elementor-widget-button .elementor-button{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.elementor-widget-button .elementor-button.elementor-size-sm,.elementor-widget-button .elementor-button.elementor-size-xs,.elementor-widget-button .elementor-button.elementor-size-md,.elementor-widget-button .elementor-button.elementor-size-lg,.elementor-widget-button .elementor-button.elementor-size-xl,.elementor-widget-button .elementor-button{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.elementor-widget-button .elementor-button{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);}.elementor-widget-button .elementor-button:hover,.elementor-widget-button .elementor-button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.wp-block-button .wp-block-button__link ,.elementor-widget-button .elementor-button,.elementor-widget-button .elementor-button:visited{color:#ffffff;}.elementor-widget-button .elementor-button{font-weight:500;font-size:16px;font-size:1rem;line-height:1em;}body .elementor-button.elementor-size-sm,body .elementor-button.elementor-size-xs,body .elementor-button.elementor-size-md,body .elementor-button.elementor-size-lg,body .elementor-button.elementor-size-xl,body .elementor-button{font-size:16px;font-size:1rem;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}.elementor-widget-heading h1.elementor-heading-title{line-height:1.4em;}.elementor-widget-heading h2.elementor-heading-title{line-height:1.3em;}.elementor-widget-heading h3.elementor-heading-title{line-height:1.3em;}.elementor-widget-heading h4.elementor-heading-title{line-height:1.2em;}.elementor-widget-heading h5.elementor-heading-title{line-height:1.2em;}.elementor-widget-heading h6.elementor-heading-title{line-height:1.25em;}.wp-block-button .wp-block-button__link,.wp-block-search .wp-block-search__button,body .wp-block-file .wp-block-file__button{border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);color:#ffffff;font-family:inherit;font-weight:500;line-height:1em;font-size:16px;font-size:1rem;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;}.ast-single-post .entry-content .wp-block-button .wp-block-button__link,.ast-single-post .entry-content .wp-block-search .wp-block-search__button,body .entry-content .wp-block-file .wp-block-file__button{text-decoration:none;}@media (max-width:921px){.wp-block-button .wp-block-button__link,.wp-block-search .wp-block-search__button,body .wp-block-file .wp-block-file__button{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.wp-block-button .wp-block-button__link,.wp-block-search .wp-block-search__button,body .wp-block-file .wp-block-file__button{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type="button"],input[type="submit"],input[type="reset"],#comments .submit,.search .search-submit,form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button,.search .search-submit,.woocommerce-js a.button,.woocommerce button.button,.woocommerce .woocommerce-message a.button,.woocommerce #respond input#submit.alt,.woocommerce input.button.alt,.woocommerce input.button,.woocommerce input.button:disabled,.woocommerce input.button:disabled[disabled],.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled]:hover,.woocommerce #respond input#submit,.woocommerce button.button.alt.disabled,.wc-block-grid__products .wc-block-grid__product .wp-block-button__link,.wc-block-grid__product-onsale,[CLASS*="wc-block"] button,.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons .button:not(.checkout):not(.ast-continue-shopping),.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons a.checkout,.woocommerce button.button.alt.disabled.wc-variation-selection-needed,[CLASS*="wc-block"] .wc-block-components-button{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#ffffff;border-color:var(--ast-global-color-0);background-color:var(--ast-global-color-0);padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px;font-family:inherit;font-weight:500;font-size:16px;font-size:1rem;line-height:1em;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type="button"]:hover,input[type="button"]:focus,input[type="submit"]:hover,input[type="submit"]:focus,form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus,.woocommerce-js a.button:hover,.woocommerce button.button:hover,.woocommerce .woocommerce-message a.button:hover,.woocommerce #respond input#submit:hover,.woocommerce #respond input#submit.alt:hover,.woocommerce input.button.alt:hover,.woocommerce input.button:hover,.woocommerce button.button.alt.disabled:hover,.wc-block-grid__products .wc-block-grid__product .wp-block-button__link:hover,[CLASS*="wc-block"] button:hover,.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons .button:not(.checkout):not(.ast-continue-shopping):hover,.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons a.checkout:hover,.woocommerce button.button.alt.disabled.wc-variation-selection-needed:hover,[CLASS*="wc-block"] .wc-block-components-button:hover,[CLASS*="wc-block"] .wc-block-components-button:focus{color:#ffffff;background-color:var(--ast-global-color-1);border-color:var(--ast-global-color-1);}form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button.has-icon{padding-top:calc(15px - 3px);padding-right:calc(30px - 3px);padding-bottom:calc(15px - 3px);padding-left:calc(30px - 3px);}@media (max-width:921px){.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type="button"],input[type="submit"],input[type="reset"],#comments .submit,.search .search-submit,form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button,.search .search-submit,.woocommerce-js a.button,.woocommerce button.button,.woocommerce .woocommerce-message a.button,.woocommerce #respond input#submit.alt,.woocommerce input.button.alt,.woocommerce input.button,.woocommerce input.button:disabled,.woocommerce input.button:disabled[disabled],.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled]:hover,.woocommerce #respond input#submit,.woocommerce button.button.alt.disabled,.wc-block-grid__products .wc-block-grid__product .wp-block-button__link,.wc-block-grid__product-onsale,[CLASS*="wc-block"] button,.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons .button:not(.checkout):not(.ast-continue-shopping),.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons a.checkout,.woocommerce button.button.alt.disabled.wc-variation-selection-needed,[CLASS*="wc-block"] .wc-block-components-button{padding-top:14px;padding-right:28px;padding-bottom:14px;padding-left:28px;}}@media (max-width:544px){.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,input[type="button"],input[type="submit"],input[type="reset"],#comments .submit,.search .search-submit,form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button,body .wp-block-file .wp-block-file__button,.search .search-submit,.woocommerce-js a.button,.woocommerce button.button,.woocommerce .woocommerce-message a.button,.woocommerce #respond input#submit.alt,.woocommerce input.button.alt,.woocommerce input.button,.woocommerce input.button:disabled,.woocommerce input.button:disabled[disabled],.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled]:hover,.woocommerce #respond input#submit,.woocommerce button.button.alt.disabled,.wc-block-grid__products .wc-block-grid__product .wp-block-button__link,.wc-block-grid__product-onsale,[CLASS*="wc-block"] button,.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons .button:not(.checkout):not(.ast-continue-shopping),.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons a.checkout,.woocommerce button.button.alt.disabled.wc-variation-selection-needed,[CLASS*="wc-block"] .wc-block-components-button{padding-top:12px;padding-right:24px;padding-bottom:12px;padding-left:24px;}}@media (max-width:921px){.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}} #ast-mobile-header .ast-site-header-cart-li a{pointer-events:none;}.ast-separate-container{background-color:#ffffff;background-image:none;}@media (max-width:921px){.site-title{display:block;}.site-header .site-description{display:none;}h1,.entry-content h1{font-size:30px;font-size:1.875rem;}h2,.entry-content h2{font-size:25px;font-size:1.5625rem;}h3,.entry-content h3{font-size:20px;font-size:1.25rem;}}@media (max-width:544px){.site-title{display:block;}.site-header .site-description{display:none;}h1,.entry-content h1{font-size:30px;font-size:1.875rem;}h2,.entry-content h2{font-size:25px;font-size:1.5625rem;}h3,.entry-content h3{font-size:20px;font-size:1.25rem;}}@media (max-width:921px){html{font-size:91.2%;}}@media (max-width:544px){html{font-size:91.2%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@media (min-width:922px){.site-content .ast-container{display:flex;}}@media (max-width:921px){.site-content .ast-container{flex-direction:column;}}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{clear:none;}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-0px;}}.entry-content li > p{margin-bottom:0;}.site .comments-area{padding-bottom:2em;margin-top:2em;}.wp-block-file {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;}.wp-block-pullquote {border: none;}.wp-block-pullquote blockquote::before {content: "\201D";font-family: "Helvetica",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}.has-text-align-right > blockquote::before {justify-content: flex-start;}.has-text-align-left > blockquote::before {justify-content: flex-end;}figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}:root {--wp--custom--ast-default-block-top-padding: 3em;--wp--custom--ast-default-block-right-padding: 3em;--wp--custom--ast-default-block-bottom-padding: 3em;--wp--custom--ast-default-block-left-padding: 3em;--wp--custom--ast-container-width: 1200px;--wp--custom--ast-content-width-size: 1200px;--wp--custom--ast-wide-width-size: calc(1200px + var(--wp--custom--ast-default-block-left-padding) + var(--wp--custom--ast-default-block-right-padding));}.ast-narrow-container {--wp--custom--ast-content-width-size: 750px;--wp--custom--ast-wide-width-size: 750px;}@media(max-width: 921px) {:root {--wp--custom--ast-default-block-top-padding: 3em;--wp--custom--ast-default-block-right-padding: 2em;--wp--custom--ast-default-block-bottom-padding: 3em;--wp--custom--ast-default-block-left-padding: 2em;}}@media(max-width: 544px) {:root {--wp--custom--ast-default-block-top-padding: 3em;--wp--custom--ast-default-block-right-padding: 1.5em;--wp--custom--ast-default-block-bottom-padding: 3em;--wp--custom--ast-default-block-left-padding: 1.5em;}}.entry-content > .wp-block-group,.entry-content > .wp-block-cover,.entry-content > .wp-block-columns {padding-top: var(--wp--custom--ast-default-block-top-padding);padding-right: var(--wp--custom--ast-default-block-right-padding);padding-bottom: var(--wp--custom--ast-default-block-bottom-padding);padding-left: var(--wp--custom--ast-default-block-left-padding);}.ast-plain-container.ast-no-sidebar .entry-content > .alignfull,.ast-page-builder-template .ast-no-sidebar .entry-content > .alignfull {margin-left: calc( -50vw + 50%);margin-right: calc( -50vw + 50%);max-width: 100vw;width: 100vw;}.ast-plain-container.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-page-builder-template.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-plain-container.ast-no-sidebar .entry-content .alignfull .alignwide,.ast-page-builder-template.ast-no-sidebar .entry-content .alignfull .alignwide,.ast-plain-container.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-plain-container.ast-no-sidebar .entry-content .alignwide .alignwide,.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide .alignwide,.ast-plain-container.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-page-builder-template.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-plain-container.ast-no-sidebar .entry-content .wp-block-column .alignwide,.ast-page-builder-template.ast-no-sidebar .entry-content .wp-block-column .alignwide {margin-left: auto;margin-right: auto;width: 100%;}[data-ast-blocks-layout] .wp-block-separator:not(.is-style-dots) {height: 0;}[data-ast-blocks-layout] .wp-block-separator {margin: 20px auto;}[data-ast-blocks-layout] .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {max-width: 100px;}[data-ast-blocks-layout] .wp-block-separator.has-background {padding: 0;}.entry-content[data-ast-blocks-layout] > * {max-width: var(--wp--custom--ast-content-width-size);margin-left: auto;margin-right: auto;}.entry-content[data-ast-blocks-layout] > .alignwide {max-width: var(--wp--custom--ast-wide-width-size);}.entry-content[data-ast-blocks-layout] .alignfull {max-width: none;}.entry-content .wp-block-columns {margin-bottom: 0;}blockquote {margin: 1.5em;border-color: rgba(0,0,0,0.05);}.wp-block-quote:not(.has-text-align-right):not(.has-text-align-center) {border-left: 5px solid rgba(0,0,0,0.05);}.has-text-align-right > blockquote,blockquote.has-text-align-right {border-right: 5px solid rgba(0,0,0,0.05);}.has-text-align-left > blockquote,blockquote.has-text-align-left {border-left: 5px solid rgba(0,0,0,0.05);}.wp-block-site-tagline,.wp-block-latest-posts .read-more {margin-top: 15px;}.wp-block-loginout p label {display: block;}.wp-block-loginout p:not(.login-remember):not(.login-submit) input {width: 100%;}.wp-block-loginout input:focus {border-color: transparent;}.wp-block-loginout input:focus {outline: thin dotted;}.entry-content .wp-block-media-text .wp-block-media-text__content {padding: 0 0 0 8%;}.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {padding: 0 8% 0 0;}.entry-content .wp-block-media-text.has-background .wp-block-media-text__content {padding: 8%;}.entry-content .wp-block-cover:not([class*="background-color"]):not(.has-text-color.has-link-color) .wp-block-cover__inner-container,.entry-content .wp-block-cover:not([class*="background-color"]) .wp-block-cover-image-text,.entry-content .wp-block-cover:not([class*="background-color"]) .wp-block-cover-text,.entry-content .wp-block-cover-image:not([class*="background-color"]) .wp-block-cover__inner-container,.entry-content .wp-block-cover-image:not([class*="background-color"]) .wp-block-cover-image-text,.entry-content .wp-block-cover-image:not([class*="background-color"]) .wp-block-cover-text {color: var(--ast-global-color-primary,var(--ast-global-color-5));}.wp-block-loginout .login-remember input {width: 1.1rem;height: 1.1rem;margin: 0 5px 4px 0;vertical-align: middle;}.wp-block-latest-posts > li > *:first-child,.wp-block-latest-posts:not(.is-grid) > li:first-child {margin-top: 0;}.entry-content > .wp-block-buttons,.entry-content > .wp-block-uagb-buttons {margin-bottom: 1.5em;}.wp-block-search__inside-wrapper .wp-block-search__input {padding: 0 10px;color: var(--ast-global-color-3);background: var(--ast-global-color-primary,var(--ast-global-color-5));border-color: var(--ast-border-color);}.wp-block-latest-posts .read-more {margin-bottom: 1.5em;}.wp-block-search__no-button .wp-block-search__inside-wrapper .wp-block-search__input {padding-top: 5px;padding-bottom: 5px;}.wp-block-latest-posts .wp-block-latest-posts__post-date,.wp-block-latest-posts .wp-block-latest-posts__post-author {font-size: 1rem;}.wp-block-latest-posts > li > *,.wp-block-latest-posts:not(.is-grid) > li {margin-top: 12px;margin-bottom: 12px;}.ast-page-builder-template .entry-content[data-ast-blocks-layout] > *,.ast-page-builder-template .entry-content[data-ast-blocks-layout] > .alignfull:not(.wp-block-group):not(.uagb-is-root-container) > * {max-width: none;}.ast-page-builder-template .entry-content[data-ast-blocks-layout] > .alignwide:not(.uagb-is-root-container) > * {max-width: var(--wp--custom--ast-wide-width-size);}.ast-page-builder-template .entry-content[data-ast-blocks-layout] > .inherit-container-width > *,.ast-page-builder-template .entry-content[data-ast-blocks-layout] > *:not(.wp-block-group):not(.uagb-is-root-container) > *,.entry-content[data-ast-blocks-layout] > .wp-block-cover .wp-block-cover__inner-container {max-width: none ;margin-left: auto;margin-right: auto;}.entry-content[data-ast-blocks-layout] .wp-block-cover:not(.alignleft):not(.alignright) {width: auto;}@media(max-width: 1200px) {.ast-separate-container .entry-content > .alignfull,.ast-separate-container .entry-content[data-ast-blocks-layout] > .alignwide,.ast-plain-container .entry-content[data-ast-blocks-layout] > .alignwide,.ast-plain-container .entry-content .alignfull {margin-left: calc(-1 * min(var(--ast-container-default-xlg-padding),20px)) ;margin-right: calc(-1 * min(var(--ast-container-default-xlg-padding),20px));}}@media(min-width: 1201px) {.ast-separate-container .entry-content > .alignfull {margin-left: calc(-1 * var(--ast-container-default-xlg-padding) );margin-right: calc(-1 * var(--ast-container-default-xlg-padding) );}.ast-separate-container .entry-content[data-ast-blocks-layout] > .alignwide,.ast-plain-container .entry-content[data-ast-blocks-layout] > .alignwide {margin-left: auto;margin-right: auto;}}@media(min-width: 921px) {.ast-separate-container .entry-content .wp-block-group.alignwide:not(.inherit-container-width) > :where(:not(.alignleft):not(.alignright)),.ast-plain-container .entry-content .wp-block-group.alignwide:not(.inherit-container-width) > :where(:not(.alignleft):not(.alignright)) {max-width: calc( var(--wp--custom--ast-content-width-size) + 80px );}.ast-plain-container.ast-right-sidebar .entry-content[data-ast-blocks-layout] .alignfull,.ast-plain-container.ast-left-sidebar .entry-content[data-ast-blocks-layout] .alignfull {margin-left: -60px;margin-right: -60px;}}@media(min-width: 544px) {.entry-content > .alignleft {margin-right: 20px;}.entry-content > .alignright {margin-left: 20px;}}@media (max-width:544px){.wp-block-columns .wp-block-column:not(:last-child){margin-bottom:20px;}.wp-block-latest-posts{margin:0;}}@media( max-width: 600px ) {.entry-content .wp-block-media-text .wp-block-media-text__content,.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {padding: 8% 0 0;}.entry-content .wp-block-media-text.has-background .wp-block-media-text__content {padding: 8%;}}.ast-page-builder-template .entry-header {padding-left: 0;}.ast-narrow-container .site-content .wp-block-uagb-image--align-full .wp-block-uagb-image__figure {max-width: 100%;margin-left: auto;margin-right: auto;}.entry-content ul,.entry-content ol {padding: revert;margin: revert;padding-left: 20px;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#046bd2;--ast-global-color-1:#045cb4;--ast-global-color-2:#1e293b;--ast-global-color-3:#334155;--ast-global-color-4:#FFFFFF;--ast-global-color-5:#F0F5FA;--ast-global-color-6:#111111;--ast-global-color-7:#D1D5DB;--ast-global-color-8:#111111;}:root {--ast-border-color : var(--ast-global-color-7);}.ast-single-entry-banner {-js-display: flex;display: flex;flex-direction: column;justify-content: center;text-align: center;position: relative;background: var(--ast-title-layout-bg);}.ast-single-entry-banner[data-banner-layout="layout-1"] {max-width: 1200px;background: inherit;padding: 20px 0;}.ast-single-entry-banner[data-banner-width-type="custom"] {margin: 0 auto;width: 100%;}.ast-single-entry-banner + .site-content .entry-header {margin-bottom: 0;}.site .ast-author-avatar {--ast-author-avatar-size: ;}a.ast-underline-text {text-decoration: underline;}.ast-container > .ast-terms-link {position: relative;display: block;}a.ast-button.ast-badge-tax {padding: 4px 8px;border-radius: 3px;font-size: inherit;}header.entry-header .entry-title{font-weight:600;font-size:32px;font-size:2rem;}header.entry-header > *:not(:last-child){margin-bottom:10px;}header.entry-header .post-thumb-img-content{text-align:center;}header.entry-header .post-thumb img,.ast-single-post-featured-section.post-thumb img{aspect-ratio:16/9;width:100%;height:100%;}.ast-archive-entry-banner {-js-display: flex;display: flex;flex-direction: column;justify-content: center;text-align: center;position: relative;background: var(--ast-title-layout-bg);}.ast-archive-entry-banner[data-banner-width-type="custom"] {margin: 0 auto;width: 100%;}.ast-archive-entry-banner[data-banner-layout="layout-1"] {background: inherit;padding: 20px 0;text-align: left;}body.archive .ast-archive-description{max-width:1200px;width:100%;text-align:left;padding-top:3em;padding-right:3em;padding-bottom:3em;padding-left:3em;}body.archive .ast-archive-description .ast-archive-title,body.archive .ast-archive-description .ast-archive-title *{font-weight:600;font-size:32px;font-size:2rem;}body.archive .ast-archive-description > *:not(:last-child){margin-bottom:10px;}@media (max-width:921px){body.archive .ast-archive-description{text-align:left;}}@media (max-width:544px){body.archive .ast-archive-description{text-align:left;}}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;text-decoration:none;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:"\00bb";}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:var(--ast-global-color-2);}.entry-title a{color:var(--ast-global-color-2);}@media (max-width:921px){.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 / -1;}}@media (max-width:544px){.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row > *:first-child,.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row > *:last-child{grid-column:1 / -1;}}.ast-builder-layout-element[data-section="title_tagline"]{display:flex;}@media (max-width:921px){.ast-header-break-point .ast-builder-layout-element[data-section="title_tagline"]{display:flex;}}@media (max-width:544px){.ast-header-break-point .ast-builder-layout-element[data-section="title_tagline"]{display:flex;}}.footer-widget-area.widget-area.site-footer-focus-item{width:auto;}.ast-footer-row-inline .footer-widget-area.widget-area.site-footer-focus-item{width:100%;}.elementor-widget-heading .elementor-heading-title{margin:0;}.elementor-page .ast-menu-toggle{color:unset !important;background:unset !important;}.elementor-post.elementor-grid-item.hentry{margin-bottom:0;}.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product,.elementor-element .elementor-wc-products .woocommerce[class*='columns-'] ul.products li.product{width:auto;margin:0;float:none;}.elementor-toc__list-wrapper{margin:0;}body .elementor hr{background-color:#ccc;margin:0;}.ast-left-sidebar .elementor-section.elementor-section-stretched,.ast-right-sidebar .elementor-section.elementor-section-stretched{max-width:100%;left:0 !important;}.elementor-posts-container [CLASS*="ast-width-"]{width:100%;}.elementor-template-full-width .ast-container{display:block;}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{top:0 !important;}@media (max-width:544px){.elementor-element .elementor-wc-products .woocommerce[class*="columns-"] ul.products li.product{width:auto;margin:0;}.elementor-element .woocommerce .woocommerce-result-count{float:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:1px;}@media (min-width:922px){.main-header-bar{border-bottom-width:1px;}}.main-header-menu .menu-item, #astra-footer-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > .menu-link, #astra-footer-menu > .menu-item > .menu-link{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg{top:.2em;margin-top:0px;margin-left:0px;width:.65em;transform:translate(0, -2px) rotateZ(270deg);}.ast-mobile-popup-content .ast-submenu-expanded > .ast-menu-toggle{transform:rotateX(180deg);overflow-y:auto;}@media (min-width:922px){.ast-builder-menu .main-navigation > ul > li:last-child a{margin-right:0;}}.ast-separate-container .ast-article-inner{background-color:var(--ast-global-color-4);background-image:none;}@media (max-width:921px){.ast-separate-container .ast-article-inner{background-color:var(--ast-global-color-4);background-image:none;}}@media (max-width:544px){.ast-separate-container .ast-article-inner{background-color:var(--ast-global-color-4);background-image:none;}}.ast-separate-container .ast-article-single:not(.ast-related-post), .woocommerce.ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .site-main .ast-author-meta, .ast-separate-container .related-posts-title-wrapper,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .ast-archive-description, .ast-separate-container .comments-area{background-color:var(--ast-global-color-4);background-image:none;}@media (max-width:921px){.ast-separate-container .ast-article-single:not(.ast-related-post), .woocommerce.ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .site-main .ast-author-meta, .ast-separate-container .related-posts-title-wrapper,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .ast-archive-description{background-color:var(--ast-global-color-4);background-image:none;}}@media (max-width:544px){.ast-separate-container .ast-article-single:not(.ast-related-post), .woocommerce.ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .site-main .ast-author-meta, .ast-separate-container .related-posts-title-wrapper,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .ast-archive-description{background-color:var(--ast-global-color-4);background-image:none;}}.ast-separate-container.ast-two-container #secondary .widget{background-color:var(--ast-global-color-4);background-image:none;}@media (max-width:921px){.ast-separate-container.ast-two-container #secondary .widget{background-color:var(--ast-global-color-4);background-image:none;}}@media (max-width:544px){.ast-separate-container.ast-two-container #secondary .widget{background-color:var(--ast-global-color-4);background-image:none;}}.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-4);background-image:none;}@media (max-width:921px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-4);background-image:none;}}@media (max-width:544px){.ast-plain-container, .ast-page-builder-template{background-color:var(--ast-global-color-4);background-image:none;}}
#ast-scroll-top {
display: none;
position: fixed;
text-align: center;
cursor: pointer;
z-index: 99;
width: 2.1em;
height: 2.1em;
line-height: 2.1;
color: #ffffff;
border-radius: 2px;
content: "";
outline: inherit;
}
@media (min-width: 769px) {
#ast-scroll-top {
content: "769";
}
}
#ast-scroll-top .ast-icon.icon-arrow svg {
margin-left: 0px;
vertical-align: middle;
transform: translate(0, -20%) rotate(180deg);
width: 1.6em;
}
.ast-scroll-to-top-right {
right: 30px;
bottom: 30px;
}
.ast-scroll-to-top-left {
left: 30px;
bottom: 30px;
}
#ast-scroll-top{background-color:var(--ast-global-color-0);font-size:15px;}@media (max-width:921px){#ast-scroll-top .ast-icon.icon-arrow svg{width:1em;}}.ast-mobile-header-content > *,.ast-desktop-header-content > * {padding: 10px 0;height: auto;}.ast-mobile-header-content > *:first-child,.ast-desktop-header-content > *:first-child {padding-top: 10px;}.ast-mobile-header-content > .ast-builder-menu,.ast-desktop-header-content > .ast-builder-menu {padding-top: 0;}.ast-mobile-header-content > *:last-child,.ast-desktop-header-content > *:last-child {padding-bottom: 0;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {width: 100%;}.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before {transform: rotateX(180deg);}#ast-desktop-header .ast-desktop-header-content,.ast-mobile-header-content .ast-search-icon,.ast-desktop-header-content .ast-search-icon,.ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {display: none;}.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {display: block;}.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down > .menu-item .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item > .sub-menu,.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade > .menu-item .menu-item > .sub-menu {opacity: 1;visibility: visible;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {width: unset;margin: unset;}.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle,.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {left: calc( 20px - 0.907em);right: auto;}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-desktop-header-content .ast-search-menu-icon,.ast-desktop-header-content .ast-search-menu-icon.slide-search {width: 100%;position: relative;display: block;right: auto;transform: none;}.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,.ast-desktop-header-content .ast-search-menu-icon .search-form {right: 0;visibility: visible;opacity: 1;position: relative;top: auto;transform: none;padding: 0;display: block;overflow: hidden;}.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-desktop-header-content .ast-search-menu-icon .search-field {width: 100%;padding-right: 5.5em;}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-desktop-header-content .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {padding-left: 30px;}.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {padding-left: 40px;}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{background-color:#ffffff;;}.ast-mobile-header-wrap .ast-mobile-header-content, .ast-desktop-header-content{background-color:#ffffff;;}.ast-mobile-popup-content > *, .ast-mobile-header-content > *, .ast-desktop-popup-content > *, .ast-desktop-header-content > *{padding-top:0px;padding-bottom:0px;}.content-align-flex-start .ast-builder-layout-element{justify-content:flex-start;}.content-align-flex-start .main-header-menu{text-align:left;}.ast-desktop-header-content, .ast-mobile-header-content{position:absolute;width:100%;}.ast-mobile-popup-drawer.active .menu-toggle-close{color:#3a3a3a;}.ast-mobile-header-wrap .ast-primary-header-bar,.ast-primary-header-bar .site-primary-header-wrap{min-height:80px;}.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{line-height:80px;}.ast-header-break-point #masthead .ast-mobile-header-wrap .ast-primary-header-bar,.ast-header-break-point #masthead .ast-mobile-header-wrap .ast-below-header-bar,.ast-header-break-point #masthead .ast-mobile-header-wrap .ast-above-header-bar{padding-left:20px;padding-right:20px;}.ast-header-break-point .ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:var( --ast-global-color-subtle-background,--ast-global-color-7 );border-bottom-style:solid;}@media (min-width:922px){.ast-primary-header-bar{border-bottom-width:1px;border-bottom-color:var( --ast-global-color-subtle-background,--ast-global-color-7 );border-bottom-style:solid;}}.ast-primary-header-bar{background-color:var( --ast-global-color-primary,--ast-global-color-4 );}.ast-primary-header-bar{display:block;}@media (max-width:921px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}@media (max-width:544px){.ast-header-break-point .ast-primary-header-bar{display:grid;}}[data-section="section-header-mobile-trigger"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{color:var(--ast-global-color-0);border:none;background:transparent;}[data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{width:20px;height:20px;fill:var(--ast-global-color-0);}[data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:var(--ast-global-color-0);}.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link{color:var(--ast-global-color-3);}.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .ast-menu-toggle{color:var(--ast-global-color-3);}.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item:hover > .menu-link, .ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item:hover > .ast-menu-toggle{color:var(--ast-global-color-1);}.ast-builder-menu-mobile .menu-item:hover > .menu-link, .ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item:hover > .ast-menu-toggle{color:var(--ast-global-color-1);}.ast-builder-menu-mobile .main-navigation .menu-item:hover > .ast-menu-toggle{color:var(--ast-global-color-1);}.ast-builder-menu-mobile .main-navigation .menu-item.current-menu-item > .menu-link, .ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item.current-menu-item > .ast-menu-toggle, .ast-builder-menu-mobile .main-navigation .menu-item.current-menu-ancestor > .menu-link, .ast-builder-menu-mobile .main-navigation .menu-item.current-menu-ancestor > .ast-menu-toggle{color:var(--ast-global-color-1);}.ast-builder-menu-mobile .main-navigation .menu-item.current-menu-item > .ast-menu-toggle{color:var(--ast-global-color-1);}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link{border-style:none;}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}@media (max-width:921px){.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link{color:var(--ast-global-color-3);}.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .ast-menu-toggle{color:var(--ast-global-color-3);}.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item:hover > .menu-link, .ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item:hover > .ast-menu-toggle{color:var(--ast-global-color-1);background:var(--ast-global-color-5);}.ast-builder-menu-mobile .main-navigation .menu-item:hover > .ast-menu-toggle{color:var(--ast-global-color-1);}.ast-builder-menu-mobile .main-navigation .menu-item.current-menu-item > .menu-link, .ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item.current-menu-item > .ast-menu-toggle, .ast-builder-menu-mobile .main-navigation .menu-item.current-menu-ancestor > .menu-link, .ast-builder-menu-mobile .main-navigation .menu-item.current-menu-ancestor > .ast-menu-toggle{color:var(--ast-global-color-1);background:var(--ast-global-color-5);}.ast-builder-menu-mobile .main-navigation .menu-item.current-menu-item > .ast-menu-toggle{color:var(--ast-global-color-1);}.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}.ast-builder-menu-mobile .main-navigation .menu-item-has-children > .menu-link:after{content:unset;}.ast-builder-menu-mobile .main-navigation .main-header-menu , .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-link, .ast-builder-menu-mobile .main-navigation .main-header-menu .sub-menu{background-color:var(--ast-global-color-4);}}@media (max-width:544px){.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle{top:0;}}.ast-builder-menu-mobile .main-navigation{display:block;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-mobile .main-navigation{display:block;}}:root{--e-global-color-astglobalcolor0:#046bd2;--e-global-color-astglobalcolor1:#045cb4;--e-global-color-astglobalcolor2:#1e293b;--e-global-color-astglobalcolor3:#334155;--e-global-color-astglobalcolor4:#FFFFFF;--e-global-color-astglobalcolor5:#F0F5FA;--e-global-color-astglobalcolor6:#111111;--e-global-color-astglobalcolor7:#D1D5DB;--e-global-color-astglobalcolor8:#111111;}</style>
<link rel="stylesheet" id="hfe-widgets-style-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/header-footer-elementor/inc/widgets-css/frontend.css?ver=2.4.3" media="all">
<link rel="stylesheet" id="pa-frontend-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/premium-addons-elementor/pa-frontend-cdd1723b4.min.css?ver=1751948739" media="all">
<style id="wp-emoji-styles-inline-css">img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: var(--wp--custom--ast-content-width-size);--wp--style--global--wide-size: var(--wp--custom--ast-wide-width-size); }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: none;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}</style>
<link rel="stylesheet" id="hfe-style-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/header-footer-elementor/assets/css/header-footer-elementor.css?ver=2.4.3" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="elementor-post-9-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/elementor/css/post-9.css?ver=1751948568" media="all">
<link rel="stylesheet" id="e-animation-fadeInDown-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="widget-heading-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-bounceIn-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-zoomIn-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="widget-image-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-fadeInLeft-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-fadeInRight-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="widget-divider-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="widget-icon-list-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-fadeInUp-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="widget-image-box-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/css/widget-image-box.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-slideInRight-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-rollIn-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-slideInUp-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-rotateInUpLeft-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="e-animation-rotateInUpRight-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.min.css?ver=3.30.1" media="all">
<link rel="stylesheet" id="elementor-post-40-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/elementor/css/post-40.css?ver=1751948569" media="all">
<link rel="stylesheet" id="elementor-post-12-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/elementor/css/post-12.css?ver=1751948569" media="all">
<link rel="stylesheet" id="elementor-post-368-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/elementor/css/post-368.css?ver=1751948569" media="all">
<link rel="stylesheet" id="elementor-post-310-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/elementor/css/post-310.css?ver=1751948569" media="all">
<link rel="stylesheet" id="hfe-elementor-icons-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.34.0" media="all">
<link rel="stylesheet" id="hfe-icons-list-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.24.3" media="all">
<link rel="stylesheet" id="hfe-social-icons-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.24.0" media="all">
<link rel="stylesheet" id="hfe-social-share-icons-brands-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css?ver=5.15.3" media="all">
<link rel="stylesheet" id="hfe-social-share-icons-fontawesome-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3" media="all">
<link rel="stylesheet" id="hfe-nav-menu-icons-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3" media="all">
<link rel="stylesheet" id="eael-general-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.2.0" media="all">
<link rel="stylesheet" id="wpr-button-animations-css-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/royal-elementor-addons/assets/css/lib/animations/button-animations.min.css?ver=1.7.1027" media="all">
<link rel="stylesheet" id="wpr-text-animations-css-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/royal-elementor-addons/assets/css/lib/animations/text-animations.min.css?ver=1.7.1027" media="all">
<link rel="stylesheet" id="wpr-addons-css-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/royal-elementor-addons/assets/css/frontend.min.css?ver=1.7.1027" media="all">
<link rel="stylesheet" id="font-awesome-5-all-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.11.17" media="all">
<link rel="stylesheet" id="elementor-gf-local-roboto-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver=1751639248" media="all">
<link rel="stylesheet" id="elementor-gf-local-robotoslab-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/elementor/google-fonts/css/robotoslab.css?ver=1751639289" media="all">
<link rel="stylesheet" id="elementor-gf-local-poppins-css" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/elementor/google-fonts/css/poppins.css?ver=1751640428" media="all">
<!--[if IE]>
<script src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/themes/astra/assets/js/minified/flexibility.min.js?ver=4.11.5" id="astra-flexibility-js"></script>
<script id="astra-flexibility-js-after">
flexibility(document.documentElement);
</script>
<![endif]-->
<script data-cfasync="false" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
<script data-cfasync="false" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script id="jquery-js-after">!function($){"use strict";$(document).ready(function(){$(this).scrollTop()>100&&$(".hfe-scroll-to-top-wrap").removeClass("hfe-scroll-to-top-hide"),$(window).scroll(function(){$(this).scrollTop()<100?$(".hfe-scroll-to-top-wrap").fadeOut(300):$(".hfe-scroll-to-top-wrap").fadeIn(300)}),$(".hfe-scroll-to-top-wrap").on("click",function(){$("html, body").animate({scrollTop:0},300);return!1})})}(jQuery);
!function($){'use strict';$(document).ready(function(){var bar=$('.hfe-reading-progress-bar');if(!bar.length)return;$(window).on('scroll',function(){var s=$(window).scrollTop(),d=$(document).height()-$(window).height(),p=d? s/d*100:0;bar.css('width',p+'%')});});}(jQuery);</script>
<link rel="https://api.w.org/" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/index.php?rest_route=%2F">
<link rel="alternate" title="JSON" type="application/json" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F40">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.8.1">
<link rel="canonical" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/">
<link rel="shortlink" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/">
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/index.php?rest_route=%2Foembed%2F1.0%2Fembed#038;url=https%3A%2F%2Farnab0610.github.io%2FArena_Animation_Chowringhee%2F">
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/index.php?rest_route=%2Foembed%2F1.0%2Fembed#038;url=https%3A%2F%2Farnab0610.github.io%2FArena_Animation_Chowringhee%2F&format=xml">
<meta name="generator" content="Elementor 3.30.1; features: e_font_icon_svg, additional_custom_breakpoints, e_element_cache; settings: css_print_method-external, google_font-enabled, font_display-swap">
<style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
@media screen and (max-height: 1024px) {
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
@media screen and (max-height: 640px) {
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}</style>
<link rel="icon" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/arena-2.png" sizes="32x32">
<link rel="icon" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/arena-2.png" sizes="192x192">
<link rel="apple-touch-icon" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/arena-2.png">
<meta name="msapplication-TileImage" content="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/arena-2.png">
<style id="wpr_lightbox_styles">.lg-backdrop {
background-color: rgba(0,0,0,0.6) !important;
}
.lg-toolbar,
.lg-dropdown {
background-color: rgba(0,0,0,0.8) !important;
}
.lg-dropdown:after {
border-bottom-color: rgba(0,0,0,0.8) !important;
}
.lg-sub-html {
background-color: rgba(0,0,0,0.8) !important;
}
.lg-thumb-outer,
.lg-progress-bar {
background-color: #444444 !important;
}
.lg-progress {
background-color: #a90707 !important;
}
.lg-icon {
color: #efefef !important;
font-size: 20px !important;
}
.lg-icon.lg-toogle-thumb {
font-size: 24px !important;
}
.lg-icon:hover,
.lg-dropdown-text:hover {
color: #ffffff !important;
}
.lg-sub-html,
.lg-dropdown-text {
color: #efefef !important;
font-size: 14px !important;
}
#lg-counter {
color: #efefef !important;
font-size: 14px !important;
}
.lg-prev,
.lg-next {
font-size: 35px !important;
}
/* Defaults */
.lg-icon {
background-color: transparent !important;
}
#lg-counter {
opacity: 0.9;
}
.lg-thumb-outer {
padding: 0 10px;
}
.lg-thumb-item {
border-radius: 0 !important;
border: none !important;
opacity: 0.5;
}
.lg-thumb-item.active {
opacity: 1;
}</style>
</head>
<body itemtype="https://schema.org/WebPage" itemscope="itemscope" class="home wp-singular page-template page-template-elementor_header_footer page page-id-40 wp-theme-astra ehf-header ehf-footer ehf-template-astra ehf-stylesheet-astra ast-desktop ast-page-builder-template ast-no-sidebar astra-4.11.5 ast-single-post ast-inherit-site-logo-transparent ast-hfb-header elementor-default elementor-template-full-width elementor-kit-9 elementor-page elementor-page-40">
<a class="skip-link screen-reader-text" href="#content" title="Skip to content">
Skip to content</a>
<div class="hfeed site" id="page">
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">
<p class="main-title bhf-hidden" itemprop="headline"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee" title="Arena Animation Chowringhee" rel="home">Arena Animation Chowringhee</a></p>
<div data-elementor-type="wp-post" data-elementor-id="12" class="elementor elementor-12">
<div class="elementor-element elementor-element-ca0e08c e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ca0e08c" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-28664d4 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="28664d4" data-element_type="container">
<div class="elementor-element elementor-element-da91ff6 hfe-menu-item-space-between hfe-submenu-icon-arrow hfe-link-redirect-child elementor-widget elementor-widget-navigation-menu" data-id="da91ff6" data-element_type="widget" data-settings="{"width_flyout_menu_item":{"unit":"px","size":373,"sizes":[]},"padding_vertical_menu_item":{"unit":"px","size":25,"sizes":[]},"menu_space_between":{"unit":"px","size":6,"sizes":[]},"menu_top_space":{"unit":"px","size":67,"sizes":[]},"toggle_size":{"unit":"px","size":38,"sizes":[]},"toggle_border_width":{"unit":"px","size":0,"sizes":[]},"toggle_border_radius":{"unit":"px","size":0,"sizes":[]},"close_flyout_size":{"unit":"px","size":52,"sizes":[]},"padding_flyout_menu_item":{"unit":"px","size":35,"sizes":[]},"dropdown_border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding_horizontal_dropdown_item":{"unit":"px","size":24,"sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":13,"sizes":[]},"hamburger_align":"center","hamburger_menu_align":"space-between","width_flyout_menu_item_tablet":{"unit":"px","size":"","sizes":[]},"width_flyout_menu_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_flyout_menu_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_flyout_menu_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_horizontal_menu_item":{"unit":"px","size":15,"sizes":[]},"padding_horizontal_menu_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_menu_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_menu_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_menu_item_mobile":{"unit":"px","size":"","sizes":[]},"menu_space_between_tablet":{"unit":"px","size":"","sizes":[]},"menu_space_between_mobile":{"unit":"px","size":"","sizes":[]},"menu_top_space_tablet":{"unit":"px","size":"","sizes":[]},"menu_top_space_mobile":{"unit":"px","size":"","sizes":[]},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]},"close_flyout_size_tablet":{"unit":"px","size":"","sizes":[]},"close_flyout_size_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default">
<div class="elementor-widget-container">
<div class="hfe-nav-menu__toggle elementor-clickable hfe-flyout-trigger" tabindex="0">
<div class="hfe-nav-menu-icon">
<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-bars" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"></path></svg> </div>
</div>
<div class="hfe-flyout-wrapper">
<div class="hfe-flyout-overlay elementor-clickable"></div>
<div class="hfe-flyout-container">
<div id="hfe-flyout-content-id-da91ff6" class="hfe-side hfe-flyout-left hfe-flyout-open" data-layout="left" data-flyout-type="normal">
<div class="hfe-flyout-content push">
<nav>
<ul id="menu-1-da91ff6" class="hfe-nav-menu">
<li id="menu-item-455" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-40 current_page_item parent hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/" class="hfe-menu-item">Home</a></li>
<li id="menu-item-457" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children parent hfe-has-submenu hfe-creative-menu">
<div class="hfe-has-submenu-container"><a aria-expanded="false" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=429" class="hfe-menu-item">About Us<span class="hfe-menu-toggle sub-arrow hfe-menu-child-0"><i class="fa"></i></span></a></div>
<ul class="sub-menu">
<li id="menu-item-456" class="menu-item menu-item-type-post_type menu-item-object-page hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=431" class="hfe-sub-menu-item">About Arena Chowringhee</a></li>
<li id="menu-item-460" class="menu-item menu-item-type-post_type menu-item-object-page hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=433" class="hfe-sub-menu-item">Awards and Accolades</a></li>
<li id="menu-item-465" class="menu-item menu-item-type-post_type menu-item-object-page hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=435" class="hfe-sub-menu-item">FAQ’s</a></li>
</ul>
</li>
<li id="menu-item-463" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=437" class="hfe-menu-item">Courses</a></li>
<li id="menu-item-468" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children parent hfe-has-submenu hfe-creative-menu">
<div class="hfe-has-submenu-container"><a aria-expanded="false" href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=439" class="hfe-menu-item">STUDENT ZONE<span class="hfe-menu-toggle sub-arrow hfe-menu-child-0"><i class="fa"></i></span></a></div>
<ul class="sub-menu">
<li id="menu-item-467" class="menu-item menu-item-type-post_type menu-item-object-page hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=441" class="hfe-sub-menu-item">Showcase</a></li>
<li id="menu-item-458" class="menu-item menu-item-type-post_type menu-item-object-page hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=443" class="hfe-sub-menu-item">Adda</a></li>
<li id="menu-item-459" class="menu-item menu-item-type-post_type menu-item-object-page hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=445" class="hfe-sub-menu-item">Arenites</a></li>
</ul>
</li>
<li id="menu-item-466" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=453" class="hfe-menu-item">PLACEMENTS</a></li>
<li id="menu-item-464" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=451" class="hfe-menu-item">Events</a></li>
<li id="menu-item-461" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=449" class="hfe-menu-item">Blog</a></li>
<li id="menu-item-462" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://arnab0610.github.io/Arena_Animation_Chowringhee/?page_id=447" class="hfe-menu-item">Contact</a></li>
</ul> </nav>
<div class="elementor-clickable hfe-flyout-close" tabindex="0">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 384 512"><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"></path></svg> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-909001d e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="909001d" data-element_type="container">
<div class="elementor-element elementor-element-e8816fc elementor-widget elementor-widget-image" data-id="e8816fc" data-element_type="widget" data-widget_type="image.default">
<img width="121" height="75" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/arena-animation.png" class="attachment-large size-large wp-image-15" alt=""> </div>
</div>
<div class="elementor-element elementor-element-a50e91a e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="a50e91a" data-element_type="container">
<div class="elementor-element elementor-element-0aeba9c elementor-position-left elementor-vertical-align-middle elementor-vertical-align-middle elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget-mobile__width-initial elementor-widget elementor-widget-image-box" data-id="0aeba9c" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img width="29" height="27" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/arena-animation-call-button.png" class="attachment-full size-full wp-image-16" alt=""></figure><div class="elementor-image-box-content"><h3 class="elementor-image-box-title">+91 8981005544</h3></div>
</div> </div>
<div class="elementor-element elementor-element-11d862f elementor-position-left elementor-vertical-align-middle elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-image-box" data-id="11d862f" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img width="29" height="29" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/email-arena-animation.png" class="attachment-full size-full wp-image-17" alt=""></figure><div class="elementor-image-box-content"><h3 class="elementor-image-box-title">info@arenach.com</h3></div>
</div> </div>
</div>
<div class="elementor-element elementor-element-cac0b52 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="cac0b52" data-element_type="container">
<div class="elementor-element elementor-element-a60c34d elementor-widget elementor-widget-image" data-id="a60c34d" data-element_type="widget" data-widget_type="image.default">
<img loading="lazy" width="275" height="102" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/institution-arenach.gif" class="attachment-large size-large wp-image-18" alt=""> </div>
</div>
<div class="elementor-element elementor-element-c3f1170 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="c3f1170" data-element_type="container">
<div class="elementor-element elementor-element-8a4edf8 premium-lq__none elementor-widget elementor-widget-premium-addon-button" data-id="8a4edf8" data-element_type="widget" data-settings="{"_animation":"none"}" data-widget_type="premium-addon-button.default">
<a class="premium-button premium-button-none premium-btn-lg premium-button-none" href="#">
<div class="premium-button-text-icon-wrapper">
<span>
Enquire Now </span>
</div>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-ff2ebde e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ff2ebde" data-element_type="container" data-settings="{"position":"fixed"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cc4f064 e-con-full elementor-hidden-mobile e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="cc4f064" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-5b2eaed elementor-widget elementor-widget-image" data-id="5b2eaed" data-element_type="widget" data-widget_type="image.default">
<img src="https://www.arenach.com/wp-content/themes/sangpress-2.0/assets/images/arena-animation-facebook.webp" title="" alt="" loading="lazy"> </div>
<div class="elementor-element elementor-element-d5d0d48 elementor-widget elementor-widget-image" data-id="d5d0d48" data-element_type="widget" data-widget_type="image.default">
<img src="https://www.arenach.com/wp-content/themes/sangpress-2.0/assets/images/arena-animation-youtube.webp" title="" alt="" loading="lazy"> </div>
<div class="elementor-element elementor-element-1f93db2 elementor-widget elementor-widget-image" data-id="1f93db2" data-element_type="widget" data-widget_type="image.default">
<img src="https://www.arenach.com/wp-content/themes/sangpress-2.0/assets/images/arena-animation-instagram.webp" title="" alt="" loading="lazy"> </div>
</div>
</div>
</div>
</div>
</header>
<div id="content" class="site-content">
<div class="ast-container">
<div data-elementor-type="wp-page" data-elementor-id="40" class="elementor elementor-40">
<div class="elementor-element elementor-element-c98e838 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="c98e838" data-element_type="container" data-settings="{"background_background":"video","background_video_link":"https:\/\/www.arenach.com\/wp-content\/uploads\/2025\/05\/arenach-banner-video-1.mp4","background_play_on_mobile":"yes","animation":"fadeInDown"}">
<div class="elementor-background-video-container">
<video class="elementor-background-video-hosted" autoplay muted playsinline loop></video>
</div> </div>
<div class="elementor-element elementor-element-bbf06ba e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="bbf06ba" data-element_type="container" data-settings="{"animation":"zoomIn"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-3dd02b2 elementor-widget elementor-widget-heading" data-id="3dd02b2" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">All you need to know about Arena Animation</h2> </div>
<div class="elementor-element elementor-element-5010d9f elementor-widget elementor-widget-text-editor" data-id="5010d9f" data-element_type="widget" data-widget_type="text-editor.default">
<p>In today’s fast paced world, the trends of education are also growing at an equal rate. Traditional courses like medicine, law, and engineering are no longer the sole focus of students. Instead, there is a considerably growing interest in creative fields such as animation, film production, graphic design, visual design & motion graphics, vfx or visual effects, gaming and more. Also Generative AI or Gen AI tools are playing a vital role in enhancing these areas.</p>
<p>When it comes to identifying the best institute that offers excellent training, experienced faculty, affordability with installment payment options & student loans, latest next-gen technology, placement assistance, and lifelong access to study materials, one name consistently stands out: <span style="color: #d21113;"><a style="color: #d21113;" href="https://www.arenach.com/"><strong>Arena Animation</strong></a>.</span> Known for meeting all these criteria aptly, <span style="color: #d21113;"><a style="color: #d21113;" href="https://www.arenach.com/"><strong>Arena Animation in Kolkata</strong></a></span> has earned its reputation as one of the best institutes in the city, providing students with the necessary skill set and support to succeed in their chosen creative endeavors.</p> </div>
<div class="elementor-element elementor-element-3d5cfb0 elementor-widget elementor-widget-heading" data-id="3d5cfb0" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">What are the Arena Animation course fees?</h2> </div>
<div class="elementor-element elementor-element-d662515 elementor-widget elementor-widget-text-editor" data-id="d662515" data-element_type="widget" data-widget_type="text-editor.default">
<p>The Arena Animation, Kolkata, course fees can vary based on factors such as the duration of the course, the specific program, and any additional resources or materials provided.</p>
<p>Refer to the table below for an approximate fee structure followed at <span style="color: #d21113;"><a style="color: #d21113;" href="https://www.arenach.com/"><strong>Arena Animation</strong></a>.</span> The amount is further broken in installments to facilitate easy and affordable payment to all. There are also student loans available for the same.</p> </div>
<div class="elementor-element elementor-element-2d9d02d wpr-button-icon-style-inline wpr-button-icon-position-right elementor-invisible elementor-widget elementor-widget-wpr-button" data-id="2d9d02d" data-element_type="widget" data-settings="{"_animation":"bounceIn"}" data-widget_type="wpr-button.default">
<div class="wpr-button-wrap elementor-clearfix">
<a class="wpr-button wpr-button-effect wpr-button-none" data-text="Go" href="#link">
<span class="wpr-button-content">
<span class="wpr-button-text">Check Our Course Fees</span>
</span>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-3638589 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="3638589" data-element_type="container" data-settings="{"animation":"fadeInDown"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-d949430 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="d949430" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-cc2dd80 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="cc2dd80" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-15ee624 elementor-widget__width-initial elementor-widget elementor-widget-image" data-id="15ee624" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-chowringhee-kolkata.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-61a7e24 elementor-widget__width-inherit elementor-widget elementor-widget-heading" data-id="61a7e24" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">View Our
Campus Tour</h2> </div>
</div>
<div class="elementor-element elementor-element-22cca01 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="22cca01" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-3226117 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="3226117" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-3b4e785 elementor-widget__width-initial elementor-widget elementor-widget-image" data-id="3b4e785" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-details.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-bade0f6 elementor-widget__width-inherit elementor-widget elementor-widget-heading" data-id="bade0f6" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Check Our
Placements</h2> </div>
</div>
<div class="elementor-element elementor-element-499d52c e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="499d52c" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInRight"}">
<div class="elementor-element elementor-element-729bc75 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="729bc75" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-73b8c29 elementor-widget__width-initial elementor-widget elementor-widget-image" data-id="73b8c29" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-kolkata-admission.png" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-3627dc6 elementor-widget__width-inherit elementor-widget elementor-widget-heading" data-id="3627dc6" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Speak with Career Advisor</h2> </div>
</div>
<div class="elementor-element elementor-element-c617240 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="c617240" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInRight"}">
<div class="elementor-element elementor-element-eaf57d0 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="eaf57d0" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-c60119d elementor-widget__width-initial elementor-widget elementor-widget-image" data-id="c60119d" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-kolkata-chowringhee.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-b818172 elementor-widget__width-inherit elementor-widget elementor-widget-heading" data-id="b818172" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Our Student
Showcase</h2> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-5d50444 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="5d50444" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-bfdc2a9 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="bfdc2a9" data-element_type="container" data-settings="{"animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-8c6eefb e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="8c6eefb" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-47e2304 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="47e2304" data-element_type="container" data-settings="{"background_background":"classic"}">
</div>
</div>
</div>
<div class="elementor-element elementor-element-17d218e e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="17d218e" data-element_type="container" data-settings="{"animation":"fadeInRight"}">
<div class="elementor-element elementor-element-9b25900 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="9b25900" data-element_type="container">
<div class="elementor-element elementor-element-5b7b89f elementor-widget elementor-widget-heading" data-id="5b7b89f" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">WELCOME TO</h2> </div>
<div class="elementor-element elementor-element-b7aad5b elementor-widget elementor-widget-heading" data-id="b7aad5b" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">ARENA ANIMATION CHOWRINGHEE – BEST ANIMATION INSTITUTE IN KOLKATA</h2> </div>
</div>
<div class="elementor-element elementor-element-de6140e e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="de6140e" data-element_type="container">
<div class="elementor-element elementor-element-3d6aacf e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="3d6aacf" data-element_type="container">
<div class="elementor-element elementor-element-3f6c234 elementor-widget elementor-widget-heading" data-id="3f6c234" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">28</h2> </div>
<div class="elementor-element elementor-element-653260f elementor-widget elementor-widget-text-editor" data-id="653260f" data-element_type="widget" data-widget_type="text-editor.default">
<p>YEARS OF EXPERIENCE<br>1997-2025</p> </div>
</div>
<div class="elementor-element elementor-element-1200dc9 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="1200dc9" data-element_type="container">
<div class="elementor-element elementor-element-3864fc0 elementor-widget elementor-widget-text-editor" data-id="3864fc0" data-element_type="widget" data-widget_type="text-editor.default">
<p>Step into <span style="color: #d21113;"><strong><a style="color: #d21113;" href="https://www.arenach.com/">Arena Animation Kolkata</a> </strong>–</span> Chowringhee and discover an all-new world of career opportunities in the field of animation, visual effects, gaming, and multimedia. We are the <span style="color: #d21113;"><strong><a style="color: #d21113;" href="https://www.arenach.com/animation-courses-kolkata/">Best Animation Institute in Kolkata</a></strong></span> and the only institute to offer a Triple <span style="color: #d21113;"><strong><a style="color: #d21113;" href="https://www.arenach.com/animation-courses-kolkata/">Certification course in Animation</a></strong></span>, Gaming and VFX. Arena Animation being Asia’s Leader in animation education, you are assured of learning with the very best. With an overwhelming response since its inception in the year 1997, the Chowringhee training institute has always delivered world-class quality, competence and consistency in its offerings.<span style="color: #d21113;"> <strong><a style="color: #d21113;" href="https://www.arenach.com/">Arena Chowringhee</a></strong></span> being the oldest and the biggest centre in the entire Eastern region has nurtured many dreams into reality.</p> </div>
<div class="elementor-element elementor-element-f8da63e wpr-button-icon-style-inline wpr-button-icon-position-right elementor-invisible elementor-widget elementor-widget-wpr-button" data-id="f8da63e" data-element_type="widget" data-settings="{"_animation":"bounceIn"}" data-widget_type="wpr-button.default">
<div class="wpr-button-wrap elementor-clearfix">
<a class="wpr-button wpr-button-effect wpr-button-none" data-text="Go" href="#link">
<span class="wpr-button-content">
<span class="wpr-button-text">Read More</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-6a3c132 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="6a3c132" data-element_type="container" data-settings="{"animation":"zoomIn"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-b049d1d elementor-widget elementor-widget-heading" data-id="b049d1d" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">WE ARE BEST ANIMATION TRAINING INSTITUTE IN KOLKATA</h2> </div>
<div class="elementor-element elementor-element-9534c72 elementor-widget elementor-widget-text-editor" data-id="9534c72" data-element_type="widget" data-widget_type="text-editor.default">
<p>Arena Animation Kolkata – Chowringhee which has recently completed 25 years in the year 2022,has been awarded with many academic excellence awards within this two and half decades – the most prominent being the Best Multimedia, Animation & <span style="color: #d21113;"><b><a style="color: #d21113;" href="https://www.arenach.com/vfx-course-kolkata/">VFX Training Institute in Kolkata</a></b></span> in 2017 & 2012 awarded by Brands Academy & Times Research. Below listed are the areas which distinguishes us from all the other graphic design and animation institutes in Kolkata..</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-b5d7d39 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="b5d7d39" data-element_type="container" data-settings="{"animation":"fadeInDown"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-f2c088a e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="f2c088a" data-element_type="container">
<div class="elementor-element elementor-element-cb7a574 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="cb7a574" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
<div class="elementor-element elementor-element-bca641a e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="bca641a" data-element_type="container" data-settings="{"animation":"zoomIn"}">
<div class="elementor-element elementor-element-7664aa7 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="7664aa7" data-element_type="container">
<div class="elementor-element elementor-element-5de047a e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="5de047a" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-f951850 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="f951850" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Oldest & Biggest Training Centre of Arena Animation in Kolkata started in 1997</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-6a954fa elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="6a954fa" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">The #1 Animation institute in Kolkata & one of Top Animation Institutes in India</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-ad06f72 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="ad06f72" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Winner of Best Animation & VFX Training Institute in Kolkata in 2012 & 2017</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-fcc2db1 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="fcc2db1" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Boasting of having the highest number of placements with 4800+ placed students</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-7fe82d0 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="7fe82d0" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Boasting of having the highest number of placements with 4800+ placed students</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-d8902c0 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="d8902c0" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">A Certiport Authorized Training centre for Adobe & Autodesk exams</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-438d027 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="438d027" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Having fully integrated Gaming Studio with AR/VR & Console Games for students</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-d6803c3 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="d6803c3" data-element_type="container" data-settings="{"animation":"zoomIn"}">
<div class="elementor-element elementor-element-df1b047 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="df1b047" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
<div class="elementor-element elementor-element-00d6861 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="00d6861" data-element_type="container">
<div class="elementor-element elementor-element-46c1b93 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="46c1b93" data-element_type="container">
<div class="elementor-element elementor-element-94aecba e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="94aecba" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-85b320a elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="85b320a" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Green screen Room for VFX students with production setup & high end cameras</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-3948c25 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="3948c25" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Most centrally located beside Rabindra Sadan Metro Stn with all transport modes</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-23b29d3 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="23b29d3" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Having Best Animation & Vfx course in Kolkata with alumni spread across industry</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-98a0870 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="98a0870" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Ranked Top among the leading 10 graphic design colleges in Kolkata</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-f2ed469 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="f2ed469" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Having basket of graphic design, web design & multimedia courses in Kolkata</span>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-e86dab0 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="e86dab0" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-square" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path></svg> </span>
<span class="elementor-icon-list-text">Launched Gaming courses in Unreal & Unity using platforms like Mobile Games, Video Games, Game Design and 3D Digital Game art & Design.</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-71d5e60 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="71d5e60" data-element_type="container" data-settings="{"animation":"fadeInUp"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-a146435 elementor-widget elementor-widget-heading" data-id="a146435" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">WHY CHOOSE ANIMATION KOLKATA - CHOWRINGHEE</h2> </div>
<div class="elementor-element elementor-element-bb4f987 elementor-widget elementor-widget-text-editor" data-id="bb4f987" data-element_type="widget" data-widget_type="text-editor.default">
<p>If you want to <strong><span style="color: #d21113;"><a style="color: #d21113;" href="https://www.arenach.com/vfx-course-kolkata/">learn VFX</a></span> </strong>, Animation, Gaming and Design related courses, and at the same time be assured of placements in the best design houses and studios, please do visit us. Check our credentials, our reputation & experience – the number of years we have been operational and the achievements and recognition of our students. Take feedback of our faculty & staff members – their industry experience and their academic backgrounds. View the comprehensive curriculum designed to cover the various aspects of animation and check our specialized courses.</p>
<p>See our infrastructure and state-of-the art facilities including computer labs, gaming studio, visual effects green screen room and other specialized hardware & software. Look into our placement and alumni network, track our record of successful placements in reputed animation studios, film production houses or gaming companies.</p>
<p>Do check these areas which are listed below also.</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-ea07b07 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="ea07b07" data-element_type="container" data-settings="{"animation":"zoomIn"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-c0570ed e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="c0570ed" data-element_type="container">
<div class="elementor-element elementor-element-9508caf e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="9508caf" data-element_type="container" data-settings="{"background_background":"classic","animation":"none"}">
<div class="elementor-element elementor-element-4af039f elementor-position-top elementor-widget elementor-widget-image-box" data-id="4af039f" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-multimedia.webp" title="" alt="" loading="lazy"></figure><div class="elementor-image-box-content">
<h3 class="elementor-image-box-title">Oldest & Biggest Institute of Arena Animation in Kolkata</h3>
<p class="elementor-image-box-description">We are the oldest and biggest animation institute of Arena in Eastern India for the past 28 years.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-c04cb60 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="c04cb60" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-96a6aa9 elementor-position-top elementor-widget elementor-widget-image-box" data-id="96a6aa9" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-academy.webp" title="" alt="" loading="lazy"></figure><div class="elementor-image-box-content">
<h3 class="elementor-image-box-title">Placement Assistance Assured</h3>
<p class="elementor-image-box-description">Arena Animation Placement Cell has been recognized as a pioneer in placing students in the best companies.</p>
</div>
</div> </div>
</div>
</div>
<div class="elementor-element elementor-element-162bfd3 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="162bfd3" data-element_type="container">
<div class="elementor-element elementor-element-6bf6890 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="6bf6890" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-5258ca5 elementor-position-top elementor-widget elementor-widget-image-box" data-id="5258ca5" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-multimedia-and-animation.webp" title="" alt="" loading="lazy"></figure><div class="elementor-image-box-content">
<h3 class="elementor-image-box-title">Oldest & Biggest Institute of Arena Animation in Kolkata</h3>
<p class="elementor-image-box-description">We are the oldest and biggest animation institute of Arena in Eastern India for the past 28 years.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-0eb8826 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="0eb8826" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-bfb9fbc elementor-position-top elementor-widget elementor-widget-image-box" data-id="bfb9fbc" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/institute-arena-multimedia.webp" title="" alt="" loading="lazy"></figure><div class="elementor-image-box-content">
<h3 class="elementor-image-box-title">Adobe Certified Associate</h3>
<p class="elementor-image-box-description">Arena Chowringhee is the first Adobe Certified Associate of Arena Animation in Kolkata and a Certiport Authorized test centre.</p>
</div>
</div> </div>
</div>
</div>
<div class="elementor-element elementor-element-00c349e e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="00c349e" data-element_type="container">
<div class="elementor-element elementor-element-d8fdbe9 elementor-widget elementor-widget-image" data-id="d8fdbe9" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-center.webp" title="" alt="" loading="lazy"> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-2635d52 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="2635d52" data-element_type="container" data-settings="{"animation":"fadeInDown"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-0065f7d elementor-widget elementor-widget-heading" data-id="0065f7d" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">OUR POPULAR COURSES</h2> </div>
<div class="elementor-element elementor-element-53f9500 elementor-widget elementor-widget-text-editor" data-id="53f9500" data-element_type="widget" data-widget_type="text-editor.default">
<p>These are the most popular courses in Animation, VFX, Graphic Designing, Web Designing, Multimedia and Gaming in Kolkata which have been widely accepted over these years. We have listed down the different streams along with the courses. You will be able to get the course details, eligibility, course duration and fees along with details of the Arena Animation Certificate and Arena Animation Placements.</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-04cbacb e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="04cbacb" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-0a9dbfb e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="0a9dbfb" data-element_type="container" data-settings="{"background_background":"gradient","animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-2a6bd93 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="2a6bd93" data-element_type="container" data-settings="{"position":"absolute"}">
<div class="elementor-element elementor-element-c496238 elementor-widget elementor-widget-image" data-id="c496238" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-institute-near-me.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-3773a29 elementor-widget elementor-widget-heading" data-id="3773a29" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Graphic Design</h2> </div>
<div class="elementor-element elementor-element-7a5e6f9 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="7a5e6f9" data-element_type="container">
<div class="elementor-element elementor-element-bcb5ddc wpr-button-icon-style-inline wpr-button-icon-position-right elementor-widget elementor-widget-wpr-button" data-id="bcb5ddc" data-element_type="widget" data-widget_type="wpr-button.default">
<div class="wpr-button-wrap elementor-clearfix">
<a class="wpr-button wpr-button-effect wpr-button-none" data-text="Go" href="#link">
<span class="wpr-button-content">
<span class="wpr-button-text">Next-Gen Graphic Design & Visual Design</span>
</span>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-6374161 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="6374161" data-element_type="container" data-settings="{"background_background":"gradient","animation":"fadeInRight"}">
<div class="elementor-element elementor-element-9465151 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="9465151" data-element_type="container" data-settings="{"position":"absolute"}">
<div class="elementor-element elementor-element-88a246f elementor-widget elementor-widget-image" data-id="88a246f" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-institute.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-67412af elementor-widget elementor-widget-heading" data-id="67412af" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Web Designing</h2> </div>
<div class="elementor-element elementor-element-32b74fb e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="32b74fb" data-element_type="container">
<div class="elementor-element elementor-element-b2856bc wpr-button-icon-style-inline wpr-button-icon-position-right elementor-widget elementor-widget-wpr-button" data-id="b2856bc" data-element_type="widget" data-widget_type="wpr-button.default">
<div class="wpr-button-wrap elementor-clearfix">
<a class="wpr-button wpr-button-effect wpr-button-none" data-text="Go" href="#link">
<span class="wpr-button-content">
<span class="wpr-button-text">Graphics, Web Design & Development</span>
</span>
</a>
</div>
</div>
<div class="elementor-element elementor-element-5eaae00 wpr-button-icon-style-inline wpr-button-icon-position-right elementor-widget elementor-widget-wpr-button" data-id="5eaae00" data-element_type="widget" data-widget_type="wpr-button.default">
<div class="wpr-button-wrap elementor-clearfix">
<a class="wpr-button wpr-button-effect wpr-button-none" data-text="Go" href="#link">
<span class="wpr-button-content">
<span class="wpr-button-text">Next-Gen Web Design & Development</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-ac25a7a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="ac25a7a" data-element_type="container" data-settings="{"background_background":"gradient","animation":"fadeInUp"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-899cfbc e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="899cfbc" data-element_type="container">
<div class="elementor-element elementor-element-384a1be elementor-invisible elementor-widget elementor-widget-heading" data-id="384a1be" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Contact Info</h2> </div>
<div class="elementor-element elementor-element-17042be elementor-invisible elementor-widget elementor-widget-text-editor" data-id="17042be" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="text-editor.default">
<p>Feel free to reach us using the following details. We’re here to assist you anytime!</p> </div>
<div class="elementor-element elementor-element-e55544f e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="e55544f" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-f989191 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="f989191" data-element_type="container">
<div class="elementor-element elementor-element-e933252 elementor-widget elementor-widget-heading" data-id="e933252" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Address</h2> </div>
<div class="elementor-element elementor-element-90c3116 elementor-widget elementor-widget-heading" data-id="90c3116" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">60, Chowringhee Road, ( 3rd Floor ), Near Rabindra Sadan Metro Station – Exide House, Kolkata – 700020</h2> </div>
</div>
<div class="elementor-element elementor-element-2207208 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="2207208" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-2425136 elementor-widget__width-inherit elementor-widget elementor-widget-image" data-id="2425136" data-element_type="widget" data-settings="{"_animation":"none"}" data-widget_type="image.default">
<img loading="lazy" decoding="async" width="29" height="41" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/sec6_img2-ezgif.com-webp-to-png-converter.png" class="attachment-large size-large wp-image-504" alt=""> </div>
</div>
</div>
<div class="elementor-element elementor-element-cee882a e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="cee882a" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-38a572f e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="38a572f" data-element_type="container">
<div class="elementor-element elementor-element-d539a04 elementor-widget elementor-widget-heading" data-id="d539a04" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Phone</h2> </div>
<div class="elementor-element elementor-element-32c191b elementor-widget elementor-widget-heading" data-id="32c191b" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">+91 8981005544<br>
+91 9674254536</h2> </div>
</div>
<div class="elementor-element elementor-element-87feecc e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="87feecc" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-19aed15 elementor-widget__width-inherit elementor-widget elementor-widget-image" data-id="19aed15" data-element_type="widget" data-settings="{"_animation":"none"}" data-widget_type="image.default">
<img loading="lazy" decoding="async" width="35" height="35" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/sec6_img3.png" class="attachment-large size-large wp-image-517" alt=""> </div>
</div>
</div>
<div class="elementor-element elementor-element-0470274 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="0470274" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-2575aeb e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="2575aeb" data-element_type="container">
<div class="elementor-element elementor-element-5f02eaf elementor-widget elementor-widget-heading" data-id="5f02eaf" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">
Email</h2> </div>
<div class="elementor-element elementor-element-94d41df elementor-widget elementor-widget-heading" data-id="94d41df" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">info@arenach.com</h2> </div>
</div>
<div class="elementor-element elementor-element-94ea9a7 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="94ea9a7" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-da4ee1b elementor-widget__width-inherit elementor-widget elementor-widget-image" data-id="da4ee1b" data-element_type="widget" data-settings="{"_animation":"none"}" data-widget_type="image.default">
<img loading="lazy" decoding="async" width="36" height="28" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/sec6_img4.png" class="attachment-large size-large wp-image-519" alt=""> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-ecdd1ce e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="ecdd1ce" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-18deea5 elementor-widget elementor-widget-heading" data-id="18deea5" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Request Free Info</h2> </div>
<div class="elementor-element elementor-element-6850834 elementor-widget elementor-widget-heading" data-id="6850834" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">YOUR NEXT STEP TO A GREAT FUTURE IS JUST A CLICK AWAY</h2> </div>
<div class="elementor-element elementor-element-1846ae4 elementor-widget elementor-widget-text-editor" data-id="1846ae4" data-element_type="widget" data-widget_type="text-editor.default">
<p>Please fill out the form below to request free information from us that will help you in taking an informed decision regarding your career. We look forward to hearing from you soon!</p> </div>
<div class="elementor-element elementor-element-32199fc elementor-widget elementor-widget-wpforms" data-id="32199fc" data-element_type="widget" data-widget_type="wpforms.default">
<div class="elementor-widget-container">
<style id="wpforms-css-vars-elementor-widget-32199fc">.elementor-widget-wpforms.elementor-element-32199fc {
--wpforms-field-border-color: #D21113;
--wpforms-field-border-color-spare: #D21113;
--wpforms-field-text-color: #000000;
--wpforms-label-color: #000000;
--wpforms-label-sublabel-color: #000000;
--wpforms-button-border-radius: 50px;
--wpforms-button-background-color: #D21113;
--wpforms-button-size-font-size: 20px;
--wpforms-button-size-height: 48px;
--wpforms-button-size-padding-h: 20px;
--wpforms-button-size-margin-top: 15px;
}</style>
<div class="wpforms-container wpforms-container-full wpforms-render-modern" id="wpforms-611"><form id="wpforms-form-611" class="wpforms-validate wpforms-form wpforms-ajax-form" data-formid="611" method="post" enctype="multipart/form-data" action="/Arena_Animation_Chowringhee/?simply_static_page=1" data-token="a9c52613e0b85b8cb2f9da98f2a5d468" data-token-time="1751948739">
<noscript class="wpforms-error-noscript">Please enable JavaScript in your browser to complete this form.</noscript>
<div class="wpforms-hidden" id="wpforms-error-noscript">Please enable JavaScript in your browser to complete this form.</div>
<div class="wpforms-field-container">
<div id="wpforms-611-field_6-container" class="wpforms-field wpforms-field-text" data-field-id="6"><input type="text" id="wpforms-611-field_6" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][6]" placeholder="Name" aria-errormessage="wpforms-611-field_6-error" required></div> <div id="wpforms-611-field_1-container" class="wpforms-field wpforms-field-text" data-field-type="text" data-field-id="1">
<label class="wpforms-field-label" for="wpforms-611-field_1"></label>
<input type="text" id="wpforms-611-field_1" class="wpforms-field-medium" name="wpforms[fields][1]">
</div>
<div id="wpforms-611-field_2-container" class="wpforms-field wpforms-field-email wpforms-one-half wpforms-first" data-field-id="2"><input type="email" id="wpforms-611-field_2" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][2]" placeholder="Email" spellcheck="false" aria-errormessage="wpforms-611-field_2-error" required></div>
<div id="wpforms-611-field_5-container" class="wpforms-field wpforms-field-number wpforms-one-half" data-field-id="5"><input type="number" id="wpforms-611-field_5" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][5]" placeholder="Numbers" step="any" aria-errormessage="wpforms-611-field_5-error" required></div>
<div id="wpforms-611-field_7-container" class="wpforms-field wpforms-field-select wpforms-field-select-style-classic" data-field-id="7"><select id="wpforms-611-field_7" class="wpforms-field-large" name="wpforms[fields][7]"><option value="—Please choose an option—" selected>—Please choose an option—</option>
<option value="VFX">VFX</option>
<option value="Animation">Animation</option>
<option value="Gaming">Gaming</option>
<option value="Digital Content Creation">Digital Content Creation</option>
<option value="Graphic Design">Graphic Design</option>
<option value="Web Designing">Web Designing</option>
<option value="Short Term">Short Term</option></select></div>
<div id="wpforms-611-field_3-container" class="wpforms-field wpforms-field-textarea" data-field-id="3"><textarea id="wpforms-611-field_3" class="wpforms-field-medium wpforms-field-required" name="wpforms[fields][3]" placeholder="Message" aria-errormessage="wpforms-611-field_3-error" required></textarea></div>
<script>( function() {
const style = document.createElement( 'style' );
style.appendChild( document.createTextNode( '#wpforms-611-field_1-container { position: absolute !important; overflow: hidden !important; display: inline !important; height: 1px !important; width: 1px !important; z-index: -1000 !important; padding: 0 !important; } #wpforms-611-field_1-container input { visibility: hidden; } #wpforms-conversational-form-page #wpforms-611-field_1-container label { counter-increment: none; }' ) );
document.head.appendChild( style );
document.currentScript?.remove();
} )();</script>
</div>
<!-- .wpforms-field-container --><div class="wpforms-submit-container">
<input type="hidden" name="wpforms[id]" value="611"><input type="hidden" name="page_title" value="Home"><input type="hidden" name="page_url" value="https://arnab0610.github.io/Arena_Animation_Chowringhee/?simply_static_page=1"><input type="hidden" name="url_referer" value=""><input type="hidden" name="page_id" value="40"><input type="hidden" name="wpforms[post_id]" value="40"><button type="submit" name="wpforms[submit]" id="wpforms-submit-611" class="wpforms-submit" data-alt-text="Sending..." data-submit-text="Submit" aria-live="assertive" value="wpforms-submit">Submit</button><img loading="lazy" decoding="async" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/plugins/wpforms-lite/assets/images/submit-spin.svg" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading">
</div>
</form></div> <!-- .wpforms-container --> </div>
</div>
</div>
<div class="elementor-element elementor-element-ef72d3b e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no elementor-invisible e-con e-child" data-id="ef72d3b" data-element_type="container" data-settings="{"animation":"slideInRight"}">
<div class="elementor-element elementor-element-f18c67a elementor-absolute elementor-widget elementor-widget-image" data-id="f18c67a" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<img loading="lazy" decoding="async" width="298" height="689" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/sec6_img1.png" class="attachment-large size-large wp-image-529" alt=""> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-fb5991f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="fb5991f" data-element_type="container" data-settings="{"animation":"zoomIn"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-ddfbeff elementor-widget elementor-widget-heading" data-id="ddfbeff" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">STUDENT WORK</h2> </div>
<div class="elementor-element elementor-element-eea305f elementor-widget elementor-widget-text-editor" data-id="eea305f" data-element_type="widget" data-widget_type="text-editor.default">
<p>Arena Animation Kolkata – Chowringhee provides opportunities to its students to showcase their work in this section. There are a lot of courses in our animation institute. You can check out the recent work of our students in different courses namely Graphic Designing, Web Designing, 2D Animation, 3D Animation, VFX and <span style="color: #d21113;"><a style="color: #d21113;" href="https://www.arenach.com/">Multimedia course in Kolkata</a></span> here.<br>Recruiters are always looking for new and fresh talent. So the Student Work section helps them to check the work of our students and accordingly recruit them. In short, it is a great opportunity for our students to get job placement with ease.</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-3b0d075 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3b0d075" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-af7ddbb e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="af7ddbb" data-element_type="container" data-settings="{"animation":"rollIn"}">
<div class="elementor-element elementor-element-5a8bbac elementor-widget elementor-widget-image" data-id="5a8bbac" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/themes/sangpress-2.0/assets/images/sec7_img_bg.webp" title="" alt="" loading="lazy"> </div>
<div class="elementor-element elementor-element-a9ce89c elementor-absolute elementor-widget elementor-widget-image" data-id="a9ce89c" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/animation-arena.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-6f79815 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="6f79815" data-element_type="container" data-settings="{"animation":"rollIn"}">
<div class="elementor-element elementor-element-d9cd430 elementor-widget elementor-widget-image" data-id="d9cd430" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/themes/sangpress-2.0/assets/images/sec7_img_bg.webp" title="" alt="" loading="lazy"> </div>
<div class="elementor-element elementor-element-3a14291 elementor-absolute elementor-widget elementor-widget-image" data-id="3a14291" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-chowringhee.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-7f725e9 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="7f725e9" data-element_type="container" data-settings="{"animation":"rollIn"}">
<div class="elementor-element elementor-element-e7e1292 elementor-widget elementor-widget-image" data-id="e7e1292" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/themes/sangpress-2.0/assets/images/sec7_img_bg.webp" title="" alt="" loading="lazy"> </div>
<div class="elementor-element elementor-element-d46f0e9 elementor-absolute elementor-widget elementor-widget-image" data-id="d46f0e9" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/11/arena-animation-institute.webp" title="" alt="" loading="lazy"> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-55588dd e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="55588dd" data-element_type="container" data-settings="{"animation":"bounceIn"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-e842a96 wpr-button-icon-style-inline wpr-button-icon-position-right elementor-widget elementor-widget-wpr-button" data-id="e842a96" data-element_type="widget" data-widget_type="wpr-button.default">
<div class="wpr-button-wrap elementor-clearfix">
<a class="wpr-button wpr-button-effect wpr-button-none" data-text="Go" href="#link">
<span class="wpr-button-content">
<span class="wpr-button-text">View More</span>
</span>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-79552cf e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="79552cf" data-element_type="container" data-settings="{"animation":"slideInUp"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-d1c99cc elementor-widget elementor-widget-heading" data-id="d1c99cc" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">OUR PLACEMENTS</h2> </div>
<div class="elementor-element elementor-element-cad0fe7 elementor-widget elementor-widget-text-editor" data-id="cad0fe7" data-element_type="widget" data-widget_type="text-editor.default">
<p><span style="color: #d21113;"><strong><a style="color: #d21113;" href="https://www.arenach.com/">Arena Animation</a></strong></span> Kolkata – Chowringhee has a dedicated Placement Cell which works with each student and helps in providing a holistic all round development from the day the student joins the <strong><span style="color: #d21113;"><a style="color: #d21113;" href="https://www.arenach.com/animation-courses-kolkata/">animation institute</a></span>.</strong> The Cell is constantly working to offer you the best openings in the industry and actively helping students find the most appropriate job.</p>
<p>The Placement Cell takes care of all the necessary steps required for placing a student from the time the student joins the institute till the time the student gets internships and placements. Regular placement preparation sessions along with interviews with prospective employers are conducted so that the students who have completed their <span style="color: #d21113;"><strong><a style="color: #d21113;" href="https://www.arenach.com/animation-courses-kolkata/">course in Animation</a></strong>, </span><strong><span style="color: #d21113;"><a style="color: #d21113;" href="https://www.arenach.com/vfx-course-kolkata/">VFX</a>, <a style="color: #d21113;" href="https://www.arenach.com/graphic-design-course-kolkata/">Graphic</a></span> </strong>and <span style="color: #d21113;"><a style="color: #d21113;" href="https://www.arenach.com/web-designing-course-kolkata/"><strong>Web designing</strong></a></span> can get recruited.</p>
<p>It offers Job Assistance to students and Recruitment Assistance to studios & companies looking to hire students. The dedicated Cell also works closely with the National Placement Cell to assure jobs for students not only in Kolkata but in other cities in India and internationally also.</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-107166a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="107166a" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-2160a8f e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="2160a8f" data-element_type="container" data-settings="{"animation":"rotateInUpLeft"}">
<div class="elementor-element elementor-element-89425b4 elementor-widget elementor-widget-image" data-id="89425b4" data-element_type="widget" data-widget_type="image.default">
<img loading="lazy" decoding="async" width="800" height="1024" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/photo-3-01.png" class="attachment-large size-large wp-image-243" alt=""> </div>
<div class="elementor-element elementor-element-4c091b7 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="4c091b7" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-bc77b44 elementor-widget elementor-widget-heading" data-id="bc77b44" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">RIA DAS</h2> </div>
<div class="elementor-element elementor-element-898064b elementor-widget elementor-widget-heading" data-id="898064b" data-element_type="widget" data-widget_type="heading.default">
<p class="elementor-heading-title elementor-size-default">GRAPHIC DESIGNER</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-4c3bd47 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="4c3bd47" data-element_type="container" data-settings="{"animation":"rotateInUpLeft"}">
<div class="elementor-element elementor-element-737b56d elementor-widget elementor-widget-image" data-id="737b56d" data-element_type="widget" data-widget_type="image.default">
<img loading="lazy" decoding="async" width="800" height="1024" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/photo-4-01.png" class="attachment-large size-large wp-image-245" alt=""> </div>
<div class="elementor-element elementor-element-acced48 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="acced48" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-41eab72 elementor-widget elementor-widget-heading" data-id="41eab72" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">SRIJITA NANDY</h2> </div>
<div class="elementor-element elementor-element-c26b385 elementor-widget elementor-widget-heading" data-id="c26b385" data-element_type="widget" data-widget_type="heading.default">
<p class="elementor-heading-title elementor-size-default">MOTION GRAPHIC DESIGNER</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-1497b89 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="1497b89" data-element_type="container" data-settings="{"animation":"rotateInUpRight"}">
<div class="elementor-element elementor-element-7060e41 elementor-widget elementor-widget-image" data-id="7060e41" data-element_type="widget" data-widget_type="image.default">
<img loading="lazy" decoding="async" width="800" height="1024" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/photo-2-01.png" class="attachment-large size-large wp-image-246" alt=""> </div>
<div class="elementor-element elementor-element-13e1bd3 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="13e1bd3" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-7d53f04 elementor-widget elementor-widget-heading" data-id="7d53f04" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">TIASA BANIK</h2> </div>
<div class="elementor-element elementor-element-1225eaf elementor-widget elementor-widget-heading" data-id="1225eaf" data-element_type="widget" data-widget_type="heading.default">
<p class="elementor-heading-title elementor-size-default">3D ANIMATOR – 4D VFX, KOLKATA</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-7b943f9 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="7b943f9" data-element_type="container" data-settings="{"animation":"rotateInUpRight"}">
<div class="elementor-element elementor-element-b645710 elementor-widget elementor-widget-image" data-id="b645710" data-element_type="widget" data-widget_type="image.default">
<img loading="lazy" decoding="async" width="800" height="1024" src="https://arnab0610.github.io/Arena_Animation_Chowringhee/wp-content/uploads/2025/07/photo-1-01.png" class="attachment-large size-large wp-image-247" alt=""> </div>
<div class="elementor-element elementor-element-a0c9c0c e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="a0c9c0c" data-element_type="container" data-settings="{"background_background":"gradient"}">
<div class="elementor-element elementor-element-039ceee elementor-widget elementor-widget-heading" data-id="039ceee" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">KASTURI PALMAL</h2> </div>
<div class="elementor-element elementor-element-17925d6 elementor-widget elementor-widget-heading" data-id="17925d6" data-element_type="widget" data-widget_type="heading.default">
<p class="elementor-heading-title elementor-size-default">GRAPHIC DESIGNER</p> </div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-9120864 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="9120864" data-element_type="container" data-settings="{"animation":"zoomIn"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-81f2f0a elementor-widget elementor-widget-heading" data-id="81f2f0a" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">ARENA STUDENTS GET PLACED IN</h2> </div>
<div class="elementor-element elementor-element-96d45b7 elementor-widget elementor-widget-text-editor" data-id="96d45b7" data-element_type="widget" data-widget_type="text-editor.default">
<p>To make you a job ready individual, Arena Animation hones your talent with technique, provides industry visits to studios and exposure to real time projects thus giving you industry-relevant skills. It also showcases your skills on various platforms through contests and competitions and ensures that by the completion of your course, you are job ready. It helps you with interview preparations along with development of your portfolio which is the most important measure whereby a student is evaluated and recruited by the industry.</p>
<p><a href="https://www.arenach.com/"><strong><span style="color: #d21113;">Arena Animation</span></strong></a> helps students get job placements in leading studios, media and entertainment companies in order to ensure bright careers for our students.</p>
<p>Some notable names include:</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-60853b4 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="60853b4" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-8e4084b e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="8e4084b" data-element_type="container" data-settings="{"animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-2eae79b elementor-widget elementor-widget-image" data-id="2eae79b" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/03/lakshya.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-1db0b78 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="1db0b78" data-element_type="container" data-settings="{"animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-12b0b6d elementor-widget elementor-widget-image" data-id="12b0b6d" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/03/electronic-arts.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-1a994cc e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="1a994cc" data-element_type="container" data-settings="{"animation":"fadeInRight"}">
<div class="elementor-element elementor-element-7d127a3 elementor-widget elementor-widget-image" data-id="7d127a3" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/03/green-gold.webp" title="" alt="" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-96beaff e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child" data-id="96beaff" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInRight"}">
<div class="elementor-element elementor-element-95f6924 elementor-widget elementor-widget-image" data-id="95f6924" data-element_type="widget" data-widget_type="image.default">
<img decoding="async" src="https://www.arenach.com/wp-content/uploads/2024/03/indus-net-technologies.webp" title="" alt="" loading="lazy"> </div>
</div>
</div>
</div>
</div>
</div> <!-- ast-container -->
</div>
<!-- #content -->
<div class="hfe-before-footer-wrap">
<div class="footer-width-fixer"> <div data-elementor-type="wp-post" data-elementor-id="310" class="elementor elementor-310">
<div class="elementor-element elementor-element-bdd3379 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-parent" data-id="bdd3379" data-element_type="container" data-settings="{"background_background":"classic","animation":"fadeInLeft"}">
<div class="elementor-element elementor-element-4a81722 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="4a81722" data-element_type="container">
<div class="elementor-element elementor-element-95b73fa elementor-position-top elementor-widget elementor-widget-image-box" data-id="95b73fa" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img src="https://www.arenach.com/wp-content/themes/sangpress-2.0/assets/images/arena-chowringhee-call-icon.webp" title="" alt="" loading="lazy"></figure><div class="elementor-image-box-content"><h3 class="elementor-image-box-title">+91 8981005544 / +91 9674254536</h3></div>
</div> </div>
</div>
<div class="elementor-element elementor-element-4bda6a7 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="4bda6a7" data-element_type="container">