-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
2075 lines (2021 loc) · 95.4 KB
/
homepage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/queries.css" />
<title>WhatUni Homepage</title>
<link rel="icon" href="img/whatuni_logo.svg.svg" />
</head>
<body>
<header class="header">
<button class="btn-mobile-nav">
<img src="img/nav.png" alt="nav bar" class="icon-mobile-nav" />
</button>
<div class="header-img">
<img src="img/whatuni_logo.svg.svg" alt="logo" />
<div class="sign-in">
<button type="submit" class="header-button">SIGN IN</button>
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="18"
viewBox="0 0 20 18"
fill="none"
>
<path
d="M17.3839 9.1931C15.2142 11.8451 10.6592 15.9219 9.95286 16.5496C9.89709 16.5992 9.82254 16.5997 9.76614 16.5509C8.98233 15.8733 3.51794 11.1222 2.10797 9.1931C1.08927 7.7993 0.741988 6.48608 1.19598 4.79379C1.68653 2.96519 2.77296 1.82383 4.53997 1.43431C5.90746 1.13285 6.7948 1.55899 8.03597 2.23418C8.66527 2.57651 9.44776 3.28546 9.74137 3.56098C9.80651 3.62211 9.90691 3.61509 9.96447 3.54604C10.246 3.20838 11.0472 2.29312 11.76 1.91423C12.884 1.31676 13.7001 1.11271 14.952 1.43431C16.6046 1.85886 17.735 2.77002 18.2199 4.55382C18.6779 6.2383 18.4966 7.83331 17.3839 9.1931Z"
stroke="#334155"
stroke-width="1.52"
/>
</svg>
</div>
</div>
<section class="header-nav">
<nav class="navigation main-nav">
<ul class="menu main-nav-list">
<li>
<a href="#" class="nav-link main-nav-link">Find a course</a>
</li>
<li><a href="#" class="nav-link main-nav-link">Find a uni</a></li>
<li><a href="#" class="nav-link main-nav-link">Careers</a></li>
<li><a href="#" class="nav-link main-nav-link">Prospectuses</a></li>
<li><a href="#" class="nav-link main-nav-link">Open days</a></li>
<li><a href="#" class="nav-link main-nav-link">Reviews</a></li>
<li><a href="#" class="nav-link main-nav-link">Advice</a></li>
</ul>
</nav>
</section>
</header>
<div class="main">
<div class="search-bar search-bar-mobile">
<input
type="text"
class="search-input"
placeholder="Search for courses, universities and advice"
/>
</div>
</div>
<div class="main">
<div class="container">
<div class="temppp">
<div class="main-sub">
<nav class="breadcrumbs">
<a href="#">Home</a>
<span> / </span>
<a href="#">Degree</a>
<span> / </span>
<a href="#">All Art and design</a>
<span> / </span>
<a href="#" class="last-a">Animation BA(Hons)</a>
</nav>
<div class="print">
<img src="img/Symbol.png" alt="print" width="17" height="18" />
<p>Print</p>
</div>
</div>
<div class="temp">
<div class="main-univ">
<!-- Left -->
<div class="univ">
<div class="univ-logo">
<img
src="img/myhc_351150.jpg.png"
alt="university name"
class="univ-image"
/>
</div>
<div class="compare compare-desktop">
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="18"
viewBox="0 0 20 18"
fill="none"
class="cursor"
>
<path
d="M17.3839 9.1931C15.2142 11.8451 10.6592 15.9219 9.95286 16.5496C9.89709 16.5992 9.82254 16.5997 9.76614 16.5509C8.98233 15.8733 3.51794 11.1222 2.10797 9.1931C1.08927 7.7993 0.741988 6.48608 1.19598 4.79379C1.68653 2.96519 2.77296 1.82383 4.53997 1.43431C5.90746 1.13285 6.7948 1.55899 8.03597 2.23418C8.66527 2.57651 9.44776 3.28546 9.74137 3.56098C9.80651 3.62211 9.90691 3.61509 9.96447 3.54604C10.246 3.20838 11.0472 2.29312 11.76 1.91423C12.884 1.31676 13.7001 1.11271 14.952 1.43431C16.6046 1.85886 17.735 2.77002 18.2199 4.55382C18.6779 6.2383 18.4966 7.83331 17.3839 9.1931Z"
stroke="#334155"
stroke-width="1.52"
/>
</svg>
<p>COMPARE</p>
</div>
</div>
</div>
<!-- Right -->
<div class="univ-content">
<h1>Animation BA (Hons)</h1>
<p class="arts">Norwich University of the Arts</p>
<div class="rating">
<p class="rate">Student rating</p>
<div class="stars">
<!-- <img src="img/div.rating-stars.png"> -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
>
<path
d="M8.2156 4.17612C8.41691 3.55653 9.29347 3.55653 9.49479 4.17612L10.2141 6.3899C10.3041 6.66699 10.5623 6.85459 10.8537 6.85459H13.1814C13.8329 6.85459 14.1037 7.68825 13.5767 8.07118L11.6935 9.43937C11.4578 9.61062 11.3592 9.91417 11.4492 10.1913L12.1685 12.405C12.3698 13.0246 11.6607 13.5399 11.1336 13.1569L9.25049 11.7887C9.01478 11.6175 8.69561 11.6175 8.4599 11.7887L6.57675 13.1569C6.04969 13.5399 5.34054 13.0246 5.54186 12.405L6.26116 10.1913C6.35119 9.91417 6.25256 9.61062 6.01685 9.43937L4.1337 8.07118C3.60665 7.68825 3.87752 6.85459 4.529 6.85459H6.8567C7.14805 6.85459 7.40626 6.66699 7.4963 6.3899L8.2156 4.17612Z"
fill="#F59E0B"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
>
<path
d="M8.2156 4.17612C8.41691 3.55653 9.29347 3.55653 9.49479 4.17612L10.2141 6.3899C10.3041 6.66699 10.5623 6.85459 10.8537 6.85459H13.1814C13.8329 6.85459 14.1037 7.68825 13.5767 8.07118L11.6935 9.43937C11.4578 9.61062 11.3592 9.91417 11.4492 10.1913L12.1685 12.405C12.3698 13.0246 11.6607 13.5399 11.1336 13.1569L9.25049 11.7887C9.01478 11.6175 8.69561 11.6175 8.4599 11.7887L6.57675 13.1569C6.04969 13.5399 5.34054 13.0246 5.54186 12.405L6.26116 10.1913C6.35119 9.91417 6.25256 9.61062 6.01685 9.43937L4.1337 8.07118C3.60665 7.68825 3.87752 6.85459 4.529 6.85459H6.8567C7.14805 6.85459 7.40626 6.66699 7.4963 6.3899L8.2156 4.17612Z"
fill="#F59E0B"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
>
<path
d="M8.2156 4.17612C8.41691 3.55653 9.29347 3.55653 9.49479 4.17612L10.2141 6.3899C10.3041 6.66699 10.5623 6.85459 10.8537 6.85459H13.1814C13.8329 6.85459 14.1037 7.68825 13.5767 8.07118L11.6935 9.43937C11.4578 9.61062 11.3592 9.91417 11.4492 10.1913L12.1685 12.405C12.3698 13.0246 11.6607 13.5399 11.1336 13.1569L9.25049 11.7887C9.01478 11.6175 8.69561 11.6175 8.4599 11.7887L6.57675 13.1569C6.04969 13.5399 5.34054 13.0246 5.54186 12.405L6.26116 10.1913C6.35119 9.91417 6.25256 9.61062 6.01685 9.43937L4.1337 8.07118C3.60665 7.68825 3.87752 6.85459 4.529 6.85459H6.8567C7.14805 6.85459 7.40626 6.66699 7.4963 6.3899L8.2156 4.17612Z"
fill="#F59E0B"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
>
<path
d="M8.2156 4.17612C8.41691 3.55653 9.29347 3.55653 9.49479 4.17612L10.2141 6.3899C10.3041 6.66699 10.5623 6.85459 10.8537 6.85459H13.1814C13.8329 6.85459 14.1037 7.68825 13.5767 8.07118L11.6935 9.43937C11.4578 9.61062 11.3592 9.91417 11.4492 10.1913L12.1685 12.405C12.3698 13.0246 11.6607 13.5399 11.1336 13.1569L9.25049 11.7887C9.01478 11.6175 8.69561 11.6175 8.4599 11.7887L6.57675 13.1569C6.04969 13.5399 5.34054 13.0246 5.54186 12.405L6.26116 10.1913C6.35119 9.91417 6.25256 9.61062 6.01685 9.43937L4.1337 8.07118C3.60665 7.68825 3.87752 6.85459 4.529 6.85459H6.8567C7.14805 6.85459 7.40626 6.66699 7.4963 6.3899L8.2156 4.17612Z"
fill="#F59E0B"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
>
<path
d="M8.2156 4.17612C8.41691 3.55653 9.29347 3.55653 9.49479 4.17612L10.2141 6.3899C10.3041 6.66699 10.5623 6.85459 10.8537 6.85459H13.1814C13.8329 6.85459 14.1037 7.68825 13.5767 8.07118L11.6935 9.43937C11.4578 9.61062 11.3592 9.91417 11.4492 10.1913L12.1685 12.405C12.3698 13.0246 11.6607 13.5399 11.1336 13.1569L9.25049 11.7887C9.01478 11.6175 8.69561 11.6175 8.4599 11.7887L6.57675 13.1569C6.04969 13.5399 5.34054 13.0246 5.54186 12.405L6.26116 10.1913C6.35119 9.91417 6.25256 9.61062 6.01685 9.43937L4.1337 8.07118C3.60665 7.68825 3.87752 6.85459 4.529 6.85459H6.8567C7.14805 6.85459 7.40626 6.66699 7.4963 6.3899L8.2156 4.17612Z"
fill="#CBD5E1"
/>
</svg>
</div>
<p class="rate">(4.3)</p>
<p class="reviews rate">View reviews</p>
</div>
<p class="rate rate-para">
Want to know what it's like to study this course at uni? We've
got all the key info, from entry requirements to the modules on
offer. If that all sounds good, why not check out reviews from
real students or even book onto an upcoming open day?
</p>
<div class="compare compare-1">
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="18"
viewBox="0 0 20 18"
fill="none"
class="cursor"
>
<path
d="M17.3839 9.1931C15.2142 11.8451 10.6592 15.9219 9.95286 16.5496C9.89709 16.5992 9.82254 16.5997 9.76614 16.5509C8.98233 15.8733 3.51794 11.1222 2.10797 9.1931C1.08927 7.7993 0.741988 6.48608 1.19598 4.79379C1.68653 2.96519 2.77296 1.82383 4.53997 1.43431C5.90746 1.13285 6.7948 1.55899 8.03597 2.23418C8.66527 2.57651 9.44776 3.28546 9.74137 3.56098C9.80651 3.62211 9.90691 3.61509 9.96447 3.54604C10.246 3.20838 11.0472 2.29312 11.76 1.91423C12.884 1.31676 13.7001 1.11271 14.952 1.43431C16.6046 1.85886 17.735 2.77002 18.2199 4.55382C18.6779 6.2383 18.4966 7.83331 17.3839 9.1931Z"
stroke="#334155"
stroke-width="1.52"
/>
</svg>
<p>COMPARE</p>
</div>
<div class="main-buttons">
<button type="submit" class="first res-btn-1 common">
GET PROSPECTUS
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="different">
<div class="main_1 container">
<div class="course-top">
<div class="course-header">
<p class="course-opt">Different course options</p>
<div class="drop">
<p class="two cursor">2 options available</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="21"
viewBox="0 0 20 21"
fill="none"
class="cursor"
>
<path
d="M15 8.5L10 13.5L5 8.5"
stroke="#3460DC"
stroke-width="1.67"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
<div class="data-content">
<p class="data">
DATA SOURCE: <span class="data-span">UNISTATS / UCAS / HESA</span>
</p>
</div>
</div>
<div class="data-grid">
<div class="grids">
<img src="img/icon-1.png" alt="icon-1" />
<div class="grid-res">
<p class="icon-top">Qualification</p>
<p class="icon-para">
Bachelor of Arts (with Honours) - BA (Hons)
</p>
</div>
</div>
<div class="grids">
<img src="img/icon-2.png" alt="icon-1" />
<div class="grid-res">
<p class="icon-top">Location</p>
<p class="icon-para">Norwich University of the Arts</p>
</div>
</div>
<div class="grids">
<img src="img/icon-3.png" alt="icon-1" />
<div class="grid-res">
<p class="icon-top">Study mode</p>
<p class="icon-para">Full time</p>
</div>
</div>
<div class="grids">
<img src="img/icon-4.png" alt="icon-1" />
<div class="grid-res">
<p class="icon-top">Start date</p>
<p class="icon-para">SEP-24</p>
</div>
</div>
<div class="grids">
<img src="img/icon-5.png" alt="icon-1" />
<div class="grid-res">
<p class="icon-top">Duration</p>
<p class="icon-para">3 years</p>
</div>
</div>
</div>
</div>
</section>
<section class="upcoming">
<div class="container">
<div class="main_1">
<div class="main-box">
<div class="box-para">
<p class="box-para-1 cursor">
Check upcoming open days and book your place
</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
>
<path
d="M11.5556 4.55566L17 10.0001M17 10.0001L11.5556 15.4446M17 10.0001L3 10.0001"
stroke="#047857"
stroke-width="1.67"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
</div>
</div>
</section>
<section class="tab-section">
<div class="container">
<div class="main_2">
<div class="tabs1 show-desk">
<ul class="tab-list">
<li class="tab-li click-li active_li">Course info</li>
<li class="tab-li click-li modules">Modules</li>
<li class="tab-li click-li">Entry Requirements</li>
<li class="tab-li click-li">Tuition fees</li>
<li class="tab-li click-li">Latest reviews</li>
<li class="tab-li click-li">Uni info</li>
</ul>
</div>
<!-- for mobile -->
<div class="tabs1 show-mob">
<ul class="tab-list">
<li class="tab-li click-li active_li">
<a href="#course-info-id" class="anchor">Course info</a>
</li>
<li class="tab-li click-li modules">
<a href="#modules-id" class="anchor">Modules</a>
</li>
<li class="tab-li click-li">
<a href="#entry-id" class="anchor">Entry Requirements</a>
</li>
<li class="tab-li click-li">
<a href="#fees-id" class="anchor">Tuition fees</a>
</li>
<li class="tab-li click-li">
<a href="#latest-id" class="anchor">Latest reviews</a>
</li>
<li class="tab-li click-li">
<a href="#uni-id" class="anchor">Uni info</a>
</li>
</ul>
</div>
<div class="click">
<div class="tab-each" id="course-info-id">
<div class="left-tab">
<p class="course-info">Course info</p>
<div class="tab-line"></div>
</div>
<div class="right-tab">
<p class="right-tab-para">
The BA (Hons) Animation course at Norwich University of the
Arts (Norwich) is designed to inspire and capture the
imagination of its students, balancing fundamental principles
with cutting edge techniques. We embrace creativity in all
aspects of the course and aim for outcomes with artistry and
storytelling at their core which explore innovative methods of
moving image creation and inspire new audiences.
</p>
<div>
<p class="right-tab-para key">Key Features</p>
<p class="right-tab-para">
Share the first-year curriculum with BA (Hons) Animation and
Visual Effects, allowing you to study the fundamental skills
of thinking and working in animation and visual effects and
provide students with a solid grounding in the basics needed
for both disciplines.
</p>
</div>
<ul class="tab-ul">
<li>
Develop an understanding of visual/film language components
such as narrative structure, design, colour and composition
</li>
<li>
Work in relation to sustainability, diversity and global
contexts; question how the work you create, and the methods
you use, can be used to make a difference to others
</li>
<li>
Progress towards project outcomes through a process of
conceptualisation, experimentation and iteration, with each
stage refining communication, meaning and resolve
</li>
<li>
Learn the importance of collaborative working,
presenting/pitching, time/project management, communication
skills, responding to creative briefs, academic writing, and
giving and receiving feedback
</li>
<li>
Attend guest lectures and masterclasses, portfolio reviews,
and participate in internal/external conferences,
exhibitions and careers events, as appropriate
</li>
<li>
Develop the observation, reflection, criticality, emotional
intelligence, organisation and autonomy required of a
contemporary artist together with an aptitude for problem
solving
</li>
<li>
Participate in a studio culture which facilitates
peer-learning and helps build working relationships in
support of collaborative practice
</li>
<li>
From Year 2, specialise in either 2D (computer-generated
imagery) or stop motion
</li>
</ul>
<div>
<p class="right-tab-para key">Your future</p>
<p class="right-tab-para">
In your final year, you will produce a personal showcase of
your specialist skills and an original animated film,
getting you career-ready after university. BA (Hons)
Animation prepares you to join Norwich graduates who have
already gone on to work at Lupus Films, Blue Zoo, Meantime
Media, Cartoon Saloon and more. It also prepares you with a
transferable skillset that supports your career beyond the
existing creative industries – where team working,
collaboration, problem solving, an ability to research, and
project manage are always highly desirable.
</p>
</div>
<div>
<p class="right-tab-para key">Our students’ work</p>
<p class="right-tab-para">
Explore our online showreel – celebrating the very best
Norwich University of the Arts graduate work. Scroll each
reel to explore at
<span class="nuag">nuagradshowcase.com</span>
</p>
</div>
<!-- key stats -->
<div class="key-stats">
<div class="course-top">
<div class="course-header key-header">
<p class="key-stats-header">Key stats</p>
<div class="res-flex">
<p class="two">Art and design</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="21"
viewBox="0 0 20 21"
fill="none"
>
<path
d="M15 8.5L10 13.5L5 8.5"
stroke="#3460DC"
stroke-width="1.67"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
<div class="data-content">
<p class="data">
DATA SOURCE:
<span class="data-span">UNISTATS / UCAS / HESA</span>
</p>
</div>
</div>
<!-- content -->
<div class="graphs">
<div class="graph-1">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M19.25 11.125C18.3525 11.125 17.625 10.3975 17.625 9.5C17.625 8.60254 18.3525 7.875 19.25 7.875H27.375C28.2725 7.875 29 8.60254 29 9.5V17.625C29 18.5225 28.2725 19.25 27.375 19.25C26.4775 19.25 25.75 18.5225 25.75 17.625V13.4231L18.774 20.399C18.1394 21.0337 17.1106 21.0337 16.476 20.399L12.75 16.6731L5.77405 23.6491C5.13945 24.2837 4.11055 24.2837 3.47595 23.6491C2.84135 23.0144 2.84135 21.9856 3.47595 21.351L11.601 13.226C12.2356 12.5914 13.2644 12.5914 13.899 13.226L17.625 16.9519L23.4519 11.125H19.25Z"
fill="#10B981"
/>
</svg>
<div class="res-grid">
<div class="graph__1">
<p class="ranking">WUSCA ranking</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10 5C10 7.76142 7.76142 10 5 10C2.23858 10 0 7.76142 0 5C0 2.23858 2.23858 0 5 0C7.76142 0 10 2.23858 10 5ZM5.00001 3.125C4.76946 3.125 4.56725 3.24951 4.45824 3.43795C4.2854 3.73674 3.90307 3.83884 3.60428 3.666C3.30549 3.49316 3.20339 3.11083 3.37623 2.81205C3.69949 2.25324 4.30521 1.875 5.00001 1.875C6.03554 1.875 6.87501 2.71447 6.87501 3.75C6.87501 4.56639 6.35325 5.26091 5.62501 5.51831V5.625C5.62501 5.97018 5.34519 6.25 5.00001 6.25C4.65483 6.25 4.37501 5.97018 4.37501 5.625V5C4.37501 4.65482 4.65483 4.375 5.00001 4.375C5.34519 4.375 5.62501 4.09518 5.62501 3.75C5.62501 3.40482 5.34519 3.125 5.00001 3.125ZM5 8.125C5.34518 8.125 5.625 7.84518 5.625 7.5C5.625 7.15482 5.34518 6.875 5 6.875C4.65482 6.875 4.375 7.15482 4.375 7.5C4.375 7.84518 4.65482 8.125 5 8.125Z"
fill="#64748B"
/>
</svg>
</div>
<p class="ranking ranks">56/81</p>
</div>
</div>
<div class="graph-1">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M19.25 11.125C18.3525 11.125 17.625 10.3975 17.625 9.5C17.625 8.60254 18.3525 7.875 19.25 7.875H27.375C28.2725 7.875 29 8.60254 29 9.5V17.625C29 18.5225 28.2725 19.25 27.375 19.25C26.4775 19.25 25.75 18.5225 25.75 17.625V13.4231L18.774 20.399C18.1394 21.0337 17.1106 21.0337 16.476 20.399L12.75 16.6731L5.77405 23.6491C5.13945 24.2837 4.11055 24.2837 3.47595 23.6491C2.84135 23.0144 2.84135 21.9856 3.47595 21.351L11.601 13.226C12.2356 12.5914 13.2644 12.5914 13.899 13.226L17.625 16.9519L23.4519 11.125H19.25Z"
fill="#10B981"
/>
</svg>
<div class="res-grid">
<div class="graph__1">
<p class="ranking">WCUG subject ranking</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10 5C10 7.76142 7.76142 10 5 10C2.23858 10 0 7.76142 0 5C0 2.23858 2.23858 0 5 0C7.76142 0 10 2.23858 10 5ZM5.00001 3.125C4.76946 3.125 4.56725 3.24951 4.45824 3.43795C4.2854 3.73674 3.90307 3.83884 3.60428 3.666C3.30549 3.49316 3.20339 3.11083 3.37623 2.81205C3.69949 2.25324 4.30521 1.875 5.00001 1.875C6.03554 1.875 6.87501 2.71447 6.87501 3.75C6.87501 4.56639 6.35325 5.26091 5.62501 5.51831V5.625C5.62501 5.97018 5.34519 6.25 5.00001 6.25C4.65483 6.25 4.37501 5.97018 4.37501 5.625V5C4.37501 4.65482 4.65483 4.375 5.00001 4.375C5.34519 4.375 5.62501 4.09518 5.62501 3.75C5.62501 3.40482 5.34519 3.125 5.00001 3.125ZM5 8.125C5.34518 8.125 5.625 7.84518 5.625 7.5C5.625 7.15482 5.34518 6.875 5 6.875C4.65482 6.875 4.375 7.15482 4.375 7.5C4.375 7.84518 4.65482 8.125 5 8.125Z"
fill="#64748B"
/>
</svg>
</div>
<p class="ranking ranks">56th</p>
</div>
</div>
<div class="graph-1">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
>
<path
d="M3 17.625C3 16.7275 3.72754 16 4.625 16H7.875C8.77246 16 9.5 16.7275 9.5 17.625V25.75C9.5 26.6475 8.77246 27.375 7.875 27.375H4.625C3.72754 27.375 3 26.6475 3 25.75V17.625Z"
fill="#10B981"
/>
<path
d="M12.75 11.125C12.75 10.2275 13.4775 9.5 14.375 9.5H17.625C18.5225 9.5 19.25 10.2275 19.25 11.125V25.75C19.25 26.6475 18.5225 27.375 17.625 27.375H14.375C13.4775 27.375 12.75 26.6475 12.75 25.75V11.125Z"
fill="#10B981"
/>
<path
d="M22.5 6.25C22.5 5.35254 23.2275 4.625 24.125 4.625H27.375C28.2725 4.625 29 5.35254 29 6.25V25.75C29 26.6475 28.2725 27.375 27.375 27.375H24.125C23.2275 27.375 22.5 26.6475 22.5 25.75V6.25Z"
fill="#10B981"
/>
</svg>
<div class="res-grid">
<div class="graph__1">
<p class="ranking">CUG ranking</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10 5C10 7.76142 7.76142 10 5 10C2.23858 10 0 7.76142 0 5C0 2.23858 2.23858 0 5 0C7.76142 0 10 2.23858 10 5ZM5.00001 3.125C4.76946 3.125 4.56725 3.24951 4.45824 3.43795C4.2854 3.73674 3.90307 3.83884 3.60428 3.666C3.30549 3.49316 3.20339 3.11083 3.37623 2.81205C3.69949 2.25324 4.30521 1.875 5.00001 1.875C6.03554 1.875 6.87501 2.71447 6.87501 3.75C6.87501 4.56639 6.35325 5.26091 5.62501 5.51831V5.625C5.62501 5.97018 5.34519 6.25 5.00001 6.25C4.65483 6.25 4.37501 5.97018 4.37501 5.625V5C4.37501 4.65482 4.65483 4.375 5.00001 4.375C5.34519 4.375 5.62501 4.09518 5.62501 3.75C5.62501 3.40482 5.34519 3.125 5.00001 3.125ZM5 8.125C5.34518 8.125 5.625 7.84518 5.625 7.5C5.625 7.15482 5.34518 6.875 5 6.875C4.65482 6.875 4.375 7.15482 4.375 7.5C4.375 7.84518 4.65482 8.125 5 8.125Z"
fill="#64748B"
/>
</svg>
</div>
<p class="ranking ranks">56th</p>
</div>
</div>
</div>
<p class="animation">Animation</p>
<!-- 2--grid -->
<div class="animation-grid">
<div class="animation-grid-1">
<div class="animation-header">
<div class="drop-header">
<p class="drop-out">Drop-out rate</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10 5C10 7.76142 7.76142 10 5 10C2.23858 10 0 7.76142 0 5C0 2.23858 2.23858 0 5 0C7.76142 0 10 2.23858 10 5ZM5.00001 3.125C4.76946 3.125 4.56725 3.24951 4.45824 3.43795C4.2854 3.73674 3.90307 3.83884 3.60428 3.666C3.30549 3.49316 3.20339 3.11083 3.37623 2.81205C3.69949 2.25324 4.30521 1.875 5.00001 1.875C6.03554 1.875 6.87501 2.71447 6.87501 3.75C6.87501 4.56639 6.35325 5.26091 5.62501 5.51831V5.625C5.62501 5.97018 5.34519 6.25 5.00001 6.25C4.65483 6.25 4.37501 5.97018 4.37501 5.625V5C4.37501 4.65482 4.65483 4.375 5.00001 4.375C5.34519 4.375 5.62501 4.09518 5.62501 3.75C5.62501 3.40482 5.34519 3.125 5.00001 3.125ZM5 8.125C5.34518 8.125 5.625 7.84518 5.625 7.5C5.625 7.15482 5.34518 6.875 5 6.875C4.65482 6.875 4.375 7.15482 4.375 7.5C4.375 7.84518 4.65482 8.125 5 8.125Z"
fill="#64748B"
/>
</svg>
</div>
<p class="drop-out res-hide">89%</p>
</div>
<div class="slider">
<svg
class="grey-line-svg"
xmlns="http://www.w3.org/2000/svg"
width="320"
height="6"
viewBox="0 0 320 6"
fill="none"
>
<path
d="M3 3H317"
stroke="#CBD5E1"
stroke-width="6"
stroke-linecap="round"
/>
</svg>
<div class="green-line-div">
<svg
class="green-line-svg"
xmlns="http://www.w3.org/2000/svg"
width="300"
height="6"
viewBox="0 0 300 6"
fill="none"
>
<path
d="M3 3H297"
stroke="#10B981"
stroke-width="6"
stroke-linecap="round"
/>
</svg>
</div>
</div>
</div>
<div class="animation-grid-1">
<div class="animation-header">
<div class="drop-header">
<p class="drop-out">Employment rate</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10 5C10 7.76142 7.76142 10 5 10C2.23858 10 0 7.76142 0 5C0 2.23858 2.23858 0 5 0C7.76142 0 10 2.23858 10 5ZM5.00001 3.125C4.76946 3.125 4.56725 3.24951 4.45824 3.43795C4.2854 3.73674 3.90307 3.83884 3.60428 3.666C3.30549 3.49316 3.20339 3.11083 3.37623 2.81205C3.69949 2.25324 4.30521 1.875 5.00001 1.875C6.03554 1.875 6.87501 2.71447 6.87501 3.75C6.87501 4.56639 6.35325 5.26091 5.62501 5.51831V5.625C5.62501 5.97018 5.34519 6.25 5.00001 6.25C4.65483 6.25 4.37501 5.97018 4.37501 5.625V5C4.37501 4.65482 4.65483 4.375 5.00001 4.375C5.34519 4.375 5.62501 4.09518 5.62501 3.75C5.62501 3.40482 5.34519 3.125 5.00001 3.125ZM5 8.125C5.34518 8.125 5.625 7.84518 5.625 7.5C5.625 7.15482 5.34518 6.875 5 6.875C4.65482 6.875 4.375 7.15482 4.375 7.5C4.375 7.84518 4.65482 8.125 5 8.125Z"
fill="#64748B"
/>
</svg>
</div>
<p class="drop-out res-hide">89%</p>
</div>
<div class="slider">
<svg
class="grey-line-svg"
xmlns="http://www.w3.org/2000/svg"
width="320"
height="6"
viewBox="0 0 320 6"
fill="none"
>
<path
d="M3 3H317"
stroke="#CBD5E1"
stroke-width="6"
stroke-linecap="round"
/>
</svg>
<div class="green-line-div">
<svg
class="green-line-svg"
xmlns="http://www.w3.org/2000/svg"
width="300"
height="6"
viewBox="0 0 300 6"
fill="none"
>
<path
d="M3 3H297"
stroke="#10B981"
stroke-width="6"
stroke-linecap="round"
/>
</svg>
</div>
</div>
</div>
</div>
<div class="average-salary">
<p class="average">Average Salary</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10 5C10 7.76142 7.76142 10 5 10C2.23858 10 0 7.76142 0 5C0 2.23858 2.23858 0 5 0C7.76142 0 10 2.23858 10 5ZM5.00001 3.125C4.76946 3.125 4.56725 3.24951 4.45824 3.43795C4.2854 3.73674 3.90307 3.83884 3.60428 3.666C3.30549 3.49316 3.20339 3.11083 3.37623 2.81205C3.69949 2.25324 4.30521 1.875 5.00001 1.875C6.03554 1.875 6.87501 2.71447 6.87501 3.75C6.87501 4.56639 6.35325 5.26091 5.62501 5.51831V5.625C5.62501 5.97018 5.34519 6.25 5.00001 6.25C4.65483 6.25 4.37501 5.97018 4.37501 5.625V5C4.37501 4.65482 4.65483 4.375 5.00001 4.375C5.34519 4.375 5.62501 4.09518 5.62501 3.75C5.62501 3.40482 5.34519 3.125 5.00001 3.125ZM5 8.125C5.34518 8.125 5.625 7.84518 5.625 7.5C5.625 7.15482 5.34518 6.875 5 6.875C4.65482 6.875 4.375 7.15482 4.375 7.5C4.375 7.84518 4.65482 8.125 5 8.125Z"
fill="#64748B"
/>
</svg>
</div>
<!-- politics -->
<div class="politics">
<div class="politics-grid">
<div class="politics-grid-1">
<div class="pol-grid">
<p class="average-content">
Politics salary within univ
</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10 5C10 7.76142 7.76142 10 5 10C2.23858 10 0 7.76142 0 5C0 2.23858 2.23858 0 5 0C7.76142 0 10 2.23858 10 5ZM5.00001 3.125C4.76946 3.125 4.56725 3.24951 4.45824 3.43795C4.2854 3.73674 3.90307 3.83884 3.60428 3.666C3.30549 3.49316 3.20339 3.11083 3.37623 2.81205C3.69949 2.25324 4.30521 1.875 5.00001 1.875C6.03554 1.875 6.87501 2.71447 6.87501 3.75C6.87501 4.56639 6.35325 5.26091 5.62501 5.51831V5.625C5.62501 5.97018 5.34519 6.25 5.00001 6.25C4.65483 6.25 4.37501 5.97018 4.37501 5.625V5C4.37501 4.65482 4.65483 4.375 5.00001 4.375C5.34519 4.375 5.62501 4.09518 5.62501 3.75C5.62501 3.40482 5.34519 3.125 5.00001 3.125ZM5 8.125C5.34518 8.125 5.625 7.84518 5.625 7.5C5.625 7.15482 5.34518 6.875 5 6.875C4.65482 6.875 4.375 7.15482 4.375 7.5C4.375 7.84518 4.65482 8.125 5 8.125Z"
fill="#64748B"
/>
</svg>
</div>
<p class="euro">£22,000</p>
</div>
<div class="politics-grid-1">
<div class="pol-grid">
<p class="average-content">
Politics salary within univ
</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10 5C10 7.76142 7.76142 10 5 10C2.23858 10 0 7.76142 0 5C0 2.23858 2.23858 0 5 0C7.76142 0 10 2.23858 10 5ZM5.00001 3.125C4.76946 3.125 4.56725 3.24951 4.45824 3.43795C4.2854 3.73674 3.90307 3.83884 3.60428 3.666C3.30549 3.49316 3.20339 3.11083 3.37623 2.81205C3.69949 2.25324 4.30521 1.875 5.00001 1.875C6.03554 1.875 6.87501 2.71447 6.87501 3.75C6.87501 4.56639 6.35325 5.26091 5.62501 5.51831V5.625C5.62501 5.97018 5.34519 6.25 5.00001 6.25C4.65483 6.25 4.37501 5.97018 4.37501 5.625V5C4.37501 4.65482 4.65483 4.375 5.00001 4.375C5.34519 4.375 5.62501 4.09518 5.62501 3.75C5.62501 3.40482 5.34519 3.125 5.00001 3.125ZM5 8.125C5.34518 8.125 5.625 7.84518 5.625 7.5C5.625 7.15482 5.34518 6.875 5 6.875C4.65482 6.875 4.375 7.15482 4.375 7.5C4.375 7.84518 4.65482 8.125 5 8.125Z"
fill="#64748B"
/>
</svg>
</div>
<p class="euro">£22,000</p>
</div>
</div>
</div>
</div>
<p class="std">What students say</p>
<!-- two divs common -->
<div class="cards">
<!-- each card -->
<div class="card-1">
<!-- header div -->
<div class="card-header">
<!-- div for image logo -->
<div class="card-logo">
<p class="cb">CB</p>
</div>
<!-- div class for logo-right -->
<div class="card-logo-right">
<p>Christian Baranowicz</p>
<!-- div for star and dates -->
<div class="card-review">
<!-- div for rating stars -->
<div class="card-stars">
<img src="img/div.rating-stars.png" alt="stars" />
</div>
<p class="card-date">Date reviewed: 01/01/2020</p>
</div>
</div>
</div>
<!-- for card-content -->
<div class="card-content">
<p>
There's a lot of building work both at the uni and in my
accommodation which is a bit distracting. Overall though
it has been a great experience and I'm really happy with
my choice. <span class="read">Read more</span>
</p>
</div>
</div>
<!-- 2nd card -->
<div class="card-1">
<!-- header div -->
<div class="card-header">
<!-- div for image logo -->
<div class="card-logo">
<p class="cb">CB</p>
</div>
<!-- div class for logo-right -->
<div class="card-logo-right">
<p>Christian Baranowicz</p>
<!-- div for star and dates -->
<div class="card-review">
<!-- div for rating stars -->
<div class="card-stars">
<img src="img/div.rating-stars.png" alt="stars" />
</div>
<p class="card-date">Date reviewed: 01/01/2020</p>
</div>
</div>
</div>
<!-- for card-content -->
<div class="card-content">
<p>
There's a lot of building work both at the uni and in my
accommodation which is a bit distracting. Overall though
it has been a great experience and I'm really happy with
my choice. <span class="read">Read more</span>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- modules -->
<section class="modules-section click hidden show" id="modules-id">
<div class="container">
<div class="main_2">
<div class="tabs">
<div class="leftt-tab">
<p class="course-info">Modules</p>
<div class="tab-line"></div>
</div>
<div class="main-right width">
<div class="right-tab-2">
<!-- div for header -->
<div class="module-header">
<p class="year modules-year year-1">Modules (Year 1)</p>
<svg
xmlns="http://www.w3.org/2000/svg"
class="expand-svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
>
<path
class="plus"
d="M12 6V18M18 12L6 12"
stroke="#3460DC"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
class="decrease-svg hidden"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
>
<path
d="M15 10H5"
stroke="#3460DC"
stroke-width="1.67"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
<!-- first + content -->
<div class="content-one">
<!-- content-1)i) -->
<div class="content-sub-one">
<!--explore and exp-->
<div class="explore">
<svg
xmlns="http://www.w3.org/2000/svg"
class="expand-svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
>
<path
class="plus"
d="M12 6V18M18 12L6 12"
stroke="#3460DC"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
class="decrease-svg hidden"
width="24"
height="24"
viewBox="0 0 20 20"
fill="none"
>
<path
d="M15 10H5"
stroke="#3460DC"
stroke-width="1.67"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p class="explore-para">
Explore and Experiment (80 credits)
</p>
</div>
<!-- content for 1st sub -->
<div class="sub-one-content">
<p class="sub-one-content-para">
In this unit you will explore and experiment with
techniques, materials and media. You will learn how
iterative processes allow you to develop and refine your
work. There will be a focus on awareness of sustainable
and responsible ways of thinking and working which will
become embedded in your practice as you progress through
the course. Developing your understanding of the key
concepts and challenges that exist for your subject and
how they may be addressed is an essential aspect of the
unit. You will be introduced to past and present
influences on society and be encouraged to map them
against the movements, styles, genres and theories
associated with your creative discipline
</p>
</div>
</div>
<div class="content-sub-one">
<!--explore and exp-->
<div class="explore">
<svg
xmlns="http://www.w3.org/2000/svg"
class="expand-svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
>
<path
class="plus"
d="M12 6V18M18 12L6 12"
stroke="#3460DC"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
class="decrease-svg hidden"
width="24"
height="24"
viewBox="0 0 20 20"
fill="none"