-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabroadstudies.html
1424 lines (1404 loc) · 80.4 KB
/
abroadstudies.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>How Much Does it Cost to Study Abroad? | EUPHEUS</title>
<style id="critical-css">*{-webkit-box-sizing:border-box;box-sizing:border-box}html{margin:0;padding:0}a{text-decoration:none}img{height:auto;max-width:100%;-ms-interpolation-mode:bicubic}a>img{vertical-align:bottom}dl,menu,ol,ul{margin:0;list-style:none}dd,dt{margin:0}menu,ol,ul{margin:0;padding:0}p{margin:0}b,strong,em,small,code{line-height:1}sup{vertical-align:sub}sub{vertical-align:super}i{font-style:normal}hr{border:1px solid;color:#e0e3e4;margin:-1px 0}button{outline:none}.h-hidden{display:none !important;visibility:hidden}.h-show{display:inherit;visibility:visible}.visually-hidden,.h-vh{border:0;clip:rect(0 0 0 0);height:1px;width:1px;margin:-1px;overflow:hidden;padding:0;position:absolute !important}.visually-hidden.focusable:active,.visually-hidden.focusable:focus,.h-vh.focusable:active,.h-vh.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.h-inline-block{display:inline-block !important;vertical-align:middle !important}.js-hide{display:none !important}ul.menu{margin-left:0;text-align:inherit}ul.menu .menu-item{padding:0}ul.menu .no-link{color:inherit;font-weight:700}ul.menu .no-link:hover{cursor:pointer}ul.menu--horizontal>.menu-item{display:inline-block;vertical-align:middle}ul.menu--horizontal>.menu-item>a{display:block;line-height:1;padding:6.5px 13px}ul.inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}ul.inline li{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;list-style-type:none;padding:6px}ul.inline li:first-child{padding-left:0}ul.inline li:last-child{padding-right:0}ul.inline.-zero-pad li{padding:0}ul.inline.-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}ul.inline a.is-active{color:#24262a}@media (min-width: 60em){.menu-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}}.menu-flex .menu-item{display:block;list-style:none;margin:0;padding:0;white-space:nowrap}.menu-click-expandable>li{border-bottom:1px solid #e0e3e4}.menu-click-expandable a,.menu-click-expandable span{display:block;cursor:pointer}.menu-click-expandable .menu-item--expanded .menu{display:none;margin:0;padding:13px;position:relative;z-index:9999}.menu-click-expandable .menu-item--expanded.is-open .menu{display:block}.menu-click-expandable .menu-item--expanded.open-by-default .menu{display:block}.menu-click-expandable .menu-item--expanded.open-by-default.is-open .menu{display:none}.menu-click-expandable .menu-item--expanded>span{background:transparent url("/themes/gooverseas/external/images/icons-ui/icn-caret-down.svg") no-repeat right center;background-size:20px 20px}.menu-click-expandable .menu-item--expanded.open-by-default>span,.menu-click-expandable .menu-item--expanded.is-open>span{background-image:url("/themes/gooverseas/external/images/icons-ui/icn-caret-up.svg")}.menu-click-expandable .menu-item--expanded.open-by-default.is-open>span{background-image:url("/themes/gooverseas/external/images/icons-ui/icn-caret-down.svg")}@media (min-width: 60em){.menu-click-expandable>li{border-color:transparent}.menu-click-expandable .menu-item--expanded .menu{line-height:52px}.menu-click-expandable .menu-item--expanded.open-by-default .menu{display:none}.menu-click-expandable .menu-item--expanded>span{background:transparent}.menu-click-expandable .menu-item--expanded.open-by-default>span,.menu-click-expandable .menu-item--expanded.is-open>span{background:transparent}.menu-click-expandable .menu-item--expanded.open-by-default.is-open>span{background:transparent}.menu-click-expandable .menu-item--expanded:hover>span,.menu-click-expandable .menu-item--expanded.is-open>span{background:transparent}.menu-click-expandable .menu-item--expanded:hover .menu,.menu-click-expandable .menu-item--expanded.is-open .menu{position:absolute;margin:0;margin-left:-39px;max-width:80%;background-color:#fff;-webkit-box-shadow:0 2px 7px rgba(145,145,145,0.35);box-shadow:0 2px 7px rgba(145,145,145,0.35);display:block}.menu-click-expandable .menu-item--expanded:hover .menu a,.menu-click-expandable .menu-item--expanded.is-open .menu a{font-weight:normal}.menu-click-expandable .menu-item--expanded:hover .menu .menu-item:hover,.menu-click-expandable .menu-item--expanded.is-open .menu .menu-item:hover{background-color:#f9f9f9}.menu-click-expandable .menu-item--expanded:hover.submenu-columns .menu,.menu-click-expandable .menu-item--expanded.is-open.submenu-columns .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:26px 0}.menu-click-expandable .menu-item--expanded:hover.submenu-columns .menu .menu-item,.menu-click-expandable .menu-item--expanded.is-open.submenu-columns .menu .menu-item{width:50%}}ul.menu--primary-menu .menu-item{padding:0 13px}ul.menu--primary-menu .menu-item a,ul.menu--primary-menu .menu-item span{color:#24262a;font-weight:bold;text-decoration:none}ul.menu--primary-menu .menu-item a.icon{background:transparent no-repeat 13px center;background-size:32px 32px;padding-left:65px}ul.menu--primary-menu .menu-item a.icon-gap{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/gap--64x64.svg")}ul.menu--primary-menu .menu-item a.icon-hs{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/hs--64x64.svg")}ul.menu--primary-menu .menu-item a.icon-intern{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/intern--64x64.svg")}ul.menu--primary-menu .menu-item a.icon-language{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/language--64x64.svg")}ul.menu--primary-menu .menu-item a.icon-study{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/study--64x64.svg")}ul.menu--primary-menu .menu-item a.icon-teach{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/teach--64x64.svg")}ul.menu--primary-menu .menu-item a.icon-tefl{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/tefl--64x64.svg")}ul.menu--primary-menu .menu-item a.icon-tours{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/tours--64x64.svg")}ul.menu--primary-menu .menu-item a.icon-volunteer{background-image:url("/themes/gooverseas/external/images/icons-ui/silos/volunteer--64x64.svg")}ul.menu--primary-menu .menu-item .menu a,ul.menu--primary-menu .menu-item .menu span{font-weight:normal}@media (min-width: 60em){.menu--main-external{display:block;-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2;padding-left:13px}ul.menu--primary-menu .menu-item a,ul.menu--primary-menu .menu-item span{-webkit-transition:none;transition:none;border-bottom:4px solid transparent}ul.menu--primary-menu .menu-item a:hover,ul.menu--primary-menu .menu-item span:hover{color:#24262a;border-bottom-color:#2565da}ul.menu--primary-menu .menu-item .menu a:hover,ul.menu--primary-menu .menu-item .menu span:hover{border-color:transparent}ul.menu--primary-menu .menu-item--expanded:hover span,ul.menu--primary-menu .menu-item--expanded.is-open span{border-bottom-color:#2565da}ul.menu--primary-menu .menu-item--expanded:hover.submenu-columns .menu,ul.menu--primary-menu .menu-item--expanded.is-open.submenu-columns .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:26px 0}ul.menu--primary-menu .menu-item--expanded:hover.submenu-columns .menu .menu-item,ul.menu--primary-menu .menu-item--expanded.is-open.submenu-columns .menu .menu-item{width:50%}ul.menu--primary-menu .menu-item--new:after{background:#eb3c5f;border-radius:3px;display:initial;color:#fff;content:'New';font-size:11px;margin-left:4px;padding:3px;vertical-align:middle}}ul.menu--user-anonymous a{color:#24262a}ul.menu--user-anonymous .icon-search{background:transparent url("/themes/gooverseas/external/images/icons-ui/[email protected]") no-repeat 13px center;background-size:32px 32px;padding-left:65px}@media (min-width: 60em){ul.menu--user-anonymous .icon-search{background-position:center 24px;background-size:20px;font-size:12px;font-weight:normal;line-height:12px;padding:46px 0 12px}}ul.menu--user-anonymous .login-btn{padding:0 20px}ul.menu--user-anonymous .login-btn a{background:#1fc1b2;border-radius:5px;color:#fff;display:inline-block;line-height:34px;padding:0 48px;text-align:center;width:100%}@media (min-width: 60em){ul.menu--user-anonymous .login-btn a{width:auto}}ul.menu--account .menu-item{padding:0 6.5px}ul.menu--account .menu-item a,ul.menu--account .menu-item span{color:#24262a;font-weight:bold;text-decoration:none}ul.menu--account>.menu-item>a{padding-left:52px;background:transparent no-repeat 13px center;background-size:22px}ul.menu--account>.menu-item>a[href^="/search"]{background-image:url("/themes/gooverseas/external/images/icons-ui/[email protected]")}ul.menu--account>.menu-item>a[href^="/dashboard/booking"]{background-image:url("/themes/gooverseas/external/images/icons-ui/[email protected]")}ul.menu--account>.menu-item>a[href^="/user"][href$="#edit-group-tab-wish-list"]{background-image:url("/themes/gooverseas/external/images/icons-ui/[email protected]")}ul.menu--account>.menu-item>a[href^="/user"][href$="/edit"]{background-image:url("/themes/gooverseas/external/images/icons-ui/[email protected]")}@media (min-width: 60em){ul.menu--account>.menu-item>a{background:transparent no-repeat center 24px;background-size:20px;font-size:12px;font-weight:normal;line-height:12px;padding:46px 0 12px}ul.menu--account>.menu-item:last-of-type{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:30px 14px}ul.menu--account>.menu-item:last-of-type .menu{top:86px;right:0}ul.menu--account>.menu-item:last-of-type .menu a{padding:0 13px}ul.menu--account>.menu-item>span{background:transparent url("/themes/gooverseas/external/images/icons-ui/icn-caret-down.svg") no-repeat right center;background-size:12px 12px;border-left:1px solid #c3c6c7;display:inline-block;font-size:12px;line-height:24px;max-width:120px;overflow:hidden;padding:0 26px 0 13px;text-overflow:ellipsis;white-space:nowrap}ul.menu--account>.menu-item:hover>span,ul.menu--account>.menu-item.is-open>span{background:transparent url("/themes/gooverseas/external/images/icons-ui/icn-caret-up.svg") no-repeat right center;background-size:12px 12px}}body{background-color:#fff;color:#3f434a;font-family:Arial,sans-serif;font-weight:400;-webkit-font-variant-ligatures:common-ligatures;font-variant-ligatures:common-ligatures;-webkit-font-feature-settings:'liga' 1;font-feature-settings:'liga' 1;line-height:1.625;text-rendering:optimizeLegibility}#js-site-outer-wrapper{position:relative;overflow:hidden;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex}#js-site-inner-wrapper{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:relative;width:100%}.layout-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;min-height:100vh}.content--container{max-width:63.375em;margin-left:auto;margin-right:auto}.content--container:after{content:"";display:table;clear:both}.content--container.-narrow{max-width:45em;margin-left:auto;margin-right:auto}.content--container.-narrow:after{content:"";display:table;clear:both}.content--container.-medium{max-width:54em;margin-left:auto;margin-right:auto}.content--container.-medium:after{content:"";display:table;clear:both}@media (max-width: 48em){.content--container.-mobile-padding{padding:0 13px}}.layout-header{background-color:#fbfcfc;border-bottom:1px solid #e0e3e4;-webkit-box-shadow:0 2px 7px rgba(145,145,145,0.35);box-shadow:0 2px 7px rgba(145,145,145,0.35);height:56px;position:relative}.layout-header__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-line-pack:start;align-content:flex-start;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;margin-left:auto;margin-right:auto;max-width:70em;padding:0 13px}@media (min-width: 60em){.layout-header{height:86px}}.region-header-branding__logo{display:block;width:auto;height:56px;padding:12px 0}@media (min-width: 40em){.region-header-branding__logo{width:initial}}@media (min-width: 60em){.region-header-branding__logo{height:86px;padding:21px 0}}.region-header-menu{-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2;line-height:52px}@media (min-width: 60em){.region-header-menu{line-height:82px}}.region-header-menu a.site-nav-open{display:block;float:right;height:58px;width:56px;background:transparent url("/themes/gooverseas/external/images/icons-ui/icn-hamburger.svg") no-repeat right center;background-size:20px 20px}@media (min-width: 60em){.region-header-menu a.site-nav-open{display:none}}.region-header-menu a.site-nav-open span{color:#24262a;position:absolute;right:39px;top:2px}.region-header-menu .inner{position:absolute;top:56px;left:0;margin:0;z-index:10;display:none;width:100%;padding:0;background-color:#fff;text-align:left;-webkit-box-shadow:0 2px 7px rgba(145,145,145,0.35);box-shadow:0 2px 7px rgba(145,145,145,0.35)}@media (min-width: 60em){.region-header-menu .inner{position:relative;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;background-color:transparent;-webkit-box-shadow:none;box-shadow:none;padding:0}}.mobile-menu-open{overflow:hidden}.mobile-menu-open .layout-header{height:100%;width:100%;position:fixed;top:0;left:0;margin:0;z-index:10000}.mobile-menu-open .region-header-menu .inner{display:block;height:100%;overflow-y:scroll;overflow-x:hidden;position:fixed;-webkit-overflow-scrolling:touch}.mobile-menu-open .region-header-menu .inner>:last-child{padding-bottom:56px}.mobile-menu-open a.site-nav-open{background-image:url("/themes/gooverseas/external/images/icons-ui/icn-close.svg")}@media (min-width: 60em){.mobile-menu-open{overflow:unset}.mobile-menu-open .layout-header{position:relative;z-index:1}.mobile-menu-open .region-header-menu{position:relative}.mobile-menu-open .region-header-menu .inner{position:absolute;top:0;left:0;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;height:auto;overflow:unset}}.layout-main{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;padding:0 13px}.layout-main--breach{margin:0 -13px}.progress--fullwidth{width:100%}.progress--article{z-index:100}.progress--article progress{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;background:transparent;color:#2565da}.progress--article progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;height:3px;vertical-align:top;margin-top:9px}@media (max-width: 37.5em){.progress--article progress[value]{margin-top:0}}.progress--article progress::-moz-progress-bar{background:#2565da;height:3px}.progress--article progress::-webkit-progress-value{background:#2565da}.progress--article progress::-ms-fill{vertical-align:baseline !important;height:3px}.progress--article progress,.progress--article progress::-webkit-progress-bar{background-color:#fbfcfc;height:3px;display:block}@media (max-width: 37.5em){.progress--article progress,.progress--article progress::-webkit-progress-bar{position:fixed;top:0;left:0}}@media (max-width: 37.5em){.progress--article{position:fixed;top:0;left:0;width:100%}}.layoutArticleFull__container{max-width:45em;margin-left:auto;margin-right:auto;padding:39px 0}.layoutArticleFull__container:after{content:"";display:table;clear:both}.layoutArticleFull__header{margin-bottom:39px}.layoutArticleFull__footer{margin-bottom:39px}.layoutArticle__bar{display:none}.layoutArticle__bar.js-is-fixed{display:block}.layoutArticle__page-title{font-size:31.5px;line-height:1.2;margin-bottom:26px}@media (min-width: 40em){.layoutArticle__page-title{font-size:40.5px}}.layoutArticle__subheading{font-size:24px;font-weight:400;line-height:1.25;margin-bottom:26px}.layoutArticleFullExtended{margin-left:-13px;margin-right:-13px;position:relative}@media (min-width: 60em){.layoutArticleFullExtended{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding-top:376px}}.layoutArticleFullExtended__title{padding-top:26px;padding-bottom:26px}.layoutArticleFullExtended__container{padding-left:26px;padding-right:26px}@media (min-width: 40em){.layoutArticleFullExtended__container{padding-left:39px;padding-right:39px}}@media (min-width: 60em){.layoutArticleFullExtended__container{-ms-flex-preferred-size:70%;flex-basis:70%;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;padding-left:91px;padding-right:91px}}@media (min-width: 1400px){.layoutArticleFullExtended__container{-ms-flex-preferred-size:65%;flex-basis:65%}}.layoutArticleFullExtended__content{margin-bottom:65px}@media (min-width: 60em){.layoutArticleFullExtended__hero-wrapper{position:absolute;top:0;right:0;left:0;margin:0;width:100% 509px;height:100% 509px;overflow:hidden;z-index:-1}.layoutArticleFullExtended__hero-wrapper img{-o-object-fit:cover;object-fit:cover;width:100%}}
th{
background-color: #333333;
color: white;
}
tr:nth-child(even) {
background-color: #b4b4b4;}
tr{
background-color: #d4d4d4;
}
.dropbtn {
background-color: #3498DB;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: #2980B9;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown a:hover {background-color: #ddd;}
.show {display: block;}
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: black;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#myBtn:hover {
background-color: #555;
}
.project{
color: rgb(255, 0, 191);
font-weight:bold;
font-size:xx-large;
padding-top: 50px;
padding-left: 50px;
}
</style>
</head>
<body class="external-body path-node page-node-type-article" style="background-image: linear-gradient(45deg, #93a5cf 0%, #e4efe9 100%);">
<button onclick="topFunction()" id="myBtn" title="Go to top">🡅</button>
<div class="project">EUPHEUS</div>
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<div id="js-site-outer-wrapper">
<div id="js-site-inner-wrapper" class="layout-container">
<main id="page-middle" class="layout-main">
<div id="main-content" tabindex="-1"></div>
<div class="region region-content">
<article class="node node--type-article node--view-mode-full layoutArticle layoutArticleFull" id="js-article-cta-container">
<div class="layoutArticleFull__container">
<header class="layoutArticleFull__header">
<div class="field field-name-tax-primary-tag-ref"><h2>Study Abroad</h2></div>
<h1 class="layoutArticle__page-title">
How Much Does it Cost to Study Abroad?
</h1>
</header>
<section class="layoutArticle__main">
<div class="field field-name-field-para-primary-content-ref"> <div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77876">
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.panacheinstitute.com/x/cdn/?https://storage.googleapis.com/wzukusers/user-14694983/images/58bcde1032403Ir0bNIC/WORLD-LANGUAGE_d1450.jpg" width="1014" height="740" />
</div>
</div>
</div>
<div class="text"><p>Studying abroad provides a whole host of benefits from expanding your world view to gaining international experience, which will enhance both your resume and personal growth.</p>
<p>Aside from the enrichment of studying in a foreign country, it might also prove to be the more economical option. Research shows that after adjusting for inflation, the cost of a public four-year university education in the US has tripled between 1989 and 2019. Direct enrollment at an overseas institution for a semester, year, or even an entire degree has the possibility to save you some substantial cash.</p>
<p>In this article, we're featuring nine popular study abroad countries. Each country profile will include sample tuition costs, cost of living averages, and flight ticket estimates. These numbers are up-to-date but are intended to be used as a budgeting reference point. Your own spending habits will determine how much extra money you should set aside, depending on whether you enjoy fancy dinners, frequent travel, cooking at home or thrifty shopping.</p>
<p>In terms of tuition, two sets of prices will be presented: direct enrollment and third-party provider. Direct enrollment means you will be taking care of your application and transition to your new university on your own, much like you did for your home institution in the US. This option cuts out the middle man and usually results in cheaper tuition costs. Third-party providers, while pricier, tend to arrange everything for you and may even include housing and insurance.</p>
<p>So now let's jump right in and explore 9 of the most popular study abroad destinations. Hopefully, with this research, you'll be one step closer to making your study abroad dreams a reality!</p></div>
</div>
<h4>Select a country to view the details</h4>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Select Country</button>
<div id="myDropdown" class="dropdown-content">
<a href="#france">France</a>
<a href="#germany">Germany</a>
<a href="#spain">Spain</a>
<a href="#japan">Japan</a>
<a href="#italy">Italy</a>
<a href="#england">England</a>
<a href="#ireland">Ireland</a>
<a href="#china">China</a>
</div>
</div>
<br>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77877">
<h1 class="block__title" id="france">
France</h1>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://images.studee.com/images/country/country__france.jpg?ixlib=js-2.3.2&auto=format&fit=resize&q=35&fallback=true&w=1920&h=640&blend=%2Ftreatments%2Ftreatment__split-tone-with-overlay.jpg&blend-size=inherit&blend-mode=multiply&blend-alpha=80" width="1014" height="675" />
</div>
</div>
</div>
<div class="text"><p>France is a great destination for French-language students and Francophiles alike. A country known for its food, wine, and cinema, there are plenty of cultural attractions to make your time in France both educational and memorable.</p>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77879">
<h4 class="block__title">
Average Tuition Cost for a Semester in France</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.studying-in-france.org/wp-content/uploads/2013/07/Postgraduate-Studies-in-France-624x347.jpg" width="1014" height="679" />
</div>
</div>
</div>
<div class="text"><p>Through direct enrollment, tuition costs to study abroad in France can be very affordable. Though major cities will carry higher costs, exciting locations located across the country will offer exciting and authentic experiences with a lower price tag.</p>
<h3>Tuition for direct enrollment for a semester:</h3>
</div>
<div class="text">
<ul class="dots">
<li>
American University of Paris: $17,046 (2020)</li>
<li>
Syracuse University Strasbourg Center: $26,105 (2020)</li>
<li>
University of Bordeaux: $3,072 per year (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77881">
<div class="text"><h3>Tuition for a semester with a third-party provider:</h3>
</div>
<div class="text">
<ul class="dots">
<li>
IES Abroad Paris - French Studies: $18,970 (2020)*</li>
<li>
Study Abroad in Grenoble with API!: $11,980 - 18,480*, depending on area of study (2020)</li>
<li>
AIFS Study Abroad in Paris, Sorbonne: Semester: $14,995* (2020)</li>
<li>
CEA Study Abroad on the French Riviera: Starting at $15,995* (2020)</li>
</ul>
</div>
<div class="field field-name-field-text-formatted"><div class="text"><p>*Note this particular total includes housing</p>
</div>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77883">
<h4 class="block__title">
Average Cost of Living in France</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://deih43ym53wif.cloudfront.net/paris-eiffel-tower-camera-shutterstock_1323147320_73efa45818.jpeg" width="1014" height="967" />
</div>
</div>
</div>
<div class="text"><p>While living in Paris will surely cost you a pretty penny, average living expenses across France are generally reasonable compared to the rest of Western Europe.</p>
<table class="table -zebra">
<thead>
<tr>
<th>EXPENSE</th>
<th>ESTIMATED COST</th>
</tr>
</thead>
<tbody>
<tr>
<td>Meals</td>
<td>
<ul class="dots">
<li>$14 - inexpensive meal</li>
<li>$55 - date at a mid-range restaurant</li>
<li>$40 - average weekly grocery bill</li>
</ul>
</td>
</tr>
<tr>
<td>Monthly rent</td>
<td>
<ul class="dots">
<li>$375 - $700 for a dorm room or a room in a shared apartment (depending on location)</li>
<li>$1,340 for a one bedroom apartment in Paris</li>
</ul>
</td>
</tr>
<tr>
<td>Utilities</td>
<td>About $185 per month (including internet)</td>
</tr>
<tr>
<td>Cell phone</td>
<td>About $22 per month</td>
</tr>
<tr>
<td>Local transportation</td>
<td>A monthly pass: about $56</td>
</tr>
<tr>
<td>Personal expenses</td>
<td>
<ul class="dots">
<li>Pair of jeans in chain store (H&M): $25</li>
<li>0.5L of domestic beer: $2</li>
<li>Cappuccino: $3</li>
<li>Movie ticket: $11</li>
</ul>
</td>
</tr>
<tr>
<td>Total</td>
<td>Expect to spend about $3,500 - 4,500 for one semester in France after airfare and program fees.</td>
</tr>
</tbody>
</table>
<p>Source: Numbeo France</p>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77885">
<h4 class="block__title">
Average Airfare Costs to France</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.moneywehave.com/wp-content/uploads/2019/03/how-much-does-it-cost-to-go-to-france-paris.jpg" width="1014" height="763" />
</div>
</div>
</div>
<div class="text"><p>The below ticket prices are round-trip estimates from three major US airports across the country to the capital, Paris. Prices vary depending on the time of year, the destination, and the arrival airport but the following will give you a rough idea of costs for budgeting.</p>
</div>
<div class="text">
<ul class="dots">
<li>
New York (JFK) to Paris (CDG) - ~$480</li>
<li>
Chicago (ORD) to Paris (CDG) - ~$500</li>
<li>
Los Angeles (LAX) to Paris (CDG) - ~$470</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77886">
<h1 class="block__title" id="germany">
Germany</h1>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.travelnewsdigest.in/wp-content/uploads/2020/11/1-germany.jpg" width="1014" height="676" />
</div>
</div>
</div>
<div class="text"><p>Another hugely popular study abroad destination, it's no secret that Germany is extremely student-friendly. With low or no tuition, student discounts, and an affordable living cost all make this beautiful country a top pick.</p>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77888">
<h4 class="block__title">
Average Tuition Cost for a Semester in Germany</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://static.toiimg.com/thumb/76178194/Germany.jpg?width=1200&height=900" width="1014" height="785" />
</div>
</div>
</div>
<div class="text"><p>German universities offer a wide variety of tuition-free degrees for both EU and international students. For these programs, students are only obligated to pay a small amount for fees. This payment generally includes a transportation pass. Direct enrollment could potentially save you thousands of dollars on tuition.</p>
<h3>Tuition for direct enrollment for a semester in Germany:</h3>
</div>
<div class="text">
<ul class="dots">
<li>
Freie Universität Berlin: $345 (2020)</li>
<li>
Humboldt University: $349 (2020)</li>
<li>University of Hamburg: $362</li>
<li>
Heidelberg University: $1,658 (2020)</li>
<li>
University of Freiburg: $1,829 (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77890">
<div class="text"><h3>Fees for a semester with a third-party study abroad provider:</h3>
</div>
<div class="text">
<ul class="dots">
<li>
CIEE Program in Berlin: $19,850 (2020)</li>
<li>
IES Abroad in Freiburg: $19,990 (2020)</li>
<li>
USAC Germany: $8,725 (2020)</li>
<li>
API Study Abroad at The Freie Universität Berlin: $16,580 (2020)</li>
<li>
BCA Study Abroad: $19,183 (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77891">
<h4 class="block__title">
Average Cost of Living in Germany</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.expatrio.com/sites/default/files/styles/header_image/public/2019-11/interesting_facts_about_germany.jpeg?itok=Dk2gyw_A" width="1014" height="753" />
</div>
</div>
</div>
<div class="text"><p>In the capital, Berlin, and other large cities, you will inevitably find higher rent prices. However, with the money you save on tuition, you may find it easier to make ends meet.</p>
<table class="table -zebra">
<thead>
<tr>
<th>EXPENSE</th>
<th>ESTIMATED COS</th>
</tr>
</thead>
<tbody>
<tr>
<td>Meals</td>
<td>
<ul class="dots">
<li>$11 - inexpensive restaurant meal</li>
<li>$50 - dinner for two at a mid-range restaurant</li>
<li>$40 - average weekly grocery bill</li>
</ul>
</td>
</tr>
<tr>
<td>Monthly rent</td>
<td>
<ul class="dots">
<li>$330 - $734 for a dorm room or a room in a shared apartment in the city center</li>
<li>$495 - $1,212 for a one bedroom apartment in a big city</li>
</ul>
</td>
</tr>
<tr>
<td>Utilities</td>
<td>About $290 per month (heat, electricity, cooling, water, garbage, internet)</td>
</tr>
<tr>
<td>Cell phone</td>
<td>About $16.50 per month</td>
</tr>
<tr>
<td>Local transportation</td>
<td>A monthly pass: averages around $77, but often this is included in your tuition/fees and will be your ID card</td>
</tr>
<tr>
<td>Personal expenses</td>
<td>
<ul class="dots">
<li>Pair of jeans (chain store like H&M): $22</li>
<li>0.5L of domestic beer: $3.80</li>
<li>Cappuccino: $2.96</li>
<li>Movie ticket: $11.90</li>
</ul>
</td>
</tr>
<tr>
<td>Total</td>
<td>Expect to spend about $3,500 - $4,500 for one semester in Germany after airfare and program fees.</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77893">
<h4 class="block__title">
Average Airfare Costs to Germany</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://deih43ym53wif.cloudfront.net/television-tower-berlin-germany-shutterstock_158513762_9ba79447ae.jpeg" width="1000" height="750" />
</div>
</div>
</div>
<div class="text"><p>The below ticket prices are round-trip estimates from three major US airports across the country to the capital, Berlin. Prices vary depending on the time of year and destination and arrival airports but the following will give you a rough idea of costs for budgeting.</p>
</div>
<div class="text">
<ul class="dots">
<li>
New York (JFK) to Berlin (SXF) - ~$650</li>
<li>
Chicago (ORD) to Berlin (SXF) - ~$700</li>
<li>
Los Angeles (LAX) to Berlin (SXF) - ~$740</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77894">
<h1 class="block__title" id="costarica">
Costa Rica</h1>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://api-abroad.sfo2.cdn.digitaloceanspaces.com/images/_1200x675_crop_center-center_82_line/22051/COSTA-RICA-Students-at-Volcan-Arenal.jpg" width="1014" height="634" />
</div>
</div>
</div>
<div class="text"><p>The land with the slogan of "pura vida", or pure life, is sure to relax and rejuvenate you with its natural beauty and friendly locals. Costa Rica boasts pristine beaches, forests filled with wildlife, and vibrant cities and towns. Enjoy getting to know this small Central American country in between your studies during a semester abroad.</p>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77896">
<h4 class="block__title">
Average Tuition Cost for a Semester in Costa Rica</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://onlinestudentshub.com/wp-content/uploads/2019/03/Study-Abroad-in-Costa-Rica-Universities-in-Costa-Rica-with-Cheap-Tuition-Affordable-Living-Cost-and-Admission-Requirements.jpg" width="1014" height="761" />
</div>
</div>
</div>
<div class="text"><p>Tuition rates can vary from as low as $6,855 at a national university to as high as $20,260 through an American university based in Costa Rica. The following third-party providers offer prices among the lowest to study abroad of all the countries on the list, making them an attractive option.</p>
<h3>Tuition for direct enrollment for a semester:</h3>
</div>
<div class="text">
<ul class="dots">
<li>
Valparaiso University:</a> $20,260 (2019/2020)</li>
<li>Augsburg University's Center for Global Education and Experience: $18,995 (2019/2020)</li>
<li>
Universidad Latinoamericana de Ciencia y Tecnología Costa Rica: $6,855 (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77898">
<div class="text"><h3>Tuition for a semester with a third-party provider:</h3>
</div>
<div class="text">
<ul class="dots">
<li>
ISA Study Abroad in San Jose: $9,950 (2020)</li>
<li>
USAC Heredia:</a> $8,048 (2020)</li>
<li>API San Jose: $9,480 - $15,480 depending on area of study (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77899">
<h4 class="block__title">
Average Cost of Living in Costa Rica</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=face&w=1600&h=1067&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F28%2F2019%2F11%2Fcosta-rica-tenorio-national-park-COSTARICA0619.jpg" width="1014" height="761" />
</div>
</div>
</div>
<div class="text"><p>Costa Rica has a very reasonable cost of living which means your money can go far. Cutting costs by eating local or cooking at home will leave you with even more funds for travel and cultural activities.</p>
<table class="table -zebra">
<thead>
<tr>
<th>EXPENSE</th>
<th>ESTIMATED COST</th>
</tr>
</thead>
<tbody>
<tr>
<td>Meals</td>
<td>
<ul class="dots">
<li>$5 to $10 - inexpensive meal (more expensive in San Jose)</li>
<li>$25 to $45 - date at a mid-range restaurant</li>
<li>$50 - average weekly grocery bill</li>
</ul>
</td>
</tr>
<tr>
<td>Monthly rent</td>
<td>
<ul class="dots">
<li>$200 - $500 for a dorm room or a room in a shared apartment</li>
<li>$250 to $700 for an apartment</li>
</ul>
</td>
</tr>
<tr>
<td>Utilities</td>
<td>About $75 per month</td>
</tr>
<tr>
<td>Cell phone</td>
<td>About $20 per month</td>
</tr>
<tr>
<td>Local transportation</td>
<td>A monthly pass: about $46</td>
</tr>
<tr>
<td>Personal Expenses</td>
<td>
<ul class="dots">
<li>0.5L of domestic beer: $2.60</li>
<li>Cappuccino: $2.65</li>
<li>Movie ticket: $6</li>
</ul>
</td>
</tr>
<tr>
<td>Total</td>
<td>Expect to spend about $2,500 - 3,500 for one semester in Costa Rica after airfare and program fees.</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77901">
<h4 class="block__title">
Average Airfare Costs to Costa Rica</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.trafalgar.com/real-word/wp-content/uploads/sites/3/2017/08/Playas-del-Coco-www.istockphoto.comgbphotoplayas-del-coco-guanacaste-costa-rica-at-dusk-gm477054068-66951325-Fertnig.jpg" width="1000" height="750" />
</div>
</div>
</div>
<div class="text"><p>The below ticket prices are round-trip estimates from three major US airports across the country to the capital, San Jose. Prices vary depending on the time of year and destination and arrival airports but the following will give you a rough idea of costs for budgeting.</p>
</div>
<div class="text">
<ul class="dots">
<li>
New York (JFK) to San Jose (SJO) - ~$300</li>
<li>
Chicago (ORD) to San Jose (SJO) - ~$375</li>
<li>
Los Angeles (LAX) to San Jose (SJO) - ~$250</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77902">
<h1 class="block__title" id="spain">
Spain</h1>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://i0.wp.com/www.mobileworldlive.com/wp-content/uploads/2020/03/MWL_Madrid_Spain_650.jpg?fit=650%2C374&ssl=1" width="1014" height="676" />
</div>
</div>
</div>
<div class="text"><p>Spain is consistently a top study abroad destination due to its gorgeous climate and relaxed pace of life. This popular country isn't just for Spanish language students. Many programs offer courses in English for those just looking to experience the exciting culture and rich heritage.</p>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77904">
<h4 class="block__title">
Average Tuition Cost for a Semester in Spain</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.studying-in-spain.com/wp-content/uploads/2013/08/spanish-english-studying.jpg" width="1000" height="750" />
</div>
</div>
</div>
<div class="text"><p>Studying in Spain can be extremely affordable either through direct enrollment at a Spanish university or with a third-party provider. Even studying in the capital Madrid will cost you a fraction of a semester at a US university.</p>
<h3>Tuition for direct enrollment for a semester at:</h3>
</div>
<div class="text">
<ul class="dots">
<li>
Schiller International University Madrid: $6,445 (2020)</li>
<li>Universidad of Nebrija - $4,890 (2020)</li>
<li>Universidad Carlos III de Madrid - $143 per credit (2020)</li>
<li>Universidad de Cadiz - $1,564 (2020)</li>
<li>UCAM - Catholic University of Murcia: $51 - $217 per credit depending on area of study (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77906">
<div class="text"><h3>Tuition for a semester with a third-party provider:</h3>
</div>
<div class="text">
<ul class="dots">
<li>
CEA Study Abroad in Granada, Spain - $10,695 (2020)</li>
<li>ISA Study Abroad in Barcelona, Spain - $12,975 (2020)</li>
<li>USAC Spain: San Sebastian- $11,046 - (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77907">
<h4 class="block__title">
Average Cost of Living in Spain</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="http://shedreamsoftravel.com/wp-content/uploads/2015/09/IMG_9102.jpg" width="960" height="720" />
</div>
</div>
</div>
<div class="text"><p>Spain is a country where you can live well without breaking the bank. Good food and wine are cheap, whether you cook at home or eat out. While housing prices have risen in Madrid in recent years, they are still cheap compared to other major European cities. Overall, students can enjoy a comfortable lifestyle in Spain when studying abroad.</p>
<table class="table -zebra">
<thead>
<tr>
<th>EXPENSE</th>
<th>ESTIMATED COST</th>
</tr>
</thead>
<tbody>
<tr>
<td>Meals</td>
<td>
<ul class="dots">
<li>$11 - inexpensive meal</li>
<li>$38 - meal for two at a mid-range restaurant</li>
<li>$30 - average weekly grocery bill</li>
</ul>
</td>
</tr>
<tr>
<td>Monthly rent</td>
<td>
<ul class="dots">
<li>$220- $470 for a dorm room or a room in a shared apartment.</li>
<li>$1,061 for a one bedroom apartment in Barcelona</li>
</ul>
</td>
</tr>
<tr>
<td>Utilities</td>
<td>About $65 per month</td>
</tr>
<tr>
<td>Cell phone</td>
<td>About $10 per month</td>
</tr>
<tr>
<td>Local transportation</td>
<td>A monthly pass: about $48.50</td>
</tr>
<tr>
<td>Personal expenses</td>
<td>
<ul class="dots">
<li>Pair of jeans: $22 (chain store such as H&M)</li>
<li>0.5L of domestic beer: $2.70</li>
<li>Cappuccino: $1.77</li>
<li>Movie ticket: $9</li>
</ul>
</td>
</tr>
<tr>
<td>Total cost</td>
<td>Expect to spend about $2,500- $3,500 for one semester in Spain after airfare and program fees.</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77909">
<h4 class="block__title">
Average Airfare Costs to Spain</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://study-eu.s3.amazonaws.com/uploads/image/path/431/wide_fullhd_spain-barcelona.jpg" width="1014" height="676" />
</div>
</div>
</div>
<div class="text"><p>The prices below are round-trip estimates from three major US airports across the country to the capital, Madrid. Prices vary depending on the time of year and destination and arrival airports but the following will give you a rough idea of costs for budgeting.</p>
</div>
<div class="text">
<ul class="dots">
<li>
New York (JFK) to Madrid (MAD) - ~$540</li>
<li>
Chicago (ORD) to Madrid (MAD) - ~$700</li>
<li>
Los Angeles (LAX) to Madrid (MAD) - ~$640</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77910">
<h1 class="block__title" id="japan">
Japan</h1>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://cdn.getyourguide.com/img/country/58de1486a0b8d.jpeg/88.jpg" width="1014" height="676" />
</div>
</div>
</div>
<div class="text"><p>Japan is home to fascinating history, healthy and delicious food, and a bustling pop culture scene that is sure to <em>wow</em> more than just die-hard Nintendo fans. This diverse island has something for everyone from art and architecture lovers to craft beer enthusiasts.</p>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77912">
<h4 class="block__title">
Average Tuition Cost for a Semester in Japan</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://gaijinpot.scdn3.secure.raxcdn.com/app/uploads/sites/4/2019/07/Japan-Ranked-No.2-in-Asia-For-Study-Abroad.jpg" width="1014" height="761" />
</div>
</div>
</div>
<div class="text"><p>Direct enrollment in a Japanese university has the potential to be very affordable, even in Tokyo.</p>
<h3>Tuition for a semester through direct enrollment:</h3>
</div>
<div class="text">
<ul class="dots">
<li>Nanzan University: $4,390 (2020)</li>
<li>Tokyo International University:$4,137 (2020)</li>
<li>Kansai Gaidai University: $14,000 (2020)</li>
<li>The University of Tokyo: $2,462 (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77914">
<div class="text"><h3>Tuition for a semester through a third-party provider:</h3>
</div>
<div class="text">
<ul class="dots">
<li>CET Intensive Language & Culture Studies in Osaka: $21,490 (2020)</li>
<li>CIEE Tokyo: $24,550 (2020)</li>
<li>USAC Japan: $8,122 (2020)</li>
<li>IES Tokyo: $21,900 (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77915">
<h4 class="block__title">
Average Cost of Living in Japan</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://static01.nyt.com/images/2020/11/15/business/15biz-JAPAN-ECON/15biz-JAPAN-ECON-videoSixteenByNineJumbo1600.jpg" width="1014" height="761" />
</div>
</div>
</div>
<div class="text"><p>Higher prices for living expenses will be found in Tokyo and other major cities. However, Japan's reliable public transportation system makes living outside of the city center much easier.</p>
<table class="table -zebra">
<thead>
<tr>
<th>EXPENSE</th>
<th>ESTIMATED COST</th>
</tr>
</thead>
<tbody>
<tr>
<td>Meals</td>
<td>
<ul class="dots">
<li>$8.09 - inexpensive meal</li>
<li>$36.38 - date at a mid-range restaurant</li>
<li>$6.50 - one gallon of milk</li>
</ul>
</td>
</tr>
<tr>
<td>Monthly rent</td>
<td>
<ul class="dots">
<li>$776 - for a one bedroom apartment in a city center</li>
<li>$522.30 - for a one bedroom apartment outside of a city center</li>
</ul>
</td>
</tr>
<tr>
<td>Utilities</td>
<td>About $189 per month</td>
</tr>
<tr>
<td>Cell phone</td>
<td>About $75 per month</td>
</tr>
<tr>
<td>Local transportation</td>
<td>
<ul class="dots">
<li>A monthly pass: about $92.09</li>
<li>A one-way ticket: about $2</li>
</ul>
</td>
</tr>
<tr>
<td>Personal expenses</td>
<td>
<ul class="dots">
<li>Pair of jeans: $63</li>
<li>0.5L of domestic beer: $4.37</li>
<li>Cappuccino: $3.62</li>
<li>Movie ticket: $16.58</li>
</ul>
</td>
</tr>
<tr>
<td>Total</td>
<td>Expect to spend anywhere from $3,500 to $8,000 on housing, airfare and other expenses.</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77917">
<h4 class="block__title">
Average Airfare Costs to Japan</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://img.theculturetrip.com/x/smart/wp-content/uploads/2019/04/japan--pigprox-shutterstock.jpg" width="1000" height="820" />
</div>
</div>
</div>
<div class="text"><p>The below ticket prices are round-trip estimates from three major US airports across the country to the capital, Tokyo. Prices vary depending on the time of year and destination and arrival airports but the following will give you a rough idea of <a href="/blog/cost-study-abroad-japan">costs for studying abroad in Japan</a>.</p>
</div>
<div class="text">
<ul class="dots">
<li>
New York (JFK) to Tokyo (NRT) - ~$860</li>
<li>
Chicago (ORD) to Tokyo (NRT) - ~$825</li>
<li>
Los Angeles (LAX) to Tokyo (NRT) - ~$990</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77918">
<h1 class="block__title" id="italy">
Italy</h1>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://cdn.cnn.com/cnnnext/dam/assets/170606121206-italy---travel-destination---shutterstock-517522957.jpg" width="1014" height="676" />
</div>
</div>
</div>
<div class="text"><p>Foodies rejoice: Italy will give you the opportunity to experience the country's rich culinary traditions alongside your studies. Enjoy art, culture, history, and the Mediterranean lifestyle during a semester abroad in Italy.</p>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77920">
<h4 class="block__title">
Average Tuition Cost for a Semester in Italy</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://keystoneacademic-res.cloudinary.com/image/upload/f_auto,q_auto,c_fill,w_1920/element/13/139450_Italystudent.jpg" width="960" height="720" />
</div>
</div>
</div>
<div class="text"><p>Direct enrolment study abroad in Italy tends to be cheaper at Italian universities than American universities with campuses located in-country.</p>
<h3>Tuition for a semester of direct enrollment study abroad:</h3>
</div>
<div class="text">
<ul class="dots">
<li>Loyola University Chicago Global Centers: $22,065 (2019/2020)</li>
<li>John Cabot University in Rome: $12,450 for 10-17 credits (2020)</li>
<li>University of Pisa: $2,710 (2019/2020)</li>
<li>Syracuse University Florence Center: $31,790, <em>includes housing with a host family, or in a student apartment</em> (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77922">
<div class="text"><h3>Tuition for a semester of study abroad through a third-party provider:</h3>
</div>
<div class="text">
<ul class="dots">
<li>CEA Study Abroad in Rome: $17,095 (2020)</li>
<li>CET History of Art and Italian Studies in Siena: $19,990 (2020)</li>
<li>SAI Study Abroad at NABA in Milan: $15,500, <em>includes housing</em> (2020)</li>
<li>ISA Study Abroad in Florence: $15,950 (2020)</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77923">
<h4 class="block__title">
Average Cost of Living in Italy</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://plumdeluxe.com/wp-content/uploads/2013/06/piazza-2.jpg" width="1014" height="829" />
</div>
</div>
</div>
<div class="text"><p>Living expenses while studying abroad in Italy will vary based on urban or rural locations, as well as your personal spending habits. Budget a bit extra if you plan on regularly indulging in pizzas, pasta, and gelato.</p>
<table class="table -zebra">
<thead>
<tr>
<th>EXPENSE</th>
<th>ESTIMATED COST</th>
</tr>
</thead>
<tbody>
<tr>
<td>Meals</td>
<td>
<ul class="dots">
<li>$17 - inexpensive meal</li>
<li>$55 - date at a mid-range restaurant</li>
<li>$55 - average weekly grocery bill</li>
</ul>
</td>
</tr>
<tr>
<td>Monthly rent</td>
<td>$442 - $1,105 for a one-bedroom apartment</td>
</tr>
<tr>
<td>Utilities</td>
<td>$94 - $276 per month</td>
</tr>
<tr>
<td>Cell phone</td>
<td>$30 per month</td>
</tr>
<tr>
<td>Local transportation</td>
<td>Monthly Pass: $40</td>
</tr>
<tr>
<td>Personal expenses</td>
<td>
<ul class="dots">
<li>Pair of jeans (brand name): $85</li>
<li>Beer at a pub: $5 (wine is cheaper)</li>
<li>Cappuccino: $1.50</li>
<li>Movie ticket: $10</li>
<li>Theater ticket: $35</li>
</ul>
</td>
</tr>
<tr>
<td>Total</td>
<td>Depending on how often you travel and eat at restaurants, and where you are living, budget around $4,500 on the low end, to up to $7,000 on the high end, for your expenses during a semester in Italy.</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77925">
<h4 class="block__title">
Average Airfare Costs to Italy</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.atlanticcouncil.org/wp-content/uploads/2020/09/Rome-coroavirus-large-1024x683.jpg" width="1014" height="761" />
</div>
</div>
</div>
<div class="text"><p>The following ticket prices are round-trip estimates from three major US airports across the country to the capital, Rome. Prices vary depending on the time of year, destination, and arrival airports but the following will give you a rough idea of pricing for your flight to Italy.</p>
</div>
<div class="text">
<ul class="dots">
<li>
New York (JFK) to Rome (FCO) - ~$420</li>
<li>
Chicago (ORD) to Rome (FCO) - ~$500</li>
<li>
Los Angeles (LAX) to Rome (FCO) - ~$615</li>
</ul>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77926">
<h1 class="block__title" id="england">
England</h1>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.studyabroad.com/sites/default/files/images/england-fall-semester-abroad.jpg" width="1014" height="641" />
</div>
</div>
</div>
<div class="text"><p>England is a great study abroad destination for first time travelers. Transitioning into life in a foreign country is easier without a language barrier and will help you gain confidence in setting off on your own. World-class universities will enrich your studies while outside of the classroom, its history and natural landscapes will charm you. Explore all England has to offer!</p>
</div>
</div>
<div class="paragraph paragraph--type-content-item paragraph--view-mode-primary ds-1col" id="paragraph-item-77928">
<h4 class="block__title">
Average Tuition Cost for a Semester in England</h4>
<div class="field field-name-field-media-image-ref"><div data-blazy="" class="blazy blazy--field blazy--field-image blazy--field-image--related-block blazy--view blazy--view--article-teaser-spotlight-vm blazy--view--article-teaser-spotlight-vm--related-block field field-name-field-image">
<div class="media media--bundle--image media--blazy media--loading media--image">
<img src="https://www.dreamstudiesabroad.com/images/articles/england.jpg" width="1000" height="862" />
</div>
</div>
</div>
<div class="text"><p>Although tuition costs in England may be slightly higher than other countries on this list, studying in an English-speaking country will give you a wider range of courses to choose from.</p>
<h3>Tuition for a semester of direct enrollment study abroad:</h3>
</div>
<div class="text">
<ul class="dots">
<li>University of Brighton: $17,463 to $18,867 per year (2020)</li>
<li>Edge Hill University: $15,657 per year (2019 - 2020)</li>
<li>University of Evansville Study Abroad in Harlaxton: $16,900 per semester (2019 - 2020)</li>
<li>University of the Arts London: $8,676 per term (2019 - 2020)</li>
<li>University of Plymouth: $1,398 per 10 credits (2019 - 2020)</li>