@charset "UTF-8";
/* CSS Document */
@import url("https://use.typekit.net/ays5ujs.css");
:root {
  --dark: #2B2F36;
  --red: #D42F34;
  --blue: #5A8ABF;
  --midblue: #507AA8;
  --light: #FFFFFF;
  --grey: #cfd2d7;
 --darkgrey: #B2B4B6;
  --darkbl: #384048;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "raleway", system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
}

p {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}

h1 {
  display: block;
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

h3 {
	
	margin-top: 0em;
	font-size: 1.05em;
}

h4 {
  display: block;
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

a:link {
	text-decoration: none;
	color:#C13C3F;
}
a:visited {
	text-decoration: none;
	color:#C13C3F;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}

.small {
	font-size: 0.75em;
	list-style-type: lower-roman;
	margin: 4px 3px 5px 6px;
	line-height: 10px;
}

.container {
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: auto;
}

.container-noPad {
  max-width: 1200px;
  padding: 0rem;
  margin: auto;
}


/* Header */
.site-header {
  background: var(--dark);
}


@media (min-width:901px) {
	.headerContainer {
	
	background-color:#384048; 
	background-image:url(images/headerl.png);
	background-size: 900px 75px;
	background-repeat:no-repeat;
	background-position:center;
	width:100%;
	height:105px;
	
		
		
}
	
}


@media (max-width:900px) {
	.headerContainer {
	width:100%; 
	background-color:#384048; 
	background-image:url(images/headerl.png); 
	background-repeat:no-repeat;
	background-position:center;
	height:75px;
	background-size:contain;
}
	
}

nav a {
  color: var(--light);
  text-decoration: none;
  font-size: 1.1rem;
	
}

.flex-button-container
{
	
	display: flex;
	list-style: none;
	padding: 0px;
  	margin: 0;
	justify-content:center;
	flex-wrap: wrap;
	
	
	

	
}

.flex-button{
  
	padding: 0;
	list-style: none;
	display: flex;
  	justify-content:center;

	flex-wrap: wrap;
	margin: 0px;
  
}

.flex-button-box{
  
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0px;
	justify-content:center;
	
  
}

.flex-button-box a{

  	color: var(--light);

}

.flex-button-on {
  	padding: 0px;
  	margin: 0px;
  	width: 160px;
	line-height: 40px;
	
  
}


.flex-button-on:hover {
	
	background: var(--red);
}

a.fill-div-button {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
	text-align: center;
}

a.fill-div-button:link {
 	text-decoration: none;
}






/* Banner */
@keyframes fadeInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

.fadeInLeft-animation {
  animation: 1.5s fadeInLeft;
}



@keyframes fadeInDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInDown-animation {
  animation: 1.5s fadeInDown;
}


.banner {
  background: linear-gradient(
      rgba(43,47,54,0.75),
      rgba(43,47,54,0.75)
    ),
    url("images/indexImg.jpg") center / cover no-repeat;
  color: var(--light);
  padding: 4rem 0;

}

.banner h1 {
  font-size: 2.5rem;
}

.banner p {
  color: var(--light);
  max-width: 700px;
}

.banner-actions {
  margin-top: 1.5rem;
}

.banner-actions a{
  color: var(--light);
}

.banner-actions a:hover{
  text-decoration: none;
}

.banner-catalogue {
  background: linear-gradient(
      rgba(43,47,54,0.75),
      rgba(43,47,54,0.75)
    ),
    url("images/catalogueBanner.jpg") center / cover no-repeat;
  color: var(--light);
  padding: 1.5rem 0;

}

.banner-catalogue p {
  color: var(--light);
  max-width: 900px;
}



.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 0.75rem;
}


.primary {
  background: var(--red);
  color: var(--light);
}



.secondary {
  background: var(--midblue);
  color: var(--light);
}



/* Features */
.features {
  background: var(--dark);
  color: var(--light);
  padding: 3rem 0;
	display: block;
	align-content: center;
	margin: 0px;
	
	
	
	
}

.featurebox {
	display: flex;
	list-style: none;
	padding: 0px;
  	margin: 0px;
	flex-wrap: wrap;
	justify-content: space-between;
	
	
}

.featureItem {
	padding: 0px ;
  	width: 25%;
	max-width: 300px;
	min-width: 200px;
	
}





.featureicon {
	width: 50px;
	height: 100%;
	
	margin-top: 5px;
	float: left;
	background-repeat:no-repeat;
	background-position:top left;
	background-size: contain;
	
	padding: 0px 0px 0px 0px;

}

.featureicon-exp {

	background-image: url("images/Experienced.png");
	

}

.featureicon-flex {
	
	
	background-image: url("images/Flexible.png");


}

.featureicon-ext {
	
	background-image: url("images/Extensive.png");
	
}

.featureicon-app {

	background-image: url("images/Apprentice.png");

}

.featuretext {
	min-width: 140px;
	max-width: 250px;
	width: 75%;
	height: 100%;
	padding: 0px 0px 0px 15px;
	float: left;

}

.featuretext p{
	font-size: 0.95rem;

}

/* Courses */
.courses {
  padding: 2rem 0;
}


/* Study programmes*/
.studyprog {
  background: var(--grey);
  color: var(--dark);
  padding: 2rem 0;
}



/* Apprenticeships */
.apprenticeships {
  background: var(--dark);
  color: var(--light);
  padding: 4rem 0;
}

.apprenticeship-box {
  max-width: 700px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--light);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.site-footer a {
  color: var(--grey);
  text-decoration: none;
  display: block;
  margin: 0.25rem 0;
}

.news {
	border: 0.5px solid var(--grey);
	padding: 0 0.4rem;
	
	
	
}

.news p {
	font-size: 0.8em;
	color: var(--dark);
}


.copyright {
  text-align: center;
	font-size: 0.6rem;
	color: var(--grey);
}

/*index course boxes*/




.flex-container-course-index{
  
	padding: 0;
	list-style: none;
	display: flex;
  	grid-template-columns: repeat(auto-fill, 260px);
  	justify-content:center;
	align-items: center;
	grid-gap: 20px;
	flex-wrap: wrap;
  
}

.flex-item-featured {
  	padding: 0px;
  	height: 340px;
  	margin: 0px;
  	border: 1px solid #000000;
	background: var(--darkbl);
  	width: 260px;
  
}

.flex-item-featured  p{
	
	color: var(--light);
}

.flex-item-featured:hover {
	
	background: var(--dark);
}


.flex-item-studyprog {
  	padding: 0px;
  	height: 340px;
  	margin: 0px;
  	border: 1px solid #000000;
	background: var(--midblue);
  	width: 360px;
  
}

.flex-item-studyprog  p{
	
	color: var(--light);
}

.flex-item-studyprog:hover {
	
	background: var(--blue);
}


a.fill-div-index {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
	color: #383838;
}

a.fill-div-index:link {
 	text-decoration: none;
	color: #383838;
}




.flex-container-content-index {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0px;
  	
	justify-content:center;
	
}



.flex-content-course_title-index
{
	height: 60px;
	text-align:center;
	display: flex;
  justify-content: center;
  align-items: center;
	font-size:1rem;
	font-weight: bold;
	padding: 0 0.5rem;
	
	
	
}




.flex-content-course_img-index
{
	height: 100px;
	background-size: contain; 
	background-repeat: no-repeat; 
	background-position: bottom;
	
	
}

.flex-content-course_img-studyprog
{
	height: 140px;
	background-size: contain; 
	background-repeat: no-repeat; 
	background-position: bottom;
	
	
}

.flex-content-course-index
{
	height: 180px;
	text-align:left;
	display: flex;
 
	align-items: flex-start;
	font-size:0.9rem;
	padding: 0 0.5rem;
	
}

.flex-content-course-studyprog
{
	height: 140px;
	text-align:left;
	display: flex;
 
	align-items: flex-start;
	font-size:0.9rem;
	padding: 0 0.5rem;
	
}


/*catalogue */


.course-studyprog-container {
  background: var(--dark);
  color: var(--light);
  padding: 0.5rem 0;
}

.course-category-container {
  background: var(--light);
  color: var(--dark);
  padding: 0.5rem 0;
}

.flex-item-studyprog-cat {
  	padding: 0px;
  	height: 360px;
  	margin: 0px;
  	border: 1px solid #000000;
	background: var(--midblue);
  	width: 360px;
  
}

.flex-item-studyprog-cat  p{
	
	color: var(--light);
}

.flex-item-studyprog-cat:hover {
	
	background: var(--blue);
}

.flex-content-course-studyprog-cat
{
	height: 160px;
	text-align:left;
	display: flex;
 
	align-items: flex-start;
	font-size:0.9rem;
	padding: 0 0.5rem;
	
}

.flex-item-bundle {
  	padding: 0px;
  	height: 360px;
  	margin: 0px;
  	border: 1px solid #000000;
	background: var(--grey);
  	width: 360px;
  
}

.flex-item-bundle  p{
	
	color: var(--dark);
}

.flex-item-bundle:hover {
	
	background: var(--darkgrey);
}


.flagStyle {
	visibility:hidden;
	position:fixed;
	width:400px;
	height:350px;
	z-index:1001;
	background-color: #FFFFFF;
	border: 1px solid #A6A6A6;
	overflow: auto;
	top: 50%; 
	left: 50%; 
	margin-top: -150px; 
	margin-left: -200px;
	
}

.transtyle {
	visibility: hidden;
    position:fixed;
    left:0px;
    top:0px;
	width:100%;
	height:100%;
	z-index:1000;

    background-image:url(images/semitran.png);
    /* ieWin only stuff */
        /* with this trick only IE
           manage the following 2 attributes */
    _background-image:none;
    _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader
        (enabled=true, sizingMethod=scale src='images/semitran.png');
}


a.fill-div {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
	color: #383838;
}

a.fill-div:link {
 	text-decoration: none;
	color: #383838;
}

.flex-container {
  
  display: flex;
  
 
  flex-flow: row;

  justify-content: space-around;
  
  padding: 0;
  margin: 0;
  list-style: none;
}

.catalogue_ind_courses {
	max-width: 1000px;
	justify-content: center;
	margin: 0 auto;

	
}




.flex-container-course{
  
	padding: 0;
  margin: 0;
	list-style: none;
	 display: grid;
  grid-template-columns: repeat(auto-fill, 260px);
  justify-content:center;
	grid-gap: 20px;
  
}


.flex-item-whitebg {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #FFFFFF;
  

}

.flex-item-bluebg {
  padding: 5px;
  
  height: 210px;
  margin: 5px;
  border: 1px solid #000000;
  background-color:  #F4F6FB;
  
}


/*Catalogue box colour categories*/

.flex-item-intro {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #BEB4D9;
  
}

.flex-item-intro:hover {
	
	background-color: #CAC1E0;
}
.catintroBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #E6E3F1;	
}

.catCourseintroBG {
	display:none; 
	padding-left:15px; 
	background-color: #E6E3F1;	
}

.flex-item-fund {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #BFDB78;
  
}

.flex-item-fund:hover {
	
	background-color: #CFE49B;
}

.catfundBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #dee7ba;	
}

.catCoursefundBG {
	display:none; 
	padding-left:15px; 
	background-color: #dee7ba;	
}


.flex-item-sec {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #f0eae2;
  
}

.flex-item-sec:hover {
	
	background-color: #F7F4F0;
}

.catsecBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #f9f7f5;	
}

.catCoursesecBG {
	display:none; 
	padding-left:15px; 
	background-color: #f9f7f5;	
}


.flex-item-bb {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #8dc7e0;
  
}

.flex-item-bb:hover {
	
	background-color: #ABD6E8;
}

.catbbBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #e0ecf5;	
}

.catCoursebbBG {
	display:none; 
	padding-left:15px; 
	background-color: #e0ecf5;	
}

.flex-item-vv {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #fae484;
  
}

.flex-item-vv:hover {
	
	background-color: #FBECAB;
}

.catvvBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #fcf6da;	
}

.catCoursevvBG {
	display:none; 
	padding-left:15px; 
	background-color: #fcf6da;	
}


.flex-item-cn {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #92BBBA;
  
}

.flex-item-cn:hover {
	
	background-color: #B3CFCF;
}

.catcnBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #dee9e8;	
}

.catCoursecnBG {
	display:none; 
	padding-left:15px; 
	background-color: #dee9e8;	
}

.flex-item-wan {
  padding: 0px;
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #EF8155;
	
  
}


.flex-item-wan:hover {
	
	background-color: #F19571;
}

.catwanBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #f8c8b5;	
}

.catCoursewanBG {
	display:none; 
	padding-left:15px; 
	background-color: #f8c8b5;	
}

.flex-item-mob {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #58B6E5;
  
}

.flex-item-mob:hover {
	
	background-color: #9BD3EF;
}

.catmobBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #bfe3f5;	
}

.catCoursemobBG {
	display:none; 
	padding-left:15px; 
	background-color: #bfe3f5;	
}


.flex-item-opt {
  padding: 0px;
 
  height: 340px;
  margin: 0px;
  border: 1px solid #000000;
  background-color: #b7cd00;
  
}

.flex-item-opt:hover {
	
	background-color: #E7FF26;
}

.catoptBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #e7eeab;	
}

.catCourseoptBG {
	display:none; 
	padding-left:15px; 
	background-color: #e7eeab;	
}


/*Catalogue box contents*/

.flex-container-content {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0px;
  	margin: 0px;
	
	
	
}

.flex-container-content p{
	color: #000000;
	
}


.flex-content-course_title
{
	height: 60px;
	text-align:center;
	display: flex;
  justify-content: center;
  align-items: center;
	font-size:14px;
	font-weight: bold;
	
	
}


.flex-content-course_img
{
	height: 100px;
	background-size: contain; 
	background-repeat: no-repeat; 
	background-position: bottom;
	
	
}

.flex-content-course
{
	height: 150px;
	text-align:left;
	display: flex;
   justify-content: left;
   align-items: center;
	font-size:0.85rem;
	padding: 0 0.5rem;
	
}




.flex-content-level-code
{
	margin-left: 5px;
	margin-right: 5px;
	height: 20px;
}

.catTitle {
	
	margin:0px;
	padding: 5px;
}

.catTitle p{
	color: #000000;
	
}

.courseCode {
	float: right;
	
}

.courseLevel {
	float: left;
	
}


.flex-L3A-logo {
	
	min-width: 100px; 
	height: 80px; 
	background-image: url('images/L3Alogo.png'); 
	background-size: 75px 75px; 
	background-repeat: no-repeat; 
	background-position: center
}

.flex-L3C-logo {
	
	min-width: 100px; 
	height: 80px; 
	background-image: url('images/L3Clogo.png'); 
	background-size: 75px 75px; 
	background-repeat: no-repeat; 
	background-position: center
}

.flex-qual-desc {
	
}

.flex-qual-desc a
{
	font-size:14px; 
}

.flex-hex {
	
	min-width: 100px; 
	height: 80px; 
	background-image: url('images/emptyhex.png.png'); 
	background-size: 75px 75px; 
	background-repeat: no-repeat; 
	background-position: center
}


.catGrBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px;
	background-color: #FCFCFC;	
}

.catCourseGrBG {
	display:none; 
	padding-left:15px; 
	background-color: #FAFAFA;	
}

.catBlBG {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px; 
	background-color: #F4F6FB;	
}

.catCourseBlBG {
	display:none; 
	padding-left:15px; 
	background-color: #F4F6FB;	
}


.catAdWPageGr {
	
	padding-left:15px; 
	background-color: #FAFAFA;
	float: left;
}

.catAdWPageBl {
	
	padding-left:15px; 
	background-color: #F4F6FB;	
	float: left;
}


.catExpand {
	float:right; 
	padding-right:20px;
	height: 20px;
	
	
	
}

.catExpand p{
	line-height: 0px;
}

.catQual {
	border:1px solid #383838; 
	padding:3px 3px 3px 3px;	
}

.catQualDesc {
	padding-left:15px; 
	background-color:#FAFAFA;	
}



.catalogue-footer {
  background: var(--light);
  color: var(--dark);
  padding: 1rem 0;
	display: block;
	align-content: center;
	margin: 0 auto;
	max-width: 900px;
	justify-content: center;
	
	
	
}

.catalogue-footer-container{
  
	padding: 0;
	list-style: none;
	display: flex;
  	grid-template-columns: repeat(auto-fill, 260px);
  	justify-content:center;
	align-items: center;
	grid-gap: 20px;
	flex-wrap: wrap;
  
}

.catalogue-footer-item {
  	padding: 0px;
  	height: 5em;
  	margin: 0px;
	background: var(--midblue);
  	width: 260px;
  
}

.catalogue-footer-item  p{
	
	color: var(--light);
}

.catalogue-footer-item:hover {
	
	background: var(--blue);
}

.catalogue-footer-content {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0px;
	justify-content:center;
	height: 100%;
	margin: 0;
	
}

.catalogue-footer-text
{
	height: 100%;
	text-align: center;
  justify-content: center;
	font-size:0.9em;
	margin: 0;

	
	
	
}



a.fill-div-catfoot {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

a.fill-div-catfoot:link {
 	text-decoration: none;
}


