@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display");
body {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

/* ------------------------------
   Utilities
------------------------------ */
section {
  padding: 50px 0;
}

a {
  text-decoration: none;
  color: #875CB6;
}

a:hover {
  color: #794EA9;
  text-decoration: none;
}

p {
  color: #1d1d1d;
  margin-bottom: 20px;
  line-height: 30px;
}

h1 {
  font-size: 22px;
  line-height: 40px;
  margin-bottom: 25px;
}

hr {
  border: 1px solid #F4F7FA;
  margin: 30px 0;
}

.bg-grey {
  background: #F4F7FA;
}

.bg-primary {
  background: #875CB6 !important;
}

.pf-font {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 52px;
}

.lh-2 {
  line-height: 37px;
}

.in-header {
  font-size: 22px;
  line-height: 40px;
  margin-bottom: 20px;
}

ul {
  margin-bottom: 30px;
}

section li {
    margin-bottom: 10px;
}

/* ------------------------------
   Top Links
------------------------------ */
.top-nav {
  background: #FFF;
}

.top-nav ul li {
  display: inline;
  font-size: 15px;
  margin-right: 20px;
}

.top-nav ul li a {
  color: #1d1d1d;
  text-decoration: none;
}

.top-nav ul {
  padding: 0;
  margin: 38px 0;
}

.top-nav img {
  height: 20px;
  margin-left: 15px;
}

.top-nav a.navbar-brand {
  margin: 10px 0;
}

.top-nav ul li.active a {
  font-weight: 500;
}

/* ------------------------------
    Navigation
------------------------------ */
.bg-dark {
  padding: 0px;
  background: #875CB6 !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #FFF;
  font-size: 14px;
  padding: 28px 20px;
}

li.nav-item.active {
  background: #794EA9;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #FFF;
  background: #794EA9;
}

.navbar-dark .navbar-brand {
  margin: 0 20px;
}

.navbar-brand img {
  height: 70px;
  padding: 10px 0;
}

.navbar-nav .dropdown-menu {
  border: none;
  margin-top: 0px;
}

/* - - - navigation dropdown styles desktop - - - */
.dropdown-item {
  display: block;
  width: 100%;
  clear: both;
  font-weight: 400;
  color: #FFF;
  text-align: inherit;
  white-space: nowrap;
  background-color: #794EA9;
  border: 0;
  padding: 20px 20px;
  font-size: 14px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    margin-top: 0;
    border-radius: 0;
    background: #794EA9;
    border: 0;
    padding: 0;
  }
}

li.nav-item.dropdown:hover {
  background: #794EA9;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  padding: 0;
}

a.dropdown-item:hover {
  background: #875CB6;
  color: white;
}

.dropdown-item.active,
.dropdown-item:active {
  background: #0a2041;
}

.dropdown-item.active, .dropdown-item:active {
	background: #875CB6;
}

/* - - - Mobile nav Styles - - - */
.navbar-dark .navbar-toggler {
  color: white;
  border: none;
  padding: 20px;
}

.navbar-collapse ul {
	padding: 0;
	list-style: none;
}

/* - - - Mobile Top Items in dropdown Nav - - - */
.top-items {
  background: #794EA9;
}

.top-items a {
  color: white;
}

.top-items img {
  height: 30px;
  margin: 20px 10px 20px 0;
}

/* - - - Breadcrumbs - - - */
.breadcrumb-bg {
  background: #f7f8fb;
}

.breadcrumb {
  margin: 0;
  background: #f7f8fb;
  font-size: 14px;
  padding: 10px 0;
}

/* ------------------------------
   Header
------------------------------ */
header {
  background: #794EA9;
  color: #FFF;
}

header h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 400;
  padding: 32px 0;
}

/* ------------------------------
   Popular Programmes
------------------------------ */
.pop-box {
  background: #FFF;
  padding: 20px;
  min-height: 140px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.15);
}

.pop-box h2 {
  font-size: 20px;
  line-height: 30px;
  margin: auto 15px;
  color: #1d1d1d;
}

.pop-box img {
  width: 90px;
  height: 90px;
}

.upcomingCourse:last-child {
	margin-bottom: 0!important;;
}

/* ------------------------------
   	Quick Book
------------------------------ */
.book-course {
  color: #FFF;
  background-color: #875CB6;
  background-image: url(/img/bg-shapes.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.book-course p {
  color: #FFF;
}

.book-course a {
	color: white;
}

.upcomingCourse {
  display: block;
  padding: 25px;
}

.upcomingCourse h2 {
  margin: 0 0 10px 0;
}

.upcomingCourse p {
  color: #1d1d1d !important;
  margin: 0px;
}

.book-course .contact-numbers p {
	display: inline-block;
}


.book-course .contact-numbers p:first-child:after {
	content: '|';
	margin: 20px;
}
/* ------------------------------
   Contact Us
------------------------------ */
.contactUs .form-control {
  background: #F4F7FA;
  border: none;
  height: 60px;
  margin-bottom: 25px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}



.gdpr, .quickContact .gdpr  {
	display: table;
}

.gdpr input, .quickContact .gdpr input {
	display: table-cell;
	margin-right: 15px;
}

.gdpr label, .quickContact .gdpr label{
	display: table-cell;
}

/* ------------------------------
  Top Contact
------------------------------ */
.topContact {
  font-size: 13px;
  background: #F4F7FA;
  padding: 10px 0;
}

.topContact p {
  display: inline;
  margin: 0 20px 0 0;
}

.topContact .topSocial i {
  font-size: 16px;
  line-height: 30px;
  color: black;
}

.topContact .font-facebook:hover {
  color: #4267b2;
}

.topContact .font-twitter:hover {
  color: #00aced;
}

/* ------------------------------
   Card
------------------------------ */
.card-body .clientName {
  color: #875CB6;
}

/* ------------------------------
  Quick Contact
------------------------------ */
.quickContact {
  background: #393D47;
  padding: 25px 15px;
}

.quickContact h1 {
  font-size: 20px;
  color: #FFF;
  margin-bottom: 25px;
}

.quickContact .form-control {
  border-radius: 2px;
  border: none;
  font-size: 14px;
  padding: 10px;
  margin-bottom: 25px;
}

.quickContact p {
  font-size: 14px;
  color: #FFF;
  line-height: 24px;
}

.quickContact .radio {
  color: #FFF;
  font-size: 14px;
}

.quickContact .radio input {
  margin-right: 20px;
}


.quickContact .gdpr label {
	color: #FFF;
	font-size: 14px;
}
/* ------------------------------
   Testimonials
------------------------------ */
.testimonials {
  position: relative;
}

.testimonials #left {
  position: absolute;
}

.testimonials #right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.carousel-indicators {
  margin: 40px 0 0 0;
  bottom: -20px;
}

.carousel-indicators li {
  background: #FFF;
}

.carousel-item p {
  width: 70%;
  margin: 20px auto 0 auto;
}

.carousel-indicators
.active {
  background: #875CB6;
}

.carousel-control-next,
.carousel-control-prev {
  font-size: 24px;
  color: black;
}

.carousel-control-next:hover, .carousel-control-next:active, .carousel-control-next:focus,
.carousel-control-prev:hover,
.carousel-control-prev:active,
.carousel-control-prev:focus {
  color: black;
}

.carousel-inner {
	height: 170px;
}

/* ------------------------------
   Blog Page
------------------------------ */
.blog-posting {
  padding: 50px 0;
  border-bottom: 2px solid #F4F7FA;
}

.blog-posting .published {
  font-size: 14px;
  margin: 10px 0 30px 0;
}

.blog-posting:first-child {
  padding-top: 0 !important;
}

.blog-posting:last-child {
  border: none;
}

.blog-posting h1.in-header {
	margin-bottom: 10px;	
}

/* ------------------------------
    In the Media
------------------------------ */

.theMedia p {
	margin-bottom: 15px;
	line-height: 26px;
}
.theMedia iframe {
  margin-bottom: 30px;
}

/* ------------------------------
   Tabs
------------------------------ */
.nav-tabs {
  border-bottom: 2px solid #F4F7FA;
}

.nav-tabs .nav-link {
  padding: 15px 20px;
}

.nav-tabs .nav-item {
  margin-bottom: -2px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: 2px solid;
  border-color: #F4F7FA #F4F7FA white;
  border-radius: 0;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: 2px solid;
  border-radius: 0;
  border-color: #F4F7FA #F4F7FA white;
}

.tab-content {
  padding: 50px 20px;
  border: 2px solid #f2f6f9;
  border-top: 0;
}

@media only screen and (max-width: 767px) {
  .tab-content {
    margin-bottom: 30px;
  }
  .nav-tabs {
    display: block;
  }
  .nav-tabs .nav-link:focus, .nav-tabs .nav-tabs .nav-link:hover {
    border-color: #F4F7FA;
  }
}

/* ------------------------------
  My Story
------------------------------ */
.myStory {
  border-bottom: 2px solid #F4F7FA;
}

blockquote {
	font-size: 16px;
    font-weight: 400;
	border-left: 5px solid #875cb6;
    padding: 10px 0 10px 20px;
}

blockquote p:last-child {
	margin-bottom: 0;
}
/*blockquote:before {
    top: 0px;
    left: -10px;
    color: #794ea9;
    content: '\201C';
    font-size: 36px;
    margin-right: 1rem;
    vertical-align: -0.4em;
}

blockquote:after {
    color: #794ea9;
    content: '\201D';
    font-size: 36px;
    margin-left: 1rem;
    vertical-align: -0.4em;
} */

/* ------------------------------
    Accordions
------------------------------ */
.accordion {
  margin-bottom: 50px;
}

.accordion .panel-heading {
  border-bottom: 0px;
  background-color: #e6e6e6;
  padding: 0px;
  margin: 0px;
}

.accordion .panel-body {
  padding: 20px;
}

.accordion-toggle {
  display: block;
  line-height: 22px;
  padding: 13px 35px 13px 20px;
  margin-top: 5px;
  position: relative;
  background: #f0f2f7;
  color: #1d1d1d;
}

.accordion-toggle:hover {
  text-decoration: none;
  color: #1d1d1d;
}

.panel.panel-default {
  margin: 0;
}

.accordion-toggle.collapsed::before {
  content: "\f054";
  color: #1d1d1d;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.accordion-toggle::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
  color: #1d1d1d;
}

/* ------------------------------
   Blockquotes
------------------------------ */
.blockquote {
  margin-bottom: 0;
  border-left: 5px solid #875cb6;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  line-height: 30px;
}

.blockquote p {
  font-size: 16px;
  font-weight: 400;
}

.blockquote p:last-child {
  margin-bottom: 0px;
}

.blockquote-footer {
  font-size: 16px;
  background: white;
  font-style: italic;
  padding: 20px 0 50px 0;
  margin-bottom: 50px;
  border-bottom: 2px solid #F4F7FA;
}

.blockquote-footer:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bottom-footer a {
	color: white;
}

/* ------------------------------
   Buttons
------------------------------ */
.btn {
  padding: 12px 25px;
  border-radius: 3px;
  text-transform: uppercase;
  border: 3px solid;
  font-size: 14px;
  color: #FFF;
}

.btn-primary {
  background: #875CB6;
  border-color: #875CB6;
  color: #FFF !important;
}

.btn-primary:hover {
  background: #794EA9;
  border-color: #794EA9;
}

.btn-secondary {
  background: #F4F7FA;
  border-color: #F4F7FA;
  color: #1d1d1d !important;
}

.btn-secondary:hover {
  background: #E7EAED;
  border-color: #E7EAED;
}


.btn-white {
  background: transparent;
  border-color: #FFF;
  color: #FFF !important;
}

.btn-white:hover, .btn-white:focus {
  background: #F4F7FA;
  border-color: #F4F7FA;
  color: #1d1d1d !important;
}
.btn-wide {
  width: 100%;
}

.btn-pp {
    background: #ffc439;
    width: 30%;
    border-radius: 6px;
}

.btn-pp img {
	height: 22px;
}

.PP-select {
	width: 30%;	
}
/* - - - - - - - - - - - - - - - - - - - 
    Footer
- - - - - - - - - - - - - - - - - - - */
footer {
  padding: 70px 0;
  background: #393D47;
  color: white;
}

footer h1 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

footer p {
  font-size: 15px;
  color: #FFF;
}

footer ul {
  line-height: 30px;
  list-style: none;
  padding: 0;
}

footer ul li a {
  color: white;
}

footer ul li a:hover {
  color: white;
}

.bottom-footer {
  background: #2A2E37;
  font-size: 12px;
}

.bottom-footer p {
  color: #FFF;
  margin: 20px 0;
}


/* ------------------------------
   Newsletter
------------------------------ */

.newsletter {
	padding: 30px 0;
    background: #875cb6;
}

.newsletter h4 {
	color: white;
    margin: 12px 0 0 0;
    font-size: 22px;
    font-weight: 400;
}

/* - - - - - - - - - - - - - - - - - - - 
   Media Queries 
- - - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
  .pop-box {
    margin-bottom: 30px;
  }
  .mob-center {
    float: none !important;
    text-align: center;
  }
  .ourVideos iframe {
    margin-top: 50px;
  }
	.betaBlock {
		display: none!important;
	}
	
	.newsletter h4 {
		margin: 0 0 15px 0;
		text-align: center;
	}
}


/* ==========================================================================
       Pagination
========================================================================== */
.pagination>li:first-child>a, 
.pagination>li:first-child>span, 
.pagination>li:last-child>a, 
.pagination>li:last-child>span {
	border-radius: 0;
}


.pagination>.active>a, .pagination>.active>a:focus, 
.pagination>.active>a:hover, .pagination>.active>span, 
.pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #875cb6;
    border-color: #875cb6;
	color: #fff;
}

.pagination>li>a, .pagination>li>span {
    padding: 10px 16px;
    color: #1d1d1d;
    border: 1px solid #f2f2f2;

}

.pagination>li>a:focus, .pagination>li>a:hover, 
.pagination>li>span:focus, .pagination>li>span:hover {
    color: #1d1d1d;
    background-color: #f2f2f2;
    border-color: #f2f2f2;
}

/* ------------------------------
   Gift Card / BetaBlock
------------------------------ */

.betaBlock { 
	background: #FFF;
	padding: 20px 0;
	border-bottom: 2px solid #875cb6;
}

.betaBlock h1 {
    margin: 0px 0px 10px 0px;
    font-size: 18px;
    line-height: 22px;
}

.betaBlock p {
	font-size: 15px;
	line-height: 22px;
	margin: 0;
}	

.betaBlock .closeBeta {
    cursor: pointer;
}

.betaBlock p strong { font-weight: 600; }

.betaBlock p a {
    border: none;
    text-decoration: underline!important;
}

.betaBlock p a:hover { background-image: none;}

.betaBlock .hidden {
	display: none;	
}
/* - - - - - - - - - - - - - - - - - - - 
   Captcha  
- - - - - - - - - - - - - - - - - - - */

#comment1 {
	display: none;
}



/* - - - - - - - - - - - - - - - - - - - 
  Share cookie styles
- - - - - - - - - - - - - - - - - - - */
.st-cmp-app .st-cmp-settings-icon {
	display: none!important;	
}
	
.st-cmp-app .st-cmp-content .header h1 {
	 color: #875CB6 !important;	
}

.st-button-inner {
	 background: #875CB6 !important;
	border-color: #875CB6 !important;	
}


/* Mobile styles */
.st-cmp-app .st-cmp-full-header {
	background: white !important;
	padding: 15px !important;
}

.st-cmp-app .st-button.ghost .st-button-inner {
	width: 150px !important;
	color: #fff !important;
	margin-top: 15px !important;
}


/* - - - - - - - - - - - - - - - - - - - 
	   Trust Pilot Widget
- - - - - - - - - - - - - - - - - - - */
.trustContainer {
     padding: 30px 0;
    font-size: 20px!important;
    background: #875cb6;
}


/* - - - - - - - - - - - - - - - - - - - 
	   Media Queires
- - - - - - - - - - - - - - - - - - - */
@media (max-width: 992px) {
	section {
		padding: 50px 0;
	}
	
	.book-course .contact-numbers p {
		display: block;
	}
	
	.book-course .contact-numbers p:first-child {
		margin-bottom: 10px;
	}
	
	.book-course .contact-numbers p:first-child:after {
		content: '';
		margin: 0px;
	}
	
}