.site-wrapper{
	padding:0 10px;
}

@media(min-width:665px){
	.site-wrapper{
		padding:0 100px;
	}
}

.header-page-title{
	padding:75px 0;
	background:#edeae0;
	text-align:center;
}

.header-page-title h1{
	font-size:2.5em;
	margin:0;
}

.header-page-title h2{
	text-transform: uppercase;
    letter-spacing: 2px;
	margin:0;
	font-size: 1.75em;
    color: #8d8d8d;
}

.header-page-title .heading-addon{
	color:#8d8d8d;
	display:block;
	margin-top:-15px;
}

.scroll-wrapper {text-align:center;}
.scroll {
    font-size: 50px;
    color: #fff;
	fill: #fff;
	position:relative;
	width: 50px;
    opacity: 75%;
    -webkit-animation: scrolling 3s ease infinite;
    -moz-animation: scrolling 3s ease infinite;
    -o-animation: scrolling 3s ease infinite;
    animation: scrolling 3s ease infinite;
}

@keyframes scrolling {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(0,40px);
}
  100% {
    transform: translate(0);
  }
}

.color-box{
	text-align:center;
	padding: 20px;
    font-size: 1.25em;
    color: #fff;
    border-radius: 5px;
	margin-bottom:50px;
	height:182px;
	position:relative;
	-webkit-transition:0.5s;
	transition:0.5s;
}

.color-box p{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 90%;
}

.color-box.black{
	border:1px solid #404040;
}

.color-box.blue{
	border:1px solid #335dab;
}

.color-box.green{
	border:1px solid #5fbd5c;
}

.color-box.purple{
	border:1px solid #685184;
}

.color-box.purple-gradient{
	background: rgb(119,74,143);
background: -moz-linear-gradient(180deg, rgba(119,74,143,1) 0%, rgba(97,60,117,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(119,74,143,1) 0%, rgba(97,60,117,1) 100%);
background: linear-gradient(180deg, rgba(119,74,143,1) 0%, rgba(97,60,117,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#774a8f",endColorstr="#613c75",GradientType=1);
}

.color-box.light-purple-gradient{
	background: rgb(119,74,143);
background: -moz-linear-gradient(180deg, rgba(119,74,143,1) 0%, rgba(97,60,117,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(119,74,143,1) 0%, rgba(97,60,117,1) 100%);
background: linear-gradient(180deg, rgba(119,74,143,1) 0%, rgba(97,60,117,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#774a8f",endColorstr="#613c75",GradientType=1);
}

.color-box.dark-purple-gradient{
	background: rgb(68,54,85);
background: -moz-linear-gradient(0deg, rgba(68,54,85,1) 0%, rgba(49,21,84,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(68,54,85,1) 0%, rgba(49,21,84,1) 100%);
background: linear-gradient(0deg, rgba(68,54,85,1) 0%, rgba(49,21,84,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#443655",endColorstr="#311554",GradientType=1);
}

.color-box.small{
	font-size:0.8em;
	height: 120px;
    margin-bottom: 112px;
    top: 35px;
}

.color-box:hover{
	transform: scale(1.05);
}

.grid-boxes{
	display: flex;
    padding: 25px 100px;
    justify-content: center;
	flex-wrap: wrap;
    row-gap: 20px;
}

.grid-boxes > a{
	display:inherit;
}

.grid-boxes a, .grid-boxes a:visited{
	text-decoration:none;
	flex-basis: 100%;
}

.grid-box{
    background: #f3f1ec;
    border: 1px solid #8d8d8d;
    text-align: center;
	border-radius:3px;
	max-width:300px;
	margin:0 auto;
	align-self:stretch;
}

.grid-box-image{
	height:200px;
}

.grid-box-image img{
	object-fit: cover;
    width: 100%;
    height: 100%;
}

.grid-box-content{
	padding: 10px;
}

.grid-box h3{
	color: #404040;
    font-size: 1.5em;
	margin:0;
	border-bottom: 2px solid #685284;
}

.grid-box p{
	color: #8d8d8d;
    margin-bottom: 5px;
    margin-top: 5px;
}

@media(min-width:990px){
	.grid-box{
		max-width:none;
	}
	.grid-boxes{
		column-gap: 3.333%;
	}
	.grid-boxes a{
		flex-basis: 30%;
	}
}

p.cta-paragraph{
	color:#685184;
	-webkit-transition:0.5s;
	transition:0.5s;
}

p.cta-paragraph:hover{
	color:#7f3a96;
}

/* p.cta-paragraph:after{
	font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
	content: "\f054";
} */

.courses{
	padding-bottom:0; /* Previously 50px */
}

.courses .course{
	display: flex;
	flex-wrap:wrap-reverse;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.courses .course .content-side{
	flex-basis:100%;
}

.courses .course .image-side{
	flex-basis:100%;
	margin-bottom:10px;
	height:300px;
}

.courses .course .image-side img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(min-width:1000px){
	.courses .course{
		flex-wrap:wrap;
	}
	.courses .course .content-side{
		flex-basis:60%;
	}
	.courses .course .image-side{
		display:block;
		flex-basis:40%;
		padding-left:1%;
		margin-bottom:-6px;
	}
}

.audio-block, .register-interest-form{
	padding:0 10px;
}

@media(min-width:665px){
	.audio-block, .register-interest-form{
		padding:0 100px;
	}
}

.wpforms-submit, p.end-link a, .course-previews .course .cta-button, .button-primary, .courses .course .cta-button, .course-login .cta-button{
	background-color: #685284!important;
    border: none!important;
    border-bottom: 4px solid #4c3c61!important;
    color: #fff!important;
    font-weight: bold;
    border-radius: 3px!important;
	-webkit-transition:0.5s;
	transition:0.5s;
}

.newsletter-signup .wpforms-submit{
	background-color: #ab6333!important;
	border-bottom:none!important;
}

p.end-link a, .course-previews .course .cta-button, .button-primary, .courses .course .cta-button, .course-login .cta-button{
	padding:10px;
}

.course-login .cta-button{
	display:block;
	margin-bottom:10px;
}

.wpforms-submit:hover, p.end-link a:hover, .course-previews .course .cta-button:hover, .button-primary:hover, .courses .course .cta-button:hover, .course-login .cta-button:hover{
	background-color:#4c3c61!important;
}

.wpforms-submit:hover{
	background-color:#a7531b!important;
}

.button-primary:hover{
	cursor:pointer;
}

.courses .course .content-side > strong{
	display:block;
}

.courses .course .cta-button{
	display:inline-block;
}

.text-and-image.text-next-image .site-wrapper{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}

.text-and-image .site-wrapper > div{
	flex-basis:100%;
}

.text-and-image.text-wrap-image img{
	max-width:100%;
}

@media(min-width:500px){
	.text-and-image.text-wrap-image img{
		max-width:49%;
	}
}

@media(min-width:783px){
	.text-and-image .site-wrapper > div{
		flex-basis:50%;
	}

	.text-and-image .site-wrapper > div:first-child{
		padding-right:1%;
		flex-basis:49%;
	}
}

@media(min-width:1008px){
	.text-and-image .site-wrapper > div{
		flex-basis:40%;
	}
	.text-and-image .site-wrapper > div:first-child{
		flex-basis:59%;
	}
	.text-and-image.text-wrap-image img{
		max-width:41%;
	}
}

.mySlides, .mySlides-replacement {display: none;height:inherit;}
.mySlides img, .mySlides-replacement img {vertical-align: middle;width:100%;height:100%;object-fit:cover;}

.slideshow-container, .slideshow-container-replacement {
  max-width: 100%;
  height:250px;
  position: relative;
  margin: auto;
}

.slideshow-container-replacement{
	padding:0;
}

.dots{
	text-align:center;
	position:relative;
	top:-10px;
}

#sliders-container .dots{
	top:-40px;
	z-index:10;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot:hover{
	cursor:pointer;
}

.active {
  background-color: #9c9c9c;
}

.fade-slider {
  -webkit-animation-name: fade-slider;
  -webkit-animation-duration: 1.5s;
  animation-name: fade-slider;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade-slider {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade-slider {
  from {opacity: .4} 
  to {opacity: 1}
}

.slideshow .content-box{
	position: absolute;
    z-index: 9;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align:center;
	width:100%;
	height:100%;
	background:rgb(0, 0, 0);
	background:rgba(0, 0, 0, 0.2);
}

.slideshow .content-box > .actual-content{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.slideshow .content-box h1{
	font-size: 2.5em;
    margin: 0;
}

.slideshow .content-box h2{
	text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-size: 1.75em;
    color: #d5d5d5;
}