/****************************************************************************************************************************************
 /$$$$$$ /$$      /$$  /$$$$$$   /$$$$$$  /$$$$$$$$        /$$$$$$   /$$$$$$  /$$$$$$$   /$$$$$$  /$$       /$$       /$$$$$$$$ /$$$$$$$
|_  $$_/| $$$    /$$$ /$$__  $$ /$$__  $$| $$_____/       /$$__  $$ /$$__  $$| $$__  $$ /$$__  $$| $$      | $$      | $$_____/| $$__  $$
  | $$  | $$$$  /$$$$| $$  \ $$| $$  \__/| $$            | $$  \__/| $$  \__/| $$  \ $$| $$  \ $$| $$      | $$      | $$      | $$  \ $$
  | $$  | $$ $$/$$ $$| $$$$$$$$| $$ /$$$$| $$$$$         |  $$$$$$ | $$      | $$$$$$$/| $$  | $$| $$      | $$      | $$$$$   | $$$$$$$/
  | $$  | $$  $$$| $$| $$__  $$| $$|_  $$| $$__/          \____  $$| $$      | $$__  $$| $$  | $$| $$      | $$      | $$__/   | $$__  $$
  | $$  | $$\  $ | $$| $$  | $$| $$  \ $$| $$             /$$  \ $$| $$    $$| $$  \ $$| $$  | $$| $$      | $$      | $$      | $$  \ $$
 /$$$$$$| $$ \/  | $$| $$  | $$|  $$$$$$/| $$$$$$$$      |  $$$$$$/|  $$$$$$/| $$  | $$|  $$$$$$/| $$$$$$$$| $$$$$$$$| $$$$$$$$| $$  | $$
|______/|__/     |__/|__/  |__/ \______/ |________/       \______/  \______/ |__/  |__/ \______/ |________/|________/|________/|__/  |__/
****************************************************************************************************************************************/
.course-scroller-wrapper
{	
	position: relative;
	max-width: 1200px;	
	width: 100%;
	margin: 0 auto;	
	padding: 45px 0;
}

@media screen and (max-width: 991px)
{
	.course-scroller-wrapper
	{	
		max-width: 370px;
		margin: 0;
		padding: 0;
	}	
}

.courses-scroller-container
{
	position: relative;
	width: 100%;	
	max-width: 1200px;	
	overflow: hidden;
	margin: 0 auto;
}

.courses-scroller-container img
{
	opacity: 0.5;
}

.courses-scroller-container a,
.courses-scroller-container > div > div > div
{
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;	
	cursor: default;
	height: 100%;
	text-decoration: none;
	transition: all 200ms;
	height: 100%;
	width: 270px;
}

@media screen and (max-width: 400px)
{
	.courses-scroller-container a,
	.courses-scroller-container > div > div > div
	{
		height: auto;
	}	
}

.courses-scroller-container a.has-link
{
	cursor: pointer;
}

.courses-scroller-container .swiper 
{
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.courses-scroller-container .swiper-slide 
{

height: calc((100% - 30px) / 3) !important;	
padding-top: 10px;
padding-bottom: 10px;

/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

@media screen and (max-width: 1200px)
{
	.courses-scroller-container .swiper-slide 
	{	
		height: calc((100% - 30px) / 2) !important;
	}
}

/* Prevous and Next Buttons */
.course-scroller-wrapper .image-scroller-controls.image-scroller-button
{
	position: absolute;
	z-index: 10;
	top: 170px;	
	bottom: 0;	
	display: block;
	width: 60px;
	height: 60px;
	transform: translateY(-50%);
}


.course-scroller-wrapper .image-scroller-controls.image-scroller-button.previous
{
	left: -70px;
}

@media screen and (max-width: 991px)
{

	.course-scroller-wrapper .image-scroller-controls.image-scroller-button.previous
	{
		left: 0;
	}	
}

.course-scroller-wrapper .image-scroller-controls.image-scroller-button.next
{
	right: -70px;
}

@media screen and (max-width: 991px)
{

	.course-scroller-wrapper .image-scroller-controls.image-scroller-button.next
	{
		right: -10px;

	}	
}

.course-scroller-wrapper .image-scroller-controls.image-scroller-button::before
{
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;		
	opacity: 1;		
	transition: all 200ms;
	padding: 20px;
}

.course-scroller-wrapper .image-scroller-controls.image-scroller-button.previous::before
{
	content: '';
	background-image: url('/images/left-arrow.png');	
	margin-left: -5px;
	background-repeat: no-repeat;
	background-position: center;
}

.course-scroller-wrapper .image-scroller-controls.image-scroller-button.next::before
{
	content: '';
	background-image: url('/images/right-arrow.png');		
	background-repeat: no-repeat;
	background-position: center;
}


.course-scroller-wrapper .image-scroller-controls.swiper-button-disabled
{
	display: none;
}

.course-scroller-wrapper:hover .image-scroller-controls.image-scroller-button::before
{
	opacity: 1;
}

.course-scroller-wrapper .image-scroller-controls.image-scroller-button:hover::before
{
	right: -5px;
}

.course-scroller-wrapper .image-scroller-controls.image-scroller-button:active::before
{
	opacity: 1;
}

.slide-link:hover
{
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.15); 
	box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.15);
	
}

@media screen and (max-width: 991px)
{
	.slide-link:hover
	{
		-webkit-box-shadow: none; 
		box-shadow: none;	
	}
}

.course-caption
{
	position: relative;	
	display: block;
	font-family: 'Roboto-Medium';
	font-weight: normal !important;
	font-size: 12pt !important;
	color: #ffffff !important;	
	padding-top: 10px;
	padding-bottom: 10px;
	transition: 200ms;	
	background-color: #2B6D49;		
	text-align: center;
}

@media screen and (max-width: 400px)
{
	.course-caption
	{
		font-family: 'Roboto-Medium';
		display: flex;
		flex-flow: column;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.slide-link:hover .course-caption::after
{
	opacity: 1;
}

@media screen and (max-width: 400px)
{
	.slide-link .course-caption::after
	{
		position: relative;
		display: block;
		opacity: 1;	
		right: 0;
		bottom: 0;
		top: 0;
		transform: none;
	}
}

.course-image-scroller-wrapper:hover img 
{
	opacity: 1;
	transition: opacity 0.3s;
}

.courses-description ul li
{
	position: relative;
	display: block;
	font-family: 'Roboto-Regular';
	font-size: 12pt;
	color: #373F51;	
	list-style: none;

}

.courses-description ul li::before
{
	content: url('/images/list-dash.png');
	position: absolute;
    display: block;    
	bottom: 5px;
    left: -25px;    
}

.slide-link .courses-description
{
	padding-bottom: 20px;
}

@media screen and (max-width: 991px)
{
	.slide-link .courses-description
	{
		transition: all 200ms ease-in-out;    
	}
}

.slide-link .course-title
{
	font-family: 'Roboto-Medium';
	font-size: 28pt;
	color: #000000;
	padding-left: 15px;
	font-weight: normal !important;
}

@media screen and (max-width: 400px)
{
	.slide-link .course-title
	{
		padding-left: 0;
	}
}

.slide-link .courses-description
{
	font-family: 'Roboto-Regular';
	font-size: 12pt;
	color: #373F51;
	padding-left: 15px;
	padding-right: 15px;
	font-weight: normal !important;
}

@media screen and (max-width: 991px)
{
	.slide-link .courses-description
	{
		padding: 0;
	}
}

.slide-link .transmission-type
{
	font-family: 'Roboto-Regular';
	font-size: 12pt;
	color: #373F51;
	background-color: #F1F1F1;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
    display: block;
	font-weight: normal !important;
	text-transform: uppercase;
}

@media screen and (max-width: 991px)
{
	.slide-link .transmission-type
	{
		font-size: 10pt;
	}
}

@media screen and (max-width: 991px)
{
	.courses-link
	{
		opacity: 1;
	}
}

.courses-link::after
{
content: url('/images/white-arrow.png');
	position: relative;
	display: block;
	text-align: center;
	background-color: #35A565;
	padding-top: 5px;
	opacity: 0;
}

.slide-link:hover .courses-link::after
{
	opacity: 1;
}


@media screen and (max-width:991px)
{
	.courses-scroller-container .banner-media-container .banner-image > div:first-of-type
	{
		background-size: cover !important;
	}
} 

.course-scroller-content
{
	display: flex;
	flex-direction: column;
	margin-top: 105px;
}

.course-scroller-content a
{
	margin-top: 20px;
}

.course-content-container
{
	padding: 140px 0;
}

@media screen and (max-width:991px)
{
	.course-content-container
{
	padding: 20px 50px;
}
}