html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%; background: transparent; font-weight: 100; -webkit-font-smoothing: antialiased;}

@font-face {
    font-family: 'Relative-Book';
    src: url('../fonts/Relative-Book.eot');
    src: url('../fonts/Relative-Book.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Relative-Book.svg#Relative-Book') format('svg'),
         url('../fonts/Relative-Book.ttf') format('truetype'),
         url('../fonts/Relative-Book.woff') format('woff'),
         url('../fonts/Relative-Book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }
  
@font-face {
    font-family: 'Relative-Medium';
    src: url('../fonts/Relative-Medium.eot');
    src: url('../fonts/Relative-Medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Relative-Medium.svg#Relative-Medium') format('svg'),
         url('../fonts/Relative-Medium.ttf') format('truetype'),
         url('../fonts/Relative-Medium.woff') format('woff'),
         url('../fonts/Relative-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
      
body{
	background: #FFF;
    font-family: 'Relative-Book';
}

.fourCol{
    flex-basis: 33.33%;
}

.threeCol{
    flex-basis: 25%; 
}

.twoCol{
    flex-basis: 16.66%; 
}

h1, h2, h3, h4{
    font-family: 'Relative-Medium';
}

.grid{
    padding: 0 44px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.grid .one{
    flex-basis: 7.42%;
}

.grid .two{
    flex-basis: calc(14.84% + 1%);
}

.grid .four{
    flex-basis: calc(29.68% + 3%);
}

.grid .five{
    flex-basis: calc(37.1% + 4%);
}

.grid .eight{
    flex-basis: 66.36%;
}

.grid .twelve{
    flex-basis: 100%;
}

.desktop{
	display: block;
}

.mobile{
	display: none;
}


/* ------------------------------ HEADER ------------------------------------------  */

nav{
    position: fixed;
    width: 100%;
    height: 75px;
    background: #FFF;
    border-bottom: 1px solid #000;
    display: flex;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.logo{
    flex-basis: 50%;
    border-right: 1px solid;
    align-items: center;
    display: flex;
    padding-left: 40px;
    box-sizing: border-box;
}

.logo img{
    height: 25px;
    width: auto;
    margin-top: 5px;
}

nav ul{
    display: flex;
    flex-basis: 50%;
    list-style: none;
    cursor: pointer;
}

nav ul li{
    /*flex-basis: 33.33%;*/
    flex-basis: 50%;
    display: flex;
    border-right: 1px solid #000;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 22px;
    position: relative;
    background: #fff;
}

nav ul li.desktop{
	display: flex;
}

nav ul li a.topNav{
    position: absolute;
    z-index: 9;
}

nav ul li:hover{
    background: #000;
    color: #FFF;
    transition: all 0.3s linear;
}

nav ul li:nth-child(3){
    border-right: none;
}

nav ul li ul{
    display: flex;
    position: absolute;
    top: 76px;
    background: #FFF;
    width: calc(100% + 2px);
    flex-wrap: wrap;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    padding: 25px 0;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    z-index: -12;
}

nav ul li:hover ul{
    transform: translateY(0%);
}

nav ul li ul li{
    flex-basis: 100%;
    border: none;
    color: #000!important;
    background: #FFF!important;
    line-height: 26px;
    z-index: -12;
    text-align: center;
}

nav ul li ul li:hover, nav ul li ul li a:hover{
    text-decoration: underline;
}

a.pgLink{
    color:#000;
    text-align: center;
    display: block;
    margin:5px;
}

a.pgLink:hover{
    text-decoration: underline!important;
}

nav ul li ul hr{
    flex-basis: 100%;
    margin-bottom: 25px;
    margin-top: 25px;
    height: 1px;
    box-sizing: border-box;
    background: #000;
    border: none;
}

.main{
    display: block;
    margin-top: 76px;
    width: 100%;
    position: relative;
    z-index: 1;
}

#ugWrapper{
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #000;
    overflow: hidden;
    box-sizing: border-box;
}

#ugToggle{
    padding: 25px 0;
    border-bottom: 1px solid #000;
    position: relative;
    z-index: 9;
    text-decoration: none!important;
}

#pgToggle{
    padding: 0 0 25px 0;
    border-bottom: 1px solid #000;
    position: relative;
    z-index: 9;
    text-decoration: none!important;
}

#pgWrapper{
    width: 100%;
    padding: 20px;
    overflow: hidden;
    border-bottom: 1px solid #000;
}


.programmesNav .subNav{
	padding-bottom: 0px;
}

nav ul li ul.programmes{
    padding: 0px;
}

nav ul li:hover ul.programmes{
    margin-bottom: 300px;
}

#mobileNavBtn{
	width: 57px;
	height: 57px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}

#navClose{
	display: none;
}

#mobileNavBtn.open #navOpen{
	display: none;
}

#mobileNavBtn.open #navClose{
	display: block;
}

.programmesNav .subNav{
    border-bottom:0px;
}

/* ------------------------------ FOOTER -----------------------------------------  */

footer{
    display: flex;
    width: 100%;
    padding: 70px 40px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

footer .col{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p{
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}

footer a{
    color: #000;
    text-decoration: none;
}

.subFooter{
	height: 75px;
    border-top: 1px solid;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subFooter a{
	margin: 20px;
}

.iubenda-tp-btn.iubenda-cs-preferences-link{
	display: none!important;	
}

/* ------------------------------ BANNERS ----------------------------------------  */

.banner{
    width: 100%;
    height: calc(100vh - 70px);
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #000;
    position: relative;
}

.banner.largeText h1{
    font-size: 200px;
    color: #FFF;
    position: relative;
    z-index: 2;
}

.banner.smallText h1{
    font-size: 120px;
    line-height: 138px;
    color: #FFF;
    position: relative;
    z-index: 2;
}

.banner.tint:after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}

.banner.textBanner{
    height: calc(60vh - 70px);
}

.banner.textBanner h1{
    color: #000;
}

.volume{
	position: absolute;
	width: 50px;
	height: 50px;
	right: 50px;
	bottom: 50px;
	z-index: 99999999;
	cursor: pointer;
}

.volume.muted .mute{
	display: none;
}

.volume .mute, .volume .unmute{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 50px;
	height: 50px;
}

.videoBanner{
	pointer-events: all!important;
}

/* --------------------------------- Generic Flex Content ------------------------------------  */

a{
    text-decoration: none;
    color: inherit;
}

section{
    border-bottom: 1px solid #000;
}

h2{
    font-size: 60px;
    line-height: 70px;
}

h3{
    font-size: 40px;
    line-height: 40px;
}

h4{
    font-size: 26px;
    line-height: 31px;
}

p{
    font-size: 40px;
    line-height: 48px;
}

.sectionTitle{
    padding: 90px 44px 36px 44px;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: baseline;
}

.sectionTitle .titleLink{
    font-size: 26px;
    line-height: 31px;
}

.sectionTitle + .embedContainer{
	margin-top: 0px!important;
}

.titleLink{
	position: relative;
}

.titleLink:hover::before {
  transform: scaleX(1);
}

.titleLink:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}


.colContainer{
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.colContainer.half .leftCol , .colContainer.half .rightCol{
    flex-basis: 50%;
    height: 28.13vw;
    position: relative;
    min-height: 450px;
}

.colContainer.third .col {
    flex-basis: 33.33%;
    height: 23vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    text-align: center;
}

/* --------------------------------- Video Slider - Half Width -------------------------------------  */

.videoSlider .colContainer{
    overflow: hidden;
}

.videoSwiper .slide{
    background-position: center;
    background-size: cover;
}

.videoInfoSwiper .slide{
    padding: 40px;
    box-sizing: border-box;
}

.videoInfoSwiper .slide h2{
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 80px);
}

.topBar{
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    font-size: 26px;
    position: relative;
    margin-left: 20px;
}

.topBar .smallTitle{
    margin-left: 15px;
}

.topBar .smallTitle::before{
    content: '';
    background: #000;
    width: 17px;
    height: 17px;
    border-radius: 17px;
    position: absolute;
    top: 4px;
    left: -20px;
}

.videoSlider .swiperControls{
    position: absolute;
    left: 15%;
    width: 70%;
    top: calc(100% - 140px);
    height: 140px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swiperPrev, .swiperNext, .swiperPlay{
    width: 40px;
    cursor: pointer;
}

.swiperPrev img, .swiperNext img, .swiperPlay img, .swiperLink img{
	width: 100%;
    height: auto;
}

.swiperLink{
	position: relative;
}

.swiperLink:hover::before {
    transform: scaleX(1);
}

.swiperLink::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease;
}

.swiperPlay .stop{
	display: none;
}

.swiperPlay.playing .play{
	display: none;
}

.swiperPlay.playing .stop{
	display: block;
}

.videoSwiper video{
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------- Video Block - Full Width --------------------------------------  */

.fullVideoHolder{
    width: 100%;
    height: 56.25vw;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.fullVideoHolder video{
    min-width: 100%    !important;
    height: 56.25vw   !important;
    object-fit: cover;
}

.videoOverlay{
    position: absolute;
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.45, 0, 0.45, 1);
}

.playing .videoOverlay{
    opacity: 0;
}

.videoOverlay .inner{
    color: #FFF;
    text-align: center;
}

.videoOverlay .inner h2{
    font-size: 120px;
    line-height: 140px;
}

.videoOverlay .inner p{
    margin-top: 44px;
}

.videoControls{
    position: absolute;
    bottom: 65px;
    width: 100%;
}

.videoControls .videoPlay{
    width: 46px;
    height: 46px;
    background-image: url('../images/videoPlay.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.playing .videoControls .videoPlay{
    background-image: url('../images/videoStop.svg');
}

.videoControls .two{
    justify-content: center;
    display: flex;
    align-items: center;
}

.videoDuration h4{
    color: #FFF;
}

.videoBlock + .imageSlider{
	margin-top: 44px;
}



/* -------------------------------------- Events Block ---------------------------------------------  */

.eventsBlock .colContainer{
    overflow: hidden;
}

.eventsSwiper .swiperControls{
    position: absolute;
    left: 15%;
    width: 70%;
    top: calc(100% - 140px);
    height: 140px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eventsImagesSwiper .slide{
    background-position: center;
    background-size: cover;
}

.eventsSwiper .slide{
    padding: 40px;
    box-sizing: border-box;
}

.eventsSwiper .slide h2{
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 80px);
}

.eventsBlock .colContainer.half .leftCol, .eventsBlock .colContainer.half .rightCol {
        flex-basis: 50%;
        height: 50vw;
        position: relative;
}

.eventsSwiper .slide .inner{
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        height: 100%;
        position: relative;
        height: calc(100% - 40px);
        justify-content: center;
}

.eventsSwiper .slide .inner h4{
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 44px;
}

.eventsSwiper .slide .inner h2{
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.eventsSwiper .slide .inner p{
    text-align: center;
    flex-basis: 100%;
    margin-top: 44px;
    padding: 0 40px;
}

/* ------------------------------------- Programmes Block ------------------------------------------  */

.programmesBlock .colContainer.third .col {
    background-position: center;
    background-size: cover;
    color: #FFF;
    transition: all 0.6s cubic-bezier(0.45, 0, 0.45, 1);
    position: relative;
}

.programmesBlock .colContainer.third .col::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFF8A7;
    top: 0px;
    left: 0px;
    opacity: 0.1;
    transition: all 0.6s cubic-bezier(0.45, 0, 0.45, 1);
    z-index: 1;
}

.programmesBlock .colContainer.third .col h3{
    position: relative;
    z-index: 3;
    padding: 40px;
}

.programmesBlock .colContainer.third .col:hover::after {
    opacity: 1;
}

.programmesBlock .colContainer.third .col:hover {
    color: #000;
}

.programmeLinks{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    flex-wrap: wrap;
}

.programmeLinks .programmeLink{
    margin: 0 30px 0 30px;
    font-size: 26px;
    line-height: 31px;    
    flex-wrap: wrap;
    margin-bottom: 10px;
}

/* ------------------------------ Text Block -----------------------------------------  */

.textBlock{
    padding: 45px 0 120px;
    text-align: center;
    flex-wrap: wrap;
}

.textBlock a {
  position: relative;
  color: #000;
  text-decoration: none;
}

.textBlock a:hover {
  color: #000;
}

.textBlock a:hover::before {
  transform: scaleX(1);
}

.textBlock a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}

.textBlock p+p{
	margin-top: 48px;
}

.bio p+p{
	margin-top: 48px;
}

.textBlock h4{
	flex-basis: 100%;
    margin-bottom: 122px;
}

.readMoreBtn{
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    margin: auto;
    transition: all 0.3s cubic-bezier(0.45, 0, 0.45, 1);
    background-image: url('../images/plus.svg');
    background-position: center;
    background-size: contain;
}

.readMoreBtn.enabled{
    transform: rotate(-45deg);
}

.readMoreContent{
    transition: all 0.6s cubic-bezier(0.45, 0, 0.45, 1);
    max-height: 100%;
    overflow: hidden;
    padding-top: 122px;
    padding-bottom: 122px;
}

.readMoreContent.hide{
    max-height: 0;
    margin-top: 0px;
    padding-bottom: 0px;
}



/* ------------------------------------- Google Maps  --------------------------------------------  */

.mapHolder{
	padding: 40px;
	width: 100%;
	height: 56.25vw;
	box-sizing: border-box;
	max-height: 900px;
}

.acf-map {
    width: 100%;
    height: 100%;
    margin: 0;
}

.acf-map img {
   max-width: inherit !important;
}


/* --------------------------------- Video Slider - Half Width -------------------------------------  */


.fullSwiper .slide{
    background-position: center;
    background-size: cover;
}

.fullSwiper .slide{
    box-sizing: border-box;
}

.fullSwiper .slide h2{
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 80px);
}

.topBar{
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    font-size: 26px;
    position: relative;
    margin-left: 20px;
}

.imageSlider .topBar{
	display: flex;
    justify-content: space-between;
    pointer-events: none;
    font-size: 26px;
    position: relative;
    padding: 20px 40px;
    border-top: 1px solid;
    width: 100%;
    box-sizing: border-box;
}

.topBar .smallTitle{
    margin-left: 30px;
}

.topBar .smallTitle::before{
    content: '';
    background: #000;
    width: 17px;
    height: 17px;
    border-radius: 17px;
    position: absolute;
    top: 4px;
    left: 0px;
}

.fullSwiper{
    min-height: 46.25vw;
    overflow: hidden;
    margin-bottom: -3px;
}

.fullSwiper .swiperControls{
    position: absolute;
    left: 15%;
    width: 70%;
    top: calc(100% - 140px);
    height: 140px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fullSwiper .slide img{
    object-fit: cover;
    width: 100%;
    position: relative;
    height: 46.25vw;
}

.imageSlider .topBar{
	margin-left: 0px;
	pointer-events: all;
}

.imageSlider .topBar .smallTitle:before {
	content: '';
	background: #000;
	width: 17px ;
	height: 17px ;
	border-radius: 17px;
	position: absolute;
	top: 23px;
	left: 40px;
}

.fullSwiper .swiperControls {
    position: absolute;
    left: 32.5%;
    width: 35%;
    top: calc(100% - 140px);
    height: 140px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    filter: invert(1);
}


/* ------------------------------ Students Block -----------------------------------------  */

.studentsBlock .colContainer{
    display: flex;
    flex-wrap: wrap;
}

.studentsBlock .colContainer.half .col {
    flex-basis: 50%;
    background-position: center;
    background-size: cover;
    color: #FFF;
    transition: all 0.6s cubic-bezier(0.45, 0, 0.45, 1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vw;
    text-align: center;
}

.studentsBlock .colContainer.half .col::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFF8A7;
    top: 0px;
    left: 0px;
    opacity: 0.1;
    transition: all 0.6s cubic-bezier(0.45, 0, 0.45, 1);
    z-index: 1;
}

.studentsBlock .colContainer.half .col h3{
    position: relative;
    z-index: 3;
    padding: 40px;
    font-size: 60px;
    line-height: 72px;
}

.studentsBlock .colContainer.half .col:hover::after {
    opacity: 1;
}

.studentsBlock .colContainer.half .col:hover {
    color: #000;
}

.studentBlock.tint:before{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	pointer-events: none;
}

.programmeBlock.tint:before{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	pointer-events: none;
}

/* ------------------------------ Students Page -----------------------------------------  */

.studentDetails{
    display: flex;
    flex-wrap: wrap;
    padding: 44px 0;
    border-bottom: 1px solid #000;
    justify-content: center;
    text-align: center;
}

.studentDetails h4{
    flex-basis: 100%;
    margin-bottom: 120px;
}

.studentDetails h2{
    margin-bottom: 80px;
}

.studentDetails .bio{
    margin-bottom: 160px;
}

.studentDetails a {
  position: relative;
  color: #000;
  text-decoration: none;
}

.studentDetails a:hover {
  color: #000;
}

.studentDetails a:hover::before {
  transform: scaleX(1);
}

.studentDetails a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}

.studentLinks{
    width: 48%;
    display: flex;
    justify-content: center;
}

.studentLinks .studentLink{
    flex-basis: 33.33%;
    font-size: 26px;
    line-height: 31px;
}

.studentWork{
    padding: 44px 44px 0px;
    box-sizing: border-box;
    width: 100%;
}

.studentWork img.studentImage{
    width: 100%;
    height: auto;
    margin-bottom: 44px;
}

.studentFooter{
    padding: 44px;
    display: flex;
    align-items: center;
}

.studentFooter .prevStudent{
    flex-basis: 25%;
    padding-left: 88px;
    height: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.studentFooter .prevStudent:before{
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../images/sliderPrev.svg);
    position: absolute;
    left: 44px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.studentFooter .allStudents{
    flex-basis: 50%;
    text-align: center;
}

.studentFooter .nextStudent{
    flex-basis: 25%;
    text-align: right;
    padding-right: 88px;
    height: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: end;
}

.studentFooter .nextStudent:after{
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../images/sliderNext.svg);
    position: absolute;
    right: 44px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

a span{
	position: relative;
}

a span:hover::before {
  transform: scaleX(1);
}

a span:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}

.youtubeEmbed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 44px;
}

.youtubeEmbed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%!important;
  height: 100%!important;
}

.embedContainer{
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 44px;
  overflow: hidden;
}

.embedContainer iframe{
position: absolute;
  top: 0;
  left: 0;
  width: 100%!important;
  height: 100%!important;
}

.studentWork section{
	border: none;
}

.studentWork .twoImages{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.twoImages .image1{
	flex-basis: calc(50% - 22px);
	margin-right: 44px;
}

.twoImages .image2{
	flex-basis: calc(50% - 22px);
}

.twoImages .image1 img{
    width: 100%;
    height: auto;
}

.twoImages .image2 img{
    width: 100%;
    height: auto;
}

.iframeTitle{
	margin-left: 44px;
    margin-top: 44px;
    height: 8px;
}

/* ---------------------------------- Matterport Embed -----------------------------------------  */

.matterport{
    overflow: hidden;
    height: 56vw;
}

.matterport iframe{
    width: 100%;
    height: 56vw;
}

/* ------------------------------------ Events Page --------------------------------------------  */

.eventDetails .eventDate{
    flex-basis: 33.33%;
    text-align: center;
    padding: 44px 0;
}

.eventDetails .eventLocation{
    flex-basis: 33.33%;
    text-align: center;
    padding: 44px 0;
}

.eventDetails .eventTime{
    flex-basis: 33.33%;
    text-align: center;
    padding: 44px 0;
}

.eventDetails h4{
    margin-bottom: 30px;
}

.eventsFooter{
    padding: 44px;
    display: flex;
    align-items: center;
}

.eventsFooter .allEvents{
    flex-basis: 100%;
    text-align: center;
}

/* ------------------------------ Events Archive -----------------------------------------  */

.eventsBlock h4{
    text-align: center;
    cursor: pointer;
    padding: 0 44px;
}

.eventsBlock .colContainer{
    display: flex;
    flex-wrap: wrap;
}

.eventsBlock .colContainer.half .col {
    flex-basis: 50%;
    background-position: center;
    background-size: cover;
    color: #FFF;
    transition: all 0.6s cubic-bezier(0.45, 0, 0.45, 1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vw;
}

.eventsBlock .colContainer.half .col::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFF8A7;
    top: 0px;
    left: 0px;
    opacity: 0.1;
    transition: all 0.6s cubic-bezier(0.45, 0, 0.45, 1);
    z-index: 1;
}

.eventsBlock .colContainer.half .col h3{
    position: relative;
    z-index: 3;
    padding: 40px;
    font-size: 60px;
    line-height: 72px;
}

.eventsBlock .colContainer.half .col:hover::after {
    opacity: 1;
}

.eventsBlock .colContainer.half .col:hover {
    color: #000;
}

.eventBlock .inner{
    padding-top: 40px;
}

.eventBlock .topBar{
    position: absolute;
    top: 40px;
    left: 38px;
    z-index: 7;
}

.eventBlock .topBar .smallTitle::before {
    background: #FFF;
    transition: all 0.6s cubic-bezier(0.45, 0, 0.45, 1);
}

.eventBlock:hover .topBar .smallTitle::before {
    background: #000;
}

.eventBlock h3{
    text-align: center;
}

.eventBlock p{
    z-index: 3;
    position: relative;
    text-align: center;
}

/* -------------------------------------- Projects Section -----------------------------------------  */


.projectsLayout{
    padding: 44px 44px 0px;
    box-sizing: border-box;
    width: 100%;
}

.projectsLayout img.landscape{
    width: 100%;
    height: 56.25vw;
    object-fit: cover;
    object-position: 50% 50%;
}

.projectsLayout img.letterbox{
    width: 100%;
    height: 36.25vw;
    object-fit: cover;
    object-position: 50% 50%;
}

.projectsLayout .twoImages{
    display: flex;
    flex-basis: 100%;
    overflow: hidden;
}

.projectsLayout .twoImages .image1{
    flex-basis: calc(50% - 20px);
    margin-right: 40px;
    overflow: hidden;
}

.projectsLayout .twoImages .image2{
    flex-basis: calc(50% - 20px);
    overflow: hidden;
}

.projectsLayout .twoImages img.full{
	height: 56.25vw;
    object-fit: cover;
    object-position: 50% 50%;
}

.projectsLayout .twoImages img.half{
	height: 28.12vw;
    object-fit: cover;
    object-position: 50% 50%;
}

.projectsLayout .imageCaption{
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
}


/* -------------------------------------- Quote Block -----------------------------------------  */

h2.quote{
	margin-top: 75px;
	margin-bottom: 50px;
}

.quoteBlock{
	border-bottom: 0px;
}

@media screen and ( max-width: 1800px ){
	.banner.largeText h1 {
		font-size: 160px;
   }
   
   h2 {
    font-size: 40px;
    line-height: 50px;
	}
	
	p{
	  font-size: 30px;
	  line-height: 38px;
   	}
   	
  
}


@media screen and ( max-width: 1400px ){
	
	.banner.largeText h1 {
		font-size: 120px;
   }
   
   .videoOverlay .inner h2 {
    font-size: 80px;
    line-height: 90px;
}

    nav ul.topNav{
        display: none;
    }
    
    nav ul.topNav.open{
	    display: block;
    }

    .logo {
        flex-basis: calc(100% - 57px);
        padding-left: 20px;
    }

    nav {
        height: 57px;
    }

    .main {
        margin-top: 56px;
    }
    
    nav ul {
    	position: fixed;
    	width: 100%;
	    top: 58px;
	}
	
	#mobileNavBtn{
		display: flex;
	}
	
	nav ul li {
	    border-right: none;
	    border-bottom: 1px solid;
	    flex-wrap: wrap;
	}
	
	nav ul li span{
		height: 57px;
		display: flex;
		align-items: center;
		width: 100%;
	    text-align: center;
	    justify-content: center;
	    background: #FFF;
	}
	
	nav ul li:hover span{
	    background: #000;
	    color: #FFF;
	}

	
	nav ul li ul {
	    display: flex;
	    position: relative;
	    top: 0;
	    z-index: 1;
	    width: 100%;
	    flex-basis: 100%;
	    transform: none;
	    display: none;
	}
	
	nav ul li.open span{
		background: #000;
		color: #FFF;
	}
	
	nav ul li.open ul{
		display: block;
	}
	
	nav ul li ul li {
	    height: 57px;
	    border-bottom: 1px solid!important;
	}
	
	nav ul li ul {
	   border: none;
	   padding: 0;
   }
   

   
   #pgToggle{
	   padding: 0px!important;
   }
   
   #pgToggle.open{
	   background: #000!important;
	   color: #FFF!important;
   }

   #ugToggle.open{
	   background: #000!important;
	   color: #FFF!important;
   }

   #pgWrapper{
       box-sizing:border-box;
   }
   
   nav ul li:hover {
     background: none;
   }
   
   .footerjl{
	   order: 1;
	   flex-basis: 50%;
	   margin-bottom: 60px;
	   
   }
   .footerGeneral{
	    order: 3;
	   flex-basis: 50%;
	   
   }
   .footerAdmissions{
	    order: 4;
	   flex-basis: 50%;
	   margin-top: 30px;
   }
   .footerSocial{
	    order: 5;
	   flex-basis: 50%;
	   margin-top: 30px;
   }
   .footerLogo{
	   order: 2;
	   flex-basis: 50%;
	   margin-bottom: 60px;
   }
   
}

@media screen and ( max-width: 1280px){
	
	.topBar{
		font-size: 22px;
	}
	
	h4 {
    	font-size: 22px;
    	line-height: 26px;
	}
	
	h2 {
    	font-size: 36px;
		line-height: 44px;
	}
	
	.topBar {
	    margin-left: 0px;
	}
	
	.topBar .smallTitle::before {
	    width: 15px;
	    height: 15px;
    }
    
    .eventsBlock .colContainer.half .col h3 {
	    position: relative;
	    z-index: 3;
	    padding: 20px 40px;
	    font-size: 40px;
	    line-height: 50px;
	}
	
	.eventsBlock .colContainer.half .col p {
    	font-size: 24px;
    	line-height: 34px;
	}
}

@media screen and ( max-width: 1100px ){
	
	.desktop{
		display: none;
	}
	
	nav ul li.desktop{
		display: none;
	}
	
	.mobile{
		display: block;
	}
	
	p{
	    font-size: 26px;
	    line-height: 29px;
	}
	
	h2{
        font-size: 26px;
        line-height: 29px;
    }
    
    h3{
    	font-size: 26px;
    	line-height: 28px;
	}
    
    h4{
	    font-size: 14px;
	    line-height: 17px;
    }
    
    .studentsBlock .colContainer.half .col h3 {
		font-size: 26px;
    	line-height: 28px;
	}
    
    .banner.largeText h1{
        font-size: 80px;
        line-height: 80px;
        padding: 20px;
    }
    
    .banner.smallText h1{
        font-size: 44px;
        line-height: 48px;
        padding: 20px;
    }
    
    .logo img {
    	height: 20px;
    	margin-top: 2px;
	}
    
    .banner {
        width: 100%;
        height: calc(70vh - 57px);
    }

    .colContainer.half .leftCol, .colContainer.half .rightCol {
        flex-basis: 100%;
    }

    .colContainer.third .col {
        flex-basis: 50%;
        height: 34vw;
    }

    .sectionTitle {
        padding: 40px 20px 20px 20px;
    }

    .sectionTitle .titleLink {
        font-size: 14px;
        line-height: 17px;
    }

    .eventsBlock .colContainer.half .leftCol, .eventsBlock .colContainer.half .rightCol, .eventsBlock .colContainer.half .col{
        flex-basis: 100%;
    }
    
    .videoInfoSwiper .slide {
    	padding: 20px;
    }
    
    .topBar {
    	font-size: 14px;
    }
    
    .topBar .smallTitle::before {
	    width: 9px;
	    height: 9px;
	    top: 2px;
	    left: 0px;
	}
	
	.topBar .smallTitle {
		margin-left: 20px;
	}
	
	.videoInfoSwiper .slide h2 {
	    width: calc(100% - 40px);
	}
	
	.colContainer.half .leftCol, .colContainer.half .rightCol, .colContainer.half .col {
    	min-height: 350px;
	}
	
	.videoSlider .swiperControls {
	    position: absolute;
	    top: auto;
	    bottom: 20px;
	    height: 20px;
	}
	
	.eventsSwiper .swiperControls {
	    position: absolute;
	    top: auto;
	    bottom: 20px;
	    height: 20px;
	}
	
	.swiperPrev, .swiperNext, .swiperPlay, .swiperLink {
    	width: 25px;
    }
    
    .eventsSwiper .slide {
    	padding: 20px;
    }
    
    footer {
	    padding: 40px 25%;
	}
	
	footer .threeCol{
	    flex-basis: 100%;
	    margin-bottom: 40px;
	}
	
	footer .twoCol{
	    flex-basis: 100%;
	    margin-bottom: 40px;
	}
	
	footer .threeCol img{
		width: 100%;
		height: auto;
	    max-width: 200px;
	}
	
	.videoOverlay .inner h2 {
    	font-size: 44px;
	    line-height: 52px;
	}
	
	.videoOverlay .inner p {
		display: none;
    	font-size: 16px;
    	line-height: 18px;
	}
	
	.eventsSwiper .slide .inner h4 {
	    margin-bottom: 0px;
	    padding: 20px;
	}
	
	.eventsSwiper .slide .inner p{
	    font-size: 16px;
	    line-height: 18px;
        margin-top: 20px;
	}
	
	.videoControls{
		bottom: 20px;
	}
	
	.videoControls .videoPlay {
    	width: 25px;
    	height: 25px;
    }
    
    .fullSwiper{
	    height: 78vw;
    }
    
    .fullSwiper .slide img {
    	height: 68vw;
	}
	
	.fullSwiper .topBar{
	    padding: 40px 20px 20px 20px;
	}
	
	.swiperLink{
	    font-size: 14px;
	}
	
	.imageSliderNav .smallTitle{
		font-size: 14px;
	    line-height: 18px;
	    margin-left: 20px;
	}
	
	.imageSlider .topBar .smallTitle:before{
		width: 9px;
		height: 9px;
	    top: 44px;
	    left: 20px;
	}
	
	.programmeLinks{
		width: 86%;
	}
	
	.programmeLinks .programmeLink {
    	flex-basis: 100%;
    }
    
    .studentLinks{
		width: 86%;
	}
    
    .studentLinks .studentLink{
	    flex-basis: 100%;
    }
    
    .grid .eight {
    	flex-basis: 86%;
	}
	
	

}

@media screen and ( max-width: 800px ){
	
	.projectsLayout .twoImages{
		flex-wrap: wrap;
	}
	
	.projectsLayout .twoImages .image1{
	    flex-basis: 100%;
	    margin-right: 0px;
	}
	
	.projectsLayout .twoImages .image2{
	    flex-basis: 100%;
	}
	
	.projectsLayout .twoImages img.half{
		height: 56.25vw;
	}
	
	.projectsLayout .twoImages img.full{
		height: 112.5vw;
	}
	
	.prevStudent span{display: none;}
	.nextStudent span{display: none;}
	
	.pageNum{
	    margin-top: -7px;
	}
	
	.twoImages .image1{
		flex-basis: 100%;
		margin-right: 0px;
		margin-bottom: 44px;
	}
	
	.twoImages .image2{
		flex-basis: 100%;
	}
	
	.videoOverlay .inner p{
		display: none;
	}
	
}

@media screen and ( max-width: 640px ){
	
    .colContainer.third .col {
        flex-basis: 100%;
        height: 56vw;
    }
    
    .studentsBlock .colContainer.half .col {
    	flex-basis: 100%;
		height: 60vw;
    }
	
}