﻿/*  ---------------------------------------------------------
	1. Embedded fonts styles
	2. General reset
	3. Common site styles
	4. Custom form styles
	5. Styles for responsive breakpoints
	---------------------------------------------------------*/
/*  ---------------------------------------------------------
	. Embedded fonts styles
	---------------------------------------------------------*/

@font-face {
    font-family: 'Stonehenge';
    src: url('../fonts/Stonehenge.woff2') format('woff2'),
        url('../fonts/Stonehenge.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}



/*  ---------------------------------------------------------
	. General reset
	---------------------------------------------------------*/
* {
	max-height: 100000px;
	box-sizing: border-box;
	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*:before, *:after { box-sizing: border-box }
/* http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126
	License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	min-width: 320px;
	color: #333;
}
a {
	color: #558b2f;
	text-decoration: none;
}
a:hover { opacity: .8 }
a:focus,
a:active {
	color: #000;
	text-decoration: none;
	outline: none
}
ol, ul { list-style: none }
blockquote, q { quotes: none }
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
input, select, textarea {
	font-family: inherit;
	border: none
}
h1, h2, h3, h4, h5, h6 { }
h1,
h2 {
}
h3 {
}
p {
	margin: 0 0 30px;
	letter-spacing: .25px
}
.mobile { display: none }
.tel { pointer-events: none }
.btn {
}
.btn-info {
    background: #2c3091;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 600;
    padding: 18px 20px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 15px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.10), 0 10px 10px rgba(0,0,0,0.10);
}
.btn-primary {
    background: #c2665f;
    font-family: "Montserrat";
    -webkit-appearance: none !important;
    appearance: none !important;
    -moz-appearance: none !important;
    font-size: 13px;
    font-weight: 600;
    padding: 18px 20px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 15px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.10), 0 10px 10px rgba(0,0,0,0.10);
}
.btn-danger {
    background: #e81000;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 600;
    padding: 18px 20px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 15px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.10), 0 10px 10px rgba(0,0,0,0.10);
}
.btn:hover { 
	opacity: 1;
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-info:active,
.btn-info:hover,
.btn-info:focus,
.btn-danger:active,
.btn-danger:hover,
.btn-danger:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	background: #000 !important;
	color: #fff;
}
.form-control {
	font-weight: 600;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	display: block;
	background: #fff;
	border: none;
	height: 45px;
	color: #000;
	border-radius: 20px;
}
.form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: #b093d6 !important ;
}
.form-control::-ms-clear { display: none }
.btn-custom:hover,
.btn-custom-small:hover {
	background: #000;
}
button:hover, input[type=submit]:hover { cursor: pointer }
button:focus, input[type=submit]:focus { outline: none }
/* placeholder input styles */
::-webkit-input-placeholder { color: #000; }
:-moz-placeholder { color: #000; }
::-moz-placeholder {
	color: #000;
}
:-ms-input-placeholder { color: #000 }
/* popup styles */
.popup {
	color: #333;
	font-family: Lato, serif;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	overflow-x: hidden;
	overflow-y: auto;
	visibility: hidden;
	text-align: center;
	opacity: 0;
	-webkit-transition: all .2s linear;
	transition: all .2s linear
}
.popup h2 {
	font-size: 37px;
	text-transform: capitalize;
	margin-bottom: 24px
}
.popup.in,
.popup.active,
.popup.in .overlay,
.popup.active .overlay,
.overlay.active {
	visibility: visible;
	opacity: 1
}
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(255,255,255,.5);
	visibility: hidden;
	opacity: 0;
	z-index: 99;
	-webkit-transition: all .2s linear;
	transition: all .2s linear
}
.popup .box-holder {
	width: 100%;
	padding: 30px 15px;
	position: relative;
	z-index: 9
}
.popup .box {
	max-width: 400px;
	padding: 35px 30px 0;
	margin: 60px auto;
	background: #fff;
	position: relative;
	pointer-events: auto
}
.popup .btn-close {
	width: 30px;
	height: 30px;
	border: 2px solid #fefcf9;
	position: absolute;
	top: -60px;
	left: 50%;
	margin: 0 0 0 -15px;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	color: #fefcf9
}
.popup .btn-close:hover { opacity: .9 }
.popup .btn {
	width: 400px;
	display: block;
	padding: 22px;
	margin: 40px -30px 0;
	border: none;
	text-transform: uppercase
}
/* custom-checkbox styles */
.custom-checkbox {
	display: inline;
}
.custom-checkbox input[type=checkbox],
.custom-checkbox input[type=radio] {
	position: absolute;
	visibility: hidden;
	opacity: 0
}
.custom-checkbox label {
	display: inline-block;
	vertical-align: top;
	padding: 3px 0 3px 35px;
	position: relative;
	font-family: "Montserrat";
	cursor: pointer;
	color: #888;
}
.custom-checkbox label:before {
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    background: #f5f9fc;
    border: 2px solid #eff3f7;
    border-radius: 20px;
    padding: 2px;
}
.custom-checkbox label:after {
    width: 8px;
    height: 8px;
    content: '';
    position: absolute;
    top: 10px;
    left: 6px;
    display: none;
    border-radius: 20px;
}
.custom-checkbox label:hover {
	color: #000;
}

.custom-checkbox.active label {
	color: #000;
	font-weight: 600;
}
.custom-checkbox.active label:before {
	border-color: #e04d4d !important;
} 
.custom-checkbox.active label:after {
	width: 8px;
    height: 8px;
    content: '';
    position: absolute;
    top: 10px;
    left: 6px;
    display: block;
    border-radius: 20px;
	background: #e04d4d !important;
}


.custom-checkbox.right-ans label {
	color: #000;
	font-weight: 600;
}
.custom-checkbox.right-ans label:before {
	border-color: #8BC34A !important;
} 
.custom-checkbox.right-ans label:after {
	width: 8px;
    height: 8px;
    content: '';
    position: absolute;
    top: 10px;
    left: 6px;
    display: block;
    border-radius: 20px;
	background: #8BC34A !important;
}

.custom-checkbox input[type=checkbox]:checked + label,
.custom-checkbox input[type=radio]:checked + label {
	font-weight: 600;
	color: #000;
}
.custom-checkbox input[type=checkbox]:checked + label:after,
.custom-checkbox input[type=radio]:checked + label:after { 
	display: block;
	background: #333;
}
.custom-checkbox input[type=checkbox]:checked + label:before,
.custom-checkbox input[type=radio]:checked + label:before {
	border-color: #333;
}
/*  ---------------------------------------------------------
	. Сommon site styles
	---------------------------------------------------------*/
/* main container styles */
#wrapper {
	overflow: hidden
}
body {
	font-family: "Montserrat";
}
/* logo styles */
.logo {
	max-width: 190px;
	margin: 0;
}
.logo img {
	width: 100%;
	height: auto;
	display: block;
}

/* header styles */
#header {
	background: -webkit-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -o-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -ms-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -moz-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
}
#header.course_page {
	background: -webkit-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -o-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -ms-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -moz-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
}
#header nav {
	padding: 25px 40px;
}
.navbar-toggler-icon {
	width: 40px;
	height: 40px;
}
.navbar-toggler-icon img {
	width: 100%;
	height: auto; 
	display: block;
}
#header .navbar-nav li {
	padding: 0 15px;
}
#header .navbar-nav li a {
	font-family: "Montserrat";
	font-size: 13px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
#header .visual {
	text-align: center;
	font-family: "Stonehenge";
	padding: 140px 20px 220px;
}
#header .visual h1 {
	color: #fff;
	font-size: 127px;
	line-height: 135px;
}
#header .visual p {
	color: #fff;
	font-size: 30px;
	line-height: 1.4;
}
#header .bottom-nav,
#inner-header .bottom-nav {
	background: #270f59;
	text-align: center;
	padding: 22px 0;
	box-shadow: 0px 5px 20px rgba(21, 6, 38, 0.5);
}
#header .bottom-nav li,
#inner-header .bottom-nav li {
	display: inline-block;
	padding: 0 40px;
}
#header .bottom-nav li a,
#inner-header .bottom-nav li a {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	display: block;
	text-decoration: none;
}

/* inner header styles */
#inner-header {
	background: -webkit-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -o-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -ms-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: -moz-linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	background: linear-gradient(to right top, #1c0844, #1f0a4a, #220c50, #260e56, #29105c);
	padding: 0;
}
#inner-header nav {
	padding: 25px 40px;
}
.navbar-toggler-icon {
	width: 40px;
	height: 40px;
}
.navbar-toggler-icon img {
	width: 100%;
	height: auto; 
	display: block;
}
#inner-header .navbar-nav li {
	padding: 0 15px;
}
#inner-header .navbar-nav li a {
	font-family: "Montserrat";
	font-size: 13px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}

/* login page styles */
.login-page {
	background: #f3f7fa;
	padding: 20px 0;
}
.login-page .head {
	max-width: 800px;
	margin: 0 auto;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	padding: 35px 0;
}
.login-page .head h1{
	font-family: "Stonehenge";
	font-weight: bold;
	font-size: 26px;
	color: #000;
}
.login-page .form {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	padding: 50px 0 30px;
	box-shadow: 0 10px 54px rgb(230, 234, 236);
}
.login-page .form .hold {
	max-width: 400px;
	margin: 0 auto;
}
.login-page .form-group {
	margin-bottom: 1.2rem;
}
.login-page label {
	font-weight: 600;
	color: #949599;
	font-size: 14px;
    margin: 0 0 7px;
}
.login-page .form-control {
	border: 3px solid #dfe0e6;
	border-radius: 6px;
}
.login-page .password {
	position: relative;
}
.password .input-group-addon {
    position: absolute;
    top: 29px;
    right: 3px;
    font-size: 14px;
    color: #797979;
    line-height: 19px;
    background: #fff;
    padding: 10px;
    border-radius: 0 4px 4px 0;
}
.login-page input[type="submit"]{
	width: 100%;
	margin: 30px 0 0;
	display: block;
	box-shadow: none;
}
.login-page ul {
	max-width: 900px;
	margin: 0 auto;
	background: #f9f9f9;
	padding: 20px 30px;
}
.login-page ul li a {
	color: #b9b9b9;
	font-size: 15px;
	font-weight: 600;
}
.visit-us {
	max-width: 900px;
	margin: 30px auto 20px;
	border: 1px solid #eaeef1;
}
.visit-us ul {
	padding-left: 100px;
	background: #fff;
	position: relative;
}
.visit-us ul li.visit-title {
	position: absolute;
	top: 0;
	left: 0;
	background: #f9f9f9;
	bottom: 0;
	z-index: 2;
	padding: 20px 23px;
	font-size: 14px;
	color: #111;
}
.visit-us ul li a {
	font-size: 12px;
}
.visit-us ul li a .ico {
	width: 18px;
	display: inline-block;
	vertical-align: bottom;
	margin-right: 5px;
}
.visit-us ul li a .ico img {
	width: 100%;
	height: auto;
	display: block;
}

/* sign up page styles */

.sign-up-page {
	background: #f3f7fa;
	padding: 20px 0 40px;
}
.sign-up-page .title {
	padding: 30px 0 20px;
}
.sign-up-page .head {
	max-width: 800px;
	margin: 0 auto;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	padding: 20px;
}
.sign-up-page .head h1{
	font-weight: bold;
	font-size: 22px;
	color: #000;
}
.sign-up-page .form {
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	padding: 0 0 100px;
	box-shadow: 0 10px 54px rgb(230, 234, 236);
}
.sign-up-page .form .hold {
	max-width: 1050px;
	margin: 0 auto;
}
.sign-up-page .form-group {
	margin-bottom: 1.2rem;
}
.sign-up-page label {
	font-weight: 600;
	color: #949599;
	font-size: 14px;
    margin: 0 0 7px;
}
.sign-up-page label span{
	color: #ff6f6f;
}
.sign-up-page label .ico {
	width: 15px;
	display: inline-block;
	margin: 0 5px;
	vertical-align: text-top;
}
.sign-up-page label .ico img {
	width: 100%;
	height: auto;
	display: block;
}
.sign-up-page .top {
	background: #f9f9f9;
	padding: 20px 0 30px;
	margin-bottom: 25px;
}
.sign-up-page .top .form-group,
.sign-up-page .bottom .form-group {
	margin-bottom: 0;
}
.sign-up-page .bottom {
    background: #f9f9f9;
    padding: 20px 30px 25px;
    height: 120px;
}
.sign-up-page .form-control {
	border: 3px solid #dfe0e6;
	border-radius: 6px;
	font-size: 14px;
	font-family: "Montserrat";
	padding: 0 10px;
}
.sign-up-page input[type="submit"]{
	width: 100%;
	margin: 10px 0 0;
	display: block;
	box-shadow: none;
}
.sign-up-page .button .register-btn {
	padding: 8px 10px;
	display: block;
	max-width: 400px;
	margin: 5px auto 15px;
	border: 2px solid #a7a4ab;
	color: #222;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
}
.sign-up-page .button {
	max-width: 600px;
	margin: -90px auto 0;
	text-align: center;
}
.sign-up-page .button input[type="submit"]{
	font-size: 16px;
	letter-spacing: 1px;
}
.gj-picker-md {
	font-family: "Montserrat";
	box-shadow: 0 2px 20px rgba(5,5,5,0.1);
    padding: 20px;
    border: none;
}
.gj-picker-md div[role=navigator] {
	background: #270967;
	color: #fff;
	height: 60px;
    line-height: 60px;
}
.gj-picker-md div[role=navigator] div i.gj-icon,
.gj-picker-md div[role=navigator] div i.material-icons {
	top: 18px;
}
.gj-datepicker-md [role=right-icon] {
	display: none !important;
}
.gj-picker-md table tr td.selected.gj-cursor-pointer div {
	background: #332348;
}
.gj-picker-md table thead {
	background: #f8f8f8;
}
.gj-picker-md table tr td div, .gj-picker-md table tr th div {
	color: #332348;
}
.popover {
	border: none;
	border-radius: 6px;
	box-shadow: 0 10px 54px rgb(230, 234, 236);
	max-width: 300px;
}
.popover-header {
	background: #ebebeb;
	font-family: "Montserrat";
	font-size: 14px;
	font-weight: 600;
	color: #111;
}
.popover-body {
    font-family: "Montserrat";
    font-size: 12px;
}
.bs-popover-auto[x-placement^=top] .arrow::before,
.bs-popover-top .arrow::before {
	bottom: 1px;
}

/* forgot page styles */
.forgot-page {
	background: #f3f7fa;
	padding: 20px 0 100px;
}
.forgot-page .head {
	max-width: 800px;
	margin: 0 auto;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	padding: 35px 0;
}
.forgot-page .head h1{
	font-weight: bold;
	font-size: 26px;
	color: #000;
}
.forgot-page .form {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	padding: 50px 0 30px;
	box-shadow: 0 10px 54px rgb(230, 234, 236);
}
.forgot-page .form .hold {
	max-width: 400px;
	margin: 0 auto;
}
.forgot-page .form-group {
	margin-bottom: 1.2rem;
}
.forgot-page label {
	font-weight: 600;
	color: #949599;
	font-size: 14px;
    margin: 0 0 7px;
}
.forgot-page label .ico {
	width: 15px;
	display: inline-block;
	margin: 0 5px;
	vertical-align: text-top;
}
.forgot-page label .ico img {
	width: 100%;
	height: auto;
	display: block;
}
.forgot-page .form-control {
	border: 3px solid #dfe0e6;
	border-radius: 6px;
}
.forgot-page input[type="submit"]{
	width: 100%;
	margin: 20px 0 0;
	display: block;
	box-shadow: none;
}

/* join styles */

.join {
	text-align: center;
	padding-top: 80px;
	padding-bottom: 60px;
	margin-bottom: -100px;
}
.join h2 {
	color: #1d1d1d;
	font-weight: 500;
	font-size: 30px;
	line-height: 44px;
	margin: 0 0 5px;
}
.join p {
	font-family: "Pt Sans";
	color: #7d7d7d;
	font-size: 20px;
	max-width: 800px;
	margin: 0 auto;
}
.join .registered {
	margin: 15px 0 70px;
	text-align: center;
}
.join .registered strong {
	font-size: 80px;
	font-weight: 800;
	letter-spacing: 10px;
	color: #2c134a;
	margin: 0 0 20px;
	display: block;
}
.join .registered p {
	font-size: 16px;
	font-family: "Montserrat";
	color: #646464;
	text-transform: uppercase;
	font-weight: 700;
	max-width: inherit;
	letter-spacing: 0.7px;
	margin: 0 0 20px;
}
.join .registered span {
	color: #0e076b;
	font-weight: 800;
}
.join .btn {
    font-size: 20px;
    letter-spacing: 0.2px;
    min-width: 370px;
    margin: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
/* wicca styles */
.wicca {
	background: url(../images/bg.jpg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-top: 130px;
	padding-bottom: 230px;
	background-position: center;
	text-align: center;
}
.wicca .icon {
    width: 65px;
    margin: 0 auto 35px;
    background: #fff;
    border-radius: 100%;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.wicca .icon img {
	width: 100%;
	height: auto;
	display: block;	
}
.wicca .text {
	margin: 0 0 60px;
}
.wicca .text h3 {
	font-size: 36px;
	font-weight: 800;
	text-transform: capitalize;
	margin: 0 0 10px;
	text-align: center;
	color: #1d1d1d;
}
.wicca .text p {
	font-family: "Pt Sans";
	color: #7d7d7d;
	font-size: 20px;
	max-width: 800px;
	text-align: center;
	margin: 0 auto 40px;
}
.wicca .btn {
    font-size: 20px;
    letter-spacing: 0.2px;
    min-width: 500px;
    margin: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.wicca .box {
	background: #fff;
	padding: 30px;
	height: 230px;
	border-radius: 10px;
	box-shadow: 0 2px 40px rgba(76, 76, 76, 0.1);
}
.wicca .box .img {
	width: 50px;
	height: 50px;
	margin: 20px auto;
}
.wicca .box .img img {
	width: 100%;
	height: auto;
	display: block;
}
.wicca .box strong {
	display: block;
	font-weight: 800;
	color: #1d1d1d;
	margin: 0 0 8px;
}
.wicca .box a {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #2a8ced;
}
.wicca .box a:hover {
	color: #9b2b22;
	opacity: 1;
	text-decoration: none;
}

/* our video section */
.our-videos .icon {
	width: 65px;
	margin: 0 auto 35px;
	background: #fff;
	border-radius: 100%;
	padding: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.our-videos .icon img {
	width: 100%;
	height: auto;
	display: block;
}
.our-videos .text {
	text-align: center;
}
.our-videos .text h3 {
	font-size: 36px;
	font-weight: 700;
	text-transform: capitalize;
	margin: 0 0 10px;
	text-align: center;
	color: #1d1d1d;
}
.our-videos .text p {
	font-family: "Pt Sans";
	color: #7d7d7d;
	font-size: 20px;
	max-width: 800px;
	text-align: center;
	margin: 0 auto 30px;
}
.our-videos .btn {
    font-size: 20px;
    letter-spacing: 0.2px;
    margin: 0;
    min-width: 370px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.video-list {
	letter-spacing: -5px;
	padding: 30px 0 20px;
}
.video-list li {
	width: 25%;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;
}
.video-list li a {
	display: block;
	padding: 0 5px;
}
.video-list li a:hover {
	text-decoration: none;
}
.video-list .img {
	display: block;
	overflow: hidden;
	width: 100%;
}
.video-list .img img {
	width: 100%;
	margin: -10% 0; 
	height: auto;
	display: block;
}
.video-list .title {
    background: #f5f9fc;
    color: #131349;
    font-size: 14px;
    line-height: 18px;
    padding: 13px 15px;
    display: block;
    font-weight: 600;
    text-align: left;
    max-height: 52px;
    overflow: hidden;
}

/* newsletter section styles */
.newsletter-section {
	background: #210b4f;
	padding: 25px 0;
}
.newsletter-section .container {
	max-width: 1280px;
}
.newsletter-section h3 {
	font-size: 24px;
	font-weight: 500;
	color: #fff;
    margin-top: 10px;
}
.newsletter-section .form-control {
	border-radius: 8px;
	background: transparent;
	border: 3px solid #fff;
	font-size: 14px;
	font-weight: 400;
	width: 350px;
    height: 50px;
}
.newsletter-section .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.newsletter-section .form-control::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.newsletter-section .form-control:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.newsletter-section .form-control:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.newsletter-section form {
	float: right;
}
.newsletter-section .form-group {
	display: inline-block;
	margin: 0;
}
.newsletter-section input[type="submit"] {
	padding: 15px 50px;
}

/* footer styles */
#footer .holder {
	background: url(../images/footer.jpg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-top: 240px;
	padding-bottom: 80px;
	background-position: top center;
}
#footer.inner-footer .holder {
	background: url(../images/inner-footer.jpg);
    padding-top: 80px;
    padding-bottom: 120px;
}
#footer .text {
	max-width: 380px;
}
#footer .text p {
	color: #4b4b4b;
	font-size: 14px;
	margin: 10px 0 0;
	font-weight: 500;
	line-height: 20px;
}
#footer h3 {
	font-size: 15px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 20px;
	color: #101044;
}
#footer .hold ul {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
	width: 30%;
	letter-spacing: -5px;
}
#footer li {
	letter-spacing: normal;
	padding: 3px 0;
}
#footer li a {
	color: #1d1c21;
	font-weight: 500;
	font-size: 14px;
	opacity: 1;
}
#footer li a:hover {
	color: #6f422c;
	text-decoration: none;
}
#footer .bottom {
	background: #f2f5fc;
}
#footer .bottom .copyright {
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	padding: 20px 0;
	margin: 0;
	color: #888;
}
#footer .bottom ul {
	letter-spacing: -5px;
	padding: 20px;
	text-align: right;
}
#footer .bottom ul li {
	letter-spacing: normal;
	display: inline-block;
	padding: 0 8px;
}
#footer .bottom ul li a {
	color: #120f44;
}
#footer .bottom ul li a:hover {
	color: #000;
}
.alert {
	opacity: 1;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 3px solid #dfe0e6;
    border-radius: 4px;
    padding-right: 30px;
    height: 45px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #a7a8b3;
    line-height: 28px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-style: solid;
  	border-width: 7px 7px 0 7px;
  	border-color: #dfe0e6 transparent transparent transparent;
    margin-left: -20px;
    margin-top: 4px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-style: solid;
	border-width: 0 7px 7px 7px;
	border-color: transparent transparent #270967 transparent;
}
.select2-container--open .select2-selection--single {
	border-color: #270967 !important;
}
.select2-results__option {
    font-size: 14px;
    font-weight: 500;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #270967;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border: none;
	height: 40px;
	background: #f8f8f8;
	outline: none;
	padding: 10px;
	box-shadow: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered:focus {
	outline: none;
	box-shadow: none;
}

/* pricing page styles */
.pricing-page {
}
.pricing-page .plans ul {
	letter-spacing: -5px;
	margin: 20px -10px;
}

.pricing-page .plans li {	
	width: 25%;		
	display: inline-block;		
	letter-spacing: normal;	
	padding: 15px 10px;	
	position: relative;		
	vertical-align: top;		
}		
.pricing-page .plans li:nth-child(n+5) {		
	margin-top: 60px;		
}		
.pricing-page .plans li .hold {		
	border: 2px dashed #ececec;		
	background: #ffffff;	
	box-shadow: 0 23px 37px -16px rgba(105, 105, 105, 0.15);
	padding: 0 20px;
}
.pricing-page .plans li.popular:before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    right: -2px;
    background: #2196F3;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 5px;
    border-radius: 4px;
}
.pricing-page .price {
	font-size: 32px;
	font-weight: 800;
	color: #332348;
	display: block;
	padding: 0px 0 10px;
	text-align: center;
}
.pricing-page .price small {
	font-size: 40%;
	font-weight: 500;
	display: block;
	color: #555;
}
.pricing-page .title {
    display: block;
    color: #000;
    position: relative;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 13px 0;
    margin-bottom: 10px;
}
.pricing-page .head {
	background: url(../images/bg2.jpg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-top: 10px;
	padding-bottom: 60px;
	background-position: center;
	text-align: center;
}
.pricing-page .head h1 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	padding: 40px 0 5px;
	font-family: "Stonehenge";
}
.pricing-page .head a {
	margin-top: 30px;
}
.pricing-page .head p {
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 20px;
}
.pricing-page .head .btn-inverse {
    background: #ffffff !important;
    color: #c2665f;
    border: 2px solid #c2665f;
    padding: 16px 20px;
}
.pricing-page .head .box {
	background: #fff;
    padding: 30px;
    flex: 1;
    border-radius: 10px;
    margin: 0 15px;
    text-align: left;
    box-shadow: 0 23px 37px -12px rgba(105, 105, 105, 0.15);
}
.pricing-page .box h2 {
	font-weight: bold;
	font-size: 18px;
	color: #000000;
	margin: 0;
	display: inline-block;
	vertical-align: middle;
}
.pricing-page .benefit {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 40px 20px 0;
}
.pricing-page .box ul {
	letter-spacing: -5px;
	margin-top: 20px;
    margin-left: 4px;
}
.pricing-page .box ul li {
	font-size: 14px;
    font-weight: 500;
    padding-left: 30px;
    margin-bottom: 15px;
    letter-spacing: normal;
    background: url(../images/checked.png);
    background-repeat: no-repeat;
    -webkit-background-size: 20px;
    background-size: 17px;
    background-position: 0 1px;
}
.pricing-page .box .ico {
	display: inline-block;
	width: 24px;
    vertical-align: middle;
}
.pricing-page .box .ico img {
	width: 100%;
	height: auto;
	display: block;
}
.pricing-page .plans {
	padding-bottom: 50px;
}
.pricing-page .plans .ico {
	display: block;
	width: 70px;
    margin: -48px auto 10px;
}
.pricing-page .plans .ico img {
	width: 100%;
	height: auto;
	display: block;
}
.pricing-page .plans li p {
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	text-align: center;
	margin: 0 0 5px;
}
.pricing-page .plans li p a {
	color: #2f1e46;
	text-decoration: none;
	font-weight: 700;
}
.pricing-page .plans .btn {
	display: block;
	margin: 30px 0 -35px;
	padding: 12px;
	box-shadow: none;
}
.pricing-page .header {
	padding: 30px 0;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}
.pricing-page .plans h1 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 15px;
	font-family: "Stonehenge";
}
.pricing-page {
	
}
.pricing-page {
	
}




/* contact page styles */
.contact-page {
	background: #fff;
}
.contact-page .wicca {
	padding-top: 60px;
	padding-bottom: 70px;
}
.contact-page .wicca .box {
	padding: 10px 50px;
}
.contact-page .wicca .box a {
	font-size: 14px;
	margin-bottom: 10px;
}
.contact-page .wicca .box p {
	font-size: 13px;
	line-height: 1.4;
	margin-bottom: 5px;
}
.contact-mentor {
	padding: 70px 0 60px;
	text-align: center;
	position: relative;
	font-size: 14px;
	line-height: 1.3;
}
.contact-mentor:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 30px;
	bottom: 30px;
	margin-left: -1px;
	width: 1px;
	background: #eaeef1;
}
.contact-mentor strong {
	display: block;
	font-weight: 800;
	color: #1d1d1d;
	margin: 0 0 5px;
	font-size: 16px;
}
.contact-mentor p {
	margin-bottom: 5px;
}
.contact-mentor a {
	font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #2a8ced;
}
.contact-mentor ul {
	background-color: transparent;
	display: inline-block;
    text-align: left;
    padding: 5px;
}
.contact-mentor ul li {
	position: relative;    
	display: inline-block;
	vertical-align: middle;
    padding: 0 15px;
}
.contact-mentor .ico {
	width: 20px;
	height: 20px;
	margin-right: 4px;
	display: inline-block;
	vertical-align: top;
}
.contact-mentor .ico img {
	width: 100%;
	height: auto;
	display: block;
}
.contact-mentor ul li a {
	color: #444;
	font-weight: normal;
}

/* about page styles */
.about-page {
	background: #fff;
	padding: 0 0 60px;
}
.about-page .head {
	padding-bottom: 140px;
	padding-top: 80px;
}
.about-page .btn {
	margin: 0;
	font-size: 14px;
	min-width: 220px;
}
.about-page .about h1 {
	font-size: 34px;
	line-height: 32px;
	margin: 0 0 10px;
	font-weight: 700;
	font-family: "Stonehenge";
}
.about-page .counter {
	background: url(../images/counter-bg.png) no-repeat;
	max-width: 500px;
	margin: 0 auto -200px;
	-webkit-background-size: 280px;
	background-position: center;
	background-size: 280px;
	height: 400px;
	padding: 120px 0px;
	top: -180px;
	position: relative;
}
.about-page .registered strong {
	font-size: 70px;
	font-weight: 800;
	letter-spacing: 10px;
	color: #5d3386;
	display: block;
	text-align: center;
}
.about-page .registered p {
	font-size: 16px;
	font-family: "Montserrat";
	color: #555;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	max-width: inherit;
	letter-spacing: 0.7px;
	margin: 0 0 20px;
}
.about-page .registered span {
	color: #0e076b;
}
.about-page .inner {
	background: url(../images/bg.jpg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-top: 0px;
	padding-bottom: 0px;
	background-position: top;
	text-align: center;
	position: relative;
}
.about-page .text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}
.about-page .text h2 {
    font-weight: 600;
    font-size: 26px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.about-page .text h2:after {
    content: "";
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 50%;
    right: 0;
    height: 8px;
    background: #0e076b;
    border-radius: 20px;
    width: 30px;
    margin-left: -15px;
}
.about-page .text .feature {
	background: #fff;
	box-shadow: 0 5px 40px rgb(230, 235, 239);
	padding: 30px 20px 1px;
	margin-bottom: 30px;
}
.about-page .text ul {
	max-width: 100%;
	background-color: transparent;
	text-align: left;
	padding-top: 0;
	margin-bottom: 30px;
	letter-spacing: -5px;
}
.about-page .text ul li {
	width: 50%;
	display: inline-block;
	padding: 0 15px 0 30px;
	margin: 20px 0;
	position: relative;
	vertical-align: top;
	letter-spacing: normal;
}
.about-page .text ul li:after {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	background: url(../images/feature.png) no-repeat;
	-webkit-background-size: 20px;
	background-size: 20px;
	width: 20px;
	height: 20px;
}
.about-page .text strong {
	display: block;
	margin-bottom: 10px;
}
.about-page .feature h3 {
    font-size: 24px;
    font-weight: 700;
}

/* terms page style */

.terms-page {
	font-size: 14px;
	line-height: 24px;
}
.terms-page .head {
	background: url(../images/bg2.jpg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-top: 40px;
    padding-bottom: 140px;
	background-position: center;
	text-align: center;
}
.terms-page .head h1 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	padding: 40px 0 5px;
	font-family: "Stonehenge";
}
.terms-page h2 {
	font-weight: 700;
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 6px;
}
.terms-page .head a {
	margin-top: 30px;
}
.terms-page .head p {
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 20px;
}
.terms-page ol {
	margin-top: 10px;
	padding-left: 30px;
	list-style-type: lower-alpha;
}
.terms-page ol li {
	padding-left: 10px;
	margin-bottom: 10px;
}

/* courses list styles */
.inner-visual {
	font-size: 16px;
	color: #ccc;
	line-height: 1.6;
	text-align: center;
	padding: 30px 0 20px;
}	
.inner-visual h1 {
    font-size: 26px;
    color: #fff;
    font-weight: 600;
}
.inner-visual nav[aria-label="breadcrumb"]{
	padding: 0 !important;
}
.inner-visual .breadcrumb {
	background-color: transparent;
	display: inline-block;
	padding: 8px;
}
.inner-visual .breadcrumb li {
	display: inline-block;
	padding: 0 3px;
}
.inner-visual .breadcrumb li + li:before {
	content: "";
	background: url(../images/right-arrow.png) no-repeat;
	-webkit-background-size: 10px;
	background-size: 10px;
	width: 10px;
	height: 10px;
    opacity: 0.6;
}
.inner-visual .breadcrumb li a {
	color: #969696;
	font-weight: 600;
	text-decoration: none;
}
.inner-visual .breadcrumb li.active {
	color: #fff;
	font-weight: 600;
}
.inner-bottom-nav {
	padding: 0 !important;
	box-shadow: none !important
}
.inner-bottom-nav ul {
	text-align: center;
	display: inline-block;
	border: none;
}
.inner-bottom-nav li {
	margin: 0 !important;
	padding: 0 15px !important;
}
.inner-bottom-nav li a {
	font-size: 18px;
	padding: 15px 0 !important;
	font-weight: 600 !important;
	border: none !important;
	border-bottom: 5px solid transparent !important;
}
.inner-bottom-nav li .active {
	background-color: transparent !important;
	border: none;
	border-bottom: 5px solid #c3665f !important;
}


/* 404 error page */
.error-page {
	background: url(../images/404-page.png) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.error-page .text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    font-size: 18px;
    font-weight: 500;
    color: #555;
}
.error-page .text a {
	margin-top: 40px;
	position: relative;
	background: #222;
}
.error-page .text:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 90px;
    width: 40px;
    height: 10px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background: #92279b;
    border-radius: 20px;
}
.error-page .text h1 {
    font-size: 70px;
    line-height: 80px;
    color: #000;
    font-weight: 900;
}

/* faq page styles */
.faq-page {
	background: #fff;
}
.faq-page .head {
	padding-top: 60px;
}
.faq-page .inner {
	background: url(../images/bg.jpg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-top: 0px;
	padding-bottom: 0px;
	background-position: top;
	text-align: center;
	position: relative;
}
.faq-page .text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}
.faq-page .text h2 {
    font-weight: 600;
    font-size: 26px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.faq-page .text h2:after {
    content: "";
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 50%;
    right: 0;
    height: 8px;
    background: #c2665f;
    border-radius: 20px;
    width: 30px;
    margin-left: -15px;
}
.faq-page #accordion {
	background: #fff;
	padding: 20px;
}
.faq-page #accordion .card {
	border: 2px solid #eee;
	margin-bottom: 20px;
}
.faq-page #accordion .card-header {
	background-color: transparent;
	border: none;
	border-bottom: none;
	text-align: left;
}
.faq-page #accordion .card-header button {
	color: #000;
	display: block;
	width: 100%;
	text-align: left;
	font-weight: 600;
	text-decoration: none;
}
.faq-page #accordion .card-header button:hover {
	color: #6e29c7;
}
.faq-page #accordion .card-body {
	background: #f9f9f9;
    border: none;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    color: #000;
}

/* sponsors styles */
.sponsors-page {
	background: #fff;
}
.sponsors {
	background: #f5f9fc;
	padding: 50px 20px;
}
.sponsors .owl-dots {
	display: none;
}
.sponsors ul {
	max-width: 1200px;
	letter-spacing: -5px;
	background-color: transparent;
	padding: 0;
}
.sponsors ul li {
	width: 33.333%;
	letter-spacing: normal;
	padding: 10px;
	display: inline-block;
}
.sponsors ul li a {
	box-shadow: 0 23px 37px -16px rgba(105,105,105,0.43);
	display: block;
}
.sponsors ul li a img {
	width: 100%;
	height: auto;
	display: block;
}
.advertise .text {
	padding-top: 50px;
	padding-bottom: 20px;
}
.advertise h2 {
	font-size: 16px;
	line-height: 1.2;
	text-align: left;
	font-weight: 500;
	position: relative;
	margin-bottom: 20px;
	color: #000;
}
.advertise h2 strong {
	font-size: 22px;
	color: #c1665d;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 8px;
	display: block;
	text-transform: uppercase;
}
.advertise {
	font-size: 14px;
	line-height: 1.6;
	color: #000;
	padding: 60px 0;
}
.advertise .img-holder {
	max-width: 180px;
	margin: 60px auto;
	position: relative;
	padding: 72px 0 0;
    box-shadow: 0 23px 37px -16px rgba(105,105,105,0.43);
    border-radius: 200px;
}
.advertise .img-holder:before {
	content: "";
	position: absolute;
	width: 250px;
	height: 250px;
	top: 0;
	left: 50%;
	margin-left: -125px;
	border-radius: 250px;
	background: #f5f9fc;
}
.advertise .img-holder img {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}
.advertise .text p {
	margin-bottom: 10px;
}
.advertise .text a {
	color: #07a5ce;
	font-weight: 600;
	text-decoration: none;
}
.advertise .text a:hover {
	color: #000;
}
.advertising-rates {
    background: url(../images/bg.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 140px;
    background-position: top;
    text-align: center;
    position: relative;
}
.advertising-rates .text {
	max-width: 900px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.6;
	color: #000;
}
.advertising-rates a {
	color: #07a5ce;
	font-weight: 600;
	text-decoration: none;
}
.advertising-rates a:hover {
	color: #000;
}
.advertising-rates h2 {
	font-size: 22px;
	color: #000;
	line-height: 1;
	text-align: center;
	font-weight: 700;
	display: block;
	position: relative;
	text-transform: uppercase;
}
.advertising-rates h2 small {
	font-size: 16px;
	line-height: 1.2;
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	position: relative;
	color: #c1665d;
	padding-top: 5px;
	margin-bottom: 20px;
}
.advertising-rates .pricing-page .plans {
	padding: 0;
}
.advertising-rates .pricing-page .plans ul {
	background-color: transparent;
	max-width: 100%;
	margin-top: 60px;
	margin-bottom: 0;
}
.advertising-rates .pricing-page .plans ul li {
	background: #fff;
	width: 31%;
}
.advertising-rates .pricing-page .plans .btn {
	color: #fff;
}


/* courses list styles */
.inner-visual {
	text-align: center;
	padding: 20px 0 50px;
}	
.inner-visual h1 {
    font-size: 26px;
    color: #fff;
    font-weight: 600;
}
.inner-visual nav[aria-label="breadcrumb"]{
	padding: 0 !important;
}
.inner-visual .breadcrumb {
	background-color: transparent;
	display: inline-block;
	padding: 8px;
}
.inner-visual .breadcrumb li {
	display: inline-block;
	padding: 0 3px;
}
.inner-visual .breadcrumb li + li:before {
	content: "";
	background: url(../images/right-arrow.png) no-repeat;
	-webkit-background-size: 10px;
	background-size: 10px;
	width: 10px;
	height: 10px;
    opacity: 0.6;
}
.inner-visual .breadcrumb li a {
	color: #969696;
	font-weight: 600;
	text-decoration: none;
}
.inner-visual .breadcrumb li.active {
	color: #fff;
	font-weight: 600;
}
.inner-bottom-nav {
	padding: 0 !important;
	box-shadow: none !important
}
.inner-bottom-nav ul {
	text-align: center;
	display: inline-block;
	border: none;
}
.inner-bottom-nav li {
	margin: 0 !important;
	padding: 0 15px !important;
}
.inner-bottom-nav li a {
	font-size: 18px;
	padding: 15px 0 !important;
	font-weight: 600 !important;
	border: none !important;
	border-bottom: 5px solid transparent !important;
}
.inner-bottom-nav li .active {
	background-color: transparent !important;
	border: none;
	border-bottom: 5px solid #7071bd !important;
}

/* teach a course styles */
.teach-a-course  .advertise {
	background: #f1f3f6;
}
.teach-a-course  .advertise:nth-child(even){
	background: #fff;
}
.teach-a-course  .row .advertise {
	background: #fff;
}

/* Course filter styles */

.courses {
	background: #f5f9fc;
}
.courses .container {
	position: relative;
	max-width: 1280px;
}
.filter-courses-section {
	background: #fff;
	box-shadow: 0 2px 20px rgba(0,0,0,0.2);
	padding: 30px 10px 10px;
	text-align: center;
}
.filter-courses-section .ico {
	max-width: 50px;
	margin: 0 auto 20px;
}
.filter-courses-section .ico img {
	width: 100%;
	height: auto;
	display: block;
}
.filter-courses-section h2 {
	font-size: 26px;
	color: #6f6f6f;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 3px;
}
.filter-courses-section h2 span {
	color: #1a1284;
}
.filter-courses-section .heading {
	font-size: 14px;
	line-height: 1.6;
	font-weight: 500;
	margin-bottom: 60px;
	color: #7a7a7a;
	position: relative;
	padding: 0 350px;
}
.filter-courses-section .heading:before {
	content: '';
    position: absolute;
    bottom: 15px;
    left: 120px;
    background: url(../images/h-p-l.png) no-repeat;
    -webkit-background-size: 100px;
    background-size: 250px;
    width: 250px;
    height: 70px;
}
.filter-courses-section .heading:after {
	content: '';
    position: absolute;
    bottom: 15px;
    right: 120px;
    background: url(../images/h-p-r.png) no-repeat;
    -webkit-background-size: 100px;
    background-size: 250px;
    width: 250px;
    height: 70px;
}
.filter-courses-section form {
	text-align: left;
}
.filter-courses-section label {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: #949599;
	margin-right: 10px;
}
.filter-courses-section .form-control {
	display: inline-block;
	width: auto;
	border: 3px solid #dfe0e6;
	border-radius: 8px;
	height: 45px;
	font-size: 16px;
	font-weight: 600;
	color: #949599;
}
.filter-courses-section .form-control::-webkit-input-placeholder {
  	color: #949599;
}
.filter-courses-section .form-control::-moz-placeholder {
  	color: #949599;
}
.filter-courses-section .form-control:-ms-input-placeholder {
  	color: #949599;
}
.filter-courses-section .form-control:-moz-placeholder {
  	color: #949599;
}
.filter-courses-section .search-field .form-control {
	width: 400px;
}
.courses .holder {
	padding: 20px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
 	flex-wrap: wrap;
    margin: 0 -20px;
	justify-content: center;
}
.courses .box {
    width: 30%;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 500;
	background: #fff;
	border: 1px solid #f1f1f1;
	padding: 25px 25px 60px;
	margin: 10px;
	position: relative;
	top: 0;
	transition: 0.3s all ease-out;
	-webkit-transition: 0.3s all ease-out;
	-moz-transition: 0.3s all ease-out;
	-ms-transition: 0.3s all ease-out;
}
.courses .box:hover {
	box-shadow: 0 23px 37px -16px rgba(105,105,105,0.43);
	top: -2px; 
}
.courses .box h3 a,
.courses .box h3 {
    color: #353535;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-right: 30px;
    line-height: 1.4;
}
.courses .box .c-code {
	background: #270f59;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	padding: 5px 10px;
	border-radius: 4px;
}
.courses .box ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-pack: justify!important;
	-ms-flex-pack: justify!important;
	justify-content: space-between!important;
}
.courses .c-no {
	font-weight: 700;
	font-size: 16px;
	padding-left: 27px;
	margin-top: 5px;
	position: relative;
}
.courses .c-no:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: url(../images/hashtag.png) no-repeat;
	-webkit-background-size: 20px;
	background-size: 20px;
	width: 20px;
	height: 20px;
}
.courses .box .other {
	margin-bottom: 10px;
}
.courses .box p {
	margin-bottom: 15px;
}
.courses .title {
	position: relative;
}
.courses .box .btn-success {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	padding: 12px 30px;
	position: absolute;
    bottom: 20px;
    right: 20px;
}
.courses .box .heart {
	width: 20px;
	cursor: pointer;
	height: 20px;
	background: url(../images/heart-outline.png) no-repeat;
	-webkit-background-size: 20px;
	background-size: 20px;
	display: inline-block;
    position: absolute;
    top: 5px;
    right: 0;
}
.courses .box .heart.wish {
	width: 20px;
	height: 20px;
	background: url(../images/heart.png) no-repeat;
	-webkit-background-size: 20px;
	background-size: 20px;
	display: inline-block;
    position: absolute;
    top: 5px;
    right: 0;
}

/* pagination styles */
.front_pagination {
	background: #f5f9fc;
	padding: 30px 0 50px;
	text-align: center;
}
.front_pagination .pagination {
	justify-content: center;
}
.front_pagination .pagination li {
	margin: 0 5px;
}
.front_pagination .pagination li a,
.front_pagination .pagination li span {
	width: 40px;
	height: 40px;
	border-radius: 30px;
	display: inline-block;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #444; 
}
.front_pagination .pagination li.active span {
	background: #332348;
	color: #fff;
}
.front_pagination .pagination li a:hover {
	background-color: #f2f2f2;
}

/* courses details page styles */
.courses-details-head {
	max-width: 900px;
	margin: 0 auto;
	font-size: 16px;
	color: #ccc;
	line-height: 1.6;
}
.courses-details-head .inner-visual {
	padding-bottom: 80px;
}
.courses-details-head h1 {
	margin-bottom: 0px;
}
.courses-details-head p {
	padding: 0 30px;
}
.courses-details-head .course-no {
    background: #350e86;
    font-weight: bold;
    padding: 7px 16px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    margin: 6px 0;
    letter-spacing: 0.5px;
}
.course-info {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 35px 5px;
    border-radius: 6px;
    box-shadow: 0 2px 40px rgba(76, 76, 76, 0.1);
    position: relative;
    top: -60px;
} 
.course-info .ico {
	max-width: 40px;
	margin: 5px 10px 0 0;
	float: left;
}
.course-info .ico img {
	width: 100%;
	height: auto;
	display: block;
}
.course-info .text {
	overflow: hidden;
	padding: 6px 0px;
}
.course-info .label {
	color: #350e86;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 1.4;
	display: block;
}
.course-info li strong {
	font-size: 16px;
	color: #333;
	font-weight: 600;
}
.courses-details-inner {
	background: #f5f9fc;
	padding-bottom: 50px;
}
.courses-details-inner .nav-tabs {
	border: none;
}
.courses-details-inner .nav-tabs li {
	margin: 0 25px;
}
.courses-details-inner .nav-tabs a {
    color: #b2a5b5 !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
 	border-bottom: 3px solid transparent !important;
    background-color: transparent !important;
    padding: 3px 2px;
}
.courses-details-inner .nav-tabs a.active {
    color: #350e86 !important;
    border-bottom-color: #4100cc !important;
}
.courses-details-inner .tab-content {
	background: #fff;
	padding: 40px;
	font-size: 14px;
	line-height: 1.6;
	overflow: hidden;
}
.courses-details-inner .tab-content h1 {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	color: #252526;
    margin-bottom: 20px;
}
.courses-details-inner .tab-content h2 {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	color: #252526;
	text-align: center;
    margin-bottom: 20px;
}
.courses-details-inner .tab-content ul {
	margin: 25px 0;
}
.courses-details-inner .tab-content ul li {
	margin-bottom: 3px;
	position: relative;
	padding-left: 50px;
	font-size: 14px;
}

.courses-details-inner .tab-content ul li:before {
	content: "";
	position: absolute;
	background: #6c83e6;
	width: 7px;
	height: 7px;
	border-radius: 10px;
	left: 9px;
	top: 7px;
}
.courses-details-inner .tab-content ul.check li:before {
    width: 11px;
    height: 7px;
    content: '';
    border-width: 0 0 3px 3px;
    border-style: solid;
    border-color: #6c83e6;
    position: absolute;
    top: 5px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-radius: 0;
    background: transparent;
}
.courses-details-inner .tab-content p {
	margin-bottom: 20px;
}
.courses-details-inner .table {
	font-size: 14px;
	border: 1px solid #d1d6da;
	color: #000;
}
.courses-details-inner .table thead {
	border-left: 4px solid #131313;
    border-top: 2px solid #464646;
}
.courses-details-inner .table th {
	background: #464646;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border: none;
}
.courses-details-inner .table td {
	padding: 18px 10px;
}
.courses-details-inner .table td:first-child {
	border-left: 4px solid #d1d6da;
}
.courses-details-inner .table tr:hover {
	background: #f4f3f3;
}
.courses-details-inner .table tr:hover td:first-child {
	border-left: 4px solid #b3b3b3;
}
.courses-details-inner .table .lesson-no {
	font-weight: 700;
	position: relative;
	padding-left: 40px;
}
.courses-details-inner .table .lesson-no:before {
	content: '';
	position: absolute;
	background: url(../images/lesson-file.svg) no-repeat;
	-webkit-background-size: 12px;
	background-size: 14px;
	width: 14px;
	height: 14px;
	left: 8px;
	top: 1px;
	opacity: 0.3;
}
.courses-details-inner .table td a {
	color: #4e264a;
	font-weight: 600;
	text-decoration: none;
}
.courses-details-inner .table td a.lesson-name {
	font-size: 14px;
	color: #007bff;
	font-weight: normal;
    max-width: 400px;
    display: inline-block;
}
.courses-details-inner .table td a.lesson-name:hover {
	text-decoration: underline;
	color: #007bff;
}
.courses-details-inner .table td .ava-text,
.courses-details-inner .table td a.link {
	padding-right: 50px;
	position: relative;
	display: inline-block;
}
.courses-details-inner .table tr.start a.link:before {
	width: 9px;
	height: 6px;
	content: '';
	border-width: 0 0 3px 3px;
	border-style: solid;
	border-color: #350e86;
	position: absolute;
	top: 6px;
	right: 23px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-radius: 0;
	background: transparent;
}
.courses-details-inner .table td a.link:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 0px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 3px solid #350e86;
}
.courses-details-inner .table td .ava-text {
	font-weight: 600;
    font-size: 14px;
	color: #c6c7cc;
}
.courses-details-inner .table td .ava-text:after {
	content: "";
	position: absolute;
	right: 18px;
    top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 18px;
	border: 3px solid #c6c7cc;
}
.courses-details-inner .table tr.available a.link:after {
	border-color: #c6c7cc;
}
.courses-details-inner .table tr.not-available .ava-text:after {
    content: "";
    position: absolute;
    background: url(../images/lock-icon.svg) no-repeat;
    width: 17px;
    height: 17px;
    -webkit-background-size: 17px;
    background-size: 17px;
    border: none;
    border-radius: 0;
    opacity: 0.2;
}
.courses-details-inner .table tr.footer {
	background: #4c4f99;
}
.courses-details-inner .table tr.footer {
	border-bottom: 1px solid #4c4f99;   
}
.courses-details-inner .table tr.footer td:first-child {
	border-left-color: #4c4f99;
}
.courses-details-inner .table tr.footer td {
	color: #fff;
    font-size: 15px;
	vertical-align: middle; 
    font-weight: 600;
}
.courses-details-inner .table tr.footer a {
	padding: 8px 25px;
    background: #303267;
    color: #fff;
    display: none;
    font-size: 14px;
    margin-right: 20px;
}
.courses-details-inner .table tr.footer.start-exams .title {
	padding-top: 7px;
	display: inline-block;
}
.courses-details-inner .table tr.footer.start-exams a {
	display: block;
}
.courses-details-inner .course-content h2 {
	font-size: 24px;
	margin-bottom: 10px;
	text-align: left;
}
.courses-details-inner .course-content .breadcrumb {
	background: #ebebeb;
	padding: 1.1rem;
	margin-top: -12px;
	margin-bottom: 20px;
}
.courses-details-inner .course-content .breadcrumb-item + .breadcrumb-item:before {
	content: "|";    
	padding-right: 1rem;
    padding-left: 0rem;
}
.courses-details-inner .course-content .breadcrumb li {
	color: #4f274b;
	font-size: 13px;
	font-weight: 500;
	margin: 0 10px;
}
.courses-details-inner .course-content .breadcrumb li.active {
	font-weight: 600;
	color: #332348;
}

.courses-details-inner .course-content .breadcrumb li a {
	color: #4f274b;
	font-weight: 500;
	text-decoration: none;
}

.courses-details-inner .course-content .pagination {
    justify-content: center;
}

.courses-details-inner .course-content .pagination li:before {
	display: none;
}

.courses-details-inner .course-content .pagination li:first-child {
	padding-left: 0;
}

.courses-details-inner .course-content .pagination .page-link {
	display: inline-block;
	border: none;
	box-shadow: none;
	color: #535353;
	font-weight: 700;
	padding: 10px 7px;
}

.courses-details-inner .course-content .pagination .page-link span {
	font-weight: 500;
}

.courses-details-inner .course-content .pagination .page-link:hover {
	background-color: transparent;
	color: #000;
}

.courses-details-inner .course-content .pagination .ico {
	width: 20px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
}

.courses-details-inner .course-content .pagination .ico img {
	width: 100%;
	height: auto;
	display: block;
}

.loading {
	position: static;
    z-index: 9;
    text-align: center;
    padding: 80px;

}
.loading img {
    width: 40px;
}
.bulk_course {
	width: 500px;
}
.begin-test {
	background: #f5f9fc;
	padding-bottom: 40px;
}
.begin-test .box {
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 2px 40px rgba(76, 76, 76, 0.1);
    position: relative;
    top: -25px;
    border-radius: 6px;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}
.begin-test .box h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 24px;
}
.begin-test .box h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #c1665e;
}
.begin-test .box p {
	margin: 0 0 10px;
}
.begin-test .box ul {
	letter-spacing: -5px;
	margin: 20px 0 100px;
}
.begin-test .box ul li {
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;
	font-weight: 500;
}
.begin-test .box ul li + li {
	border-left: 1px solid #ccc;
	padding-left: 10px;
	margin-left: 10px;
}
.begin-test .box ul li .ico {
	max-width: 20px;
	display: inline-block;
	vertical-align: middle;
}
.begin-test .box ul li .ico img {
	width: 100%;
	height: auto;
	display: block;
}
.begin-test .box ul li a {
	font-weight: 600;
	text-decoration: none;
	color: #000;
}
.begin-test .button {
	padding: 15px;
	overflow: hidden;
	margin: 30px -40px -40px;
	background: #f5f9fc;
}
.begin-test .btn-start {
    margin: 0 auto;
    padding: 10px 16px;
    float: right;
    font-size: 14px;
    background: #332348;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
}

/* test page styles */
.test-page {
	padding-top: 40px;
}
.test-page .box {
	top: 0;
}
.test-page .box ul li {
	display: block;
	margin-bottom: 15px;
	margin-left: 0 !important;
}
.test-page .box ul li + li {
	border: none;
	padding: 0;
}

/* update page styles */
.update-page .container {
	letter-spacing: -5px;
}
.update-page .box-holder {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.update-page .box {
    margin: 0 10px 20px;
    padding: 30px;
    letter-spacing: normal;
    flex: 48%;
    max-width: 100%;
}
.update-page .button {
    margin: 0;
    padding: 0;
    background: transparent;
}
.update-page .button a {
	float: left;
}
.update-page .btn-update {
    margin: 0 auto;
    padding: 10px 16px;
    float: right;
    font-size: 14px;
    background: #2c3091;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
}
.update-page .btn-update[disabled] {
	background: #ccc;
	pointer-events: none;
}
.update-page .box ul {
	margin: 20px 0;
}
.update-page .box h2 {
	font-size: 16px;
}
.update-page .box ul li {
	margin-bottom: 7px;
}
.update-page .box .custom-checkbox {
	font-size: 12px;
}


/* login dashboard styles */
.login-dashboard {
	padding: 30px 0;
	background: #fcfdff;
}
.login-dashboard .top {
	padding: 20px;
	margin-bottom: 25px;
    background: #fff;
	border-radius: 6px;
    border: 1px solid #f2f5fc;
}
.membership {
	margin: 10px 0;
}
.membership h2 {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	display: inline-block;
	color: #000;
}
.login-dashboard .btn-sm {
	padding: 10px 15px;
	font-size: 12px;
	box-shadow: none;
}
.membership h2 span {
	font-weight: 500;
	margin-right: 10px;
	color: #301649;
}
.news-box {
	padding: 0;
}
.news-section-box {
    margin-top: 40px;
    height: auto;
    padding: 0;
}
.news-box .jumbotron {
	padding: 15px 0 20px;
	margin: 0;
	background: #fff;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
    line-height: 1.4;
}
.news-box .carousel {
	padding: 8px 25px;
}
.news-box .title {
    display: block;
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 18px;
    border-left: 5px solid #270f59;
    line-height: 1;
}
.news-box .jumbotron {
    background: #f5f9fc;
    border: 2px solid #e5eaef;
    border-radius: 6px;
}
.news-box .carousel-item p {
	margin: 0;
    font-size: 13px;
    text-align: left;
    font-weight: 400;
    line-height: 1.4;
}
.news-box .carousel-control-prev, 
.news-box .carousel-control-next {
	width: 25px;
	height: 25px;
	right: 34px;
	top: 93%;
} 
.news-box .carousel-control-prev:hover, 
.news-box .carousel-control-next:hover {
	opacity: 0.8;
}
.news-box .carousel-control-prev {
    left: auto;
    background: #ffffff;
    opacity: 1;
    border: 2px solid #eee;
}
.news-box .carousel-control-next {
	right: 5px;
    background: #ffffff;
    opacity: 1;
    border: 2px solid #eee;
}
.news-box .carousel-control-prev-icon,
.news-box .carousel-control-next-icon {
	-webkit-background-size: 10px;
	background-size: 10px;
}
.news-box .carousel-control-prev-icon {
	background-image: url(../images/angle-left.svg);
}
.news-box .carousel-control-next-icon {
	background-image: url(../images/angle-right.svg);
}

/* result box styles */
.result-quiz {
    letter-spacing: normal !important;
    max-width: 1090px;
    margin: 0 auto;
    background: #ffffff;
    border-top: 3px solid #ffc107;
    padding: 10px 8px 1px;
}
.result-quiz .hold {
	padding: 30px;
	overflow: hidden;
}
.result-quiz p {
	margin: 3px 0 0;
}
.result-quiz .image {
    float: left;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    background: #fff;
    margin-right: 20px;
    padding: 22px 0;
    position: relative;
    font-size: 60px;
    font-weight: 600;
    color: #6a1dd0;
    text-align: center;
    border: 2px solid;
}
.result-quiz .image img {
    max-width: 45px;
    margin: 0 auto;
    height: auto;
    display: block;
    position: absolute;
    top: -3px;
    right: -9px;
    background: #fff;
    border-radius: 30px;
    border: 3px solid #fff;
}
.result-quiz .text {
	overflow: hidden;
    font-size: 16px;
    font-weight: 500;
}
.result-quiz .text li {
	position: relative;
	padding-left: 30px;
}
.result-quiz .text li + li {
	margin-top: 20px;
}
.result-quiz .text .right {
	color: #000;
}
.result-quiz .text .right:before {
	width: 17px;
    height: 17px;
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    background: #fff;
    border: 2px solid #8BC34A !important;
    border-radius: 20px;
    padding: 2px;
}
.result-quiz .text .wrong {
	color: #000;
}
.result-quiz .text .wrong:before {
	width: 17px;
    height: 17px;
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    background: #fff;
    border: 2px solid #e04d4d !important;
    border-radius: 20px;
    padding: 2px;
}
.result-quiz .text h1 {
	font-size: 24px;
    font-weight: 700;
}
.result-quiz .btn-link {
    font-size: 14px;
    font-weight: 600;
    color: #c2665f;
    margin-top: 10px;
    display: inline-block;
    background: #f7f7f7;
    padding: 3px 7px;
    border-radius: 4px;
}
.result-quiz .persent {
	font-weight: bold;
	color: #6cb31a;
}

/* staff section styles */
.staff-section {
  
}
.staff-section [class*="col-"] {
	margin-bottom: 20px;
}
.staff-section .box {
	overflow: hidden;
	background: #fff;
	padding: 20px;
	text-align: center;
	border-radius: 6px;
	height: 100%;
	box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.staff-section .detail strong {
	display: block;
	font-size: 18px;
	line-height: 1.4;
}
.staff-section .detail small {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	color: #350992;
	font-weight: 500;
}
.staff-section .detail .img-hold {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	overflow: hidden;
	margin: 0 auto 20px;
	display: block;
}
.staff-section .detail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.staff-section .content div {
  width: auto !important;
  float: none !important;
  text-align: center !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}
.staff-section .content div p  {
  text-align: center !important;
}
.staff-section .content {
	margin: 10px 0;
	overflow: hidden;
    font-size: 14px;
  
}
.staff-section .content p:empty {
	display: none;
}

/* Google language section style */
#google_translate_element {
	background: #29105b;
	position: absolute;
	right: 60px;
	top: 10px;
	z-index: 999;
}
#google_translate_element .skiptranslate.goog-te-gadget {
	color: #b9b8b8;
}
#google_translate_element .goog-te-gadget
{
	font-size: 0px;
}
#google_translate_element .skiptranslate.goog-te-gadget > div {
	display: inline-block;
    margin-right: 10px;
}
.goog-logo-link {
	color: #b9b8b8 !important;
	display: none;
}
@media screen and (max-width: 1250px){
	#header .bottom-nav li {
		padding: 0 30px;
	}
	#header .visual {
		padding: 80px 20px 100px;
	}
	#header .visual h1 {
		font-size: 90px;
		line-height: 1.2;
	}
	#header .visual p {
		font-size: 22px;
		line-height: 1.1;
	}
	.join .registered strong {
		font-size: 60px;
	}
	.join .btn {
		font-size: 15px;
		letter-spacing: 0.2px;
		min-width: 280px;
	}
	.wicca {
		padding-bottom: 160px;
	}
	.wicca .btn {
	    font-size: 16px;
	    letter-spacing: 0.2px;
	    min-width: 400px;
	}
	.our-videos .btn {
		font-size: 15px;
		letter-spacing: 0.2px;
		min-width: 280px;
	}
	.newsletter-section .form-control {
		width: 300px;
	}
	.newsletter-section input[type="submit"] {
	    padding: 15px 20px;
	}
}
@media screen and (max-width: 1200px){		
	.pricing-page .plans ul {		
		display: block !important;		
		letter-spacing: -5px;		
	}		
	.pricing-page .plans ul li {		
		width: 50%;		
		display: inline-block;		
		letter-spacing: normal;		
		margin: 0 -1px 80px;		
		vertical-align: top;		
	}
	.filter-courses-section .heading:before {
		left: 0;
	}
	.filter-courses-section .heading:after {
		right: 0;
	}
	.filter-courses-section .heading {
		padding: 0 260px;
	}
}
@media screen and (max-width: 1100px){
	.logo {
	    max-width: 150px;
	    margin: 0;
	    padding: 15px 0 0;
	}
	.btn-primary {
		font-size: 12px;
		padding: 18px;
	}
	#header .navbar-nav li {
		padding: 0 10px;
	}
	#header .navbar-nav li a {
		font-size: 12px;
	}
	#header .bottom-nav li {
		padding: 0 20px;
	}
	#header .bottom-nav li a {
		font-size: 12px;
	}
	.sign-up-page .form {
	    margin: 0 30px;
	    background: #fff;
	    padding: 0 60px 40px;
	}
	.sign-up-page .top {
		padding: 20px 60px 30px;
	    margin-bottom: 25px;
	    margin: 0 -60px;
	}
	.sign-up-page .button {
		margin: 30px auto 0;
	}
	.select2-container {
		width: 100% !important;
	}
	.error-page {
	    background-position: 0px 70px;
	}
	.bulk_course {
		width: 400px;
	}

}
@media screen and (max-width: 992px){
	.video-list li {
		width: 50%;
	}
	.wicca .box {
		margin: 0 0 20px;
	}
	.navbar-collapse {
		background: rgba(36, 14, 61, 0.9);
		padding: 20px;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 99;
	}
	.navbar-collapse .button {
		text-align: center;
		margin-top: 20px;
	}
	.navbar-toggler {
		position: relative;
		z-index: 100;
	}
	.navbar-collapse .navbar-nav {
		margin-top: 60px;
	}
	.navbar-collapse li {
		text-align: center;
		padding: 10px 0 !important;
	}
	#header .navbar-nav li a {
		font-size: 16px;
	}
	#footer .holder {
		padding-top: 20px;
		background: #f2f5f6;
	}
	.wicca {
		padding-bottom: 40px;
	}
	.join .registered strong {
		font-size: 50px;
	}
	.video-list {
		padding-bottom: 50px;
	}
	.newsletter-section .form-control {
		width: 220px;
	}
	.newsletter-section h3 {
		font-size: 18px;
		margin-top: 15px;
	}
	.newsletter-section input[type="submit"] {
	    padding: 15px;
	}
	.sign-up-page .button strong {
		display: block;
		margin: 0 0 20px;
	}
	.sign-up-page input[type="submit"] {
		margin: 0 20px;
		width: auto;
		display: inline-block;
	}
	.sign-up-page .button .register-btn,
	.sign-up-page .button input[type="submit"] {
		display: block;
		width: 80%;
		margin: 10px auto 0;
	}
	.pricing-page .benefit {
		display: block;
	}
	.pricing-page .benefit .box {
		margin: 0 0 20px;
	}
	#footer .hold ul {
		width: 45%;
	}
	#footer .hold ul:nth-child(n+3) {
		margin-top: 20px;
	}
	.visit-us ul {
		display: block !important;
		letter-spacing: -5px;
		padding: 60px 10px 0;
	}
	.visit-us ul li.visit-title {
		left: 0;
		right: 0;
		top: 0;
		width: inherit;
		height: 40px;
		padding: 10px;
		text-align: center;
	}
	.visit-us ul li {
		width: 33%;
		display: inline-block;
		vertical-align: top;
		letter-spacing: normal;
		margin-bottom: 20px;
	}
	.contact-mentor {
		padding-top: 0;
		padding-bottom: 0;
	}
	.contact-mentor [class*="col-"] {
		margin-bottom: 80px;
	}
	.contact-mentor ul {
		text-align: center;
	}
	.contact-mentor ul li {
		margin-bottom: 10px;
	}
	.contact-mentor:after {
		display: none;
	}
	.error-page {
	    background-position: 0px 100px;
	}
	.courses .box {
		width: 100%;
		margin: 10px 0;
	}
	.filter-courses-section .heading:before {
		left: 50px;
		width: 150px;
		height: 44px;
		bottom: 60px;
		-webkit-background-size: 150px;
		background-size: 150px;
	}
	.filter-courses-section .heading:after {
		right: 50px;
		bottom: 60px;
		width: 150px;
		height: 44px;
		-webkit-background-size: 150px;
		background-size: 150px;
	}
	.filter-courses-section .heading {
		padding: 0 20px;
	}
	.courses .holder {
		padding: 20px 30px !important;
	}
	.bulk_course {
		width: 100%;
	}
	.sign-up-page .button {
		font-size: 14px;
	}
	.sign-up-page .register-btn {
		margin-bottom: 15px !important;
	}
	.sign-up-page .button a {
		display: block;
	}
	.sign-up-page input[type="submit"] {
		margin-top: 15px !important;
	}

}
@media screen and (max-width: 767px){
	#header .visual h1 {
		font-size: 43px;
	}
	#header .visual p {
		font-size: 18px;
		color: #b3b3b3;
		font-weight: bold;
		line-height: 1.2;
	}
	#header nav {
		padding: 20px;
	}
	.wicca .btn {
		font-size: 14px;
		min-width: inherit;
	}
	.wicca .text h3,
	.join h2,
	.our-videos .text h3 {
		font-size: 26px;
	}
	.wicca .text p,
	.join p,
	.our-videos .text p {
		font-size: 14px;
	}
	.join .registered p {
		font-size: 12px;
	}
	.newsletter-section h3 {
		margin: 10px 0 30px;
		text-align: center;
	}
	.newsletter-section form {
		float: none;
		text-align: center;
	}
	.sign-up-page .form {
		padding: 0 20px 40px;
		margin: 0;
	}
	.sign-up-page .top {
	    padding: 20px 20px 30px;
	    margin: 0 -20px;
	}
	.sign-up-page .bottom {
		padding: 0;
		background-color: transparent;
	    height: 60px;
	}
	.visit-us {
		margin: 0 20px;
	}
	.visit-us ul li {
		width: 50%;
	}
	.about-page .registered strong {
		font-size: 40px;
	}
	.about-page .registered p {
		font-size: 12px;
		line-height: 20px;
	}
	.about-page .registered span {
		display: block;
	}
	.about-page .text ul {
		padding: 30px 10px;
	}
	.about-page .text ul li {
		width: 100%;
	}
	.about-page .text h2 {
		font-size: 20px;
	}
	.about-page .counter {
	    height: 310px;
	    padding: 110px 0px;
	    margin: 0 auto -170px;
	}
	.about-page .text {
		font-size: 13px;
		line-height: 20px;
	}
	.sign-up-page .button .register-btn, .sign-up-page .button input[type="submit"] {
		font-size: 12px;
	}
	.pricing-page .plans ul li {
		width: inherit !important;
		display: block;
		letter-spacing: normal;
		margin: 0 10px 80px;
		vertical-align: top;
	}
	#footer .hold ul {
		width: 100%;
		margin: 0 !important;
	}
	.error-page .text {
    	width: 100%;
	    font-size: 16px;
	}
	.error-page .text h1 {
	    font-size: 40px;
	    line-height: 50px;
	}
	.advertising-rates {
		padding-bottom: 0;
	}
	.filter-courses-section .form-control,
	.filter-courses-section .search-field .form-control {
	    width: 100%;
	    margin: 10px 0;
	}
	#header .bottom-nav li a span {
		display: none;
	}
	.filter-courses-section .heading:before {
		left: 0;
		bottom: 80px;
	}
	.filter-courses-section .heading:after {
		right: 0;
		bottom: 80px;
	}
	.filter-courses-section h2 {
		font-size: 22px;
	}
	.course-info .ico {
		float: none;
		margin: 0 auto 10px;
	}
	.course-info .text {
		text-align: center;
	}
	.course-info .label {
		font-size: 10px;
	}
	.course-info {
		top: -50px;
		margin: 0 40px;
	}
	.courses-details-head {
		font-size: 15px;
		line-height: 1.4;
	}
	.courses-details-head h1 {
		font-size: 18px;
	}
	.course-info ul {
		display: block !important;
	}
	.course-info li {
		margin-bottom: 20px;
	}
	.course-info li strong {
		font-size: 14px;
	}
	.courses-details-inner .tab-content {
		padding: 25px;
		font-size: 12px;
		line-height: 1.6;
	}
	.courses-details-inner .tab-content h1 {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.courses-details-inner .tab-content ul li {
		font-size: 12px;
		padding-left: 30px;
		margin-bottom: 10px;
	}
	.courses-details-inner .course-content .breadcrumb li {
		font-size: 11px;
		margin: 0 4px;
	}
	.courses-details-inner .course-content .pagination li {
		padding: 0 8px;	
	}
	.courses-details-inner .course-content h2 {
		font-size: 16px;
	}
	.courses-details-inner .table td a.link,
	.courses-details-inner .table td .ava-text {
		display: block;
	}
	.courses-details-inner .table td .ava-text {
		font-size: 12px;
	}
	.courses-details-inner .table td .float-right {
		float: none !important;
		display: block;
		width: 100%;
		margin-top: 20px;
		border-top: 1px solid #eee;
		padding-top: 10px;
		font-size: 12px;
	}
	.courses-details-inner .nav-tabs a {
		font-size: 12px;
	}
	.courses-details-inner .table td a.lesson-name {
	    font-size: 12px;
	    color: #000;
	    font-weight: normal;
	    max-width: 100%;
	    display: block;
	    font-weight: 500;
	}
	.courses-details-inner .table tr.footer.start-exams .title {
		padding: 0;
		padding-bottom: 10px;
	}
	.courses-details-inner .table tr.footer td .float-right {
		border: none;
		margin: 0;
		padding: 0;
	}
	.courses-details-inner .table tr.footer a {
		margin: 0;
	}
	.begin-test .button {
		margin: 30px -30px -40px;
	}
	.begin-test .box {
		padding: 30px;
	}
	.begin-test .box h2 {
		font-size: 16px;
		line-height: 1.4;
	}
	.navbar-toggler {
		padding: .25rem 0;
	}
	.forgot-page .head h1 {
		font-size: 20px;
	}
	#inner-header nav {
		padding: 25px 20px;
	}
	.forgot-page .head {
		font-size: 14px;
		padding: 35px 20px 0;
	}
	.navbar-collapse .button .btn-primary {
		margin-left: 0;
	}
	.odometer.odometer-auto-theme, .odometer.odometer-theme-car {
		font-size: 30px !important;
	}
    #header .bottom-nav {
    	white-space: nowrap;
    	overflow-x: auto;
    }
    .our-videos .text {
	    font-size: 14px;
	    line-height: 22px;
	}
	#footer h3 {
		margin-bottom: 0 !important;
	}
	#footer [class*="col-"] {
		margin-bottom: 20px;
	}
	#footer .bottom,
	#footer .bottom ul {
		text-align: center;
	}
	#footer .bottom ul {
		padding-top: 0;
	}
	#footer .bottom [class*="col-"] {
		margin-bottom: 0 !important;
	}
	#footer .holder {
		padding-bottom: 0 !important;
	}
	#google_translate_element {
		right: 10px !important;
	}
	.login-page .head {
		padding: 10px 0 !important;
	}
	.courses-details-inner iframe {
		width: 100%;
		height: 200px;
	}
	.inner-visual {
		font-size: 14px;
	}
}
@media screen and (max-width: 480px){
	.newsletter-section .form-group {
		display: block;
	}
	.newsletter-section .form-group input[type="submit"]{
		display: block;
		width: 100%;
		margin: 0;
	}
	.newsletter-section .form-control {
	    width: 100%;
	    margin: 0 0 15px;
	}	
	.logo {
	    max-width: 100px;
	    margin: 0;
	    padding: 0;
	}
	.navbar-toggler-icon {
	    width: 30px;
	    height: 30px;
	}
	.error-page {
	    background-position: 0px 150px;
	}
	.filter-courses-section .heading:before,
	.filter-courses-section .heading:after {
		display: none;
	}
	.login-page .form,
	.forgot-page .form {
        padding: 50px 20px 30px;
    }
    .login-page ul {
        display: block !important;
    }
    .login-page ul li {
        margin-bottom: 10px;
    }
    #header .bottom-nav {
    	white-space: nowrap;
    	overflow-x: auto;
    }
}
.banner_main{
	text-align: center !important;
}