/* -------------------------------- 

Primary style

-------------------------------- */

body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}

/* -------------------------------- 

Header

-------------------------------- */

.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  height: 120px;
  width: 100%;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-logo { 
 	margin-top: 20px; 
	text-align: center;
}

.cd-logo img {
  width: 40%;
}
.cd-header.landing-menu .cd-logo img {
    width: auto; 
    height: 60px;
}

.cd-secondary-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2.6em;
  margin-left: 200px;
  /* hidden on small devices */
  display: none;
}

/* Fixed header on scroll desktop only */
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -155px;
    background-color: rgba(153, 153, 153, 0.9);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
	border-bottom: 5px solid #867537;
  }
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
	  padding-top: 20px;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
	
}

/* desktop styles */
@media only screen and (min-width: 1170px) {
	.cd-secondary-nav {
		display: block; margin-left: 350px;
	}
	
	 .cd-header {
		height: 120px;
		background: transparent;
		box-shadow: none;
	  }
	
	.cd-logo { text-align: center;
	  display: block;
	  position: absolute;
	  top: 50%;
	  bottom: auto;
	  -webkit-transform: translateY(-50%);
	  -moz-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
	  -o-transform: translateY(-50%);
	  transform: translateY(-50%);
	  left: 0;
	  margin-top: 0;
	}
	
}

.cd-header.landing-menu{
    background: rgba(0,0,0,0.9);
}

.cd-header.landing-menu .intro{
    background: transparent;
    border-top: none;
    margin-top: 20px;
    padding-left: 0;
    width: 100%;
}

@media only screen and (min-width: 45em) {
    .cd-header.landing-menu  #sectionmenu {
        margin: 0;
        position: relative;
        border-bottom: none;
    }
    
    .cd-header.landing-menu  #sectionmenu a:after {
        content: none;
    }
    
    .cd-header.landing-menu #sectionmenu a.select {
        background: #867537;
        padding: 10px;
        color: white !important;
    }
    
    .cd-header.landing-menu  #sectionmenu > ul > li:first-child {
        float: none;
        padding-left: 0;
    }
    .cd-header.landing-menu .intro{
        margin-top: 0;
    }
    .sectiontitle a{
        font-size: 2.4rem!important;
    }
}

@media only screen and (min-width: 45em) and (max-width: 1169px) {
    .cd-header.landing-menu  #sectionmenu ul{
        text-align: center;
    }
    .cd-header.landing-menu .intro{
        margin-top: 0;
    }
    .sectiontitle{
        display: block!important;
    }
}

@media (min-width: 1170px) {
    .sectiontitle{
        position: absolute!important;
        top: -45px;
        right: 0;
    }
    
    .cd-header.landing-menu .intro {
        width: 65%;
        text-align: left;
        float: right;
        box-sizing: border-box;
        margin-top:10px;
    }
     .cd-header.landing-menu  #sectionmenu {
        background: transparent;
        margin: 20px 0 0;
        position: relative;
        border-bottom: none;
    }
     .cd-header.landing-menu  #sectionmenu a, #sectionmenu ul li ul li a {
        color: white;
    }
}


/* -------------------------------- 

Content

-------------------------------- */

@media (max-width: 719px) { 
	.top-banner { 
        margin-top: 0;
        padding-top: 110px;
        height: auto;
    }
	.img70 {
		width: 70%
	}
}

@media (min-width: 600px) and (max-width: 719px) { 
	.cd-logo img {
	  width: 35%; 
	}
    .cd-header.landing-menu .cd-logo img {
	   width: auto; 
        height: 70px;
	}
}

@media (min-width: 720px) { 
	.top-banner { 
        margin-top: 0;
        padding-top: 70px;
        height: auto;
    }
	.top-banner h1, .top-banner h2, .top-banner p {
		text-align:left;
	}
	.cd-header.landing-menu .cd-logo img {
	   width: auto; 
        height: 70px;
	}
	
	.top-banner .six {position: absolute; bottom: 0; right: 0}
}

@media (min-width: 800px) { 
	.cd-logo img {
	  width: 28%; 
	}
    .cd-header.landing-menu .cd-logo img {
	   width: auto; 
        height: 70px;
	}
}

@media (min-width: 1170px) { 
	.cd-logo img, .cd-header.landing-menu .cd-logo img  {
	  width: 65%; 
        height: auto;
	}
}

.Sportgradient {
	background: rgb(235,91,65); 
	background: linear-gradient(120deg, rgba(235,91,65,1) 10%, rgba(243,153,50,1) 55%, rgba(250,194,6,1) 100%);
}

.Businessgradient {
	background: rgb(235,91,65); 
	background: linear-gradient(120deg, rgba(119,193,183,1) 10%, rgba(20,179,196,1) 55%, rgba(9,160,210,1) 100%);
}
.Lawgradient {
	background: rgb(235,91,65); 
	background: linear-gradient(120deg, rgba(222,85,150,1) 10%, rgba(226,87,124,1) 55%, rgba(233,87,71,1) 100%);
}
.Criminologygradient {
	background: rgb(235,91,65); 
	background: linear-gradient(120deg, rgba(222,85,150,1) 10%, rgba(226,87,124,1) 55%, rgba(233,87,71,1) 100%);
}
.Psychologygradient {
	background: rgb(235,91,65); 
	background: linear-gradient(120deg, rgba(222,85,150,1) 10%, rgba(226,87,124,1) 55%, rgba(233,87,71,1) 100%);
}
.NursingDAgradient {
	background: rgb(235,91,65); 
	background: linear-gradient(120deg, rgba(235,91,65,1) 10%, rgba(243,153,50,1) 55%, rgba(250,194,6,1) 100%);
}
.TUOLE {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_tuole.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.TUOLEchemical {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_chemical.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.TUOLEelectrical {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_electrical.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.TUOLEinstrumentation {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_instrumentation.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.TUOLEmechanical {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_mechanical.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.TUOLEpetroleum {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_petroleum.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.TUOLEprocess {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_process.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.SCEDTDA {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_scedt_da.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.SHLSDA {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_shls_da.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.engineeringDA {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/subject/hero_engineering_da.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.ACEs {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/aces.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.animation {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/commonimages/prospectus/subject_areas/main/animation.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.games {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/commonimages/prospectus/subject_areas/main/computer_games.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.campusvisits {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/campustours.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.msccybersecurity {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/images/landing/cybersecurity.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.businessenterprise {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/businessenterprise.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.creativewriting {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/creativewriting.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.mba {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/mba.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.projectmanagement {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/projectmanagement.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.publichealth {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/publichealth.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.dba {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/dba.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.ofscourses {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/subject/ofscourses.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.creativeDA {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/apprenticeships/creative2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.Sustainability {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/sustainability.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.Sustainability-nhs {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/sustainability_nhs.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.computingDA {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/apprenticeships/creative.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.scienceDA {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/apprenticeships/engineering.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.healthDA {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/apprenticeships/health.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.learningDA {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/apprenticeships/teaching.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.environment {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/landing/environment.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.hnchnd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/hnchnd.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.london_certhe, .london_giveaway, .london_pg {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/london_certhe.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.socialResearcher {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/landing/apprenticeships/socialResearcher.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}
.onlineMay {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/images/landing/subject/hero_online_may.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 50px;
}
.top-banner .innerdiv { 
	vertical-align: bottom;
}

i.mainicon { font-size:1000%;}

.spotlight {
		width: 100%;
		margin: 20px 0;
		height: auto;
}

.spotlight-left, .spotlight-right {
	box-sizing: border-box;
}

.spotlight-text {
	padding: 40px 5%;
	height: auto;
}

.spotlight-right p, .spotlight-left p{
	text-align: left;
}

@media (max-width: 992px) {
	.spotlight-image{
		min-height: 450px;
	}


}

@media (min-width: 991px) {
	.spotlight {
		display: flex;
	}
	.spotlight-left, .spotlight-right{
		width: 50%;
		float: left;
	}
	.spotlight-image{
		min-height: 550px;
	}

}

.pagecontent.landingcontent{
    margin-top:95px;
}

@media (min-width: 1170px) {
    .pagecontent.landingcontent{
        margin-top:50px;
    }
}

@media (max-width: 720px) {
    .pagecontent.landingcontent{
        margin-top:130px;
    }
}