@uob-web-and-digital/component-library 0.0.11 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ import { ReactElement } from 'react';
2
+ import { ImageProps } from '../Image/Image';
3
+ import { ThemeProps } from '../../themeProps';
4
+ import './cardMenu.scss';
5
+ export interface CardMenuProps {
6
+ theme: ThemeProps;
7
+ inverse?: boolean;
8
+ image: ImageProps;
9
+ tag: string;
10
+ title: string;
11
+ description?: string;
12
+ href: string;
13
+ linkText?: string;
14
+ type: 'primary' | 'secondary';
15
+ }
16
+ /**
17
+ * Primary UI component for user interaction
18
+ */
19
+ export default function CardMenu({ theme, inverse, image, tag, title, href, linkText, description, type }: CardMenuProps): ReactElement;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import CardMenu from './CardMenu';
3
+ declare const meta: {
4
+ title: string;
5
+ component: typeof CardMenu;
6
+ tags: string[];
7
+ parameters: {
8
+ layout: string;
9
+ };
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof CardMenu>;
13
+ export declare const Primary: Story;
14
+ export declare const Secondary: Story;
@@ -15,6 +15,7 @@ export interface FormSelectProps {
15
15
  ariaControls?: string;
16
16
  autoFocus?: boolean;
17
17
  selectOptions: SelectOptionsProps[];
18
+ defaultValue: string;
18
19
  hiddenLabel?: boolean;
19
20
  }
20
- export declare const FormSelect: ({ theme, inverse, fieldName, selectOptions, hiddenLabel, title, onChange }: FormSelectProps) => ReactElement;
21
+ export declare const FormSelect: ({ theme, inverse, fieldName, selectOptions, defaultValue, hiddenLabel, title, onChange }: FormSelectProps) => ReactElement;
@@ -3,7 +3,7 @@ import type { StoryObj } from '@storybook/react';
3
3
  import { FormSelect } from './FormSelect';
4
4
  declare const meta: {
5
5
  title: string;
6
- component: ({ theme, inverse, fieldName, selectOptions, hiddenLabel, title, onChange }: import("./FormSelect").FormSelectProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
6
+ component: ({ theme, inverse, fieldName, selectOptions, defaultValue, hiddenLabel, title, onChange }: import("./FormSelect").FormSelectProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
7
7
  tags: string[];
8
8
  };
9
9
  export default meta;
@@ -2,6 +2,7 @@ import { ReactElement } from 'react';
2
2
  import { ThemeProps } from '../../themeProps';
3
3
  import { HeaderLink } from './types';
4
4
  import { SearchMenuProps } from './components/SearchMenu';
5
+ import { CardMenuProps } from '../CardMenu/CardMenu';
5
6
  import './header.scss';
6
7
  export interface HeaderProps {
7
8
  /**
@@ -16,10 +17,11 @@ export interface HeaderProps {
16
17
  * Small nav links on the main menu
17
18
  */
18
19
  secondaryLinks: HeaderLink[];
20
+ menuCards: [CardMenuProps, CardMenuProps, CardMenuProps];
19
21
  homepageUrl: string;
20
22
  dubaiUrl: string;
21
23
  ukUrl: string;
22
24
  activeCampus?: 'uk' | 'dubai';
23
25
  searchProps: SearchMenuProps;
24
26
  }
25
- export declare const Header: ({ theme, primaryLinks, secondaryLinks, homepageUrl, dubaiUrl, ukUrl, activeCampus, searchProps }: HeaderProps) => ReactElement;
27
+ export declare const Header: ({ theme, primaryLinks, secondaryLinks, menuCards, homepageUrl, dubaiUrl, ukUrl, activeCampus, searchProps }: HeaderProps) => ReactElement;
@@ -3,7 +3,7 @@ import type { StoryObj } from '@storybook/react';
3
3
  import { Header } from './Header';
4
4
  declare const meta: {
5
5
  title: string;
6
- component: ({ theme, primaryLinks, secondaryLinks, homepageUrl, dubaiUrl, ukUrl, activeCampus, searchProps }: import("./Header").HeaderProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
6
+ component: ({ theme, primaryLinks, secondaryLinks, menuCards, homepageUrl, dubaiUrl, ukUrl, activeCampus, searchProps }: import("./Header").HeaderProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
7
7
  tags: string[];
8
8
  };
9
9
  export default meta;
@@ -1,10 +1,12 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { HeaderLink } from '../types';
3
3
  import { ThemeProps } from '../../../themeProps';
4
+ import { CardMenuProps } from '../../CardMenu/CardMenu';
4
5
  export interface MainMenuProps {
5
6
  primaryLinks: HeaderLink[];
6
7
  secondaryLinks: HeaderLink[];
8
+ menuCards: CardMenuProps[];
7
9
  onClickNavLink: (idx: number) => void;
8
10
  theme: ThemeProps;
9
11
  }
10
- export declare const MainMenu: ({ primaryLinks, secondaryLinks, onClickNavLink, theme }: MainMenuProps) => ReactElement;
12
+ export declare const MainMenu: ({ primaryLinks, secondaryLinks, onClickNavLink, menuCards, theme }: MainMenuProps) => ReactElement;
@@ -39,6 +39,10 @@ export interface SearchCoursesProps {
39
39
  * Available options in the select filter
40
40
  */
41
41
  filterOptions: SelectOptionsProps[];
42
+ /**
43
+ * Default value for filter
44
+ */
45
+ defaultFilter?: string;
42
46
  /**
43
47
  * Results url
44
48
  */
@@ -47,4 +51,4 @@ export interface SearchCoursesProps {
47
51
  /**
48
52
  * Search component
49
53
  */
50
- export default function SearchCourses({ theme, inverse, title, defaultSearchTerm, placeholder, filterTitle, filterFieldName, filterOptions, resultsUrl }: SearchCoursesProps): ReactElement;
54
+ export default function SearchCourses({ theme, inverse, title, defaultSearchTerm, placeholder, filterTitle, filterFieldName, filterOptions, defaultFilter, resultsUrl }: SearchCoursesProps): ReactElement;
@@ -14,3 +14,4 @@ export default meta;
14
14
  type Story = StoryObj<typeof SearchCourses>;
15
15
  export declare const Dark: Story;
16
16
  export declare const Light: Story;
17
+ export declare const WithDefaultValues: Story;
@@ -1,2 +1,3 @@
1
1
  import { SearchCoursesProps } from './SearchCourses';
2
2
  export declare const searchCourseProps: SearchCoursesProps;
3
+ export declare const searchCourseWithDefaultProps: SearchCoursesProps;
package/dist/index.d.ts CHANGED
@@ -165,6 +165,18 @@ interface SearchMenuProps {
165
165
  backLinkLabel?: string;
166
166
  }
167
167
 
168
+ interface CardMenuProps {
169
+ theme: ThemeProps;
170
+ inverse?: boolean;
171
+ image: ImageProps;
172
+ tag: string;
173
+ title: string;
174
+ description?: string;
175
+ href: string;
176
+ linkText?: string;
177
+ type: 'primary' | 'secondary';
178
+ }
179
+
168
180
  interface HeaderProps {
169
181
  /**
170
182
  * The theme to use
@@ -178,13 +190,14 @@ interface HeaderProps {
178
190
  * Small nav links on the main menu
179
191
  */
180
192
  secondaryLinks: HeaderLink[];
193
+ menuCards: [CardMenuProps, CardMenuProps, CardMenuProps];
181
194
  homepageUrl: string;
182
195
  dubaiUrl: string;
183
196
  ukUrl: string;
184
197
  activeCampus?: 'uk' | 'dubai';
185
198
  searchProps: SearchMenuProps;
186
199
  }
187
- declare const Header: ({ theme, primaryLinks, secondaryLinks, homepageUrl, dubaiUrl, ukUrl, activeCampus, searchProps }: HeaderProps) => ReactElement;
200
+ declare const Header: ({ theme, primaryLinks, secondaryLinks, menuCards, homepageUrl, dubaiUrl, ukUrl, activeCampus, searchProps }: HeaderProps) => ReactElement;
188
201
 
189
202
  interface HeroCarouselCard {
190
203
  category: string;
@@ -254,6 +267,10 @@ interface SearchCoursesProps {
254
267
  * Available options in the select filter
255
268
  */
256
269
  filterOptions: SelectOptionsProps[];
270
+ /**
271
+ * Default value for filter
272
+ */
273
+ defaultFilter?: string;
257
274
  /**
258
275
  * Results url
259
276
  */
@@ -262,7 +279,7 @@ interface SearchCoursesProps {
262
279
  /**
263
280
  * Search component
264
281
  */
265
- declare function SearchCourses({ theme, inverse, title, defaultSearchTerm, placeholder, filterTitle, filterFieldName, filterOptions, resultsUrl }: SearchCoursesProps): ReactElement;
282
+ declare function SearchCourses({ theme, inverse, title, defaultSearchTerm, placeholder, filterTitle, filterFieldName, filterOptions, defaultFilter, resultsUrl }: SearchCoursesProps): ReactElement;
266
283
 
267
284
  interface SignPostProps {
268
285
  /**
package/dist/main.css CHANGED
@@ -1 +1 @@
1
- @import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';.carousel{position:relative;margin-top:1.5rem;margin-bottom:1.5rem}.carousel ul{margin-bottom:0;margin-left:0}.carousel p{margin-bottom:0}@media screen and (min-width: 768px){.carousel{margin-top:2.25rem;margin-bottom:2.25rem}}@media screen and (min-width: 1248px){.carousel{margin-top:4.5rem}}.carousel.theme-uobmain{background:#fff;color:#000}.carousel.theme-uobmain .carousel__card--explore-more{display:flex;align-items:center;justify-content:center;padding:1rem;background:#000;color:#fff;font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem}@media screen and (min-width: 768px){.carousel.theme-uobmain .carousel__card--explore-more{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.carousel.theme-uobmain .carousel__card--explore-more{font-size:2.25rem;line-height:2.7rem}}@media screen and (min-width: 768px){.carousel.theme-uobmain .carousel__card--explore-more{padding:1.5rem}}@media screen and (min-width: 1248px){.carousel.theme-uobmain .carousel__card--explore-more{min-height:25rem;padding:1.5rem}}.carousel.theme-uobmain .carousel__card--explore-more a{padding-bottom:0.0625rem;border-bottom:2px solid #fff;background:#000;color:#fff;text-decoration:none;transition:all .2s ease-in}.carousel.theme-uobmain .carousel__card--explore-more a:hover{background:#58595b}.carousel.theme-uobmain .carousel__card--explore-more a:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.carousel.theme-redexample{background:blue;color:#fff}.carousel.theme-redexample .carousel__card--explore-more{display:flex;align-items:center;justify-content:center;padding:1rem;background:red;color:#fff;font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem}@media screen and (min-width: 768px){.carousel.theme-redexample .carousel__card--explore-more{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.carousel.theme-redexample .carousel__card--explore-more{font-size:2.25rem;line-height:2.7rem}}@media screen and (min-width: 768px){.carousel.theme-redexample .carousel__card--explore-more{padding:1.5rem}}@media screen and (min-width: 1248px){.carousel.theme-redexample .carousel__card--explore-more{min-height:25rem;padding:1.5rem}}.carousel.theme-redexample .carousel__card--explore-more a{padding-bottom:0.0625rem;border-bottom:2px solid #fff;background:red;color:#fff;text-decoration:none;transition:all .2s ease-in}.carousel.theme-redexample .carousel__card--explore-more a:hover{background:#fff}.carousel.theme-redexample .carousel__card--explore-more a:focus-visible{border-bottom:2px solid #fff;background:#dcc266;color:#000}.carousel__top{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;align-items:center;justify-content:space-between}@media screen and (min-width: 768px){.carousel__top{padding:0 3rem}}@media screen and (min-width: 1248px){.carousel__top{padding:0}}.carousel__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.carousel__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.carousel__title{font-size:3.75rem;line-height:3.75rem}}@media screen and (min-width: 768px){.carousel__title{margin-bottom:2.25rem}}@media screen and (min-width: 1248px){.carousel__title{margin-bottom:3rem}}.carousel__embla{max-width:1152px;padding:0 1.5rem;margin:0 auto;overflow:hidden;padding-bottom:1.5rem}@media screen and (min-width: 768px){.carousel__embla{padding:0 3rem}}@media screen and (min-width: 1248px){.carousel__embla{padding:0}}@media screen and (min-width: 768px){.carousel__embla{padding-bottom:2.25rem}}@media screen and (min-width: 1248px){.carousel__embla{overflow:visible;padding-bottom:4.5rem}}.carousel__list{display:flex;padding-bottom:0.625rem}@media screen and (min-width: 768px){.carousel__list{max-width:1272px;flex-flow:row nowrap;margin:0 auto}.carousel__list>li{margin-top:0}}@media screen and (min-width: 1248px){.carousel__list{flex-wrap:wrap;align-items:flex-start;justify-content:space-between}.carousel__list>li{position:relative;flex-basis:calc(50% - 0.75rem);margin-right:0;margin-bottom:1rem;margin-left:0}.carousel__list>li:nth-child(2n){top:13.8125rem}}.carousel__card{flex:0 0 90%;padding-right:1.5rem;opacity:.2;transition:opacity .3s ease-in}@media screen and (min-width: 768px){.carousel__card{flex:0 0 50%}}@media screen and (min-width: 1248px){.carousel__card{padding-right:0}}.carousel__card:last-child{padding-right:0}.carousel__card--in-view{opacity:1}@media screen and (min-width: 1248px){.carousel__card{opacity:1}}.featured-content{padding-bottom:1.5rem}@media screen and (min-width: 768px){.featured-content{overflow:hidden}}.featured-content.theme-uobmain{color:#000}.featured-content.theme-uobmain .featured-content__image-background{background-color:#000}.featured-content.theme-redexample{color:#fff}.featured-content.theme-redexample .featured-content__image-background{background-color:red}.featured-content__top{margin-bottom:2.25rem}@media screen and (min-width: 768px){.featured-content__top{display:flex;margin:0}}@media screen and (min-width: 768px){.featured-content__content{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr);flex:0 0 100%}}@media screen and (min-width: 768px){.featured-content__cards{position:relative;display:block;grid-column:1/span 12}}@media screen and (min-width: 768px){.featured-content__active-card{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding:0;margin-top:2.25rem;margin-bottom:3rem}}@media screen and (min-width: 768px)and (min-width: 768px){.featured-content__active-card{padding:0 3rem}}@media screen and (min-width: 768px)and (min-width: 1248px){.featured-content__active-card{padding:0}}@media screen and (min-width: 1248px){.featured-content__active-card{margin-bottom:3.75rem}}.featured-content__invisible-card{display:none}@media screen and (min-width: 768px){.featured-content__invisible-card{display:flex;flex:0 0 100%;visibility:hidden;max-width:1152px;padding:0 1.5rem;margin:0 auto;display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr)}}@media screen and (min-width: 768px)and (min-width: 768px){.featured-content__invisible-card{padding:0 3rem}}@media screen and (min-width: 768px)and (min-width: 1248px){.featured-content__invisible-card{padding:0}}@media screen and (min-width: 768px){.featured-content__invisible-card section{margin-top:2.25rem;margin-bottom:3rem;grid-column:1/span 12}}@media screen and (min-width: 1248px){.featured-content__invisible-card section{margin-bottom:3.75rem}}.featured-content__nav{display:none}@media screen and (min-width: 768px){.featured-content__nav{display:block}}.featured-signpost{overflow:hidden}@media screen and (min-width: 768px){.featured-signpost{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr)}}.featured-signpost p{margin-bottom:0}.featured-signpost.theme-uobmain{background-color:#000;color:#fff}.featured-signpost.theme-uobmain .featured-signpost__image-background{background-color:#fff}.featured-signpost.theme-uobmain path{stroke:#fff}.featured-signpost.theme-uobmain--inverse{background-color:#fff;color:#000}.featured-signpost.theme-uobmain--inverse .featured-signpost__image-background{background-color:#000}.featured-signpost.theme-uobmain--inverse path{stroke:#000}.featured-signpost.theme-redexample{background-color:red;color:#fff}.featured-signpost.theme-redexample .featured-signpost__image-background{background-color:#fff}.featured-signpost.theme-redexample path{stroke:#fff}.featured-signpost.theme-redexample--inverse{background-color:blue;color:#fff}.featured-signpost.theme-redexample--inverse .featured-signpost__image-background{background-color:#fff}.featured-signpost.theme-redexample--inverse path{stroke:#fff}.featured-signpost__image-container{position:relative;width:100%;line-height:0}@media screen and (min-width: 768px){.featured-signpost__image-container{min-height:30rem}}@media screen and (min-width: 1248px){.featured-signpost__image-container{min-height:43.75rem}}@media screen and (min-width: 768px){.featured-signpost__image-container--mobile{display:none}}.featured-signpost__image-container--desktop{display:none}@media screen and (min-width: 768px){.featured-signpost__image-container--desktop{display:block}}.featured-signpost--left .featured-signpost__image-container{height:10rem}@media screen and (min-width: 768px){.featured-signpost--left .featured-signpost__image-container{height:auto;grid-column:1/span 6}}.featured-signpost--right .featured-signpost__image-container{height:16.3125rem}@media screen and (min-width: 768px){.featured-signpost--right .featured-signpost__image-container{height:auto;grid-column:7/span 6}}.featured-signpost__image{position:relative;z-index:1;width:100%;height:100%;backface-visibility:hidden;object-fit:cover;object-position:center}.featured-signpost__image-background{position:absolute;top:0;left:0;width:100%;height:100%}@media screen and (min-width: 768px){.featured-signpost--left .featured-signpost__content-wrapper{padding:6.4375rem 3rem 6.4375rem 0;grid-column:7/span 6}}@media screen and (min-width: 1248px){.featured-signpost--left .featured-signpost__content-wrapper{max-width:564px;padding:12.5rem 0;padding-right:0}}@media screen and (min-width: 768px){.featured-signpost--right .featured-signpost__content-wrapper{padding:6.4375rem 0 6.4375rem 3rem;grid-column:1/span 6}}@media screen and (min-width: 1248px){.featured-signpost--right .featured-signpost__content-wrapper{max-width:564px;padding:12.5rem 0;margin-left:auto}}.featured-signpost__content{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding-top:1.5rem;padding-bottom:1.5rem}@media screen and (min-width: 768px){.featured-signpost__content{padding:0 3rem}}@media screen and (min-width: 1248px){.featured-signpost__content{padding:0}}@media screen and (min-width: 768px){.featured-signpost__content{display:flex;flex-direction:column;justify-content:center;padding:0}}.featured-signpost__category{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.featured-signpost__category{font-size:1rem;line-height:1.4rem}}.featured-signpost__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;margin-top:1rem}@media screen and (min-width: 768px){.featured-signpost__title{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.featured-signpost__title{font-size:2.25rem;line-height:2.7rem}}.featured-signpost__description{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1rem;line-height:1.4rem;margin-top:0.5rem}@media screen and (min-width: 1248px){.featured-signpost__description{font-size:1.125rem;line-height:1.575rem}}.featured-signpost__description.lock-scroll{overflow:hidden}.featured-signpost__cta{margin-top:1rem}.featured-signpost__line{position:absolute;transform-origin:top left}.featured-signpost__line svg{display:block}.featured-video{position:relative;overflow:hidden;padding-top:calc(120px + 3rem);padding-bottom:calc(120px + 3rem)}.featured-video .parallax,.featured-video__mobile-image{position:absolute;inset:0}.featured-video.theme-uobmain{color:#fff}.featured-video.theme-uobmain .featured-video__image-wrapper::after{background:#000}.featured-video.theme-uobmain .featured-video__button-audio{color:#fff}.featured-video.theme-uobmain .featured-video__button-audio:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.featured-video.theme-uobmain .featured-video__button-audio:hover{border-bottom:2px solid #fff}.featured-video.theme-redexample{color:#fff}.featured-video.theme-redexample .featured-video__image-wrapper::after{background:red}.featured-video.theme-redexample .featured-video__button-audio{color:#fff}.featured-video.theme-redexample .featured-video__button-audio:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#fff}.featured-video.theme-redexample .featured-video__button-audio:hover{border-bottom:2px solid #fff}.featured-video__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.featured-video__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.featured-video__title{font-size:3.75rem;line-height:3.75rem}}@media screen and (min-width: 768px){.featured-video__title{width:80%}}@media screen and (min-width: 1248px){.featured-video__title{margin-bottom:2.25rem}}.featured-video__container{max-width:1152px;padding:0 1.5rem;margin:0 auto;position:relative;z-index:2}@media screen and (min-width: 768px){.featured-video__container{padding:0 3rem}}@media screen and (min-width: 1248px){.featured-video__container{padding:0}}.featured-video__image-wrapper{width:100%;height:100%;pointer-events:none}.featured-video__image-wrapper::after{position:absolute;z-index:0;width:100%;height:100%;content:"";inset:0;opacity:.7}.featured-video__button-wrapper button:nth-of-type(2){height:3rem;margin-top:1.5rem}@media screen and (min-width: 768px){.featured-video__button-wrapper{display:flex;width:80%;flex-direction:row}.featured-video__button-wrapper button:nth-of-type(2){margin-top:0;margin-left:1.5rem}}.featured-video__button-audio{display:inline-flex;align-items:center;justify-content:center;padding:0 1rem;border-bottom:2px solid rgba(0,0,0,0);transition:all .3s ease-in;font-size:1rem;line-height:1.375}@media screen and (min-width: 1248px){.featured-video__button-audio{font-size:1.125rem;line-height:1.3888888889}}.footer ul{margin-bottom:0;margin-left:0}.footer p{margin-bottom:0}.footer.theme-uobmain{background:#000;color:#fff}.footer.theme-uobmain summary:focus-visible{outline-color:#dcc266;outline-offset:0.625rem}.footer.theme-uobmain .footer__bottom-container{padding:0.75rem 0;background:#1a1a1a}.footer.theme-uobmain .footer__details{padding-bottom:1.75rem;border-bottom:1px solid #58595b;margin-bottom:1.5rem}.footer.theme-uobmain .footer__details[open]>summary .icon--chevron-down{transform:rotate(180deg)}.footer.theme-redexample{background:red;color:#fff}.footer.theme-redexample summary:focus-visible{outline-color:#dcc266;outline-offset:0.625rem}.footer.theme-redexample .footer__bottom-container{padding:0.75rem 0;background:blue}.footer.theme-redexample .footer__details{padding-bottom:1.75rem;border-bottom:1px solid #fff;margin-bottom:1.5rem}.footer.theme-redexample .footer__details[open]>summary .icon--chevron-down{transform:rotate(180deg)}.footer__bottom-wrapper{max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.footer__bottom-wrapper{padding:0 3rem}}@media screen and (min-width: 1248px){.footer__bottom-wrapper{padding:0}}@media screen and (min-width: 1248px){.footer__bottom-wrapper{display:flex;align-items:flex-end;justify-content:space-between}}.footer__container{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding-top:1.5rem;padding-bottom:1.5rem}@media screen and (min-width: 768px){.footer__container{padding:0 3rem}}@media screen and (min-width: 1248px){.footer__container{padding:0}}@media screen and (min-width: 768px){.footer__container{padding-top:3.75rem;padding-bottom:3.75rem}}@media screen and (min-width: 1248px){.footer__container{padding-top:4.5rem;padding-bottom:4.5rem}}@media screen and (min-width: 768px){.footer__column-container{display:grid;gap:1.5rem;grid-template-columns:repeat(2, 1fr)}}@media screen and (min-width: 1248px){.footer__column-container{display:grid;gap:1.5rem;grid-template-columns:repeat(3, 1fr)}}@media screen and (min-width: 1248px){.footer__column-left{flex-basis:22%}}@media screen and (min-width: 1248px){.footer__column-middle{flex-basis:30%}}.footer__logo-wrapper{width:8.75rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.footer__logo-wrapper{width:15rem}}.footer__address{margin-bottom:1.5rem}.footer__telephone{margin-bottom:1.5rem}.footer__telephone a{text-decoration:none}.footer__social-wrapper{display:grid;gap:1.5rem;grid-template-columns:repeat(4, 40px);padding:1.875rem 0}.footer__social-wrapper li{margin-right:0.375rem}@media screen and (min-width: 768px){.footer__social-wrapper li{margin-right:0.5rem}}@media screen and (min-width: 1248px){.footer__social-wrapper li{margin-right:1.125rem}}.footer__summary-links{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;display:flex;align-items:center;cursor:pointer}@media screen and (min-width: 768px){.footer__summary-links{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.footer__summary-links{font-size:2.25rem;line-height:2.7rem}}.footer__summary-links::marker,.footer__summary-links::-webkit-details-marker{display:none;content:""}.footer__summary-icon{width:2.25rem;margin-top:0.5rem;margin-left:0.625rem}.footer__summary-icon svg{width:100%;height:100%;object-fit:cover;transition:transform .3s ease-out}.footer__location{display:flex;align-items:center}.footer__location a{text-decoration:none}.footer__location-icon{width:1.5rem;margin-top:0.5rem}.footer__location-icon svg{width:100%;height:100%;object-fit:cover}.footer__arrow-link{margin-bottom:1.5rem}.footer__hygiene-link-wrapper{display:flex;flex-wrap:wrap;margin-bottom:2.5rem}@media screen and (min-width: 1248px){.footer__hygiene-link-wrapper{margin-right:1.875rem;margin-bottom:0}}.footer__hygiene-link{display:inline;padding:0.625rem 0;margin-right:0.625rem;font-size:0.75rem;line-height:1.4166666667}.footer__hygiene-link a{text-decoration:none}.footer__map{display:none}@media screen and (min-width: 1248px){.footer__map{display:block;flex-basis:40%}}.footer__copyright{font-size:0.75rem;line-height:1.4166666667}@media screen and (min-width: 1248px){.footer__copyright{flex-basis:40%;padding-bottom:0.625rem;text-align:right}}.header{z-index:10}.header ul{margin-bottom:0;margin-left:0}.header p{margin-bottom:0}.header--is-closed{position:sticky;top:0;transition:top .2s ease-out}.header.theme-uobmain .header__closed{background:#fff;color:#000}.header.theme-uobmain .header__open{background:#000;color:#fff}.header.theme-uobmain .header__logo-link:focus-visible{border:2px solid #dcc266;outline:2px solid #000}.header.theme-uobmain .header__content-wrapper{border-color:#fff}.header.theme-redexample .header__closed{background:blue;color:#fff}.header.theme-redexample .header__open{background:red;color:#fff}.header.theme-redexample .header__logo-link:focus-visible{border:2px solid #dcc266;outline:2px solid red}.header.theme-redexample .header__content-wrapper{border-color:#fff}.header__top-container{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding-top:0.75rem;padding-bottom:0.75rem}@media screen and (min-width: 768px){.header__top-container{padding:0 3rem}}@media screen and (min-width: 1248px){.header__top-container{padding:0}}@media screen and (min-width: 768px){.header__top-container{padding-top:0.75rem;padding-bottom:0.75rem}}@media screen and (min-width: 1248px){.header__top-container{padding-top:0.75rem;padding-bottom:0.75rem}}.header__logo-wrapper img{width:auto;height:2.875rem}@media screen and (min-width: 768px){.header__logo-wrapper img{height:4.3125rem}}.header__logo-link{display:block;border:2px solid rgba(0,0,0,0)}.header__menu-button{display:flex;align-items:center;margin-left:1rem;gap:0.8125rem;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.header__menu-button{font-size:1rem;line-height:1.4rem}}.header__open{position:fixed;z-index:10;padding-bottom:1.5rem;inset:0;overflow-x:auto}@media screen and (min-width: 768px){.header__open{padding-bottom:9.125rem}}.header__main-menu{max-width:1152px;padding:0 1.5rem;margin:0 auto;margin-top:1rem}@media screen and (min-width: 768px){.header__main-menu{padding:0 3rem}}@media screen and (min-width: 1248px){.header__main-menu{padding:0}}@media screen and (min-width: 768px){.header__main-menu{margin-top:3rem}}.header__main-menu-primary-list{display:flex;flex-direction:column;align-items:flex-start;gap:1rem}.header__main-menu-secondary-list{display:flex;flex-direction:column;align-items:flex-start;margin-top:1.5rem;gap:1rem}@media screen and (min-width: 1248px){.header__main-menu-secondary-list{margin-top:2.25rem}}.header__nested-menu{max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.header__nested-menu{padding:0 3rem}}@media screen and (min-width: 1248px){.header__nested-menu{padding:0}}@media screen and (min-width: 768px){.header__nested-menu{margin-top:3rem}}.header__heading-link{margin-top:2.25rem}@media screen and (min-width: 1248px){.header__heading-link{margin-top:1.5rem}}.header__content-wrapper{margin-top:1.5rem}@media screen and (min-width: 768px){.header__content-wrapper{padding-top:2.25rem;border-top:1px solid;margin-top:2.25rem;display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr)}}@media screen and (min-width: 1248px){.header__content-wrapper{padding-top:1.5rem}}.header__description{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1.125rem;line-height:1.575rem}@media screen and (min-width: 1248px){.header__description{font-size:1.5rem;line-height:1.95rem}}@media screen and (min-width: 768px){.header__description{grid-column:1/span 6}}.header__link-list{display:flex;flex-direction:column;align-items:flex-start;margin-top:2.25rem;gap:1rem}@media screen and (min-width: 768px){.header__link-list{margin-top:0;grid-column:1/span 6}}@media screen and (min-width: 768px){.header__link-list--with-desc{grid-column:7/span 6}}.header__campus-selector--mobile{margin-top:1.5rem}.header--dubai .header__logo-wrapper{position:relative;top:0.3125rem;right:0.3125rem}@media screen and (min-width: 768px){.header--dubai .header__logo-wrapper{top:0.5rem}}.header--dubai .header__logo-wrapper img{width:auto;height:2.5rem}@media screen and (min-width: 768px){.header--dubai .header__logo-wrapper img{height:4rem}}.header__search-button-mobile{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;justify-content:flex-end;margin-top:1rem;margin-bottom:1rem}@media screen and (min-width: 768px){.header__search-button-mobile{padding:0 3rem}}@media screen and (min-width: 1248px){.header__search-button-mobile{padding:0}}.header__right-wrapper{display:flex;flex-direction:column-reverse}.header__right-wrapper .header__search-button{display:none}@media screen and (min-width: 768px){.header__right-wrapper{flex-direction:row}.header__right-wrapper .header__search-button{display:block}}.header-search__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.header-search__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.header-search__title{font-size:3.75rem;line-height:3.75rem}}.header-search__intro{padding-bottom:1.5rem;font-size:1.125rem;line-height:1.3888888889}@media screen and (min-width: 1248px){.header-search__intro{font-size:1.5rem;line-height:1.2916666667}}.header-search__container{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding-bottom:1.5rem}@media screen and (min-width: 768px){.header-search__container{padding:0 3rem}}@media screen and (min-width: 1248px){.header-search__container{padding:0}}.header-search__back-link{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding-top:1rem;padding-bottom:1rem}@media screen and (min-width: 768px){.header-search__back-link{padding:0 3rem}}@media screen and (min-width: 1248px){.header-search__back-link{padding:0}}.header-search__back-link+.header-search__container{padding-top:1.5rem}@media screen and (min-width: 768px){.header-search__form{display:flex;justify-content:space-between}}.header-search__search-wrapper{display:flex;justify-content:space-between;margin-bottom:2rem}@media screen and (min-width: 768px){.header-search__search-wrapper{width:100%;margin-bottom:0}}.header-search .form-input{height:3rem;flex-grow:9;margin-right:1rem}.header-search .form-input__input{height:100%}@media screen and (min-width: 768px){.header-search .form-input{margin-right:2rem}}@media screen and (min-width: 1248px){.header-search .form-input{height:3.75rem}}.header-search .text-button{display:none;max-height:3rem}@media screen and (min-width: 768px){.header-search .text-button{display:block;flex-grow:0}}@media screen and (min-width: 1248px){.header-search .text-button{max-height:3.75rem}}@media screen and (min-width: 768px){.header-search .icon-button{display:none}}@media screen and (min-width: 768px){.header-search{margin-top:3rem}}.hero-carousel{overflow:hidden;padding-bottom:1.5rem}.hero-carousel p{margin-bottom:0}@media screen and (min-width: 768px){.hero-carousel{padding-bottom:0}}.hero-carousel.theme-uobmain{color:#000}.hero-carousel.theme-uobmain .hero-carousel__image-background{background-color:#000}.hero-carousel.theme-redexample{color:#fff}.hero-carousel.theme-redexample .hero-carousel__image-background{background-color:red}.hero-carousel__top{margin-bottom:2.25rem}@media screen and (min-width: 768px){.hero-carousel__top{display:flex;margin:0}}@media screen and (min-width: 768px){.hero-carousel__content{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr);flex:0 0 100%}}.hero-carousel__image-container{position:relative;height:9.375rem;line-height:0}@media screen and (min-width: 768px){.hero-carousel__image-container{height:100%;min-height:31.25rem;grid-column:7/span 6}}@media screen and (min-width: 1248px){.hero-carousel__image-container{min-height:43.75rem;grid-column:7/span 6}}@media screen and (min-width: 768px){.hero-carousel__image-container--mobile{display:none}}.hero-carousel__image-container--desktop{display:none}@media screen and (min-width: 768px){.hero-carousel__image-container--desktop{display:block}}.hero-carousel__image{width:100%;height:100%;object-fit:cover;object-position:center}.hero-carousel__image-background{position:absolute;z-index:-1;top:0;left:0;width:100%;height:100%}.hero-carousel__cards{display:flex;margin-top:0.75rem}@media screen and (min-width: 768px){.hero-carousel__cards{position:relative;display:block;padding-left:3rem;margin-top:2.25rem;grid-column:1/span 6}}@media screen and (min-width: 1248px){.hero-carousel__cards{position:relative;max-width:564px;padding-left:0;margin-top:9rem;margin-left:auto}}.hero-carousel__active-card{max-width:1152px;padding:0 1.5rem;margin:0 auto;flex:0 0 100%}@media screen and (min-width: 768px){.hero-carousel__active-card{padding:0 3rem}}@media screen and (min-width: 1248px){.hero-carousel__active-card{padding:0}}@media screen and (min-width: 768px){.hero-carousel__active-card{padding:0;margin-bottom:3rem}}@media screen and (min-width: 1248px){.hero-carousel__active-card{margin-bottom:10.75rem}}.hero-carousel__invisible-card{flex:0 0 100%;margin-top:0.75rem;visibility:hidden;max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.hero-carousel__invisible-card{padding:0 3rem}}@media screen and (min-width: 1248px){.hero-carousel__invisible-card{padding:0}}@media screen and (min-width: 768px){.hero-carousel__invisible-card{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr);margin-top:2.25rem}.hero-carousel__invisible-card section{margin-bottom:3rem;grid-column:1/span 6}}@media screen and (min-width: 1248px){.hero-carousel__invisible-card{position:relative;margin-top:9rem}.hero-carousel__invisible-card section{margin-bottom:10.75rem}}@media screen and (min-width: 768px){.hero-carousel__invisible-card--mobile{display:none}}.hero-carousel__category{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.hero-carousel__category{font-size:1rem;line-height:1.4rem}}.hero-carousel__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:3rem;line-height:3rem;margin-top:1rem}@media screen and (min-width: 768px){.hero-carousel__title{font-size:3.75rem;line-height:3.75rem}}@media screen and (min-width: 1248px){.hero-carousel__title{font-size:4.5rem;line-height:4.5rem}}@media screen and (min-width: 768px){.hero-carousel__title{margin-top:1.5rem}}.hero-carousel__description{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1rem;line-height:1.4rem;margin-top:0.75rem}@media screen and (min-width: 1248px){.hero-carousel__description{font-size:1.125rem;line-height:1.575rem}}.hero-carousel__description.lock-scroll{overflow:hidden}@media screen and (min-width: 768px){.hero-carousel__description{margin-top:1rem}}.hero-carousel__cta{margin-top:1rem}@media screen and (min-width: 768px){.hero-carousel__cta{margin-top:1.5rem}}@media screen and (min-width: 768px){.hero-carousel__nav{position:absolute;right:0;bottom:2.25rem;left:3rem}}@media screen and (min-width: 1248px){.hero-carousel__nav{bottom:4.5rem;left:0}}@media screen and (min-width: 768px){.hero-carousel__nav .carousel-nav{padding:0}}@media screen and (min-width: 768px){.hero-carousel__nav--mobile{display:none}}.hero-carousel__nav--desktop{display:none}@media screen and (min-width: 768px){.hero-carousel__nav--desktop{display:block}}.hero-carousel__line{position:absolute;transform-origin:bottom left}.hero-carousel__line svg{display:block}.search-course{padding:1.5rem 0}.search-course.theme-uobmain{background:#000;color:#fff}.search-course.theme-uobmain--inverse{background:#fff;color:#000}.search-course.theme-redexample{background:red;color:#fff}.search-course.theme-redexample--inverse{background:blue;color:#fff}.search-course__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1rem}@media screen and (min-width: 768px){.search-course__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.search-course__title{font-size:3.75rem;line-height:3.75rem}}.search-course__container{max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.search-course__container{padding:0 3rem}}@media screen and (min-width: 1248px){.search-course__container{padding:0}}@media screen and (min-width: 768px){.search-course__form{display:flex;justify-content:space-between}}.search-course__search-wrapper{display:flex;justify-content:space-between;margin-bottom:2rem}@media screen and (min-width: 768px){.search-course__search-wrapper{flex-basis:60%;margin-bottom:0}}.search-course .form-input{height:3rem;flex-basis:80%}.search-course .form-input__input{height:100%}@media screen and (min-width: 768px){.search-course .form-input{flex-grow:3;margin-right:2rem}}@media screen and (min-width: 1248px){.search-course .form-input{height:3.75rem}}.search-course .form-select{height:3rem}@media screen and (min-width: 768px){.search-course .form-select{flex-grow:1;margin-right:2rem}}@media screen and (min-width: 1248px){.search-course .form-select{height:3.75rem}}.search-course .text-button{display:none;max-height:3rem}@media screen and (min-width: 768px){.search-course .text-button{display:block;flex-grow:1}}@media screen and (min-width: 1248px){.search-course .text-button{max-height:3.75rem}}@media screen and (min-width: 768px){.search-course .icon-button{display:none}}@media screen and (min-width: 768px){.search-course{padding:2.75rem 0}}@media screen and (min-width: 1248px){.search-course{padding:3rem 0}}.signpost p{margin-bottom:0}.signpost.theme-uobmain{background:#000;color:#fff}.signpost.theme-uobmain,.signpost.theme-uobmain .signpost__item{border-color:#fff}.signpost.theme-uobmain--inverse{background:#fff;color:#000}.signpost.theme-uobmain--inverse,.signpost.theme-uobmain--inverse .signpost__item{border-color:#000}.signpost.theme-redexample{background:red;color:#fff}.signpost.theme-redexample,.signpost.theme-redexample .signpost__item{border-color:#fff}.signpost.theme-redexample--inverse{background:blue;color:#fff}.signpost.theme-redexample--inverse,.signpost.theme-redexample--inverse .signpost__item{border-color:#000}.signpost__item{display:flex;flex-direction:column;align-items:flex-start;padding:1.5rem 0 1.625rem;border-top:1.5px solid;gap:1.5rem}.signpost__item:first-child{border-top:0}@media screen and (min-width: 768px){.signpost__item{padding:0;border-top:0;margin:2.25rem 0;grid-column:1/span 6}.signpost__item:first-child{padding-right:3rem}.signpost__item:nth-child(2n){padding-left:3rem;border-left:1.5px solid;grid-column:7/span 6}}.signpost+.signpost .signpost__item{border-top:1.5px solid}@media screen and (min-width: 768px){.signpost+.signpost .signpost__item{border-top:0}.signpost+.signpost .signpost__grid{border-top:1.5px solid}}.signpost__container{max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.signpost__container{padding:0 3rem}}@media screen and (min-width: 1248px){.signpost__container{padding:0}}.signpost__grid{display:flex;flex-direction:column}@media screen and (min-width: 768px){.signpost__grid{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr);gap:0}}.signpost__tag{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.signpost__tag{font-size:1rem;line-height:1.4rem}}.signpost__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:bold;font-size:1.25rem;line-height:1.5rem}@media screen and (min-width: 768px){.signpost__title{font-size:1.375rem;line-height:1.65rem}}@media screen and (min-width: 768px){.signpost__title{font-size:1.875rem;line-height:2.4375rem}}.card-news{position:relative;max-width:35.25rem;border-bottom:0.125rem solid rgba(0,0,0,0)}.card-news p{margin-bottom:0}.card-news.theme-uobmain{background:#fff;color:#000}.card-news.theme-uobmain .card-news__tag{background-color:#fff}.card-news.theme-uobmain:has(:focus-visible){border-bottom-color:#000;background:#dcc266}.card-news.theme-uobmain:has(:focus-visible) .card-news__tag{background-color:#dcc266}.card-news.theme-redexample{background:blue;color:#fff}.card-news.theme-redexample .card-news__tag{background-color:blue}.card-news.theme-redexample:has(:focus-visible){border-bottom-color:#fff;background:#dcc266}.card-news.theme-redexample:has(:focus-visible) .card-news__tag{background-color:#dcc266}.card-news__image-wrapper{position:relative;overflow:hidden;height:11.5rem;margin-bottom:0.5rem}.card-news__image-wrapper img{height:100%;object-fit:cover;transition:transform .3s ease}@media screen and (min-width: 768px){.card-news__image-wrapper{height:17.5rem}}@media screen and (min-width: 1248px){.card-news__image-wrapper{height:24.5rem}}.card-news__tag{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:normal;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.card-news__tag{font-size:1rem;line-height:1.4rem}}.card-news__tag--desktop{display:none}@media screen and (min-width: 768px){.card-news__tag{position:absolute;z-index:1;bottom:0;left:0;padding:0.5rem 0.5rem 0.5rem 0}.card-news__tag--mobile{display:none}.card-news__tag--desktop{display:block}}.card-news__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;margin-top:1rem;margin-bottom:0.5rem}@media screen and (min-width: 768px){.card-news__title{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.card-news__title{font-size:2.25rem;line-height:2.7rem}}@media screen and (min-width: 1248px){.card-news__title{margin-bottom:0.75rem}}.card-news__link{text-decoration:none}.card-news__link::after{position:absolute;content:"";inset:0}.card-news__date{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:normal;font-size:0.875rem;line-height:1.225rem;margin-bottom:0.8125rem}@media screen and (min-width: 1248px){.card-news__date{font-size:1rem;line-height:1.4rem}}.card-news__arrow{width:1.875rem;height:1.875rem}@media screen and (min-width: 768px){.card-news__arrow{width:2.5rem;height:2.8125rem}}@media screen and (min-width: 1248px){.card-news__arrow{width:3.125rem;height:3.125rem}}.card-news__arrow svg{width:100%;height:100%}.card-news:hover img{transform:scale(1.2)}.card-news:hover .icon--arrow-right path:first-child{transform:scaleX(1.5);transition:transform .3s ease-in}.card-news:hover .icon--arrow-right path:nth-child(2){transform:translateX(5px);transition:transform .3s ease-in}.card-featured{position:relative}.card-featured p{margin-bottom:0}.card-featured.theme-uobmain{background:#fff;color:#000}.card-featured.theme-uobmain:focus-within{border-bottom:2px solid #000;background:#dcc266}.card-featured.theme-redexample{background:blue;color:#fff}.card-featured.theme-redexample:focus-within{border-bottom:2px solid #000;background:#dcc266}.card-featured:hover{cursor:pointer}.card-featured:hover .link-with-arrow{transform:translateX(1.25rem)}.card-featured:hover .link-with-arrow__title::before{opacity:1}.card-featured:hover .link-with-arrow .link-with-arrow__icon path:first-child{transform:scaleX(2);transition:transform .5s ease-in}.card-featured:hover .link-with-arrow .link-with-arrow__icon path:nth-child(2){transform:translateX(5px);transition:transform .3s ease-in}.card-featured__category{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:0.875rem;line-height:1.225rem;padding-bottom:1.5rem}@media screen and (min-width: 1248px){.card-featured__category{font-size:1rem;line-height:1.4rem}}.card-featured__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.card-featured__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.card-featured__title{font-size:3.75rem;line-height:3.75rem}}@media screen and (min-width: 768px){.card-featured__title{margin-bottom:5rem}}.card-featured__image-outer-wrapper{position:relative;display:flex}.card-featured__image-wrapper{overflow:hidden;margin-bottom:0.5rem}.card-featured__image-wrapper img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.card-featured__image-wrapper--primary{width:100%;height:11.4375rem}.card-featured__image-wrapper--secondary,.card-featured__image-wrapper--tertiary{display:none}@media screen and (min-width: 768px){.card-featured__image-wrapper--primary{width:calc(100% - 96px - 14.375rem*.25 - 10.375rem*.25);height:19.9375rem;margin:0 auto}.card-featured__image-wrapper--secondary,.card-featured__image-wrapper--tertiary{position:absolute;display:block}.card-featured__image-wrapper--secondary{left:0;height:8.625rem}.card-featured__image-wrapper--tertiary{right:0;height:6.25rem}}@media screen and (min-width: 1248px){.card-featured__image-wrapper--primary{width:calc(100% - 14.375rem*.45 - 10.375rem*.45);height:29.375rem}.card-featured__image-wrapper--secondary{max-width:23rem;height:13.8125rem}.card-featured__image-wrapper--tertiary{right:0;max-width:16.875rem;height:10.1875rem}}@media screen and (min-width: 768px){.card-featured__figcaption{max-width:33.25rem;padding-left:3rem;margin-top:1.5rem;margin-right:auto;margin-left:auto}}@media screen and (min-width: 1248px){.card-featured__figcaption{max-width:49rem;padding-left:0;margin-top:1.5rem}}@media screen and (min-width: 768px){.card-featured__text-wrapper{width:80%}}.card-featured__sub-title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;margin-bottom:1rem}@media screen and (min-width: 768px){.card-featured__sub-title{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.card-featured__sub-title{font-size:2.25rem;line-height:2.7rem}}.card-featured__intro-text{margin-bottom:2.5rem;font-size:1rem}.card-featured__cta{margin-top:1rem;margin-right:auto}.card-featured__cta a::after{position:absolute;content:"";inset:0}@media screen and (min-width: 768px){.card-featured__cta{margin-top:1.5rem}}.carousel-nav{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;align-items:center;justify-content:flex-start}.carousel-nav p{margin-bottom:0}@media screen and (min-width: 768px){.carousel-nav{padding:0 3rem}}@media screen and (min-width: 1248px){.carousel-nav{padding:0}}.carousel-nav__page-counts{display:flex;margin-right:0.5rem;white-space:nowrap}.carousel-nav__button-wrapper{display:flex}.carousel-nav__button-wrapper .icon-button{margin-left:0.625rem}.carousel-nav.theme-uobmain{background:#fff;color:#000}.carousel-nav.theme-uobmain .carousel-nav__line{width:100%;height:0.125rem;flex:1 1 auto;background:#000}.carousel-nav.theme-redexample{background:blue;color:#fff}.carousel-nav.theme-redexample .carousel-nav__line{width:100%;height:0.125rem;flex:1 1 auto;background:red}.link-with-arrow{padding-right:1.5rem;border-bottom:2px solid rgba(0,0,0,0);text-decoration:none;transition:all .3s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:1rem;line-height:1.4rem}@media screen and (min-width: 1248px){.link-with-arrow{font-size:1.125rem;line-height:1.575rem}}.link-with-arrow.lock-scroll{overflow:hidden}.link-with-arrow__icon{position:absolute;width:1.0625rem;height:1.5rem;flex-shrink:0;margin-top:0.125rem;margin-left:0.375rem;transition:all .3s ease-in}.link-with-arrow__icon path:first-child{transition:transform .3s ease-in}.link-with-arrow__icon path:nth-child(2){transition:transform .5s ease-in}.link-with-arrow__icon svg{width:100%;height:100%;object-fit:cover}.link-with-arrow__title{position:relative;display:inline-block;text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:5px;transition:all .3s ease-in}.link-with-arrow__title::before{position:absolute;top:50%;left:-1.25rem;width:0.875rem;content:"•";opacity:0;transform:translateY(-50%);transition:all .3s ease-in}.link-with-arrow:hover .link-with-arrow__title{transform:translateX(1.25rem)}.link-with-arrow:hover .link-with-arrow__title::before{opacity:1}.link-with-arrow:hover .link-with-arrow__icon path:first-child{transform:scaleX(2);transition:transform .5s ease-in}.link-with-arrow:hover .link-with-arrow__icon path:nth-child(2){transform:translateX(5px);transition:transform .3s ease-in}.link-with-arrow.theme-uobmain{background:#000;color:#fff}.link-with-arrow.theme-uobmain:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.link-with-arrow.theme-uobmain:focus-visible .link-with-arrow__title{text-decoration-color:rgba(0,0,0,0)}.link-with-arrow.theme-uobmain:focus-visible path{stroke:#000}.link-with-arrow.theme-uobmain--inverse{background:#fff;color:#000}.link-with-arrow.theme-uobmain--inverse .link-with-arrow::before{color:#000}.link-with-arrow.theme-uobmain--inverse:focus-visible{background:#dcc266}.link-with-arrow.theme-redexample{background:red;color:#fff}.link-with-arrow.theme-redexample:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.link-with-arrow.theme-redexample:focus-visible .link-with-arrow__title{text-decoration-color:rgba(0,0,0,0)}.link-with-arrow.theme-redexample:focus-visible path{stroke:red}.link-with-arrow.theme-redexample--inverse{background:blue;color:#fff}.link-with-arrow.theme-redexample--inverse .link-with-arrow::before{color:#fff}.link-with-arrow.theme-redexample--inverse:focus-visible{background:#dcc266}.video__video{position:relative;overflow:hidden;padding-bottom:56.25%;margin-top:1rem}@media screen and (min-width: 768px){.video__video{margin-top:0}}.video__iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.text-button-with-icon{padding:0.6875rem 1.5rem;border-radius:3.75rem;text-decoration:none;transition:all .2s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:0.875rem;line-height:1.225rem}.text-button-with-icon.theme-uobmain{border:2px solid #000;background:#000;color:#fff}.text-button-with-icon.theme-uobmain:hover{background:none;color:#000}.text-button-with-icon.theme-uobmain--inverse{border:2px solid #fff;background:#fff;color:#000}.text-button-with-icon.theme-uobmain--inverse:hover{background:none;color:#fff}.text-button-with-icon.theme-uobmain:focus-visible{border:2px solid #dcc266;background:#000;color:#fff;outline:2px solid #000}.text-button-with-icon.theme-redexample{border:2px solid red;background:red;color:#fff}.text-button-with-icon.theme-redexample:hover{background:none;color:red}.text-button-with-icon.theme-redexample--inverse{border:2px solid blue;background:blue;color:#fff}.text-button-with-icon.theme-redexample--inverse:hover{background:none;color:blue}.text-button-with-icon.theme-redexample:focus-visible{border:2px solid #dcc266;background:red;color:#fff;outline:2px solid red}.text-button-with-icon__label{margin-left:0.8125rem}.text-button-with-icon--hollow.theme-uobmain{background:none;color:#000}.text-button-with-icon--hollow.theme-uobmain:hover{background:#000;color:#fff}.text-button-with-icon--hollow.theme-uobmain--inverse{background:none;color:#fff}.text-button-with-icon--hollow.theme-uobmain--inverse:hover{background:#fff;color:#000}.text-button-with-icon--hollow.theme-redexample{background:none;color:red}.text-button-with-icon--hollow.theme-redexample:hover{background:red;color:#fff}.text-button-with-icon--hollow.theme-redexample--inverse{background:none;color:blue}.text-button-with-icon--hollow.theme-redexample--inverse:hover{background:blue;color:#fff}@media screen and (min-width: 1248px){.text-button-with-icon{font-size:1rem;line-height:1.4rem}}@media screen and (min-width: 1248px){.text-button-with-icon{padding:1rem 2.25rem}}.full-modal{width:100%;max-width:unset;height:100%;max-height:unset;border:unset}.full-modal .trap{width:100%;height:100%}.full-modal__outer-wrapper{position:relative;width:100%;height:100%}.full-modal.theme-uobmain{background:#000;color:#fff}.full-modal.theme-redexample{background:red;color:#fff}.full-modal__container{display:flex;width:100%;height:100%;align-items:center;justify-content:center}.full-modal__content{z-index:10;width:100%}@media screen and (min-width: 1248px){.full-modal__content{max-width:1152px;padding:0 1.5rem;margin:0 auto}}@media screen and (min-width: 1248px)and (min-width: 768px){.full-modal__content{padding:0 3rem}}@media screen and (min-width: 1248px)and (min-width: 1248px){.full-modal__content{padding:0}}.full-modal__close-wrapper{position:absolute;top:0;width:100%;height:100%}.full-modal__close{position:relative;max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.full-modal__close{padding:0 3rem}}@media screen and (min-width: 1248px){.full-modal__close{padding:0}}.full-modal__close button{position:absolute;top:1.5rem;right:1.5rem;width:3rem;height:3rem}@media screen and (min-width: 768px){.full-modal__close button{top:3rem;right:0}}.full-modal__close svg{width:1.125rem;height:1.125rem}.icon-button{display:flex;width:2.75rem;height:2.75rem;align-items:center;justify-content:center;border-radius:100%}.icon-button:disabled{opacity:.15;pointer-events:none}.icon-button__icon{display:flex;width:24px;align-items:center;justify-content:center}.icon-button__icon svg{width:100%;object-fit:cover}@media screen and (min-width: 768px){.icon-button{width:3rem;height:3rem}}.icon-button.theme-uobmain{border:2px solid #fff;background:#000;color:#fff;transition:filter .3s ease-in}.icon-button.theme-uobmain:focus-visible{border:2px solid #dcc266;background:#000;color:#fff;outline:2px solid #000}.icon-button.theme-uobmain:focus-visible path{fill:#fff;stroke:#fff}.icon-button.theme-uobmain:focus-visible .icon--arrow-right path{fill:none}.icon-button.theme-uobmain:hover{filter:invert(100%)}.icon-button.theme-uobmain--inverse{border:2px solid #000;background:#fff;color:#000}.icon-button.theme-uobmain--inverse:focus-visible{border:2px solid #dcc266;outline:2px solid #000}.icon-button.theme-redexample{border:2px solid #fff;background:red;color:#fff;transition:filter .3s ease-in}.icon-button.theme-redexample:focus-visible{border:2px solid #dcc266;background:red;color:#fff;outline:2px solid red}.icon-button.theme-redexample:focus-visible path{fill:#fff;stroke:#fff}.icon-button.theme-redexample:focus-visible .icon--arrow-right path{fill:none}.icon-button.theme-redexample:hover{filter:invert(100%)}.icon-button.theme-redexample--inverse{border:2px solid #fff;background:blue;color:#fff}.icon-button.theme-redexample--inverse:focus-visible{border:2px solid #dcc266;outline:2px solid red}.icon-button .icon--arrow-left{transform:scale(0.9)}.icon-button .icon--arrow-right{position:relative;left:0.1875rem;transform:scale(1.1)}.icon--facebook.theme-uobmain,.icon--twitter.theme-uobmain,.icon--instagram.theme-uobmain,.icon--weibo.theme-uobmain,.icon--wechat.theme-uobmain,.icon--youtube.theme-uobmain,.icon--hamburger.theme-uobmain,.icon--cross.theme-uobmain{fill:#fff}.icon--facebook.theme-uobmain path,.icon--twitter.theme-uobmain path,.icon--instagram.theme-uobmain path,.icon--weibo.theme-uobmain path,.icon--wechat.theme-uobmain path,.icon--youtube.theme-uobmain path,.icon--hamburger.theme-uobmain path,.icon--cross.theme-uobmain path{fill:#fff}.icon--facebook.theme-uobmain--inverse,.icon--twitter.theme-uobmain--inverse,.icon--instagram.theme-uobmain--inverse,.icon--weibo.theme-uobmain--inverse,.icon--wechat.theme-uobmain--inverse,.icon--youtube.theme-uobmain--inverse,.icon--hamburger.theme-uobmain--inverse,.icon--cross.theme-uobmain--inverse{fill:#000}.icon--facebook.theme-uobmain--inverse path,.icon--twitter.theme-uobmain--inverse path,.icon--instagram.theme-uobmain--inverse path,.icon--weibo.theme-uobmain--inverse path,.icon--wechat.theme-uobmain--inverse path,.icon--youtube.theme-uobmain--inverse path,.icon--hamburger.theme-uobmain--inverse path,.icon--cross.theme-uobmain--inverse path{fill:#000}.icon--facebook.theme-redexample,.icon--twitter.theme-redexample,.icon--instagram.theme-redexample,.icon--weibo.theme-redexample,.icon--wechat.theme-redexample,.icon--youtube.theme-redexample,.icon--hamburger.theme-redexample,.icon--cross.theme-redexample{fill:#fff}.icon--facebook.theme-redexample path,.icon--twitter.theme-redexample path,.icon--instagram.theme-redexample path,.icon--weibo.theme-redexample path,.icon--wechat.theme-redexample path,.icon--youtube.theme-redexample path,.icon--hamburger.theme-redexample path,.icon--cross.theme-redexample path{fill:#fff}.icon--facebook.theme-redexample--inverse,.icon--twitter.theme-redexample--inverse,.icon--instagram.theme-redexample--inverse,.icon--weibo.theme-redexample--inverse,.icon--wechat.theme-redexample--inverse,.icon--youtube.theme-redexample--inverse,.icon--hamburger.theme-redexample--inverse,.icon--cross.theme-redexample--inverse{fill:#000}.icon--facebook.theme-redexample--inverse path,.icon--twitter.theme-redexample--inverse path,.icon--instagram.theme-redexample--inverse path,.icon--weibo.theme-redexample--inverse path,.icon--wechat.theme-redexample--inverse path,.icon--youtube.theme-redexample--inverse path,.icon--hamburger.theme-redexample--inverse path,.icon--cross.theme-redexample--inverse path{fill:#fff}.icon--chevron-down.theme-uobmain,.icon--arrow-right.theme-uobmain,.icon--arrow-right-large.theme-uobmain,.icon--chevron-right.theme-uobmain,.icon--arrow-left.theme-uobmain{stroke:#fff}.icon--chevron-down.theme-uobmain path,.icon--arrow-right.theme-uobmain path,.icon--arrow-right-large.theme-uobmain path,.icon--chevron-right.theme-uobmain path,.icon--arrow-left.theme-uobmain path{stroke:#fff}.icon--chevron-down.theme-uobmain--inverse,.icon--arrow-right.theme-uobmain--inverse,.icon--arrow-right-large.theme-uobmain--inverse,.icon--chevron-right.theme-uobmain--inverse,.icon--arrow-left.theme-uobmain--inverse{stroke:#000}.icon--chevron-down.theme-uobmain--inverse path,.icon--arrow-right.theme-uobmain--inverse path,.icon--arrow-right-large.theme-uobmain--inverse path,.icon--chevron-right.theme-uobmain--inverse path,.icon--arrow-left.theme-uobmain--inverse path{stroke:#000}.icon--chevron-down.theme-redexample,.icon--arrow-right.theme-redexample,.icon--arrow-right-large.theme-redexample,.icon--chevron-right.theme-redexample,.icon--arrow-left.theme-redexample{stroke:#fff}.icon--chevron-down.theme-redexample path,.icon--arrow-right.theme-redexample path,.icon--arrow-right-large.theme-redexample path,.icon--chevron-right.theme-redexample path,.icon--arrow-left.theme-redexample path{stroke:#fff}.icon--chevron-down.theme-redexample--inverse,.icon--arrow-right.theme-redexample--inverse,.icon--arrow-right-large.theme-redexample--inverse,.icon--chevron-right.theme-redexample--inverse,.icon--arrow-left.theme-redexample--inverse{stroke:#000}.icon--chevron-down.theme-redexample--inverse path,.icon--arrow-right.theme-redexample--inverse path,.icon--arrow-right-large.theme-redexample--inverse path,.icon--chevron-right.theme-redexample--inverse path,.icon--arrow-left.theme-redexample--inverse path{stroke:#000}.image{display:block;width:100%;height:auto;object-fit:cover}.link-standard{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;transition:all .3s ease-in}.link-standard.theme-uobmain{border-bottom:2px solid rgba(0,0,0,0);color:#fff}.link-standard.theme-uobmain:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.link-standard.theme-uobmain:hover{border-bottom:2px solid #fff}.link-standard.theme-uobmain--inverse{color:#000}.link-standard.theme-uobmain--inverse:hover{border-bottom:2px solid #000}.link-standard.theme-redexample{border-bottom:2px solid rgba(0,0,0,0);color:#fff}.link-standard.theme-redexample:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#fff}.link-standard.theme-redexample:hover{border-bottom:2px solid #fff}.link-standard.theme-redexample--inverse{color:#fff}.link-standard.theme-redexample--inverse:hover{border-bottom:2px solid #000}.campus-selector.theme-uobmain{background:#000;color:#fff}.campus-selector.theme-redexample{background:red;color:#fff}.campus-selector__container{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;align-items:center;gap:0.625rem}@media screen and (min-width: 768px){.campus-selector__container{padding:0 3rem}}@media screen and (min-width: 1248px){.campus-selector__container{padding:0}}@media screen and (min-width: 768px){.campus-selector__container{justify-content:flex-end;padding-top:1.0625rem;padding-bottom:1.0625rem;gap:1rem}}@media screen and (min-width: 1248px){.campus-selector__container{gap:1.5rem}}.campus-selector--desktop{display:none}@media screen and (min-width: 768px){.campus-selector--desktop{display:block}}@media screen and (min-width: 768px){.campus-selector--mobile{display:none}}.text-button{padding:0.6875rem 1.5rem;border-radius:3.75rem;text-decoration:none;transition:all .2s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:0.875rem;line-height:1.225rem}.text-button.theme-uobmain{border:2px solid #000;background:#000;color:#fff}.text-button.theme-uobmain:hover{background:none;color:#000}.text-button.theme-uobmain--inverse{border:2px solid #fff;background:#fff;color:#000}.text-button.theme-uobmain--inverse:hover{background:none;color:#fff}.text-button.theme-uobmain:focus-visible{border:2px solid #dcc266;background:#000;color:#fff;outline:2px solid #000}.text-button.theme-redexample{border:2px solid red;background:red;color:#fff}.text-button.theme-redexample:hover{background:none;color:red}.text-button.theme-redexample--inverse{border:2px solid blue;background:blue;color:#fff}.text-button.theme-redexample--inverse:hover{background:none;color:blue}.text-button.theme-redexample:focus-visible{border:2px solid #dcc266;background:red;color:#fff;outline:2px solid red}.text-button--hollow.theme-uobmain{background:none;color:#000}.text-button--hollow.theme-uobmain:hover{background:#000;color:#fff}.text-button--hollow.theme-uobmain--inverse{background:none;color:#fff}.text-button--hollow.theme-uobmain--inverse:hover{background:#fff;color:#000}.text-button--hollow.theme-redexample{background:none;color:red}.text-button--hollow.theme-redexample:hover{background:red;color:#fff}.text-button--hollow.theme-redexample--inverse{background:none;color:blue}.text-button--hollow.theme-redexample--inverse:hover{background:blue;color:#fff}@media screen and (min-width: 1248px){.text-button{font-size:1rem;line-height:1.4rem}}@media screen and (min-width: 1248px){.text-button{padding:1rem 2.25rem}}.form-input.theme-uobmain{background:#000;color:#fff}.form-input.theme-uobmain .form-input__input{width:100%;padding:1.375rem 0.375rem 0.5rem 0.375rem;border:unset;border-bottom:1.5px solid #fff;background:#000;color:#fff;outline:none;font-size:1rem;line-height:1.4375}@media screen and (min-width: 768px){.form-input.theme-uobmain .form-input__input{padding-bottom:1rem}}@media screen and (min-width: 1248px){.form-input.theme-uobmain .form-input__input{font-size:1.125rem;line-height:1.3888888889;padding-bottom:1rem}}.form-input.theme-uobmain--inverse{background:#fff;color:#000}.form-input.theme-uobmain--inverse .form-input__input{border-bottom:1.5px solid #000;background:#fff;color:#000}.form-input.theme-uobmain .form-input__input::placeholder{color:#878789;font-size:1rem;line-height:1.4375}@media screen and (min-width: 1248px){.form-input.theme-uobmain .form-input__input::placeholder{font-size:1.125rem;line-height:1.3888888889}}.form-input.theme-uobmain .form-input__input:focus{border-bottom:2px solid #000;background:#dcc266;color:#000}.form-input.theme-uobmain .form-input__input:focus::placeholder{color:#000}.form-input.theme-uobmain .form-input__input:invalid{border-bottom:2px solid #e84c56}.form-input.theme-redexample{background:red;color:#fff}.form-input.theme-redexample .form-input__input{width:100%;padding:1.375rem 0.375rem 0.5rem 0.375rem;border:unset;border-bottom:1.5px solid #fff;background:red;color:#fff;outline:none;font-size:1rem;line-height:1.4375}@media screen and (min-width: 768px){.form-input.theme-redexample .form-input__input{padding-bottom:1rem}}@media screen and (min-width: 1248px){.form-input.theme-redexample .form-input__input{font-size:1.125rem;line-height:1.3888888889;padding-bottom:1rem}}.form-input.theme-redexample--inverse{background:blue;color:#fff}.form-input.theme-redexample--inverse .form-input__input{border-bottom:1.5px solid #000;background:blue;color:#fff}.form-input.theme-redexample .form-input__input::placeholder{font-size:1rem;line-height:1.4375}@media screen and (min-width: 1248px){.form-input.theme-redexample .form-input__input::placeholder{font-size:1.125rem;line-height:1.3888888889}}.form-input.theme-redexample .form-input__input:focus{border-bottom:2px solid #000;background:#dcc266;color:#fff}.form-input.theme-redexample .form-input__input:focus::placeholder{color:#fff}.form-input.theme-redexample .form-input__input:invalid{border-bottom:2px solid}.form-select__select-wrapper{position:relative;display:flex;width:100%;height:3rem;padding:.5rem 0;border-radius:3.75rem;cursor:pointer;transition:all .2s ease-in}.form-select__select{position:relative;z-index:1;width:100%;padding-left:1rem;border:unset;appearance:none;background:none;cursor:pointer;font-weight:700;outline:none;font-size:1.125rem;line-height:1.3888888889;transition:all .2s ease-in;font-size:1rem;line-height:1.375}@media screen and (min-width: 1248px){.form-select__select{font-size:1.125rem;line-height:1.3888888889}}.form-select__icon{position:absolute;z-index:0;top:50%;right:0.625rem;width:1.5rem;height:100%;transform:translateY(-50%)}.form-select__icon svg{position:absolute;top:50%;width:100%;height:1.5rem;transform:translateY(-50%)}.form-select__icon svg path{transition:transform .2s ease-in}.form-select.theme-uobmain .form-select__icon svg>path{fill:#fff}.form-select.theme-uobmain .form-select__select-wrapper{border:2px solid #fff}.form-select.theme-uobmain .form-select__select{color:#fff}.form-select.theme-uobmain .form-select__select option{color:#000}.form-select.theme-uobmain--inverse .form-select__icon svg>path{fill:#000}.form-select.theme-uobmain--inverse .form-select__select-wrapper{border:2px solid #000}.form-select.theme-uobmain--inverse .form-select__select{color:#000}.form-select.theme-redexample .form-select__icon svg>path{fill:#fff}.form-select.theme-redexample .form-select__select-wrapper{border:2px solid #fff}.form-select.theme-redexample .form-select__select{color:#fff}.form-select.theme-redexample .form-select__select option{color:#fff}.form-select.theme-redexample--inverse .form-select__icon svg>path{fill:#000}.form-select.theme-redexample--inverse .form-select__select-wrapper{border:2px solid #000}.form-select.theme-redexample--inverse .form-select__select{color:#fff}.form-select.theme-uobmain .form-select__select-wrapper:hover{background:#fff;cursor:pointer}.form-select.theme-uobmain .form-select__select-wrapper:hover .form-select__select{color:#000;cursor:pointer}.form-select.theme-uobmain .form-select__select-wrapper:hover .form-select__icon svg>path{fill:#000;transform:translateY(1px)}.form-select.theme-uobmain--inverse .form-select__select-wrapper:hover{background:#000;color:#fff;cursor:pointer}.form-select.theme-uobmain--inverse .form-select__select-wrapper:hover .form-select__select{color:#fff;cursor:pointer}.form-select.theme-uobmain--inverse .form-select__select-wrapper:hover .form-select__icon>svg>path{fill:#fff;transform:translateY(3px)}.form-select.theme-redexample .form-select__select-wrapper:hover{background:blue;cursor:pointer}.form-select.theme-redexample .form-select__select-wrapper:hover .form-select__select{color:#fff;cursor:pointer}.form-select.theme-redexample .form-select__select-wrapper:hover .form-select__icon svg>path{fill:#000;transform:translateY(1px)}.form-select.theme-redexample--inverse .form-select__select-wrapper:hover{background:red;color:#fff;cursor:pointer}.form-select.theme-redexample--inverse .form-select__select-wrapper:hover .form-select__select{color:#fff;cursor:pointer}.form-select.theme-redexample--inverse .form-select__select-wrapper:hover .form-select__icon>svg>path{fill:#fff;transform:translateY(3px)}.form-select.theme-uobmain .form-select__select-wrapper:focus-within{border:2px solid #dcc266;background:#000;outline:2px solid #000}.form-select.theme-uobmain .form-select__select-wrapper:focus-within .form-select__select{color:#fff}.form-select.theme-uobmain .form-select__select-wrapper:focus-within .form-select__icon svg>path{fill:#fff}.form-select.theme-redexample .form-select__select-wrapper:focus-within{border:2px solid #dcc266;background:red;outline:2px solid red}.form-select.theme-redexample .form-select__select-wrapper:focus-within .form-select__select{color:#fff}.form-select.theme-redexample .form-select__select-wrapper:focus-within .form-select__icon svg>path{fill:#fff}.nav-link{position:relative;text-decoration:none;text-decoration-color:rgba(0,0,0,0);transition:all .3s ease-in}.nav-link:hover{text-decoration:underline;text-decoration-color:inherit;text-decoration-thickness:1.5px;text-underline-offset:7px}@media screen and (min-width: 768px){.nav-link:hover{text-underline-offset:10px}}.nav-link__icon{position:absolute;transition:all .3s ease-in}.nav-link__icon svg{overflow:visible;width:100%;height:100%;object-fit:cover}.nav-link--level-one{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.75rem;line-height:2.1rem;padding-right:1.875rem}@media screen and (min-width: 768px){.nav-link--level-one{font-size:2.25rem;line-height:2.25rem}}@media screen and (min-width: 1248px){.nav-link--level-one{font-size:3rem;line-height:3.6rem}}.nav-link--level-one .nav-link__icon{width:0.75rem;height:1.125rem;margin-left:0.375rem}@media screen and (min-width: 768px){.nav-link--level-one .nav-link__icon{width:0.875rem;height:1.4375rem;margin-left:0.625rem}}@media screen and (min-width: 1248px){.nav-link--level-one .nav-link__icon{width:0.9375rem;height:1.625rem}}.nav-link--level-two{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;padding-right:1rem}@media screen and (min-width: 768px){.nav-link--level-two{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.nav-link--level-two{font-size:2.25rem;line-height:2.7rem}}@media screen and (min-width: 768px){.nav-link--level-two{padding-right:1.5rem}}.nav-link--level-two .nav-link__icon{width:0.4375rem;height:0.875rem;margin-left:0.375rem}@media screen and (min-width: 768px){.nav-link--level-two .nav-link__icon{width:0.625rem;height:1rem;margin-left:0.625rem}}.nav-link.theme-uobmain{background:#000;color:#fff}.nav-link.theme-uobmain:focus-visible{background:#dcc266;color:#000;transition:none}.nav-link.theme-uobmain:focus-visible path{stroke:#000}.nav-link.theme-uobmain--inverse{background:#fff;color:#000}.nav-link.theme-uobmain--inverse:focus-visible{background:#dcc266}.nav-link.theme-redexample{background:red;color:#fff}.nav-link.theme-redexample:focus-visible{background:#dcc266;color:red;transition:none}.nav-link.theme-redexample:focus-visible path{stroke:red}.nav-link.theme-redexample--inverse{background:blue;color:#fff}.nav-link.theme-redexample--inverse:focus-visible{background:#dcc266}.page-link{position:relative;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;text-decoration-color:rgba(0,0,0,0);transition:all .3s ease-in}.page-link--level-one{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.75rem;line-height:2.1rem}@media screen and (min-width: 768px){.page-link--level-one{font-size:2.25rem;line-height:2.25rem}}@media screen and (min-width: 1248px){.page-link--level-one{font-size:3rem;line-height:3.6rem}}.page-link--level-two{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem}@media screen and (min-width: 768px){.page-link--level-two{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.page-link--level-two{font-size:2.25rem;line-height:2.7rem}}.page-link.theme-uobmain{background:#000;color:#fff}.page-link.theme-uobmain:focus-visible{background:#dcc266;color:#000}.page-link.theme-uobmain--inverse{background:#fff;color:#000}.page-link.theme-uobmain--inverse:focus-visible{background:#dcc266}.page-link.theme-redexample{background:red;color:#fff}.page-link.theme-redexample:focus-visible{background:#dcc266;color:red}.page-link.theme-redexample--inverse{background:blue;color:#fff}.page-link.theme-redexample--inverse:focus-visible{background:#dcc266}.page-link:hover{text-decoration:underline;text-decoration-color:inherit;text-decoration-thickness:1.5px;text-underline-offset:7px}@media screen and (min-width: 768px){.page-link:hover{text-underline-offset:10px}}.reverse-link-with-arrow{position:relative;display:inline-flex;align-items:center;justify-content:center;padding-left:1.25rem;border-bottom:2px solid rgba(0,0,0,0);text-decoration:none;transition:all .3s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:1rem;line-height:1.4rem}@media screen and (min-width: 1248px){.reverse-link-with-arrow{font-size:1.125rem;line-height:1.575rem}}.reverse-link-with-arrow.lock-scroll{overflow:hidden}.reverse-link-with-arrow::after{position:absolute;top:50%;right:-1.25rem;width:0.875rem;content:"•";opacity:0;transform:translateY(-50%);transition:all .3s ease-in}.reverse-link-with-arrow__icon{position:absolute;left:-1.25rem;width:0.75rem;height:0.625rem;flex-shrink:0;transition:all .3s ease-in}.reverse-link-with-arrow__icon path:first-child{transform-origin:right;transition:transform .3s ease-in}.reverse-link-with-arrow__icon path:nth-child(2){transition:transform .3s ease-in}.reverse-link-with-arrow__icon svg{overflow:visible;width:100%;height:100%;object-fit:cover}.reverse-link-with-arrow__title{position:relative;text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:5px}.reverse-link-with-arrow:hover{transform:translateX(-1.25rem)}.reverse-link-with-arrow:hover::after{opacity:1}.reverse-link-with-arrow:hover .reverse-link-with-arrow__icon path:first-child{transform:scaleX(1.3)}.reverse-link-with-arrow:hover .reverse-link-with-arrow__icon path:nth-child(2){transform:translateX(-5px)}.reverse-link-with-arrow.theme-uobmain{background:#000;color:#fff}.reverse-link-with-arrow.theme-uobmain:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.reverse-link-with-arrow.theme-uobmain:focus-visible .reverse-link-with-arrow__title{text-decoration-color:rgba(0,0,0,0)}.reverse-link-with-arrow.theme-uobmain:focus-visible path{stroke:#000}.reverse-link-with-arrow.theme-uobmain--inverse{background:#fff;color:#000}.reverse-link-with-arrow.theme-uobmain--inverse:focus-visible{background:#dcc266}.reverse-link-with-arrow.theme-redexample{background:red;color:#fff}.reverse-link-with-arrow.theme-redexample:focus-visible{border-bottom:2px solid red;background:#dcc266;color:red}.reverse-link-with-arrow.theme-redexample:focus-visible .reverse-link-with-arrow__title{text-decoration-color:rgba(0,0,0,0)}.reverse-link-with-arrow.theme-redexample:focus-visible path{stroke:red}.reverse-link-with-arrow.theme-redexample--inverse{background:blue;color:#fff}.reverse-link-with-arrow.theme-redexample--inverse:focus-visible{background:#dcc266}.campus-selector-link{padding-bottom:0.0625rem;text-decoration:underline;text-decoration-color:rgba(0,0,0,0);text-decoration-thickness:0.125rem;text-underline-offset:0.3125rem;transition:all .2s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:1rem;line-height:1.4rem}.campus-selector-link.theme-uobmain{background:#000;color:#fff}.campus-selector-link.theme-uobmain:hover{background:#58595b}.campus-selector-link.theme-uobmain:focus-visible{background:#dcc266;color:#000}.campus-selector-link.theme-redexample{background:red;color:#fff}.campus-selector-link.theme-redexample:hover{background:#fff}.campus-selector-link.theme-redexample:focus-visible{background:#dcc266;color:#000}@media screen and (min-width: 1248px){.campus-selector-link{font-size:1.125rem;line-height:1.575rem}}.campus-selector-link.lock-scroll{overflow:hidden}.campus-selector-link--active{text-decoration-color:currentcolor}html,body{width:100%;height:100%;padding:0;margin:0}html{box-sizing:border-box;font-size:16px}body{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1rem;line-height:1.4rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}@media screen and (min-width: 1248px){body{font-size:1.125rem;line-height:1.575rem}}body.lock-scroll{overflow:hidden}*,*::before,*::after{box-sizing:inherit}body,h1,h2,h3,h4,h5,h6,p,ol,ul{padding:0;margin:0;font-weight:normal}ol,ul{list-style:none}button{padding:0;border:0;appearance:none;background-color:rgba(0,0,0,0);outline:none}a{color:inherit;outline:none}button,a{color:inherit;cursor:pointer}blockquote{margin:0}figure{margin:0}.sr-only{position:absolute;top:auto;left:-10000px;overflow:hidden;width:1px;height:1px;font-size:1rem}::selection.theme-uobmain{background:#dcc266}::selection.theme-redexample{background:#dcc266}.skip-to-content{position:relative;width:100%}.skip-to-content.theme-uobmain{background:#dcc266}.skip-to-content.theme-redexample{background:#dcc266}.skip-to-content__link{position:absolute;top:0;left:-1000px;display:block;padding:0.625rem 1.5rem;text-decoration:underline;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1rem;line-height:1.4rem}@media screen and (min-width: 1248px){.skip-to-content__link{font-size:1.125rem;line-height:1.575rem}}.skip-to-content__link.lock-scroll{overflow:hidden}@media screen and (min-width: 768px){.skip-to-content__link{padding:0.625rem 3rem}}@media screen and (min-width: 1248px){.skip-to-content__link{padding:0.625rem 1rem}}.skip-to-content__link:focus{position:static}.skip-to-content.theme-uobmain a{color:#000}.skip-to-content.theme-redexample a{color:#fff}
1
+ @import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';@import'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';.carousel{position:relative;margin-top:1.5rem;margin-bottom:1.5rem}.carousel ul{margin-bottom:0;margin-left:0}.carousel p{margin-bottom:0}@media screen and (min-width: 768px){.carousel{margin-top:2.25rem;margin-bottom:2.25rem}}@media screen and (min-width: 1248px){.carousel{margin-top:4.5rem}}.carousel.theme-uobmain{background:#fff;color:#000}.carousel.theme-uobmain .carousel__card--explore-more{display:flex;align-items:center;justify-content:center;padding:1rem;background:#000;color:#fff;font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem}@media screen and (min-width: 768px){.carousel.theme-uobmain .carousel__card--explore-more{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.carousel.theme-uobmain .carousel__card--explore-more{font-size:2.25rem;line-height:2.7rem}}@media screen and (min-width: 768px){.carousel.theme-uobmain .carousel__card--explore-more{padding:1.5rem}}@media screen and (min-width: 1248px){.carousel.theme-uobmain .carousel__card--explore-more{min-height:25rem;padding:1.5rem}}.carousel.theme-uobmain .carousel__card--explore-more a{padding-bottom:0.0625rem;border-bottom:2px solid #fff;background:#000;color:#fff;text-decoration:none;transition:all .2s ease-in}.carousel.theme-uobmain .carousel__card--explore-more a:hover{background:#58595b}.carousel.theme-uobmain .carousel__card--explore-more a:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.carousel.theme-redexample{background:blue;color:#fff}.carousel.theme-redexample .carousel__card--explore-more{display:flex;align-items:center;justify-content:center;padding:1rem;background:red;color:#fff;font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem}@media screen and (min-width: 768px){.carousel.theme-redexample .carousel__card--explore-more{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.carousel.theme-redexample .carousel__card--explore-more{font-size:2.25rem;line-height:2.7rem}}@media screen and (min-width: 768px){.carousel.theme-redexample .carousel__card--explore-more{padding:1.5rem}}@media screen and (min-width: 1248px){.carousel.theme-redexample .carousel__card--explore-more{min-height:25rem;padding:1.5rem}}.carousel.theme-redexample .carousel__card--explore-more a{padding-bottom:0.0625rem;border-bottom:2px solid #fff;background:red;color:#fff;text-decoration:none;transition:all .2s ease-in}.carousel.theme-redexample .carousel__card--explore-more a:hover{background:#fff}.carousel.theme-redexample .carousel__card--explore-more a:focus-visible{border-bottom:2px solid #fff;background:#dcc266;color:#000}.carousel__top{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;align-items:center;justify-content:space-between}@media screen and (min-width: 768px){.carousel__top{padding:0 3rem}}@media screen and (min-width: 1248px){.carousel__top{padding:0}}.carousel__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.carousel__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.carousel__title{font-size:3.75rem;line-height:3.75rem}}@media screen and (min-width: 768px){.carousel__title{margin-bottom:2.25rem}}@media screen and (min-width: 1248px){.carousel__title{margin-bottom:3rem}}.carousel__embla{max-width:1152px;padding:0 1.5rem;margin:0 auto;overflow:hidden;padding-bottom:1.5rem}@media screen and (min-width: 768px){.carousel__embla{padding:0 3rem}}@media screen and (min-width: 1248px){.carousel__embla{padding:0}}@media screen and (min-width: 768px){.carousel__embla{padding-bottom:2.25rem}}@media screen and (min-width: 1248px){.carousel__embla{overflow:visible;padding-bottom:4.5rem}}.carousel__list{display:flex;padding-bottom:0.625rem}@media screen and (min-width: 768px){.carousel__list{max-width:1272px;flex-flow:row nowrap;margin:0 auto}.carousel__list>li{margin-top:0}}@media screen and (min-width: 1248px){.carousel__list{flex-wrap:wrap;align-items:flex-start;justify-content:space-between}.carousel__list>li{position:relative;flex-basis:calc(50% - 0.75rem);margin-right:0;margin-bottom:1rem;margin-left:0}.carousel__list>li:nth-child(2n){top:13.8125rem}}.carousel__card{flex:0 0 90%;padding-right:1.5rem;opacity:.2;transition:opacity .3s ease-in}@media screen and (min-width: 768px){.carousel__card{flex:0 0 50%}}@media screen and (min-width: 1248px){.carousel__card{padding-right:0}}.carousel__card:last-child{padding-right:0}.carousel__card--in-view{opacity:1}@media screen and (min-width: 1248px){.carousel__card{opacity:1}}.featured-content{padding-bottom:1.5rem}@media screen and (min-width: 768px){.featured-content{overflow:hidden}}.featured-content.theme-uobmain{color:#000}.featured-content.theme-uobmain .featured-content__image-background{background-color:#000}.featured-content.theme-redexample{color:#fff}.featured-content.theme-redexample .featured-content__image-background{background-color:red}.featured-content__top{margin-bottom:2.25rem}@media screen and (min-width: 768px){.featured-content__top{display:flex;margin:0}}@media screen and (min-width: 768px){.featured-content__content{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr);flex:0 0 100%}}@media screen and (min-width: 768px){.featured-content__cards{position:relative;display:block;grid-column:1/span 12}}@media screen and (min-width: 768px){.featured-content__active-card{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding:0;margin-top:2.25rem;margin-bottom:3rem}}@media screen and (min-width: 768px)and (min-width: 768px){.featured-content__active-card{padding:0 3rem}}@media screen and (min-width: 768px)and (min-width: 1248px){.featured-content__active-card{padding:0}}@media screen and (min-width: 1248px){.featured-content__active-card{margin-bottom:3.75rem}}.featured-content__invisible-card{display:none}@media screen and (min-width: 768px){.featured-content__invisible-card{display:flex;flex:0 0 100%;visibility:hidden;max-width:1152px;padding:0 1.5rem;margin:0 auto;display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr)}}@media screen and (min-width: 768px)and (min-width: 768px){.featured-content__invisible-card{padding:0 3rem}}@media screen and (min-width: 768px)and (min-width: 1248px){.featured-content__invisible-card{padding:0}}@media screen and (min-width: 768px){.featured-content__invisible-card section{margin-top:2.25rem;margin-bottom:3rem;grid-column:1/span 12}}@media screen and (min-width: 1248px){.featured-content__invisible-card section{margin-bottom:3.75rem}}.featured-content__nav{display:none}@media screen and (min-width: 768px){.featured-content__nav{display:block}}.featured-signpost{overflow:hidden}@media screen and (min-width: 768px){.featured-signpost{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr)}}.featured-signpost p{margin-bottom:0}.featured-signpost.theme-uobmain{background-color:#000;color:#fff}.featured-signpost.theme-uobmain .featured-signpost__image-background{background-color:#fff}.featured-signpost.theme-uobmain path{stroke:#fff}.featured-signpost.theme-uobmain--inverse{background-color:#fff;color:#000}.featured-signpost.theme-uobmain--inverse .featured-signpost__image-background{background-color:#000}.featured-signpost.theme-uobmain--inverse path{stroke:#000}.featured-signpost.theme-redexample{background-color:red;color:#fff}.featured-signpost.theme-redexample .featured-signpost__image-background{background-color:#fff}.featured-signpost.theme-redexample path{stroke:#fff}.featured-signpost.theme-redexample--inverse{background-color:blue;color:#fff}.featured-signpost.theme-redexample--inverse .featured-signpost__image-background{background-color:#fff}.featured-signpost.theme-redexample--inverse path{stroke:#fff}.featured-signpost__image-container{position:relative;width:100%;line-height:0}@media screen and (min-width: 768px){.featured-signpost__image-container{min-height:30rem}}@media screen and (min-width: 1248px){.featured-signpost__image-container{min-height:43.75rem}}@media screen and (min-width: 768px){.featured-signpost__image-container--mobile{display:none}}.featured-signpost__image-container--desktop{display:none}@media screen and (min-width: 768px){.featured-signpost__image-container--desktop{display:block}}.featured-signpost--left .featured-signpost__image-container{height:10rem}@media screen and (min-width: 768px){.featured-signpost--left .featured-signpost__image-container{height:auto;grid-column:1/span 6}}.featured-signpost--right .featured-signpost__image-container{height:16.3125rem}@media screen and (min-width: 768px){.featured-signpost--right .featured-signpost__image-container{height:auto;grid-column:7/span 6}}.featured-signpost__image{position:relative;z-index:1;width:100%;height:100%;backface-visibility:hidden;object-fit:cover;object-position:center}.featured-signpost__image-background{position:absolute;top:0;left:0;width:100%;height:100%}@media screen and (min-width: 768px){.featured-signpost--left .featured-signpost__content-wrapper{padding:6.4375rem 3rem 6.4375rem 0;grid-column:7/span 6}}@media screen and (min-width: 1248px){.featured-signpost--left .featured-signpost__content-wrapper{max-width:564px;padding:12.5rem 0;padding-right:0}}@media screen and (min-width: 768px){.featured-signpost--right .featured-signpost__content-wrapper{padding:6.4375rem 0 6.4375rem 3rem;grid-column:1/span 6}}@media screen and (min-width: 1248px){.featured-signpost--right .featured-signpost__content-wrapper{max-width:564px;padding:12.5rem 0;margin-left:auto}}.featured-signpost__content{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding-top:1.5rem;padding-bottom:1.5rem}@media screen and (min-width: 768px){.featured-signpost__content{padding:0 3rem}}@media screen and (min-width: 1248px){.featured-signpost__content{padding:0}}@media screen and (min-width: 768px){.featured-signpost__content{display:flex;flex-direction:column;justify-content:center;padding:0}}.featured-signpost__category{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.featured-signpost__category{font-size:1rem;line-height:1.4rem}}.featured-signpost__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;margin-top:1rem}@media screen and (min-width: 768px){.featured-signpost__title{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.featured-signpost__title{font-size:2.25rem;line-height:2.7rem}}.featured-signpost__description{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1rem;line-height:1.4rem;margin-top:0.5rem}@media screen and (min-width: 1248px){.featured-signpost__description{font-size:1.125rem;line-height:1.575rem}}.featured-signpost__description.lock-scroll{overflow:hidden}.featured-signpost__cta{margin-top:1rem}.featured-signpost__line{position:absolute;transform-origin:top left}.featured-signpost__line svg{display:block}.featured-video{position:relative;overflow:hidden;padding-top:calc(120px + 3rem);padding-bottom:calc(120px + 3rem)}.featured-video .parallax,.featured-video__mobile-image{position:absolute;inset:0}.featured-video.theme-uobmain{color:#fff}.featured-video.theme-uobmain .featured-video__image-wrapper::after{background:#000}.featured-video.theme-uobmain .featured-video__button-audio{color:#fff}.featured-video.theme-uobmain .featured-video__button-audio:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.featured-video.theme-uobmain .featured-video__button-audio:hover{border-bottom:2px solid #fff}.featured-video.theme-redexample{color:#fff}.featured-video.theme-redexample .featured-video__image-wrapper::after{background:red}.featured-video.theme-redexample .featured-video__button-audio{color:#fff}.featured-video.theme-redexample .featured-video__button-audio:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#fff}.featured-video.theme-redexample .featured-video__button-audio:hover{border-bottom:2px solid #fff}.featured-video__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.featured-video__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.featured-video__title{font-size:3.75rem;line-height:3.75rem}}@media screen and (min-width: 768px){.featured-video__title{width:80%}}@media screen and (min-width: 1248px){.featured-video__title{margin-bottom:2.25rem}}.featured-video__container{max-width:1152px;padding:0 1.5rem;margin:0 auto;position:relative;z-index:2}@media screen and (min-width: 768px){.featured-video__container{padding:0 3rem}}@media screen and (min-width: 1248px){.featured-video__container{padding:0}}.featured-video__image-wrapper{width:100%;height:100%;pointer-events:none}.featured-video__image-wrapper::after{position:absolute;z-index:0;width:100%;height:100%;content:"";inset:0;opacity:.7}.featured-video__button-wrapper button:nth-of-type(2){height:3rem;margin-top:1.5rem}@media screen and (min-width: 768px){.featured-video__button-wrapper{display:flex;width:80%;flex-direction:row}.featured-video__button-wrapper button:nth-of-type(2){margin-top:0;margin-left:1.5rem}}.featured-video__button-audio{display:inline-flex;align-items:center;justify-content:center;padding:0 1rem;border-bottom:2px solid rgba(0,0,0,0);transition:all .3s ease-in;font-size:1rem;line-height:1.375}@media screen and (min-width: 1248px){.featured-video__button-audio{font-size:1.125rem;line-height:1.3888888889}}.footer ul{margin-bottom:0;margin-left:0}.footer p{margin-bottom:0}.footer.theme-uobmain{background:#000;color:#fff}.footer.theme-uobmain summary:focus-visible{outline-color:#dcc266;outline-offset:0.625rem}.footer.theme-uobmain .footer__bottom-container{padding:0.75rem 0;background:#1a1a1a}.footer.theme-uobmain .footer__details{padding-bottom:1.75rem;border-bottom:1px solid #58595b;margin-bottom:1.5rem}.footer.theme-uobmain .footer__details[open]>summary .icon--chevron-down{transform:rotate(180deg)}.footer.theme-redexample{background:red;color:#fff}.footer.theme-redexample summary:focus-visible{outline-color:#dcc266;outline-offset:0.625rem}.footer.theme-redexample .footer__bottom-container{padding:0.75rem 0;background:blue}.footer.theme-redexample .footer__details{padding-bottom:1.75rem;border-bottom:1px solid #fff;margin-bottom:1.5rem}.footer.theme-redexample .footer__details[open]>summary .icon--chevron-down{transform:rotate(180deg)}.footer__bottom-wrapper{max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.footer__bottom-wrapper{padding:0 3rem}}@media screen and (min-width: 1248px){.footer__bottom-wrapper{padding:0}}@media screen and (min-width: 1248px){.footer__bottom-wrapper{display:flex;align-items:flex-end;justify-content:space-between}}.footer__container{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding-top:1.5rem;padding-bottom:1.5rem}@media screen and (min-width: 768px){.footer__container{padding:0 3rem}}@media screen and (min-width: 1248px){.footer__container{padding:0}}@media screen and (min-width: 768px){.footer__container{padding-top:3.75rem;padding-bottom:3.75rem}}@media screen and (min-width: 1248px){.footer__container{padding-top:4.5rem;padding-bottom:4.5rem}}@media screen and (min-width: 768px){.footer__column-container{display:grid;gap:1.5rem;grid-template-columns:repeat(2, 1fr)}}@media screen and (min-width: 1248px){.footer__column-container{display:grid;gap:1.5rem;grid-template-columns:repeat(3, 1fr)}}@media screen and (min-width: 1248px){.footer__column-left{flex-basis:22%}}@media screen and (min-width: 1248px){.footer__column-middle{flex-basis:30%}}.footer__logo-wrapper{width:8.75rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.footer__logo-wrapper{width:15rem}}.footer__address{margin-bottom:1.5rem}.footer__telephone{margin-bottom:1.5rem}.footer__telephone a{text-decoration:none}.footer__social-wrapper{display:grid;gap:1.5rem;grid-template-columns:repeat(4, 40px);padding:1.875rem 0}.footer__social-wrapper li{margin-right:0.375rem}@media screen and (min-width: 768px){.footer__social-wrapper li{margin-right:0.5rem}}@media screen and (min-width: 1248px){.footer__social-wrapper li{margin-right:1.125rem}}.footer__summary-links{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;display:flex;align-items:center;cursor:pointer}@media screen and (min-width: 768px){.footer__summary-links{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.footer__summary-links{font-size:2.25rem;line-height:2.7rem}}.footer__summary-links::marker,.footer__summary-links::-webkit-details-marker{display:none;content:""}.footer__summary-icon{width:2.25rem;margin-top:0.5rem;margin-left:0.625rem}.footer__summary-icon svg{width:100%;height:100%;object-fit:cover;transition:transform .3s ease-out}.footer__location{display:flex;align-items:center}.footer__location a{text-decoration:none}.footer__location-icon{width:1.5rem;margin-top:0.5rem}.footer__location-icon svg{width:100%;height:100%;object-fit:cover}.footer__arrow-link{margin-bottom:1.5rem}.footer__hygiene-link-wrapper{display:flex;flex-wrap:wrap;margin-bottom:2.5rem}@media screen and (min-width: 1248px){.footer__hygiene-link-wrapper{margin-right:1.875rem;margin-bottom:0}}.footer__hygiene-link{display:inline;padding:0.625rem 0;margin-right:0.625rem;font-size:0.75rem;line-height:1.4166666667}.footer__hygiene-link a{text-decoration:none}.footer__map{display:none}@media screen and (min-width: 1248px){.footer__map{display:block;flex-basis:40%}}.footer__copyright{font-size:0.75rem;line-height:1.4166666667}@media screen and (min-width: 1248px){.footer__copyright{flex-basis:40%;padding-bottom:0.625rem;text-align:right}}.header{z-index:10}.header ul{margin-bottom:0;margin-left:0}.header p{margin-bottom:0}.header--is-closed{position:sticky;top:0;transition:top .2s ease-out}.header.theme-uobmain .header__closed{background:#fff;color:#000}.header.theme-uobmain .header__open{background:#000;color:#fff}.header.theme-uobmain .header__logo-link:focus-visible{border:2px solid #dcc266;outline:2px solid #000}.header.theme-uobmain .header__content-wrapper{border-color:#fff}.header.theme-redexample .header__closed{background:blue;color:#fff}.header.theme-redexample .header__open{background:red;color:#fff}.header.theme-redexample .header__logo-link:focus-visible{border:2px solid #dcc266;outline:2px solid red}.header.theme-redexample .header__content-wrapper{border-color:#fff}.header__top-container{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding-top:0.75rem;padding-bottom:0.75rem}@media screen and (min-width: 768px){.header__top-container{padding:0 3rem}}@media screen and (min-width: 1248px){.header__top-container{padding:0}}@media screen and (min-width: 768px){.header__top-container{padding-top:0.75rem;padding-bottom:0.75rem}}@media screen and (min-width: 1248px){.header__top-container{padding-top:0.75rem;padding-bottom:0.75rem}}.header__logo-wrapper img{width:auto;height:2.875rem}@media screen and (min-width: 768px){.header__logo-wrapper img{height:4.3125rem}}.header__logo-link{display:block;border:2px solid rgba(0,0,0,0)}.header__menu-button{display:flex;align-items:center;margin-left:1rem;gap:0.8125rem;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.header__menu-button{font-size:1rem;line-height:1.4rem}}.header__open{position:fixed;z-index:10;padding-bottom:1.5rem;inset:0;overflow-x:auto}@media screen and (min-width: 768px){.header__open{padding-bottom:9.125rem}}.header__main-menu{max-width:1152px;padding:0 1.5rem;margin:0 auto;margin-top:1rem}@media screen and (min-width: 768px){.header__main-menu{padding:0 3rem}}@media screen and (min-width: 1248px){.header__main-menu{padding:0}}@media screen and (min-width: 768px){.header__main-menu{margin-top:3rem;display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr)}}@media screen and (min-width: 768px){.header__main-menu-menu-wrapper{grid-column:1/span 6}}.header__main-menu-primary-list{display:flex;flex-direction:column;align-items:flex-start;gap:1rem}.header__main-menu-secondary-list{display:flex;flex-direction:column;align-items:flex-start;margin-top:1.5rem;gap:1rem}@media screen and (min-width: 1248px){.header__main-menu-secondary-list{margin-top:2.25rem}}.header__nested-menu{max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.header__nested-menu{padding:0 3rem}}@media screen and (min-width: 1248px){.header__nested-menu{padding:0}}@media screen and (min-width: 768px){.header__nested-menu{margin-top:3rem}}.header__heading-link{margin-top:2.25rem}@media screen and (min-width: 1248px){.header__heading-link{margin-top:1.5rem}}.header__content-wrapper{margin-top:1.5rem}@media screen and (min-width: 768px){.header__content-wrapper{padding-top:2.25rem;border-top:1px solid;margin-top:2.25rem;display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr)}}@media screen and (min-width: 1248px){.header__content-wrapper{padding-top:1.5rem}}.header__description{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1.125rem;line-height:1.575rem}@media screen and (min-width: 1248px){.header__description{font-size:1.5rem;line-height:1.95rem}}@media screen and (min-width: 768px){.header__description{grid-column:1/span 6}}.header__link-list{display:flex;flex-direction:column;align-items:flex-start;margin-top:2.25rem;gap:1rem}@media screen and (min-width: 768px){.header__link-list{margin-top:0;grid-column:1/span 6}}@media screen and (min-width: 768px){.header__link-list--with-desc{grid-column:7/span 6}}.header__campus-selector--mobile{margin-top:1.5rem}.header--dubai .header__logo-wrapper{position:relative;top:0.3125rem;right:0.3125rem}@media screen and (min-width: 768px){.header--dubai .header__logo-wrapper{top:0.5rem}}.header--dubai .header__logo-wrapper img{width:auto;height:2.5rem}@media screen and (min-width: 768px){.header--dubai .header__logo-wrapper img{height:4rem}}.header__search-button-mobile{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;justify-content:flex-end;margin-top:1rem;margin-bottom:1rem}@media screen and (min-width: 768px){.header__search-button-mobile{padding:0 3rem}}@media screen and (min-width: 1248px){.header__search-button-mobile{padding:0}}.header__right-wrapper{display:flex;flex-direction:column-reverse}.header__right-wrapper .header__search-button{display:none}@media screen and (min-width: 768px){.header__right-wrapper{flex-direction:row}.header__right-wrapper .header__search-button{display:block}}.header-search__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.header-search__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.header-search__title{font-size:3.75rem;line-height:3.75rem}}.header-search__intro{padding-bottom:1.5rem;font-size:1.125rem;line-height:1.3888888889}@media screen and (min-width: 1248px){.header-search__intro{font-size:1.5rem;line-height:1.2916666667}}.header-search__container{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding-bottom:1.5rem}@media screen and (min-width: 768px){.header-search__container{padding:0 3rem}}@media screen and (min-width: 1248px){.header-search__container{padding:0}}.header-search__back-link{max-width:1152px;padding:0 1.5rem;margin:0 auto;padding-top:1rem;padding-bottom:1rem}@media screen and (min-width: 768px){.header-search__back-link{padding:0 3rem}}@media screen and (min-width: 1248px){.header-search__back-link{padding:0}}.header-search__back-link+.header-search__container{padding-top:1.5rem}@media screen and (min-width: 768px){.header-search__form{display:flex;justify-content:space-between}}.header-search__search-wrapper{display:flex;justify-content:space-between;margin-bottom:2rem}@media screen and (min-width: 768px){.header-search__search-wrapper{width:100%;margin-bottom:0}}.header-search .form-input{height:3rem;flex-grow:9;margin-right:1rem}.header-search .form-input__input{height:100%}@media screen and (min-width: 768px){.header-search .form-input{margin-right:2rem}}@media screen and (min-width: 1248px){.header-search .form-input{height:3.75rem}}.header-search .text-button{display:none;max-height:3rem}@media screen and (min-width: 768px){.header-search .text-button{display:block;flex-grow:0}}@media screen and (min-width: 1248px){.header-search .text-button{max-height:3.75rem}}@media screen and (min-width: 768px){.header-search .icon-button{display:none}}@media screen and (min-width: 768px){.header-search{margin-top:3rem}}.header__main-menu-promo-cards{padding:1.5rem 0}.header__main-menu-promo-cards .card-menu{margin-bottom:1.5rem}@media screen and (min-width: 768px){.header__main-menu-promo-cards{padding:0;grid-column:7/span 6}}@media screen and (min-width: 1248px){.header__main-menu-promo-cards{display:grid;gap:1.5rem;grid-template-columns:repeat(2, 1fr)}.header__main-menu-promo-cards li:first-of-type{grid-column:1/span 2}}.hero-carousel{overflow:hidden;padding-bottom:1.5rem}.hero-carousel p{margin-bottom:0}@media screen and (min-width: 768px){.hero-carousel{padding-bottom:0}}.hero-carousel.theme-uobmain{color:#000}.hero-carousel.theme-uobmain .hero-carousel__image-background{background-color:#000}.hero-carousel.theme-redexample{color:#fff}.hero-carousel.theme-redexample .hero-carousel__image-background{background-color:red}.hero-carousel__top{margin-bottom:2.25rem}@media screen and (min-width: 768px){.hero-carousel__top{display:flex;margin:0}}@media screen and (min-width: 768px){.hero-carousel__content{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr);flex:0 0 100%}}.hero-carousel__image-container{position:relative;height:9.375rem;line-height:0}@media screen and (min-width: 768px){.hero-carousel__image-container{height:100%;min-height:31.25rem;grid-column:7/span 6}}@media screen and (min-width: 1248px){.hero-carousel__image-container{min-height:43.75rem;grid-column:7/span 6}}@media screen and (min-width: 768px){.hero-carousel__image-container--mobile{display:none}}.hero-carousel__image-container--desktop{display:none}@media screen and (min-width: 768px){.hero-carousel__image-container--desktop{display:block}}.hero-carousel__image{width:100%;height:100%;object-fit:cover;object-position:center}.hero-carousel__image-background{position:absolute;z-index:-1;top:0;left:0;width:100%;height:100%}.hero-carousel__cards{display:flex;margin-top:0.75rem}@media screen and (min-width: 768px){.hero-carousel__cards{position:relative;display:block;padding-left:3rem;margin-top:2.25rem;grid-column:1/span 6}}@media screen and (min-width: 1248px){.hero-carousel__cards{position:relative;max-width:564px;padding-left:0;margin-top:9rem;margin-left:auto}}.hero-carousel__active-card{max-width:1152px;padding:0 1.5rem;margin:0 auto;flex:0 0 100%}@media screen and (min-width: 768px){.hero-carousel__active-card{padding:0 3rem}}@media screen and (min-width: 1248px){.hero-carousel__active-card{padding:0}}@media screen and (min-width: 768px){.hero-carousel__active-card{padding:0;margin-bottom:3rem}}@media screen and (min-width: 1248px){.hero-carousel__active-card{margin-bottom:10.75rem}}.hero-carousel__invisible-card{flex:0 0 100%;margin-top:0.75rem;visibility:hidden;max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.hero-carousel__invisible-card{padding:0 3rem}}@media screen and (min-width: 1248px){.hero-carousel__invisible-card{padding:0}}@media screen and (min-width: 768px){.hero-carousel__invisible-card{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr);margin-top:2.25rem}.hero-carousel__invisible-card section{margin-bottom:3rem;grid-column:1/span 6}}@media screen and (min-width: 1248px){.hero-carousel__invisible-card{position:relative;margin-top:9rem}.hero-carousel__invisible-card section{margin-bottom:10.75rem}}@media screen and (min-width: 768px){.hero-carousel__invisible-card--mobile{display:none}}.hero-carousel__category{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.hero-carousel__category{font-size:1rem;line-height:1.4rem}}.hero-carousel__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:3rem;line-height:3rem;margin-top:1rem}@media screen and (min-width: 768px){.hero-carousel__title{font-size:3.75rem;line-height:3.75rem}}@media screen and (min-width: 1248px){.hero-carousel__title{font-size:4.5rem;line-height:4.5rem}}@media screen and (min-width: 768px){.hero-carousel__title{margin-top:1.5rem}}.hero-carousel__description{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1rem;line-height:1.4rem;margin-top:0.75rem}@media screen and (min-width: 1248px){.hero-carousel__description{font-size:1.125rem;line-height:1.575rem}}.hero-carousel__description.lock-scroll{overflow:hidden}@media screen and (min-width: 768px){.hero-carousel__description{margin-top:1rem}}.hero-carousel__cta{margin-top:1rem}@media screen and (min-width: 768px){.hero-carousel__cta{margin-top:1.5rem}}@media screen and (min-width: 768px){.hero-carousel__nav{position:absolute;right:0;bottom:2.25rem;left:3rem}}@media screen and (min-width: 1248px){.hero-carousel__nav{bottom:4.5rem;left:0}}@media screen and (min-width: 768px){.hero-carousel__nav .carousel-nav{padding:0}}@media screen and (min-width: 768px){.hero-carousel__nav--mobile{display:none}}.hero-carousel__nav--desktop{display:none}@media screen and (min-width: 768px){.hero-carousel__nav--desktop{display:block}}.hero-carousel__line{position:absolute;transform-origin:bottom left}.hero-carousel__line svg{display:block}.search-course{padding:1.5rem 0}.search-course.theme-uobmain{background:#000;color:#fff}.search-course.theme-uobmain--inverse{background:#fff;color:#000}.search-course.theme-redexample{background:red;color:#fff}.search-course.theme-redexample--inverse{background:blue;color:#fff}.search-course__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1rem}@media screen and (min-width: 768px){.search-course__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.search-course__title{font-size:3.75rem;line-height:3.75rem}}.search-course__container{max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.search-course__container{padding:0 3rem}}@media screen and (min-width: 1248px){.search-course__container{padding:0}}@media screen and (min-width: 768px){.search-course__form{display:flex;justify-content:space-between}}.search-course__search-wrapper{display:flex;justify-content:space-between;margin-bottom:2rem}@media screen and (min-width: 768px){.search-course__search-wrapper{flex-basis:60%;margin-bottom:0}}.search-course .form-input{height:3rem;flex-basis:80%}.search-course .form-input__input{height:100%}@media screen and (min-width: 768px){.search-course .form-input{flex-grow:3;margin-right:2rem}}@media screen and (min-width: 1248px){.search-course .form-input{height:3.75rem}}.search-course .form-select{height:3rem}@media screen and (min-width: 768px){.search-course .form-select{flex-grow:1;margin-right:2rem}}@media screen and (min-width: 1248px){.search-course .form-select{height:3.75rem}}.search-course .text-button{display:none;max-height:3rem}@media screen and (min-width: 768px){.search-course .text-button{display:block;flex-grow:1}}@media screen and (min-width: 1248px){.search-course .text-button{max-height:3.75rem}}@media screen and (min-width: 768px){.search-course .icon-button{display:none}}@media screen and (min-width: 768px){.search-course{padding:2.75rem 0}}@media screen and (min-width: 1248px){.search-course{padding:3rem 0}}.signpost p{margin-bottom:0}.signpost.theme-uobmain{background:#000;color:#fff}.signpost.theme-uobmain,.signpost.theme-uobmain .signpost__item{border-color:#fff}.signpost.theme-uobmain--inverse{background:#fff;color:#000}.signpost.theme-uobmain--inverse,.signpost.theme-uobmain--inverse .signpost__item{border-color:#000}.signpost.theme-redexample{background:red;color:#fff}.signpost.theme-redexample,.signpost.theme-redexample .signpost__item{border-color:#fff}.signpost.theme-redexample--inverse{background:blue;color:#fff}.signpost.theme-redexample--inverse,.signpost.theme-redexample--inverse .signpost__item{border-color:#000}.signpost__item{display:flex;flex-direction:column;align-items:flex-start;padding:1.5rem 0 1.625rem;border-top:1.5px solid;gap:1.5rem}.signpost__item:first-child{border-top:0}@media screen and (min-width: 768px){.signpost__item{padding:0;border-top:0;margin:2.25rem 0;grid-column:1/span 6}.signpost__item:first-child{padding-right:3rem}.signpost__item:nth-child(2n){padding-left:3rem;border-left:1.5px solid;grid-column:7/span 6}}.signpost+.signpost .signpost__item{border-top:1.5px solid}@media screen and (min-width: 768px){.signpost+.signpost .signpost__item{border-top:0}.signpost+.signpost .signpost__grid{border-top:1.5px solid}}.signpost__container{max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.signpost__container{padding:0 3rem}}@media screen and (min-width: 1248px){.signpost__container{padding:0}}.signpost__grid{display:flex;flex-direction:column}@media screen and (min-width: 768px){.signpost__grid{display:grid;gap:1.5rem;grid-template-columns:repeat(12, 1fr);gap:0}}.signpost__tag{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.signpost__tag{font-size:1rem;line-height:1.4rem}}.signpost__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:bold;font-size:1.25rem;line-height:1.5rem}@media screen and (min-width: 768px){.signpost__title{font-size:1.375rem;line-height:1.65rem}}@media screen and (min-width: 768px){.signpost__title{font-size:1.875rem;line-height:2.4375rem}}.card-news{position:relative;max-width:35.25rem;border-bottom:0.125rem solid rgba(0,0,0,0)}.card-news p{margin-bottom:0}.card-news.theme-uobmain{background:#fff;color:#000}.card-news.theme-uobmain .card-news__tag{background-color:#fff}.card-news.theme-uobmain:has(:focus-visible){border-bottom-color:#000;background:#dcc266}.card-news.theme-uobmain:has(:focus-visible) .card-news__tag{background-color:#dcc266}.card-news.theme-redexample{background:blue;color:#fff}.card-news.theme-redexample .card-news__tag{background-color:blue}.card-news.theme-redexample:has(:focus-visible){border-bottom-color:#fff;background:#dcc266}.card-news.theme-redexample:has(:focus-visible) .card-news__tag{background-color:#dcc266}.card-news__image-wrapper{position:relative;overflow:hidden;height:11.5rem;margin-bottom:0.5rem}.card-news__image-wrapper img{height:100%;object-fit:cover;transition:transform .3s ease}@media screen and (min-width: 768px){.card-news__image-wrapper{height:17.5rem}}@media screen and (min-width: 1248px){.card-news__image-wrapper{height:24.5rem}}.card-news__tag{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:normal;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.card-news__tag{font-size:1rem;line-height:1.4rem}}.card-news__tag--desktop{display:none}@media screen and (min-width: 768px){.card-news__tag{position:absolute;z-index:1;bottom:0;left:0;padding:0.5rem 0.5rem 0.5rem 0}.card-news__tag--mobile{display:none}.card-news__tag--desktop{display:block}}.card-news__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;margin-top:1rem;margin-bottom:0.5rem}@media screen and (min-width: 768px){.card-news__title{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.card-news__title{font-size:2.25rem;line-height:2.7rem}}@media screen and (min-width: 1248px){.card-news__title{margin-bottom:0.75rem}}.card-news__link{text-decoration:none}.card-news__link::after{position:absolute;content:"";inset:0}.card-news__date{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:normal;font-size:0.875rem;line-height:1.225rem;margin-bottom:0.8125rem}@media screen and (min-width: 1248px){.card-news__date{font-size:1rem;line-height:1.4rem}}.card-news__arrow{width:1.875rem;height:1.875rem}@media screen and (min-width: 768px){.card-news__arrow{width:2.5rem;height:2.8125rem}}@media screen and (min-width: 1248px){.card-news__arrow{width:3.125rem;height:3.125rem}}.card-news__arrow svg{width:100%;height:100%}.card-news:hover img{transform:scale(1.2)}.card-news:hover .icon--arrow-right path:first-child{transform:scaleX(1.5);transition:transform .3s ease-in}.card-news:hover .icon--arrow-right path:nth-child(2){transform:translateX(5px);transition:transform .3s ease-in}.card-featured{position:relative}.card-featured p{margin-bottom:0}.card-featured.theme-uobmain{background:#fff;color:#000}.card-featured.theme-uobmain:focus-within{border-bottom:2px solid #000;background:#dcc266}.card-featured.theme-redexample{background:blue;color:#fff}.card-featured.theme-redexample:focus-within{border-bottom:2px solid #000;background:#dcc266}.card-featured:hover{cursor:pointer}.card-featured:hover .link-with-arrow{transform:translateX(1.25rem)}.card-featured:hover .link-with-arrow__title::before{opacity:1}.card-featured:hover .link-with-arrow .link-with-arrow__icon path:first-child{transform:scaleX(2);transition:transform .5s ease-in}.card-featured:hover .link-with-arrow .link-with-arrow__icon path:nth-child(2){transform:translateX(5px);transition:transform .3s ease-in}.card-featured__category{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:0.875rem;line-height:1.225rem;padding-bottom:1.5rem}@media screen and (min-width: 1248px){.card-featured__category{font-size:1rem;line-height:1.4rem}}.card-featured__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:2.25rem;line-height:2.25rem;margin-bottom:1.5rem}@media screen and (min-width: 768px){.card-featured__title{font-size:3rem;line-height:3rem}}@media screen and (min-width: 1248px){.card-featured__title{font-size:3.75rem;line-height:3.75rem}}@media screen and (min-width: 768px){.card-featured__title{margin-bottom:5rem}}.card-featured__image-outer-wrapper{position:relative;display:flex}.card-featured__image-wrapper{overflow:hidden;margin-bottom:0.5rem}.card-featured__image-wrapper img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.card-featured__image-wrapper--primary{width:100%;height:11.4375rem}.card-featured__image-wrapper--secondary,.card-featured__image-wrapper--tertiary{display:none}@media screen and (min-width: 768px){.card-featured__image-wrapper--primary{width:calc(100% - 96px - 14.375rem*.25 - 10.375rem*.25);height:19.9375rem;margin:0 auto}.card-featured__image-wrapper--secondary,.card-featured__image-wrapper--tertiary{position:absolute;display:block}.card-featured__image-wrapper--secondary{left:0;height:8.625rem}.card-featured__image-wrapper--tertiary{right:0;height:6.25rem}}@media screen and (min-width: 1248px){.card-featured__image-wrapper--primary{width:calc(100% - 14.375rem*.45 - 10.375rem*.45);height:29.375rem}.card-featured__image-wrapper--secondary{max-width:23rem;height:13.8125rem}.card-featured__image-wrapper--tertiary{right:0;max-width:16.875rem;height:10.1875rem}}@media screen and (min-width: 768px){.card-featured__figcaption{max-width:33.25rem;padding-left:3rem;margin-top:1.5rem;margin-right:auto;margin-left:auto}}@media screen and (min-width: 1248px){.card-featured__figcaption{max-width:49rem;padding-left:0;margin-top:1.5rem}}@media screen and (min-width: 768px){.card-featured__text-wrapper{width:80%}}.card-featured__sub-title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;margin-bottom:1rem}@media screen and (min-width: 768px){.card-featured__sub-title{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.card-featured__sub-title{font-size:2.25rem;line-height:2.7rem}}.card-featured__intro-text{margin-bottom:2.5rem;font-size:1rem}.card-featured__cta{margin-top:1rem;margin-right:auto}.card-featured__cta a::after{position:absolute;content:"";inset:0}@media screen and (min-width: 768px){.card-featured__cta{margin-top:1.5rem}}.carousel-nav{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;align-items:center;justify-content:flex-start}.carousel-nav p{margin-bottom:0}@media screen and (min-width: 768px){.carousel-nav{padding:0 3rem}}@media screen and (min-width: 1248px){.carousel-nav{padding:0}}.carousel-nav__page-counts{display:flex;margin-right:0.5rem;white-space:nowrap}.carousel-nav__button-wrapper{display:flex}.carousel-nav__button-wrapper .icon-button{margin-left:0.625rem}.carousel-nav.theme-uobmain{background:#fff;color:#000}.carousel-nav.theme-uobmain .carousel-nav__line{width:100%;height:0.125rem;flex:1 1 auto;background:#000}.carousel-nav.theme-redexample{background:blue;color:#fff}.carousel-nav.theme-redexample .carousel-nav__line{width:100%;height:0.125rem;flex:1 1 auto;background:red}.link-with-arrow{padding-right:1.5rem;border-bottom:2px solid rgba(0,0,0,0);text-decoration:none;transition:border .2s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:1rem;line-height:1.4rem}@media screen and (min-width: 1248px){.link-with-arrow{font-size:1.125rem;line-height:1.575rem}}.link-with-arrow.lock-scroll{overflow:hidden}.link-with-arrow__icon{position:absolute;width:1.0625rem;height:1.5rem;flex-shrink:0;margin-top:0.125rem;margin-left:0.375rem}.link-with-arrow__icon path:first-child{transition:transform .3s ease-in}.link-with-arrow__icon path:nth-child(2){transition:transform .5s ease-in}.link-with-arrow__icon svg{width:100%;height:100%;object-fit:cover}.link-with-arrow__title{position:relative;display:inline-block;text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:5px;transition:transform .2s ease-in}.link-with-arrow__title::before{position:absolute;top:50%;left:-1.25rem;width:0.875rem;content:"•";opacity:0;transform:translateY(-50%);transition:all .3s ease-in}.link-with-arrow:hover .link-with-arrow__title{transform:translateX(1.25rem)}.link-with-arrow:hover .link-with-arrow__title::before{opacity:1}.link-with-arrow:hover .link-with-arrow__icon path:first-child{transform:scaleX(2);transition:transform .5s ease-in}.link-with-arrow:hover .link-with-arrow__icon path:nth-child(2){transform:translateX(5px);transition:transform .3s ease-in}.link-with-arrow.theme-uobmain{color:#fff}.link-with-arrow.theme-uobmain:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.link-with-arrow.theme-uobmain:focus-visible .link-with-arrow__title{text-decoration-color:rgba(0,0,0,0)}.link-with-arrow.theme-uobmain:focus-visible path{stroke:#000}.link-with-arrow.theme-uobmain--inverse{color:#000}.link-with-arrow.theme-uobmain--inverse .link-with-arrow::before{color:#000}.link-with-arrow.theme-uobmain--inverse:focus-visible{background:#dcc266}.link-with-arrow.theme-redexample{color:#fff}.link-with-arrow.theme-redexample:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#fff}.link-with-arrow.theme-redexample:focus-visible .link-with-arrow__title{text-decoration-color:rgba(0,0,0,0)}.link-with-arrow.theme-redexample:focus-visible path{stroke:red}.link-with-arrow.theme-redexample--inverse{color:#fff}.link-with-arrow.theme-redexample--inverse .link-with-arrow::before{color:#fff}.link-with-arrow.theme-redexample--inverse:focus-visible{background:#dcc266}.video__video{position:relative;overflow:hidden;max-width:100%;padding-bottom:56.25%;margin-top:1rem}@media screen and (min-width: 768px){.video__video{margin-top:0}}.video__iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.text-button-with-icon{padding:0.6875rem 1.5rem;border-radius:3.75rem;text-decoration:none;transition:all .2s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:0.875rem;line-height:1.225rem}.text-button-with-icon.theme-uobmain{border:2px solid #000;background:#000;color:#fff}.text-button-with-icon.theme-uobmain:hover{background:none;color:#000}.text-button-with-icon.theme-uobmain--inverse{border:2px solid #fff;background:#fff;color:#000}.text-button-with-icon.theme-uobmain--inverse:hover{background:none;color:#fff}.text-button-with-icon.theme-uobmain:focus-visible{border:2px solid #dcc266;background:#000;color:#fff;outline:2px solid #000}.text-button-with-icon.theme-redexample{border:2px solid red;background:red;color:#fff}.text-button-with-icon.theme-redexample:hover{background:none;color:red}.text-button-with-icon.theme-redexample--inverse{border:2px solid blue;background:blue;color:#fff}.text-button-with-icon.theme-redexample--inverse:hover{background:none;color:blue}.text-button-with-icon.theme-redexample:focus-visible{border:2px solid #dcc266;background:red;color:#fff;outline:2px solid red}.text-button-with-icon__label{margin-left:0.8125rem}.text-button-with-icon--hollow.theme-uobmain{background:none;color:#000}.text-button-with-icon--hollow.theme-uobmain:hover{background:#000;color:#fff}.text-button-with-icon--hollow.theme-uobmain--inverse{background:none;color:#fff}.text-button-with-icon--hollow.theme-uobmain--inverse:hover{background:#fff;color:#000}.text-button-with-icon--hollow.theme-redexample{background:none;color:red}.text-button-with-icon--hollow.theme-redexample:hover{background:red;color:#fff}.text-button-with-icon--hollow.theme-redexample--inverse{background:none;color:blue}.text-button-with-icon--hollow.theme-redexample--inverse:hover{background:blue;color:#fff}@media screen and (min-width: 1248px){.text-button-with-icon{font-size:1rem;line-height:1.4rem}}@media screen and (min-width: 1248px){.text-button-with-icon{padding:1rem 2.25rem}}.full-modal{width:100%;max-width:unset;height:100%;max-height:unset;border:unset}.full-modal .trap{width:100%;height:100%}.full-modal__outer-wrapper{position:relative;width:100%;height:100%;margin-top:5rem}.full-modal.theme-uobmain{background:#000;color:#fff}.full-modal.theme-redexample{background:red;color:#fff}.full-modal__container{display:flex;width:100%;height:100%;align-items:center;justify-content:center}.full-modal__content{z-index:10;width:100%}@media screen and (min-width: 1248px){.full-modal__content{max-width:1152px;padding:0 1.5rem;margin:0 auto}}@media screen and (min-width: 1248px)and (min-width: 768px){.full-modal__content{padding:0 3rem}}@media screen and (min-width: 1248px)and (min-width: 1248px){.full-modal__content{padding:0}}.full-modal__close-wrapper{position:absolute;top:-3.75rem;width:100%;height:5rem}.full-modal__close{position:relative;top:0;max-width:1152px;padding:0 1.5rem;margin:0 auto}@media screen and (min-width: 768px){.full-modal__close{padding:0 3rem}}@media screen and (min-width: 1248px){.full-modal__close{padding:0}}.full-modal__close button{position:absolute;top:1.5rem;right:1.5rem;width:3rem;height:3rem}@media screen and (min-width: 768px){.full-modal__close button{top:0.75rem;right:0}}.full-modal__close svg{width:1.125rem;height:1.125rem}.icon-button{display:flex;width:2.75rem;height:2.75rem;align-items:center;justify-content:center;border-radius:100%}.icon-button:disabled{opacity:.15;pointer-events:none}.icon-button__icon{display:flex;width:24px;align-items:center;justify-content:center}.icon-button__icon svg{width:100%;object-fit:cover}@media screen and (min-width: 768px){.icon-button{width:3rem;height:3rem}}.icon-button.theme-uobmain{border:2px solid #fff;background:#000;color:#fff;transition:filter .3s ease-in}.icon-button.theme-uobmain:focus-visible{border:2px solid #dcc266;background:#000;color:#fff;outline:2px solid #000}.icon-button.theme-uobmain:focus-visible path{fill:#fff;stroke:#fff}.icon-button.theme-uobmain:focus-visible .icon--arrow-right path{fill:none}.icon-button.theme-uobmain:hover{filter:invert(100%)}.icon-button.theme-uobmain--inverse{border:2px solid #000;background:#fff;color:#000}.icon-button.theme-uobmain--inverse:focus-visible{border:2px solid #dcc266;outline:2px solid #000}.icon-button.theme-redexample{border:2px solid #fff;background:red;color:#fff;transition:filter .3s ease-in}.icon-button.theme-redexample:focus-visible{border:2px solid #dcc266;background:red;color:#fff;outline:2px solid red}.icon-button.theme-redexample:focus-visible path{fill:#fff;stroke:#fff}.icon-button.theme-redexample:focus-visible .icon--arrow-right path{fill:none}.icon-button.theme-redexample:hover{filter:invert(100%)}.icon-button.theme-redexample--inverse{border:2px solid #fff;background:blue;color:#fff}.icon-button.theme-redexample--inverse:focus-visible{border:2px solid #dcc266;outline:2px solid red}.icon-button .icon--arrow-left{transform:scale(0.9)}.icon-button .icon--arrow-right{position:relative;left:0.1875rem;transform:scale(1.1)}.icon--facebook.theme-uobmain,.icon--twitter.theme-uobmain,.icon--instagram.theme-uobmain,.icon--weibo.theme-uobmain,.icon--wechat.theme-uobmain,.icon--youtube.theme-uobmain,.icon--hamburger.theme-uobmain,.icon--cross.theme-uobmain{fill:#fff}.icon--facebook.theme-uobmain path,.icon--twitter.theme-uobmain path,.icon--instagram.theme-uobmain path,.icon--weibo.theme-uobmain path,.icon--wechat.theme-uobmain path,.icon--youtube.theme-uobmain path,.icon--hamburger.theme-uobmain path,.icon--cross.theme-uobmain path{fill:#fff}.icon--facebook.theme-uobmain--inverse,.icon--twitter.theme-uobmain--inverse,.icon--instagram.theme-uobmain--inverse,.icon--weibo.theme-uobmain--inverse,.icon--wechat.theme-uobmain--inverse,.icon--youtube.theme-uobmain--inverse,.icon--hamburger.theme-uobmain--inverse,.icon--cross.theme-uobmain--inverse{fill:#000}.icon--facebook.theme-uobmain--inverse path,.icon--twitter.theme-uobmain--inverse path,.icon--instagram.theme-uobmain--inverse path,.icon--weibo.theme-uobmain--inverse path,.icon--wechat.theme-uobmain--inverse path,.icon--youtube.theme-uobmain--inverse path,.icon--hamburger.theme-uobmain--inverse path,.icon--cross.theme-uobmain--inverse path{fill:#000}.icon--facebook.theme-redexample,.icon--twitter.theme-redexample,.icon--instagram.theme-redexample,.icon--weibo.theme-redexample,.icon--wechat.theme-redexample,.icon--youtube.theme-redexample,.icon--hamburger.theme-redexample,.icon--cross.theme-redexample{fill:#fff}.icon--facebook.theme-redexample path,.icon--twitter.theme-redexample path,.icon--instagram.theme-redexample path,.icon--weibo.theme-redexample path,.icon--wechat.theme-redexample path,.icon--youtube.theme-redexample path,.icon--hamburger.theme-redexample path,.icon--cross.theme-redexample path{fill:#fff}.icon--facebook.theme-redexample--inverse,.icon--twitter.theme-redexample--inverse,.icon--instagram.theme-redexample--inverse,.icon--weibo.theme-redexample--inverse,.icon--wechat.theme-redexample--inverse,.icon--youtube.theme-redexample--inverse,.icon--hamburger.theme-redexample--inverse,.icon--cross.theme-redexample--inverse{fill:#000}.icon--facebook.theme-redexample--inverse path,.icon--twitter.theme-redexample--inverse path,.icon--instagram.theme-redexample--inverse path,.icon--weibo.theme-redexample--inverse path,.icon--wechat.theme-redexample--inverse path,.icon--youtube.theme-redexample--inverse path,.icon--hamburger.theme-redexample--inverse path,.icon--cross.theme-redexample--inverse path{fill:#fff}.icon--chevron-down.theme-uobmain,.icon--arrow-right.theme-uobmain,.icon--arrow-right-large.theme-uobmain,.icon--chevron-right.theme-uobmain,.icon--arrow-left.theme-uobmain{stroke:#fff}.icon--chevron-down.theme-uobmain path,.icon--arrow-right.theme-uobmain path,.icon--arrow-right-large.theme-uobmain path,.icon--chevron-right.theme-uobmain path,.icon--arrow-left.theme-uobmain path{stroke:#fff}.icon--chevron-down.theme-uobmain--inverse,.icon--arrow-right.theme-uobmain--inverse,.icon--arrow-right-large.theme-uobmain--inverse,.icon--chevron-right.theme-uobmain--inverse,.icon--arrow-left.theme-uobmain--inverse{stroke:#000}.icon--chevron-down.theme-uobmain--inverse path,.icon--arrow-right.theme-uobmain--inverse path,.icon--arrow-right-large.theme-uobmain--inverse path,.icon--chevron-right.theme-uobmain--inverse path,.icon--arrow-left.theme-uobmain--inverse path{stroke:#000}.icon--chevron-down.theme-redexample,.icon--arrow-right.theme-redexample,.icon--arrow-right-large.theme-redexample,.icon--chevron-right.theme-redexample,.icon--arrow-left.theme-redexample{stroke:#fff}.icon--chevron-down.theme-redexample path,.icon--arrow-right.theme-redexample path,.icon--arrow-right-large.theme-redexample path,.icon--chevron-right.theme-redexample path,.icon--arrow-left.theme-redexample path{stroke:#fff}.icon--chevron-down.theme-redexample--inverse,.icon--arrow-right.theme-redexample--inverse,.icon--arrow-right-large.theme-redexample--inverse,.icon--chevron-right.theme-redexample--inverse,.icon--arrow-left.theme-redexample--inverse{stroke:#000}.icon--chevron-down.theme-redexample--inverse path,.icon--arrow-right.theme-redexample--inverse path,.icon--arrow-right-large.theme-redexample--inverse path,.icon--chevron-right.theme-redexample--inverse path,.icon--arrow-left.theme-redexample--inverse path{stroke:#000}.image{display:block;width:100%;height:auto;object-fit:cover}.link-standard{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;transition:all .3s ease-in}.link-standard.theme-uobmain{border-bottom:2px solid rgba(0,0,0,0);color:#fff}.link-standard.theme-uobmain:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.link-standard.theme-uobmain:hover{border-bottom:2px solid #fff}.link-standard.theme-uobmain--inverse{color:#000}.link-standard.theme-uobmain--inverse:hover{border-bottom:2px solid #000}.link-standard.theme-redexample{border-bottom:2px solid rgba(0,0,0,0);color:#fff}.link-standard.theme-redexample:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#fff}.link-standard.theme-redexample:hover{border-bottom:2px solid #fff}.link-standard.theme-redexample--inverse{color:#fff}.link-standard.theme-redexample--inverse:hover{border-bottom:2px solid #000}.campus-selector.theme-uobmain{background:#000;color:#fff}.campus-selector.theme-redexample{background:red;color:#fff}.campus-selector__container{max-width:1152px;padding:0 1.5rem;margin:0 auto;display:flex;align-items:center;gap:0.625rem}@media screen and (min-width: 768px){.campus-selector__container{padding:0 3rem}}@media screen and (min-width: 1248px){.campus-selector__container{padding:0}}@media screen and (min-width: 768px){.campus-selector__container{justify-content:flex-end;padding-top:1.0625rem;padding-bottom:1.0625rem;gap:1rem}}@media screen and (min-width: 1248px){.campus-selector__container{gap:1.5rem}}.campus-selector--desktop{display:none}@media screen and (min-width: 768px){.campus-selector--desktop{display:block}}@media screen and (min-width: 768px){.campus-selector--mobile{display:none}}.text-button{padding:0.6875rem 1.5rem;border-radius:3.75rem;text-decoration:none;transition:all .2s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:0.875rem;line-height:1.225rem}.text-button.theme-uobmain{border:2px solid #000;background:#000;color:#fff}.text-button.theme-uobmain:hover{background:none;color:#000}.text-button.theme-uobmain--inverse{border:2px solid #fff;background:#fff;color:#000}.text-button.theme-uobmain--inverse:hover{background:none;color:#fff}.text-button.theme-uobmain:focus-visible{border:2px solid #dcc266;background:#000;color:#fff;outline:2px solid #000}.text-button.theme-redexample{border:2px solid red;background:red;color:#fff}.text-button.theme-redexample:hover{background:none;color:red}.text-button.theme-redexample--inverse{border:2px solid blue;background:blue;color:#fff}.text-button.theme-redexample--inverse:hover{background:none;color:blue}.text-button.theme-redexample:focus-visible{border:2px solid #dcc266;background:red;color:#fff;outline:2px solid red}.text-button--hollow.theme-uobmain{background:none;color:#000}.text-button--hollow.theme-uobmain:hover{background:#000;color:#fff}.text-button--hollow.theme-uobmain--inverse{background:none;color:#fff}.text-button--hollow.theme-uobmain--inverse:hover{background:#fff;color:#000}.text-button--hollow.theme-redexample{background:none;color:red}.text-button--hollow.theme-redexample:hover{background:red;color:#fff}.text-button--hollow.theme-redexample--inverse{background:none;color:blue}.text-button--hollow.theme-redexample--inverse:hover{background:blue;color:#fff}@media screen and (min-width: 1248px){.text-button{font-size:1rem;line-height:1.4rem}}@media screen and (min-width: 1248px){.text-button{padding:1rem 2.25rem}}.form-input.theme-uobmain{background:#000;color:#fff}.form-input.theme-uobmain .form-input__input{width:100%;padding:1.375rem 0.375rem 0.5rem 0.375rem;border:unset;border-bottom:1.5px solid #fff;background:#000;color:#fff;outline:none;font-size:1rem;line-height:1.4375}@media screen and (min-width: 768px){.form-input.theme-uobmain .form-input__input{padding-bottom:1rem}}@media screen and (min-width: 1248px){.form-input.theme-uobmain .form-input__input{font-size:1.125rem;line-height:1.3888888889;padding-bottom:1rem}}.form-input.theme-uobmain--inverse{background:#fff;color:#000}.form-input.theme-uobmain--inverse .form-input__input{border-bottom:1.5px solid #000;background:#fff;color:#000}.form-input.theme-uobmain .form-input__input::placeholder{color:#878789;font-size:1rem;line-height:1.4375}@media screen and (min-width: 1248px){.form-input.theme-uobmain .form-input__input::placeholder{font-size:1.125rem;line-height:1.3888888889}}.form-input.theme-uobmain .form-input__input:focus{border-bottom:2px solid #000;background:#dcc266;color:#000}.form-input.theme-uobmain .form-input__input:focus::placeholder{color:#000}.form-input.theme-uobmain .form-input__input:invalid{border-bottom:2px solid #e84c56}.form-input.theme-redexample{background:red;color:#fff}.form-input.theme-redexample .form-input__input{width:100%;padding:1.375rem 0.375rem 0.5rem 0.375rem;border:unset;border-bottom:1.5px solid #fff;background:red;color:#fff;outline:none;font-size:1rem;line-height:1.4375}@media screen and (min-width: 768px){.form-input.theme-redexample .form-input__input{padding-bottom:1rem}}@media screen and (min-width: 1248px){.form-input.theme-redexample .form-input__input{font-size:1.125rem;line-height:1.3888888889;padding-bottom:1rem}}.form-input.theme-redexample--inverse{background:blue;color:#fff}.form-input.theme-redexample--inverse .form-input__input{border-bottom:1.5px solid #000;background:blue;color:#fff}.form-input.theme-redexample .form-input__input::placeholder{font-size:1rem;line-height:1.4375}@media screen and (min-width: 1248px){.form-input.theme-redexample .form-input__input::placeholder{font-size:1.125rem;line-height:1.3888888889}}.form-input.theme-redexample .form-input__input:focus{border-bottom:2px solid #000;background:#dcc266;color:#fff}.form-input.theme-redexample .form-input__input:focus::placeholder{color:#fff}.form-input.theme-redexample .form-input__input:invalid{border-bottom:2px solid}.form-select__select-wrapper{position:relative;display:flex;width:100%;height:3rem;padding:.5rem 0;border-radius:3.75rem;cursor:pointer;transition:all .2s ease-in}.form-select__select{position:relative;z-index:1;width:100%;padding-left:1rem;border:unset;appearance:none;background:none;cursor:pointer;font-weight:700;outline:none;font-size:1.125rem;line-height:1.3888888889;transition:all .2s ease-in;font-size:1rem;line-height:1.375}@media screen and (min-width: 1248px){.form-select__select{font-size:1.125rem;line-height:1.3888888889}}.form-select__icon{position:absolute;z-index:0;top:50%;right:0.625rem;width:1.5rem;height:100%;transform:translateY(-50%)}.form-select__icon svg{position:absolute;top:50%;width:100%;height:1.5rem;transform:translateY(-50%)}.form-select__icon svg path{transition:transform .2s ease-in}.form-select.theme-uobmain .form-select__icon svg>path{fill:#fff}.form-select.theme-uobmain .form-select__select-wrapper{border:2px solid #fff}.form-select.theme-uobmain .form-select__select{color:#fff}.form-select.theme-uobmain .form-select__select option{color:#000}.form-select.theme-uobmain--inverse .form-select__icon svg>path{fill:#000}.form-select.theme-uobmain--inverse .form-select__select-wrapper{border:2px solid #000}.form-select.theme-uobmain--inverse .form-select__select{color:#000}.form-select.theme-redexample .form-select__icon svg>path{fill:#fff}.form-select.theme-redexample .form-select__select-wrapper{border:2px solid #fff}.form-select.theme-redexample .form-select__select{color:#fff}.form-select.theme-redexample .form-select__select option{color:#fff}.form-select.theme-redexample--inverse .form-select__icon svg>path{fill:#000}.form-select.theme-redexample--inverse .form-select__select-wrapper{border:2px solid #000}.form-select.theme-redexample--inverse .form-select__select{color:#fff}.form-select.theme-uobmain .form-select__select-wrapper:hover{background:#fff;cursor:pointer}.form-select.theme-uobmain .form-select__select-wrapper:hover .form-select__select{color:#000;cursor:pointer}.form-select.theme-uobmain .form-select__select-wrapper:hover .form-select__icon svg>path{fill:#000;transform:translateY(1px)}.form-select.theme-uobmain--inverse .form-select__select-wrapper:hover{background:#000;color:#fff;cursor:pointer}.form-select.theme-uobmain--inverse .form-select__select-wrapper:hover .form-select__select{color:#fff;cursor:pointer}.form-select.theme-uobmain--inverse .form-select__select-wrapper:hover .form-select__icon>svg>path{fill:#fff;transform:translateY(3px)}.form-select.theme-redexample .form-select__select-wrapper:hover{background:blue;cursor:pointer}.form-select.theme-redexample .form-select__select-wrapper:hover .form-select__select{color:#fff;cursor:pointer}.form-select.theme-redexample .form-select__select-wrapper:hover .form-select__icon svg>path{fill:#000;transform:translateY(1px)}.form-select.theme-redexample--inverse .form-select__select-wrapper:hover{background:red;color:#fff;cursor:pointer}.form-select.theme-redexample--inverse .form-select__select-wrapper:hover .form-select__select{color:#fff;cursor:pointer}.form-select.theme-redexample--inverse .form-select__select-wrapper:hover .form-select__icon>svg>path{fill:#fff;transform:translateY(3px)}.form-select.theme-uobmain .form-select__select-wrapper:focus-within{border:2px solid #dcc266;background:#000;outline:2px solid #000}.form-select.theme-uobmain .form-select__select-wrapper:focus-within .form-select__select{color:#fff}.form-select.theme-uobmain .form-select__select-wrapper:focus-within .form-select__icon svg>path{fill:#fff}.form-select.theme-redexample .form-select__select-wrapper:focus-within{border:2px solid #dcc266;background:red;outline:2px solid red}.form-select.theme-redexample .form-select__select-wrapper:focus-within .form-select__select{color:#fff}.form-select.theme-redexample .form-select__select-wrapper:focus-within .form-select__icon svg>path{fill:#fff}.nav-link{position:relative;text-decoration:none;text-decoration-color:rgba(0,0,0,0);transition:all .3s ease-in}.nav-link:hover{text-decoration:underline;text-decoration-color:inherit;text-decoration-thickness:1.5px;text-underline-offset:7px}@media screen and (min-width: 768px){.nav-link:hover{text-underline-offset:10px}}.nav-link__icon{position:absolute;transition:all .3s ease-in}.nav-link__icon svg{overflow:visible;width:100%;height:100%;object-fit:cover}.nav-link--level-one{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.75rem;line-height:2.1rem;padding-right:1.875rem}@media screen and (min-width: 768px){.nav-link--level-one{font-size:2.25rem;line-height:2.25rem}}@media screen and (min-width: 1248px){.nav-link--level-one{font-size:3rem;line-height:3.6rem}}.nav-link--level-one .nav-link__icon{width:0.75rem;height:1.125rem;margin-left:0.375rem}@media screen and (min-width: 768px){.nav-link--level-one .nav-link__icon{width:0.875rem;height:1.4375rem;margin-left:0.625rem}}@media screen and (min-width: 1248px){.nav-link--level-one .nav-link__icon{width:0.9375rem;height:1.625rem}}.nav-link--level-two{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem;padding-right:1rem}@media screen and (min-width: 768px){.nav-link--level-two{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.nav-link--level-two{font-size:2.25rem;line-height:2.7rem}}@media screen and (min-width: 768px){.nav-link--level-two{padding-right:1.5rem}}.nav-link--level-two .nav-link__icon{width:0.4375rem;height:0.875rem;margin-left:0.375rem}@media screen and (min-width: 768px){.nav-link--level-two .nav-link__icon{width:0.625rem;height:1rem;margin-left:0.625rem}}.nav-link.theme-uobmain{background:#000;color:#fff}.nav-link.theme-uobmain:focus-visible{background:#dcc266;color:#000;transition:none}.nav-link.theme-uobmain:focus-visible path{stroke:#000}.nav-link.theme-uobmain--inverse{background:#fff;color:#000}.nav-link.theme-uobmain--inverse:focus-visible{background:#dcc266}.nav-link.theme-redexample{background:red;color:#fff}.nav-link.theme-redexample:focus-visible{background:#dcc266;color:red;transition:none}.nav-link.theme-redexample:focus-visible path{stroke:red}.nav-link.theme-redexample--inverse{background:blue;color:#fff}.nav-link.theme-redexample--inverse:focus-visible{background:#dcc266}.page-link{position:relative;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;text-decoration-color:rgba(0,0,0,0);transition:all .3s ease-in}.page-link--level-one{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.75rem;line-height:2.1rem}@media screen and (min-width: 768px){.page-link--level-one{font-size:2.25rem;line-height:2.25rem}}@media screen and (min-width: 1248px){.page-link--level-one{font-size:3rem;line-height:3.6rem}}.page-link--level-two{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.5rem;line-height:1.8rem}@media screen and (min-width: 768px){.page-link--level-two{font-size:1.75rem;line-height:2.1rem}}@media screen and (min-width: 1248px){.page-link--level-two{font-size:2.25rem;line-height:2.7rem}}.page-link.theme-uobmain{background:#000;color:#fff}.page-link.theme-uobmain:focus-visible{background:#dcc266;color:#000}.page-link.theme-uobmain--inverse{background:#fff;color:#000}.page-link.theme-uobmain--inverse:focus-visible{background:#dcc266}.page-link.theme-redexample{background:red;color:#fff}.page-link.theme-redexample:focus-visible{background:#dcc266;color:red}.page-link.theme-redexample--inverse{background:blue;color:#fff}.page-link.theme-redexample--inverse:focus-visible{background:#dcc266}.page-link:hover{text-decoration:underline;text-decoration-color:inherit;text-decoration-thickness:1.5px;text-underline-offset:7px}@media screen and (min-width: 768px){.page-link:hover{text-underline-offset:10px}}.card-menu{position:relative;max-width:35.25rem;padding:1.5rem;border-bottom:0.125rem solid rgba(0,0,0,0)}.card-menu.theme-uobmain{color:#fff}.card-menu.theme-uobmain .card-menu__image-wrapper::after{background-color:#000}.card-menu.theme-uobmain:has(:focus-visible){border-bottom-color:#000;background:#dcc266;color:#000}.card-menu.theme-uobmain:has(:focus-visible) .icon--arrow-right path{stroke:#000}.card-menu.theme-uobmain:has(:focus-visible) .card-menu__tag{background-color:#dcc266}.card-menu.theme-redexample{color:#fff}.card-menu.theme-redexample .card-menu__image-wrapper::after{background-color:red}.card-menu.theme-redexample:has(:focus-visible){border-bottom-color:#fff;background:#dcc266;color:#fff}.card-menu.theme-redexample:has(:focus-visible) .icon--arrow-right path{stroke:#000}.card-menu.theme-redexample:has(:focus-visible) .card-menu__tag{background-color:#dcc266}.card-menu__image-wrapper{position:absolute;z-index:-1;overflow:hidden;width:100%;height:100%;margin-bottom:0.5rem;inset:0}.card-menu__image-wrapper::after{position:absolute;z-index:0;width:100%;height:100%;content:"";inset:0;opacity:.7}.card-menu__image-wrapper img{height:100%;object-fit:cover;transition:transform .3s ease}.card-menu__tag{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:normal;font-size:0.875rem;line-height:1.225rem}@media screen and (min-width: 1248px){.card-menu__tag{font-size:1rem;line-height:1.4rem}}.card-menu__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.25rem;line-height:1.5rem;padding-bottom:0.5rem;margin-top:1rem}@media screen and (min-width: 768px){.card-menu__title{font-size:1.375rem;line-height:1.65rem}}@media screen and (min-width: 768px){.card-menu__title{font-size:1.875rem;line-height:2.4375rem}}@media screen and (min-width: 1248px){.card-menu__title{padding-bottom:0.75rem}}.card-menu__description{padding-bottom:0.5rem;font-size:1rem;line-height:1.375}@media screen and (min-width: 768px){.card-menu__description{padding-bottom:1.5rem}}.card-menu__link{text-decoration:none}.card-menu__link::after{position:absolute;z-index:2;content:"";inset:0}.card-menu__cta .link-with-arrow::after{position:absolute;z-index:2;content:"";inset:0}.card-menu__arrow{width:1.875rem;height:1.875rem}@media screen and (min-width: 768px){.card-menu__arrow{width:2.5rem;height:2.8125rem}}@media screen and (min-width: 1248px){.card-menu__arrow{width:3.125rem;height:3.125rem}}.card-menu__arrow svg{width:100%;height:100%}.card-menu--primary .card-menu__title{padding-top:25%}@media screen and (min-width: 768px){.card-menu--secondary .card-menu__title{font-family:"CanelaDeck","Times New Roman","Times",serif;font-style:normal;font-weight:400;font-size:1.125rem;line-height:1.575rem}}@media screen and (min-width: 768px)and (min-width: 1248px){.card-menu--secondary .card-menu__title{font-size:1.375rem;line-height:1.7875rem}}.card-menu:hover{cursor:pointer}.card-menu:hover img{transform:scale(1.2)}.card-menu:hover .icon--arrow-right path:first-child{transform:scaleX(1.5);transition:transform .3s ease-in}.card-menu:hover .icon--arrow-right path:nth-child(2){transform:translateX(5px);transition:transform .3s ease-in}.reverse-link-with-arrow{position:relative;display:inline-flex;align-items:center;justify-content:center;padding-left:1.25rem;border-bottom:2px solid rgba(0,0,0,0);text-decoration:none;transition:all .3s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:1rem;line-height:1.4rem}@media screen and (min-width: 1248px){.reverse-link-with-arrow{font-size:1.125rem;line-height:1.575rem}}.reverse-link-with-arrow.lock-scroll{overflow:hidden}.reverse-link-with-arrow::after{position:absolute;top:50%;right:-1.25rem;width:0.875rem;content:"•";opacity:0;transform:translateY(-50%);transition:all .3s ease-in}.reverse-link-with-arrow__icon{position:absolute;left:-1.25rem;width:0.75rem;height:0.625rem;flex-shrink:0;transition:all .3s ease-in}.reverse-link-with-arrow__icon path:first-child{transform-origin:right;transition:transform .3s ease-in}.reverse-link-with-arrow__icon path:nth-child(2){transition:transform .3s ease-in}.reverse-link-with-arrow__icon svg{overflow:visible;width:100%;height:100%;object-fit:cover}.reverse-link-with-arrow__title{position:relative;text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:5px}.reverse-link-with-arrow:hover{transform:translateX(-1.25rem)}.reverse-link-with-arrow:hover::after{opacity:1}.reverse-link-with-arrow:hover .reverse-link-with-arrow__icon path:first-child{transform:scaleX(1.3)}.reverse-link-with-arrow:hover .reverse-link-with-arrow__icon path:nth-child(2){transform:translateX(-5px)}.reverse-link-with-arrow.theme-uobmain{background:#000;color:#fff}.reverse-link-with-arrow.theme-uobmain:focus-visible{border-bottom:2px solid #000;background:#dcc266;color:#000}.reverse-link-with-arrow.theme-uobmain:focus-visible .reverse-link-with-arrow__title{text-decoration-color:rgba(0,0,0,0)}.reverse-link-with-arrow.theme-uobmain:focus-visible path{stroke:#000}.reverse-link-with-arrow.theme-uobmain--inverse{background:#fff;color:#000}.reverse-link-with-arrow.theme-uobmain--inverse:focus-visible{background:#dcc266}.reverse-link-with-arrow.theme-redexample{background:red;color:#fff}.reverse-link-with-arrow.theme-redexample:focus-visible{border-bottom:2px solid red;background:#dcc266;color:red}.reverse-link-with-arrow.theme-redexample:focus-visible .reverse-link-with-arrow__title{text-decoration-color:rgba(0,0,0,0)}.reverse-link-with-arrow.theme-redexample:focus-visible path{stroke:red}.reverse-link-with-arrow.theme-redexample--inverse{background:blue;color:#fff}.reverse-link-with-arrow.theme-redexample--inverse:focus-visible{background:#dcc266}.campus-selector-link{padding-bottom:0.0625rem;text-decoration:underline;text-decoration-color:rgba(0,0,0,0);text-decoration-thickness:0.125rem;text-underline-offset:0.3125rem;transition:all .2s ease-in;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:bold;font-size:1rem;line-height:1.4rem}.campus-selector-link.theme-uobmain{background:#000;color:#fff}.campus-selector-link.theme-uobmain:hover{background:#58595b}.campus-selector-link.theme-uobmain:focus-visible{background:#dcc266;color:#000}.campus-selector-link.theme-redexample{background:red;color:#fff}.campus-selector-link.theme-redexample:hover{background:#fff}.campus-selector-link.theme-redexample:focus-visible{background:#dcc266;color:#000}@media screen and (min-width: 1248px){.campus-selector-link{font-size:1.125rem;line-height:1.575rem}}.campus-selector-link.lock-scroll{overflow:hidden}.campus-selector-link--active{text-decoration-color:currentcolor}html,body{width:100%;height:100%;padding:0;margin:0}html{box-sizing:border-box;font-size:16px}body{font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1rem;line-height:1.4rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}@media screen and (min-width: 1248px){body{font-size:1.125rem;line-height:1.575rem}}body.lock-scroll{overflow:hidden}*,*::before,*::after{box-sizing:inherit}body,h1,h2,h3,h4,h5,h6,p,ol,ul{padding:0;margin:0;font-weight:normal}ol,ul{list-style:none}button{padding:0;border:0;appearance:none;background-color:rgba(0,0,0,0);outline:none}a{color:inherit;outline:none}button,a{color:inherit;cursor:pointer}blockquote{margin:0}figure{margin:0}.sr-only{position:absolute;top:auto;left:-10000px;overflow:hidden;width:1px;height:1px;font-size:1rem}::selection.theme-uobmain{background:#dcc266}::selection.theme-redexample{background:#dcc266}.skip-to-content{position:relative;width:100%}.skip-to-content.theme-uobmain{background:#dcc266}.skip-to-content.theme-redexample{background:#dcc266}.skip-to-content__link{position:absolute;top:0;left:-1000px;display:block;padding:0.625rem 1.5rem;text-decoration:underline;font-family:"Manrope","Arial",sans-serif;font-style:normal;font-weight:400;font-size:1rem;line-height:1.4rem}@media screen and (min-width: 1248px){.skip-to-content__link{font-size:1.125rem;line-height:1.575rem}}.skip-to-content__link.lock-scroll{overflow:hidden}@media screen and (min-width: 768px){.skip-to-content__link{padding:0.625rem 3rem}}@media screen and (min-width: 1248px){.skip-to-content__link{padding:0.625rem 1rem}}.skip-to-content__link:focus{position:static}.skip-to-content.theme-uobmain a{color:#000}.skip-to-content.theme-redexample a{color:#fff}