/*
======================================
  * CSS TABLE CONTENT *
======================================
1. HEADER
2. HEADER TOPBAR
3. HEADER LOGO
4. MENU BAR
5. MEGA MENU
6. HEADER TRANSPARENT
7. MENU ICON
8. PAGE BANNER
9. BLOG
10. TESTIMONIALS
11. COUNTERUP
12. FOOTER
13. INNER CONTENT CSS
======================================
  * END TABLE CONTENT *
======================================
*/

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13,110,253;
    --bs-secondary-rgb: 108,117,125;
    --bs-success-rgb: 25,135,84;
    --bs-info-rgb: 13,202,240;
    --bs-warning-rgb: 255,193,7;
    --bs-danger-rgb: 220,53,69;
    --bs-light-rgb: 248,249,250;
    --bs-dark-rgb: 33,37,41;
    --bs-white-rgb: 255,255,255;
    --bs-black-rgb: 0,0,0;
    --bs-body-color-rgb: 33,37,41;
    --bs-body-bg-rgb: 255,255,255;
    --bs-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

/*=================================
	1. HEADER
=================================*/
.bg-fix {
    background-attachment: fixed;
	background-size: cover;
}
.sticky-top {
	top:100px;
}
.header {
    position: relative;
    z-index: 99999;
}
.header ul,
.header ol {
    margin-bottom: 0;
}
/*without top bar*/
.secondary-menu {
    float: right;
    padding: 26px 0;
    position: relative;
    z-index: 9;
}
.secondary-menu .btn-link{
	font-size:12px;
	padding: 0;
}
.secondary-menu .btn-link:hover{
	color:var(--primary);
}
.secondary-menu .secondary-inner {
    display: inline-block;
    margin-left: 5px;
}
.nav-search-bar {
    background-color:rgba(255,255,255,0.95);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
	height:100%;
    z-index: 999;
    display: none;
    overflow: hidden;
	padding: 0 15px;
}
.nav-search-bar.On form {
	transition:all 0.5s ease 0.5s;
	-moz-transition:all 0.5s ease 0.5s;
	-webkit-transition:all 0.5s ease 0.5s;
	opacity:1;
}
.nav-search-bar form {
    width: 100%;
	max-width: 700px;
    margin: auto;
    position: relative;
	top: 50%;
	transition:all 0.5s;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
    -moz-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
	opacity:0;
}
.nav-search-bar .form-control {
	padding: 15px 60px 15px 15px;
    width: 100%;
    height: 70px;
    border: none;
    background: none;
    color: #000;
    font-size: 20px;
	border-bottom:2px solid #000;
}
.nav-search-bar .form-control::-moz-placeholder {
    color: #000;
}
.nav-search-bar .form-control:-moz-placeholder {
    color: #000;
}
.nav-search-bar .form-control:-ms-input-placeholder {
    color: #000;
}
.nav-search-bar .form-control::-webkit-input-placeholder {
    color: #000;
}
.nav-search-bar form span {
    position: absolute;
    right: 15px;
    top: 50%;
    margin: -15px 0;
    height: 25px;
    font-size: 20px;
    cursor: pointer;
	color: #000;
}
.nav-search-bar > span {
	position: absolute;
	right: 15px;
	top: 15px;
	height: 25px;
	font-size: 20px;
	cursor: pointer;
	color: #000;
}
.header-lang-bx .dropdown-menu{
	top: 10px !important;
	right: 0;
	left: auto !important;
}
.header-lang-bx ul li{
	margin:0 !important;
}
.header-lang-bx .flag:after{
	content: "";
	width: 20px;
	height: 12px;
	display: inline-block;
	background-size: cover;
	background-position: center;
	margin-top: 0px;
	margin-right: 2px;
}
.header-lang-bx .flag.flag-uk:after{
	background-image:url(../images/flag/united-kingdom.svg);
}
.header-lang-bx .flag.flag-us:after{
	background-image:url(../images/flag/united-states-of-america.svg);
}
@media only screen and (max-width: 767px) {
    .secondary-menu {
        margin-right: 5px;
    }

	.footer-bottom-nav ul {
        justify-content: start!important;
		display: block;

    }

	/*.secondary-inner ul .menu-links1 .nav1 ul {*/
	/*	background-color: #ffffff;*/
	/*	border: 1px solid #f4f4f4;*/
	/*	display: block;*/
	/*	left: 0;*/
	/*	text-align: start;*/
	/*	list-style: none;*/
	/*	opacity: 0;*/
	/*	padding: 10px 0;*/
	/*	position: absolute;*/
	/*	visibility: hidden;*/
	/*	width: 100px;*/
	/*	z-index: 10;*/
	/*	border-radius: 6px;*/
	/*	top: 145%;*/
	/*}*/
}
@media only screen and (max-width: 480px) {
    .secondary-menu {
        margin: 0 1px 0 0;
        text-align: right;
    }
	.secondary-inner ul .menu-links1 .nav1 ul {
		background-color: #ffffff;
		border: 1px solid #f4f4f4;
		display: block;
		left: 0;
		list-style: none;
		opacity: 0;
		padding: 8px 0;
		position: absolute;
		visibility: hidden;
		width: 80px;
		z-index: 10;
		border-radius: 6px;
		top: 145%;
	}

	.menu-links1 .nav1 > li .sub-menu1 li a {
		color: #303030;
		display: block;
		font-size: 10px;
		padding: 6px 15px;
		text-transform: capitalize;
		transition: all 0.15s linear;
		-webkit-transition: all 0.15s linear;
		-moz-transition: all 0.15s linear;
		-o-transition: all 0.15s linear;
		font-weight: 400;
		/* font-family: Rubik; */
        font-family: "Arimo", serif;
        font-optical-sizing: auto;
	}

	.menu-links1 .nav1 > li {
		margin: 0px;
		font-weight: 300;
		text-decoration: none;
		/* text-transform: uppercase; */
		position: relative;
		/* font-family: Rubik; */
        font-family: "Arimo", serif;
        font-optical-sizing: auto;
	}

	.menu-links1 .nav1 > li > a {
		border-radius: 0px;
		color: #000;
		font-size: 12px;
		/* padding: 30px 12px; */
		cursor: pointer;
		font-weight: 400;
		display: inline-block;
	}
	.footer-bottom-nav ul {
        justify-content: start!important;
		display: block;

    }
}

@media (min-width: 280px) and (max-width: 360px) {
	.secondary-inner ul .menu-links1 .nav1 ul {
		background-color: #ffffff;
		border: 1px solid #f4f4f4;
		display: block;
		left: 0;
		list-style: none;
		opacity: 0;
		padding: 8px 0;
		position: absolute;
		visibility: hidden;
		width: 80px;
		z-index: 10;
		border-radius: 6px;
		top: 145%;
	}

	.menu-links1 .nav1 > li .sub-menu1 li a {
		color: #303030;
		display: block;
		font-size: 12px;
		padding: 6px 15px;
		text-transform: capitalize;
		transition: all 0.15s linear;
		-webkit-transition: all 0.15s linear;
		-moz-transition: all 0.15s linear;
		-o-transition: all 0.15s linear;
		font-weight: 400;
		/* font-family: Rubik; */
        font-family: "Arimo", serif;
        font-optical-sizing: auto;
	}

	.menu-links1 .nav1 > li {
		margin: 0px;
		font-weight: 300;
		text-decoration: none;
		/* text-transform: uppercase; */
		position: relative;
		/* font-family: Rubik; */
        font-family: "Arimo", serif;
        font-optical-sizing: auto;
	}

	.menu-links1 .nav1 > li > a {
		display: none;
	}
	.footer-bottom-nav ul {
        justify-content: start!important;
		display: block;

    }
}

/*=================================
	2. HEADER TOPBAR
=================================*/
.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #000;
    padding: 11px 0;
}
.topbar-left {
    float: left;
}
.topbar-right {
    float: right;
}
.topbar-center,
.topbar-left,
.topbar-right {
    padding-left: 15px;
    padding-right: 15px;
}
.topbar-left ul li,
.topbar-right ul li{
	display:inline-block;
	position:relative;
}
.topbar-left ul li a,
.topbar-right ul li a{
	color:#000;
}
.topbar-left ul,
.topbar-right ul{
	margin:0;
	padding:0;
	list-style:none;
	/* font-family:rubik; */
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	font-size:14px;
}
.topbar-left ul li{
	padding-right:10px;
	margin-right:10px;
}
.topbar-right ul li{
	padding-left:10px;
	margin-left:10px;
}
.topbar-left ul li i{
	margin-right:5px;
}
.search-btn:after,
.topbar-left ul li:after,
.topbar-right ul li:after{
	position: absolute;
    width: 1px;
    height: 20px;
    background-color: #000;
    right: 0;
    content: "";
    top: 2px;
    opacity: 0.1;
}
.topbar-right ul li:after{
	right:auto;
	left:0;
}
.topbar-right ul li:first-child:after,
.topbar-left ul li:last-child:after{
	content:none;
}
.header-lang-bx .btn:focus,
.header-lang-bx .btn:hover,
.header-lang-bx .btn{
	border:0 !important;
}
.header-lang-bx .btn{
	padding:0 10px 0px 0 !important;
	height: 18px;
	color:#000;
	/* font-family:rubik; */
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	font-size: 14px;
}
.header-lang-bx .btn:hover{
	color:#000;
}
.header-lang-bx.bootstrap-select.btn-group .dropdown-toggle .caret{
	right:0;
	top:5px;
}
.header-lang-bx .btn .fa-caret-down:before{
	content:"\f107";
}
@media only screen and (max-width: 991px) {
	.topbar-right {
		padding-left: 0;
		padding-right: 15px;
	}
	.topbar-left{
		padding-left: 15px;
		padding-right: 0;
	}
	.secondary-inner ul .menu-links1 .nav1 ul {
		background-color: #ffffff;
		border: 1px solid #f4f4f4;
		display: block;
		left: 0;
		list-style: none;
		opacity: 0;
		padding: 10px 0;
		position: absolute;
		visibility: hidden;
		width: 170px;
		z-index: 10;
		border-radius: 6px;
		top: 145%;
	}
}
@media only screen and (max-width: 767px) {
    .top-bar [class*="col-"] {
        width: 100%;
        text-align: right;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .top-bar [class*="col-"]:last-child {
        border-bottom: none;
    }
	.top-bar {
		padding:5px 0;
	}
	.topbar-center,
	.topbar-left,
	.topbar-right {
		display:black;
		width:100%;
		text-align:center;
		padding:3px 15px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.topbar-left ul li{
		padding:0 5px;
	}
	.secondary-inner ul .menu-links1 .nav1 ul {
		background-color: #ffffff;
		border: 1px solid #f4f4f4;
		display: block;
		left: 0;
		list-style: none;
		opacity: 0;
		padding: 10px 0;
		position: absolute;
		visibility: hidden;
		width: 150px;
		z-index: 10;
		border-radius: 6px;
		top: 145%;
	}


}
/*=================================
	3. HEADER LOGO
=================================*/
.menu-logo {
    display: table;
    float: left;
    vertical-align: middle;
    padding: 0;
    color: #EFBB20;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    /*width: 200px;*/
    /*height: 80px;*/
    height: 70px;
    width: 140px;
    position: relative;
    z-index: 9;
	transition:all 0.5s;
	-moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-o-transition:all 0.5s;
	padding-right:20px;
}
.menu-logo > a{
    display: table-cell;
    vertical-align: middle;
}
.menu-logo img{
    max-height: 100px;
	width: auto;
	height: 100%;
	max-width: 180px;

}
.menu-logo span{
    font-size: 20px;
    color: #EFBB20;
    letter-spacing: 20px;
}
.is-fixed .menu-logo{
    height: 70px;
    width: 140px;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
}

@media only screen and (max-width: 360px) {
    .menu-logo,
	.is-fixed .menu-logo{
        width: 130px;
		max-width: 100px;
		height:70px;
    }
	.menu-logo img{
		max-height: 80px;
		width: auto;
		max-width: 130px;
	}
    .is-fixed .menu-logo a img{
        vertical-align: sub;
    }
}

@media only screen and (max-width: 420px) {
    .menu-logo,
	.is-fixed .menu-logo{
        width: 130px;
		max-width: 100px;
		height:70px;
    }
	.menu-logo img{
		max-height: 80px;
		width: auto;
		max-width: 130px;
	}
    .is-fixed .menu-logo a img{
        vertical-align: sub;
    }
}

@media only screen and (max-width: 767px) {
    .menu-logo,
	.is-fixed .menu-logo{
        width: 100px;
		max-width: 100px;
		height:50px;
    }
	.menu-logo img{
		max-width: 100px;
	}
    .is-fixed .menu-logo a img{
        vertical-align: sub;
    }
	.header .navbar-toggler,
	.header .is-fixed .navbar-toggler{
		 margin: 18px 0 14px 15px;
	}
	.header .secondary-menu,
	.header .is-fixed .secondary-menu{
		padding: 11px 0;
	}

	.secondary-inner ul .menu-links1 .nav1 ul {
		background-color: #ffffff;
		border: 1px solid #f4f4f4;
		display: block;
		left: 0;
		list-style: none;
		opacity: 0;
		padding: 8px 0;
		position: absolute;
		visibility: hidden;
		width: 80px;
		z-index: 10;
		border-radius: 6px;
		top: 145%;
	}

	.menu-links1 .nav1 > li .sub-menu1 li a {
		color: #303030;
		display: block;
		font-size: 12px;
		padding: 6px 15px;
		text-transform: capitalize;
		transition: all 0.15s linear;
		-webkit-transition: all 0.15s linear;
		-moz-transition: all 0.15s linear;
		-o-transition: all 0.15s linear;
		font-weight: 400;
        font-family: "Arimo", serif;
        font-optical-sizing: auto;
		/* font-family: Rubik; */
	}

	.menu-links1 .nav1 > li {
		margin: 0px;
		font-weight: 300;
		text-decoration: none;
		/* text-transform: uppercase; */
		position: relative;
		/* font-family: Rubik; */
        font-family: "Arimo", serif;
        font-optical-sizing: auto;
	}

	.menu-links1 .nav1 > li > a {
		border-radius: 0px;
		color: #000;
		font-size: 12px;
		/* padding: 30px 12px; */
		cursor: pointer;
		font-weight: 400;
		display: inline-block;
	}

}
/*=================================
	4. MENU BAR
=================================*/
.menu-bar {
    background: #FFFFFF;
    width: 100%;
    position: relative;
}
.navbar-toggler {
    border: 0 solid #efbb20;
    font-size: 16px;
    line-height: 24px;
    margin: 32px 0 30px 15px;
    padding: 0;
	float:right;
}
.navbar-toggler span {
    background: #000;
}
.is-fixed .navbar-toggler {
    margin:28px 0 20px 15px;
}
.menu-links {
    position: relative;
    padding: 0;
}
.menu-links .nav {
    float: right;
}
.menu-links .nav i {
    font-size: 9px;
    margin-left: 3px;
    margin-top: -3px;
    vertical-align: middle;
}
.menu-links .nav > li {
    margin: 0px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
	/* font-family: Rubik; */
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
}
.menu-links .nav > li > a {
    border-radius: 0px;
    color: #3A3A3A;
    font-size: 14px;
    padding: 30px 12px;
    cursor: pointer;
	font-weight: 500;
	display: inline-block;
}
.menu-links .nav > li > a:hover {
    background-color: transparent;
    color: #efbb20;
}
.menu-links .nav > li > a:active,
.menu-links .nav > li > a:focus {
    background-color: transparent;
}
.menu-links .nav > li.active > a,
.menu-links .nav > li.current-menu-item > a {
    background-color: transparent;
    color: #EFBB20;
}
.menu-links .nav > li:hover > a {
    color: #EFBB20;
}
.menu-links .nav > li:hover > a:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    top: 85%;
    position: absolute;
    left: 30px;
    transform: rotate(45deg);
    z-index: 11;
}
.menu-links .nav > li:hover > .sub-menu,
.menu-links .nav > li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.menu-links .nav > li > .sub-menu,
.menu-links .nav > li > .mega-menu {
	box-shadow:0 0 40px rgba(0, 0, 0, 0.2);
}
.menu-links .nav > li .sub-menu {
    background-color: #ffffff;
    border: 1px solid #f4f4f4;
    display: block;
    left: 0;
    list-style: none;
    opacity: 0;
    padding: 10px 0;
    position: absolute;
    visibility: hidden;
    width: 220px;
    z-index: 10;
	border-radius: 6px;
	top: 90%;
}
.menu-links .nav > li .sub-menu li {
    border-bottom: 1px dashed #e4e4e4;
    position: relative;
}
.menu-links .nav > li .sub-menu li a {
    color: #303030;
    display: block;
    font-size: 14px;
    padding: 8px 20px;
    text-transform: capitalize;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
	font-weight: 500;
	/* font-family: Rubik; */
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
}
.menu-links .nav > li .sub-menu li a:hover {
    background-color: #F2F2F2;
    color: #EFBB20;
    text-decoration: none;
}
.menu-links .nav > li .sub-menu li:hover > a {
    color: #EFBB20;
}
.menu-links .nav > li .sub-menu li:last-child {
    border-bottom: 0px;
}
.menu-links .nav > li .sub-menu li > .sub-menu.left,
.menu-links .nav > li .sub-menu li:hover .sub-menu.left {
    left: auto;
    right: 220px;
}
.menu-links .nav > li .sub-menu li .fa {
    color: inherit;
    display: block;
    float: right;
    font-size: 15px;
    position: absolute;
    right: 15px;
    top: 12px;
	opacity: 1;
}
.menu-links .nav > li .sub-menu li .fa.fa-nav {
	color: inherit;
    display: inline-block;
    float: none;
    font-size: 13px;
    margin-right: 5px;
    opacity: 1;
    position: unset;
    right: 10px;
    top: 12px;
}
.menu-links .nav > li .sub-menu li > .sub-menu {
    left: 220px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.menu-links .nav > li .sub-menu li:hover > .sub-menu {
    left: 220px;
    margin: 0px;
    opacity: 1;
    top: -1px;
    visibility: visible;
}
.menu-links .nav > li .sub-menu li:hover > .sub-menu:before {
    background-color: transparent;
    bottom: 0px;
    content: '';
    display: block;
    height: 100%;
    left: -6px;
    position: absolute;
    top: 0px;
    width: 6px;
}





.menu-links1 {
    position: relative;
    padding: 0;
}
/* .menu-links1 .nav1 {
    float: right;
} */
.menu-links1 .nav1 i {
    font-size: 9px;
    margin-left: 3px;
    margin-top: -3px;
    vertical-align: middle;
}
.menu-links1 .nav1 > li {
    margin: 0px;
    font-weight: 400;
	text-decoration: none;
    /* text-transform: uppercase; */
    position: relative;
	/* font-family: Rubik; */
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
}

/* .menu-links1 .nav1 > li > a {
    border-radius: 0px;
    color: #000;
    font-size: 15px;
    padding: 30px 12px;
    cursor: pointer;
	font-weight: 400;
	display: inline-block;
} */
/* .menu-links1 .nav1 > li > a:hover {
    background-color: transparent;
    color: #efbb20;
} */
/* .menu-links1 .nav1 > li > a:active,
.menu-links1 .nav1 > li > a:focus {
    background-color: transparent;
} */


.menu-links1 .nav1 > li > a:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    top: 130%;
    position: absolute;
    left: 30px;
    transform: rotate(45deg);
    z-index: 11;
    display: none; /* Hide by default, show via JS if needed */
}
.menu-links1 .nav1 > li > .sub-menu1 {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.menu-links1 .nav1 > li > .sub-menu1 {
	box-shadow:0 0 40px rgba(0, 0, 0, 0.2);
}
.menu-links1 .nav1 > li .sub-menu1 {
    background-color: #ffffff;
    border: 1px solid #f4f4f4;
    display: block;
    left: 0;
    list-style: none;
    opacity: 0;
    padding: 10px 0;
    position: absolute;
    visibility: hidden;
    width: 220px;
    z-index: 10;
	border-radius: 6px;
	top: 145%;
}

/* Active class for open submenu */
.menu-links1 .nav1 > li.active > .sub-menu1 {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.menu-links1 .nav1 > li .sub-menu1.left,
.menu-links1 .nav1 > li .sub-menu1.left {
    left: auto;
    right: 20px;
}

.secondary-inner ul .menu-links1 ul li{
	display:block;
	position:relative;
}
.secondary-inner ul .menu-links1 .nav1 ul {
    background-color: #ffffff;
    border: 1px solid #f4f4f4;
    display: block;
    left: 0;
    list-style: none;
    opacity: 0;
    padding: 10px 0;
    position: absolute;
    visibility: hidden;
    width: 150px;
    z-index: 10;
	border-radius: 6px;
	top: 145%;
}
.menu-links1 .nav1 > li .sub-menu1 li {
    border-bottom: 1px dashed #e4e4e4;
    position: relative;
}
.menu-links1 .nav1 > li .sub-menu1 li a {
    color: #303030;
    display: block;
    font-size: 14px;
    padding: 8px 20px;
    text-transform: capitalize;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
	font-weight: 400;
	/* font-family: Rubik; */
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
}
.menu-links1 .nav1 > li .sub-menu1 li a:hover {
    background-color: #F2F2F2;
    color: #EFBB20;
    text-decoration: none;
}
.menu-links1 .nav11 > li .sub-menu1 li:hover > a {
    color: #EFBB20;
}
.menu-links1 .nav1 > li .sub-menu1 li:last-child {
    border-bottom: 0px;
}
.menu-links1 .nav1 > li .sub-menu1 li a {
    color: #303030;
    display: block;
    font-size: 14px;
    padding: 8px 20px;
    text-transform: capitalize;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
	font-weight: 400;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
}
.menu-links1 .nav1 > li .sub-menu1 li a:hover {
    background-color: #F2F2F2;
    color: #EFBB20;
    text-decoration: none;
}
.menu-links1 .nav1 > li .sub-menu1 li:hover > a {
    color: #EFBB20;
}
.menu-links1 .nav1 > li .sub-menu1 li:last-child {
    border-bottom: 0px;
}
.menu-links1 .nav1 > li .sub-menu1 li > .sub-menu.left,
.menu-links1 .nav1 > li .sub-menu1 li:hover .sub-menu.left {
    left: auto;
    right: 220px;
}
.menu-links1 .nav1 > li .sub-menu1 li .fa {
    color: inherit;
    display: block;
    float: right;
    font-size: 15px;
    position: absolute;
    right: 15px;
    top: 12px;
	opacity: 1;
}
.menu-links1 .nav1 > li .sub-menu1 li .fa.fa-nav {
	color: inherit;
    display: inline-block;
    float: none;
    font-size: 13px;
    margin-right: 5px;
    opacity: 1;
    position: unset;
    right: 10px;
    top: 12px;
}
.menu-links1 .nav1 > li .sub-menu1 li > .sub-menu {
    left: 220px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.menu-links1 .nav1 > li .sub-menu1 li:hover > .sub-menu {
    left: 220px;
    margin: 0px;
    opacity: 1;
    top: -1px;
    visibility: visible;
}
.menu-links1 .nav1 > li .sub-menu1 li:hover > .sub-menu:before {
    background-color: transparent;
    bottom: 0px;
    content: '';
    display: block;
    height: 100%;
    left: -6px;
    position: absolute;
    top: 0px;
    width: 6px;
}




/*=================================
	5. MEGA MENU
=================================*/
.menu-links .nav > li.has-mega-menu {
    position: inherit;
}
.menu-links .nav > li .mega-menu {
    background-color: #ffffff;
    border: 1px solid #f8f8f8;
    display: table;
    left: 0px;
    list-style: none;
    opacity: 0;
    position: absolute;
    right: 0px;
    visibility: hidden;
    width: 100%;
	font-family: Montserrat;
    margin-top: 20px;
	z-index: 9;
}
.menu-links .nav > li .mega-menu > li {
    display: table-cell;
    padding: 30px 0 25px;
    position: relative;
    vertical-align: top;
    width: 25%;
}
.menu-links .nav > li .mega-menu > li:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.02);
    position: absolute;
    right: 0px;
    top: 0px;
    display: block;
    width: 1px;
    height: 100%;
}
.menu-links .nav > li .mega-menu > li:last-child:after {
    display: none;
}
.menu-links .nav > li .mega-menu > li > a {
    color: #000;
    display: block;
    font-size: 14px;
    padding: 0 20px;
	font-size: 13px;
    font-weight: 600;
}
.menu-links .nav > li .mega-menu > li ul {
    list-style: none;
    margin: 10px 0px 0px 0px;
    padding: 0px;
    width: 100%;
}
.menu-links .nav > li .mega-menu > li ul a {
    color: #505050;
    display: block;
    font-size: 13px;
    line-height: 34px;
    text-transform: capitalize;
    padding: 0 20px;
	font-weight: 500;
}
.menu-links .nav > li .mega-menu > li ul a:hover {
    color: #EFBB20;
}
.menu-links .nav .mega-menu a i {
    font-size: 14px;
    margin-right: 5px;
    text-align: center;
    width: 15px;
}
.menu-links .nav > li.menu-item-has-children:before {
    content: "\f078";
    display: block;
    font-family: "FontAwesome";
    right: 4px;
    position: absolute;
    top: 50%;
    color: #999;
    margin-top: -8px;
    font-size: 8px;
}
/* Menu */
.menu-links .nav > li.add-mega-menu .mega-menu,
.has-mega-menu.add-mega-menu .mega-menu{
	display: block;
	padding: 20px;
	width: 1170px;
	max-width: 1170px;
	margin: auto;
}
.menu-links .nav > li .add-menu{
    display: flex;
	width:420px;
}
.add-menu-left{
    width: 100%;
	padding-left: 20px;
	border-bottom:0 !important;
}
.add-menu-right{
    min-width: 240px;
    width: 240px;
    padding: 10px 20px;
}
.menu-links .nav > li.has-mega-menu.demos .mega-menu{
	left:auto;
	right:auto;
	max-width: 600px;
	z-index: 9;
}
.menu-links .nav .add-menu-left ul li{
	list-style:none;
}
.menu-links .nav .add-menu-left ul li a{
	padding: 8px 0px;
}
.menu-links .nav .add-menu-left ul li a:hover{
	background-color:rgba(0,0,0,0);
}
.menu-adv-title{
	font-size: 16px;
	text-transform: capitalize;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	position: relative;
}
.menu-adv-title:after{
	content: "";
	width: 25px;
	height: 2px;
	display: block;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 0;
}
.menu-links .menu-logo,
.menu-links .nav-social-link{
	display:none;
}
/* Header Extra Nav */
.secondary-inner ul{
	list-style:none;
	padding:0;
	margin:0;
}
.secondary-inner ul li{
	display:inline-block;
	position:relative;
}

.secondary-inner ul li a{
	color:#000;
}
.search-btn{
	padding-left:10px;
	margin-left:10px;
}
.search-btn:after{
	left:0;
	right:auto;
	top: 5px;
}
.search-btn .btn-link i{
	margin-left: 5px;
}
@media only screen and (max-width: 991px) {
	.add-menu-left ul{
		display: block !important;
	}
	.menu-links .menu-logo,
	.menu-links .nav-social-link{
		display:block;
	}
	.menu-links .nav-social-link{
		margin-top: auto;
		text-align: center;
		width: 100%;
		padding: 10px 0;
		background: #fff;
	}
	.menu-links .nav-social-link a{
		color:#000;
		padding:5px 10px;
	}
	.menu-links .nav > li.has-mega-menu.demos .mega-menu{
		max-width:100%;
	}
	.menu-links .nav > li .mega-menu{
		border:0;
	}
	.menu-links .nav > li .mega-menu > li{
		padding:10px 0;
	}
	.menu-links .nav > li .sub-menu,
	.menu-links .nav > li .mega-menu {
		border-radius:0;
		border-width: 1px 0 1px 0;
	}
    .menu-links .nav i {
        margin-top: 6px;
		float: right;
    }
    .menu-links {
        clear: both;
        margin: 0 -15px;
        border-bottom: 1px solid #E9E9E9;
    }
    .menu-links .nav {
        float: none;
        background: #fff;
		width:100%;
		display: block;
		margin-bottom: auto;
    }
    .menu-links .nav li {
        float: none;
		display:block;
		width:100%;
    }
    .menu-links .nav > li .sub-menu > li,
    .menu-links .nav > li .mega-menu > li {
        float: none;
        display: block;
        width: auto;
    }
    .menu-links .nav > li > a {
        padding: 10px 15px;
        border-top: 1px dashed #E9E9E9;
		display:block;
    }
    .menu-links .nav > li > a:hover,
    .menu-links .nav > li > a:active,
    .menu-links .nav > li > a:focus {
        background-color: #f0f0f0;
        text-decoration: none;
    }
    .menu-links .nav > li .mega-menu > li:after {
        display: none;
    }
    .menu-links .nav > li ul,
    .menu-links .nav > li .sub-menu,
    .menu-links .nav > li .mega-menu {
        display: none;
        position: static;
        visibility: visible;
        width: auto;
        background: transparent;
    }
    .menu-links .nav > li ul.mega-menu ul {
        display: none;
    }
    .menu-links .nav > li:hover > ul,
    .menu-links .nav > li:hover .sub-menu,
    .menu-links .nav > li:hover .mega-menu,
    .menu-links .nav > li .sub-menu li > .sub-menu {
        opacity: 1;
        visibility: visible;
        display: block;
        margin: 0;
    }
    .menu-links .nav > li ul.mega-menu li:hover ul {
        display: block;
    }
    .side-nav .nav.navbar-nav li a i.fa-chevron-down:before,
    .nav.navbar-nav li a i.fa-chevron-down:before {
		content:"\f078";
	}
	.side-nav .nav.navbar-nav li.open a i.fa-chevron-down:before,
	.nav.navbar-nav li.open a i.fa-chevron-down:before {
		content:"\f054";
	}
	.menu-links .nav > li .sub-menu li i.fa-angle-right:before{
		content: "\f078";
		font-size: 10px;
		position: absolute;
		z-index: 2;
		color: #000;
		right: 20px;
		top: -5px;
	}
	.menu-links .nav > li .sub-menu li.open i.fa-angle-right:before{
		content: "\f054";
	}
    .menu-links .nav > li .sub-menu .sub-menu,
    .menu-links .nav > li:hover .sub-menu .sub-menu,
    .menu-links .nav > li:hover .sub-menu,
    .menu-links .nav > li:hover .mega-menu {
        display: none;
        opacity: 1;
        margin-top: 0;
    }
	.menu-links .nav li .sub-menu .sub-menu{
		display: none;
        opacity: 1;
        margin-top: 0;
	}
	.menu-links .nav > li.open > .sub-menu .sub-menu{
		display: none;
	}
	.menu-links .nav > li.open > .sub-menu li.open .sub-menu,
    .menu-links .nav > li.open > .mega-menu,
    .menu-links .nav > li.open > .sub-menu,
	.menu-links .nav > li ul.mega-menu ul{
        display: block;
        opacity: 1;
        margin-top: 0;
		box-shadow: none;
    }
	.menu-links .nav > li:hover > a:after{
		content:none;
	}
	.menu-links .nav > li .sub-menu li .fa{
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		margin: 0;
		right: -1px;
		color:#000;
	}
	.menu-links .nav > li .mega-menu > li{
		padding:0;
	}
	.menu-links .nav > li .mega-menu > li > a{
		display:none;
	}
	.menu-links .nav .mega-menu a i{
		display:inline-block;
		float:none;
		margin-top: 0;
	}
    .menu-links .nav .open > a,
    .menu-links .nav .open > a:focus,
    .menu-links .nav .open > a:hover {
        background-color: inherit;
        border-color: #e9e9e9;
    }
}
@media screen and (max-width: 991px){
	.rs-nav .menu-links.nav-dark{
		background-color:#202020;
	}
	.rs-nav .menu-links{
		position: fixed;
		width: 60px;
		left:-280px;
		height:100vh !important;
		transition:all 0.5s;
		-webkit-transition:all 0.5s;
		-moz-transition:all 0.5s;
		-o-transition:all 0.5s;
		top:0;
		background-color:#fff;
		margin:0;
		z-index:99;
		overflow-y: scroll;
		display: flex;
		flex-direction: column;
	}
	.rs-nav .menu-links li.open a{
		position:relative;
	}
	.navbar-nav{
		height:auto;
	}
	.rs-nav .menu-links.show {
		left: -1px;
		transition:all 0.8s;
		-webkit-transition:all 0.8s;
		-moz-transition:all 0.8s;
		-o-transition:all 0.8s;
		margin:0;
		width: 100%;
		width: 300px;
		padding: 15px 15px 5px 15px;
	}
	.rs-nav .is-fixed .menu-links .nav{
		height:auto;
	}
	.rs-nav .navbar-toggler.open:after{
		background-color: rgba(0, 0, 0, 0.6);
		content: "";
		height: 100%;
		left: 0;
		position: fixed;
		right: 0px;
		top: -20px;
		transform: scale(100);
		-o-transform: scale(100);
		-moz-transform: scale(100);
		-webkit-transform: scale(100);
		width: 100%;
		z-index: -1;
		transition: all 0.5s;
		transform-origin: top right;
		margin: 0 0px 0px 10px;
		box-shadow: 0 0 0 500px rgba(0,0,0,0.6);
	}
	.rs-nav .menu-links .menu-logo {
		display: block;
		float: none;
		height: auto;
		max-width: 100%;
		padding: 20px 15px;
		width: 100%;
		text-align:center;
	}
	.rs-nav .menu-links .menu-logo img{
		max-width: unset;
		width: 130px;
		vertical-align: middle;
	}
	.rs-nav .menu-links .menu-logo a{
		display:inline-block;
	}
	.rs-nav .navbar-toggler.open span{
		background:#fff;
	}
}
.sticky-no .menu-bar {
    position: static !important;
}
.is-fixed .menu-bar {
    position: fixed;
    top: 0;
    left: 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.is-fixed .menu-links .nav > li > a {
    padding: 25px 12px;
}
.is-fixed .secondary-menu {
    padding: 21px 0;
}
@media only screen and (max-width: 991px) {
    .is-fixed .menu-links .nav > li > a {
        padding: 10px 15px;
    }
}
@media only screen and (max-width: 767px) {
    .is-fixed .menu-links .nav {
        height: 225px;
    }
    .is-fixed .menu-links .nav > li > a {
        padding: 10px 15px;
    }
}
/*=================================
	6. HEADER TRANSPARENT
=================================*/
.header-transparent{
	position:absolute;
	width:100%;
}
.header-transparent .menu-bar{
	background-color:rgba(0,0,0,0);
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-transparent .menu-links .nav > li > a{
	color:#fff;
}
.header-transparent .menu-links .nav > li > a,
.header-transparent .secondary-menu .btn-link,
.header-transparent .navbar-toggler{
    color: #fff;
}
.header-transparent .secondary-menu .btn-link:hover{
	color:var(--primary);
}
.header-transparent .navbar-toggler span{
    background-color: #fff;
}
.header-transparent .is-fixed .menu-bar{
	position:fixed;
	background-color:rgba(0,0,0,0.9);
}
.header-transparent .top-bar{
	background-color: rgba(0,0,0,0);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #dfdfdf;
}
.header-transparent .search-btn:after,
.header-transparent .topbar-left ul li:after,
.header-transparent .topbar-right ul li:after{
	background-color:#fff;
}
.fullwidth .container-fluid{
	padding-left: 30px;
    padding-right: 30px;
}
.onepage .navbar{
	margin-bottom:0;
	border:0;
}
.header-transparent .header-lang-bx .btn{
	background-color: transparent !important;
	color:#fff;
}
.header-transparent .topbar-right .header-lang-bx ul li a{
	color:#000;
}
.header-transparent .topbar-left ul li a,
.header-transparent .topbar-right ul li a{
	color:#fff;
}
@media only screen and (max-width: 991px) {
	.header-transparent .menu-links .nav > li > a{
		color:#000;
	}
	.header-transparent .menu-links.nav-dark .nav > li > a{
		color:#fff;
	}
}
@media only screen and (max-width: 767px) {
	.fullwidth .container-fluid{
		padding-left: 15px;
		padding-right: 15px;
	}
}
/*=================================
	7. MENU ICON
=================================*/
.menuicon{
  width: 20px;
  height: 14px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.menuicon span{
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.menuicon span:nth-child(1) {
  top: 0px;
}
.menuicon span:nth-child(2) {
  top: 50%;
  transform:translateY(-50%)
}
.menuicon span:nth-child(3) {
  bottom: 0;
}
.menuicon.open span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.menuicon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.menuicon.open span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/*========================
	8. PAGE BANNER
=========================*/
.page-banner {
    height: 300px;
    background-size: cover;
    background-position: center center;
    display: table;
    width: 100%;
	text-align:left;
}
.page-banner .container {
    display: table;
    height: 100%;
}
.page-banner-entry {
    display: table-cell;
    vertical-align: middle;
	text-align: center;
}
.page-banner-entry.align-m {
    vertical-align: middle;
}
.page-banner h1 {
	font-weight:600;
	font-size:40px;
	margin-bottom: 0;
}
.breadcrumb-row ul li a{
	color:#000;
}
@media only screen and (max-width: 767px) {
	.page-banner-entry{
		vertical-align: middle;
	}
	.page-banner{
        padding: 20px;
		padding-bottom: 0;
		height: 300px;
        text-align:center;
	}
	.page-banner h1{
        font-size:28px;
        font-weight:800;
        line-height: 38px;
		text-align:center;
	}
    .courses-post .post-title{
        font-size:28px;
        font-weight:800;
        line-height: 40px;
    }
}
@media only screen and (max-width: 480px) {
    .page-banner-entry{
		vertical-align: middle;
	}
	.page-banner{
        padding: 20px;
		padding-bottom: 0;
		height: 300px;
        text-align:center;
	}
	.page-banner h1{
        font-size:28px;
        font-weight:800;
        line-height: 38px;
		text-align:center;
	}
    .courses-post .post-title{
        font-size:28px;
        font-weight:800;
        line-height: 40px;
    }
}
/*========================
	9. BLOG
=========================*/
.blog-post{
    position: relative;
    margin-bottom: 30px;
}
.ttr-post-title {
    margin-bottom: 5px;
}
.ttr-post-title .post-title {
    margin-top: 5px;
    margin-bottom: 5px;
}
.ttr-post-meta {
    margin-bottom: 15px;
}
.ttr-post-meta ul {
    list-style: none;
	text-transform:capitalize;
}
.ttr-post-meta ul li {
    padding: 0;
    display: inline-block;
	color: #707070;
	font-weight: 500;
	font-size: 14px;

}
.ttr-post-meta ul li strong{
	font-weight: 500;
}
.ttr-post-meta li:after {
    content: "|";
    display: inline-block;
    font-weight: normal;
    margin-left: 5px;
    opacity: 0.5;
}
.ttr-post-meta li:last-child:after {
    display: none;
}
.ttr-post-meta a {
    color: #707070;
}
.ttr-post-meta i {
    margin: 0 5px;
	font-size: 15px;
}
.ttr-post-text {
    margin-bottom: 20px;
}
.ttr-post-text p:last-child {
    margin: 0;
}
@media only screen and (max-width: 1200px) {
	.ttr-post-meta .d-flex{
		display:block !important;
	}
}
/*blog post half iamge*/
.blog-md .ttr-post-media {
    width: 350px;
	border-radius: 4px;
}
.blog-md .ttr-post-info {
    border: none;
	padding-left:30px;
}
.blog-md .ttr-post-tags {
    border: none;
    display: inline-block;
    padding: 0;
}
.blog-md .ttr-post-info .post-title{
	margin-top:0;
}
.blog-md,
.blog-md .ttr-post-info {
    overflow: hidden;
}
.blog-md .ttr-post-info,
.blog-md .ttr-post-media {
    display: table-cell;
    vertical-align: middle;
}
.blog-md .ttr-post-media {
	vertical-align: top;
}
.blog-md .ttr-post-info > div:last-child{
	margin-bottom:0;
}
/* Blog Share */
.blog-share{
	position:relative
}
.share-btn{
	position:absolute;
	right:0;
	bottom:0;
}
.share-btn ul{
	margin:0;
	padding:0;
	list-style:none;
}
.share-btn ul li{
	display:inline-block;
	margin-left: -40px;
	float: left;
	transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-ms-transition:all 0.5s;
}
.share-btn ul li a.btn{
	border-radius: 3px;
	width: 40px;
	line-height: 44px;
	height:44px;
	display: block;
	color:#000;
	background: #E6E6E6;
}
.share-btn ul li a.btn:hover{
	background:#D6D6D6;
}
.share-btn ul:hover li.share-button a.btn{
	background:#A0A0A0;
}
.share-btn ul:hover li{
	margin-left: 4px;
}
.share-details-btn ul{
	margin:0;
	padding:0;
	list-style:none;
}
.share-details-btn ul li{
	display:inline-block;
	margin-right: 5px;
	margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
    .blog-md.blog-post .ttr-pfost-media,
    .blog-md.blog-post .ttr-post-info {
        float: none;
        margin: 0 0 20px;
        width: 100%;
		display:block;
		padding-left:0;
    }
	.blog-md.blog-post .ttr-post-info {
		margin-top:15px;
	}
	.blog-md .ttr-post-media {
		width:100%;
	}
}
/*Blog single*/
.blog-single .ttr-post-meta {
    margin-bottom: 20px;
}
.blog-single .ttr-post-text {
    margin-top: 20px;
}
.blog-single .ttr-post-tags {
    margin-top: 20px;
}
.blog-single .ttr-post-media{
	border-radius:4px;
}
/*= comment list = */
.comments-area {
    padding: 0;
}
.comments-area .comments-title {
    text-transform: uppercase;
    font-size: 20px;
	font-weight: 500;
}
ol.comment-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
ol.comment-list li.comment {
    position: relative;
    padding: 0;
}
ol.comment-list li.comment .comment-body {
    position: relative;
    margin-bottom: 40px;
    margin-left: 80px;
    position: relative;
}
ol.comment-list li.comment .comment-author {
    display: block;
    margin-bottom: 0;
}
ol.comment-list li.comment .comment-author .avatar {
    position: absolute;
    top: 0;
    left: -80px;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    border: 2px solid #FFF;
}
ol.comment-list li.comment .comment-author .fn {
    display: inline-block;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
}
ol.comment-list li.comment .comment-author .says {
    display: none;
    color: #999999;
    font-weight: 600;
}
ol.comment-list li.comment .comment-meta {
    color: #8d8d8d;
    text-transform: uppercase;
    margin-bottom: 15px;
}
ol.comment-list li.comment .comment-meta a {
    color: #8d8d8d;
}
ol.comment-list li.comment .comment-meta a {
    color: #9d9d9d;
	font-size: 13px;
}
ol.comment-list li.comment p {
    margin: 0 0 5px;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #505050;
}
ol.comment-list li.comment .reply a {
	position: absolute;
	top: 10px;
	right: 10px;
	margin-top: -5px;
	color: #B0B0B0 !important;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
}
ol.comment-list li .children {
    list-style: none;
    margin-left: 80px;
}
ol.comment-list li .children li {
    padding: 0;
}
@media only screen and (max-width: 767px) {
    .comments-area .padding-30 {
        padding: 15px;
    }
    ol.comment-list li.comment .comment-body {
        margin-bottom: 30px;
        margin-left: 70px;
    }
    ol.comment-list li.comment .comment-author .avatar {
        left: -75px;
        height: 60px;
        width: 60px;
    }
    ol.comment-list li .children {
        margin-left: 20px;
    }
    ol.comment-list li.comment .reply a {
        position: static;
    }
}
@media only screen and (max-width: 480px) {
    ol.comment-list li.comment .comment-body {
        margin-left: 52px;
    }
    ol.comment-list li.comment .comment-author .avatar {
        left: -55px;
        top: 12px;
        width: 40px;
        height: 40px;
    }
}
/*= comment form = */
.comment-respond {
    padding: 30px 30px;
    background:#f6f7f8;
}
.comment-respond .comment-reply-title {
    text-transform: uppercase;
    font-size: 20px;
}
.comment-respond .comment-reply-title {
    font-size: 20px;
	font-weight: 500;
}
.comments-area .comment-form {
    margin: 0 -15px;
}
.comments-area .comment-form .comment-notes {
    display: none;
}
.comments-area .comment-form p {
    width: 33.333%;
    float: left;
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative;
}
.comments-area .comment-form p.form-allowed-tags {
    width: 100%;
}
ol.comment-list li.comment .comment-respond .comment-form p {
    padding: 0 15px !important;
}
.comments-area .comment-form p label {
    display: none;
    line-height: 18px;
    margin-bottom: 10px;
}
.comments-area .comment-form p input[type="text"],
.comments-area .comment-form p textarea {
    width: 100%;
    height: 40px;
    line-height: 6px 12px;
    padding: 10px 10px 10px 0;
    border: 1px solid #000;
    border-radius: 0;
    -webkit-border-radius: 0;
	text-transform: capitalize;
	border-width: 0 0 2px 0;
	color: #000000;
	background: transparent;
	font-size: 15px;
}
.comments-area .comment-form p.comment-form-comment {
    width: 100%;
    display: block;
    clear: both;
}
.comments-area .comment-form p textarea {
    height: 120px;
}
.comments-area .comment-form p.form-submit {
    clear: both;
    float: none;
    width: 100%;
    margin: 0;
}
.comments-area .comment-form p input[type="submit"] {
    background-color: #EFBB20;
    border: none;
    border-radius: 0;
    border-style: solid;
    border-width: 0;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
	font-weight: 400;
	font-size: 14px;
	padding: 8px 30px;
}
.comments-area .comment-form p input[type="submit"]:hover,
.comments-area .comment-form p input[type="submit"]:focus,
.comments-area .comment-form p input[type="submit"]:active {
    background-color: #ff7800;
    border-color: #6ab33e;
    color: #fff;
}
@media only screen and (max-width: 767px) {
    .comments-area .comment-form p {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .comment-respond {
        padding: 20px;
    }
}
/*========================
	10. TESTIMONIALS
=========================*/
.testimonial-pic {
    background: #FFF;
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
    border: 5px solid #FFF;
}
.testimonial-pic.radius {
    border-radius: 100%;
    -webkit-border-radius: 100%;
}
.testimonial-pic.radius img {
    width: 100%;
    height: 100;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}
.testimonial-pic.shadow {
    -webkit-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
    box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
}
.testimonial-text {
    padding: 15px;
    position: relative;
	font-size:15px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	font-weight: 400;
}
.testimonial-detail {
    padding: 5px;
}
.testimonial-name{
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.testimonial-position {
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
    font-size: 12px;
    font-style: inherit;
    text-transform: uppercase;
}
.testimonial-name,
.testimonial-position {
    display: block;
}
.testimonial-text p:last-child {
    margin: 0;
}
/*========================
	11. COUNTERUP
=========================*/
.counter {
    position: relative;
}
.counter-style-1 .counter{
	font-size:50px;
	font-weight:700;
}
.counter-style-1 .counter-text{
	font-size:16px;
	font-weight: 500;
}
.counter-style-1 .icon{
	font-size:45px;
	margin-right:10px;
}
/*========================
	12. FOOTER
=========================*/
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a {
    color: #b0b0b0;
}
footer p,
footer strong,
footer b,
footer {
    color: #b0b0b0;
}
footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a,
footer p a {
    color: #b0b0b0;
}

footer .btn-link,
footer a,
footer p a {
    color: #b0b0b0;
}
footer a:active,
footer a:focus,
footer a:hover {
    color: #b0b0b0;
}
/* widget color */
footer .widget_categories ul li a,
footer .widget_archive ul li a,
footer .widget_meta ul li a,
footer .widget_pages ul li a,
footer .widget_recent_comments ul li a,
footer .widget_nav_menu li a,
footer .widget_recent_entries ul li a,
footer .widget_services ul li a {
    color: #b0b0b0;
}
footer.text-white .widget_categories ul li a,
footer.text-white .widget_archive ul li a,
footer.text-white .widget_meta ul li a,
footer.text-white .widget_pages ul li a,
footer.text-white .widget_recent_comments ul li a,
footer.text-white .widget_nav_menu li a,
footer.text-white .widget_recent_entries ul li a,
footer.text-white .widget_services ul li a,
footer.text-white a,
footer.text-white .footer-bottom,
footer.text-white p,
footer.text-white strong,
footer.text-white b,
footer.text-white .widget .post-title,
footer.text-white .widget-about .ttr-title,
footer.text-white {
    color: #fff;
}
footer p {
    margin-bottom: 10px;
}
footer p,
footer li {
    font-size: 15px;
    line-height: 22px;
}
footer#footer {
    background-position: center;
    background-size: cover;
}
footer p {
    line-height: 24px;
    margin-bottom: 10px;
}
footer .widget ul {
    list-style: none;
    margin-top: 5px;
}
/*widget li in footer*/
footer .widget_categories ul li,
footer .widget_archive ul li,
footer .widget_meta ul li,
footer .widget_pages ul li,
footer .widget_recent_comments ul li,
footer .widget_nav_menu li,
footer .widget_recent_entries ul li,
footer .widget_services ul li {
    border-bottom: 1px dashed rgba(102, 102, 102, 0.3);
}
footer .widget_services ul li {
	transition:all 1s;
	-ms-transition:all 1s;
	-o-transition:all 1s;
	-moz-transition:all 1s;
	-webkit-transition:all 1s;
	padding: 10px 0px 10px 15px;
}
footer .widget_services ul li:hover {
	transform: translateX(10px);
	-moz-transform: translateX(10px);
	-webkit-transform: translateX(10px);
	-o-transform: translateX(10px);
	-ms-transform: translateX(10px);
}
.footer-top {
    background: #303030;
    background-size: cover;
    background-position: center;
    padding: 0 0 20px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
}
.footer-bottom {
    background-color:#303030;
    padding: 25px 0;
    color: #b0b0b0;
	border-top:1px solid rgba(255,255,255,0.05);
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
}
.footer-bottom ul {
    margin: 0;
	text-decoration: none;
	list-style: none;
}
.footer-title{
	margin-bottom: 25px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 15px;
    font-size: 16px;
    position: relative;
}
.footer-title:after{
	width: 50px;
    background: #fff;
    opacity: 0.2;
    height: 1px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}
.footer_widget ul li a{
	padding:5px 0;
	display:block;
	font-weight: 400;
}
/* Subscribe Form */
.subscribe-form input{
	background-color:rgba(0,0,0,0.2);
	border:0;
	height:45px;
	padding:10px 20px;
	margin-right:5px;
	color:#fff;
	font-size:15px;
}
.subscribe-form .btn{
	border-radius: 0;
}
.subscribe-form input.radius-no{
	border-radius:0 !important;
}
.subscribe-form .btn{
	height:45px;
}
.subscribe-form .input-group-btn{
	padding-left: 10px;
}
/* scroll top btn css */
button.back-to-top {
    border-radius: 4px;
    border-style: solid;
    border-width: 0;
    bottom: 15px;
    box-shadow: 2px 2px 12px -5px #000000;
    color: #fff;
    cursor: pointer;
    display: none;
    height: 40px;
    line-height: 26px;
    margin: 0;
    position: fixed;
    right: 15px;
    text-align: center;
    width: 40px;
    z-index: 999;
}
/* Footer Extra */
.pt-exebar{
	border-bottom:1px solid rgba(255,255,255,0.1);
	margin-bottom:50px;
}
.pt-social-link{
	border-left:1px solid rgba(255,255,255,0.1);
	padding:0 20px;
}
.pt-social-link ul{
	margin:0;
	list-style:none;
}
.pt-social-link ul li{
	display:inline-block;
}
.pt-btn-join{
	border-left:1px solid rgba(255,255,255,0.1);
	padding:0 0 0 20px;
}
.pt-logo{
	padding:20px 0;
}

.pt-social-link,
.pt-btn-join,
.pt-logo{
	display: flex;
    align-items: center;
}
/*==== LOADING ====*/
#loading-icon-bx {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 999999999;
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center;
}
/*========================
	13. INNER CONTENT CSS
=========================*/
/* About Section */
.service-info-bx{
	margin-top: -215px;
}
.service-bx{
	box-shadow:0 0 25px 0 rgba(29,25,0,0.25);
	transition:all 0.5s;
	-moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-ms-transition:all 0.5s;
	-o-transition:all 0.5s;
	position:relative;
	background-color:#fff;
}
.service-bx [class*="feature-"]{
	box-shadow: 0 0 25px 0 rgba(29,25,0,0.15);
	margin-top: -30px;
	position: relative;
	top: -40px;
	margin-bottom: -20px;
}
.service-bx .info-bx{
	padding:30px;
}
.service-bx:hover{
	transform:translateY(-15px);
	-moz-transform:translateY(-15px);
	-webkit-transform:translateY(-15px);
	-ms-transform:translateY(-15px);
	-o-transform:translateY(-15px);
}
/* Recent News */
.recent-news{
	box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
	background: #fff;
}
.recent-news.blog-lg{
	box-shadow: none;
}
.recent-news.blog-lg .info-bx{
	border:0;
	padding: 20px 0 0 0;
}
.blog-post .post-title,
.recent-news .post-title{
	font-size: 24px;
	margin-top: 0px;
	margin-bottom: 6px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	line-height: 34px;
}
.recent-news .info-bx{
	padding: 20px;
    border: 1px solid #EEEEEE;
}
.comments-bx{
	margin-left:auto;
	color:#000;
}
.comments-bx i{
	margin-right:5px;
}
.post-extra {
    display: flex;
    border-top: 1px solid #EEEEEE;
    padding-top: 20px;
	margin-top: 20px;
}
.media-post{
	border-bottom: 1px solid #EEEEEE;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.media-post,
.post-tag{
	margin-bottom: 5px;
}
.media-post li{
	list-style: none;
	display: inline-block;
	font-size: 13px;
	text-transform: capitalize;
	/* font-family: ; */
	margin-right: 5px;
}
.media-post li a{
	color:var(--primary);
	vertical-align: middle;
}
.media-post li a i{
	margin-right:5px;
	font-size: 13px;
}
.post-tag li{
	display: inline-block;
	font-size: 14px;
	margin-bottom: 5px;
	list-style: none;
}
.post-title a{
	color:#061538;
}
.blog-post p,
.recent-news p{
	margin-bottom: 10px;
	font-size: 14px;
	color:#242424;
}
/* Popular Courses */
.cours-bx .info-bx{
	padding:15px;
	font-size: 13px;

}
.cours-bx .action-box .btn{
	border-radius: 0;
	position: absolute;
	bottom: 0;
	left: -50%;
	transition:all 0.5s;
	-moz-transition:all 0.5s;
	-ms-transition:all 0.5s;
	-o-transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.cours-bx:hover .action-box .btn{
	left: 0;
}
.cours-bx{
	box-shadow:0 0 25px 0 rgba(29,25,0,0.25);
	border-radius: 5px;
	border: 0.5px solid rgba(114,60,128,0.4);
    overflow: hidden;
}
.cours-more-info{
	border-top: 1px solid #e6e6e6;
	display: flex;
	margin: 0;
	align-items: center;
}
.cours-star{
	margin:0;
	padding:0;
}
.cours-star li{
	display: inline-block;
	list-style:none;
	color:#d1d1d1;
	font-size:13px;
}
.cours-star li.active{
	color:#DF7606;
}

.course-tag.badge {
    padding: 7px 13px;
    bottom: 30px;
    left: 30px;
    z-index: 9;
}


.cours-more-info .price,
.cours-more-info .review{
	width:100%;
	padding:5px 15px;
}
.cours-more-info .review span{
	font-size:12px;
	color:#3c3c3c;
}
.cours-more-info .price del{
	font-size:12px;
	font-weight:500;
	color:#8e8e8e;
}
.cours-more-info .review{
	border-right: 1px solid #e6e6e6;
}
.cours-more-info .price {
	text-align:center;
}
.cours-more-info .price h5{
	margin-bottom:0;
}
.courses-carousel{
	margin-top:-15px;
}
.courses-carousel .item{
	padding:15px;
}
.courses-carousel .owl-nav{
	position: absolute;
    top: -70px;
    right: 10px;
}
.testimonial-carousel .owl-nav{
	position: absolute;
    top: -80px;
    right: -5px;
}
.recent-news-carousel .owl-nav{
	position: absolute;
    top: -80px;
    right: -5px;
}
.courses-carousel .owl-nav .owl-next,
.courses-carousel .owl-nav .owl-prev,
.recent-news-carousel .owl-nav .owl-next,
.recent-news-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.testimonial-carousel .owl-nav .owl-prev{
	background-color:var(--primary);
	margin: 0 5px !important;
}
.courses-carousel .owl-nav .owl-next:hover,
.courses-carousel .owl-nav .owl-prev:hover,
.recent-news-carousel .owl-nav .owl-next:hover,
.recent-news-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover,
.testimonial-carousel .owl-nav .owl-prev:hover{
	background-color:var(--sc-primary);
}
/* Online Cours */
.online-cours h2{
	font-size:45px;
	margin-top:0;
	margin-bottom:20px;
}
.online-cours h5{
	font-weight:400;
	font-size:24px;
	margin-bottom:40px;
}
.cours-search{
	padding:10px;
	background-color:rgba(255,255,255,0.3);
	border-radius:4px;
	max-width:700px;
	margin:auto;
	margin-bottom:50px;
}
.cours-search .form-control{
	border:0;
	height:50px;
	border-radius:4px !important;
	padding:10px 20px;
	font-size:16px;
}
.cours-search .input-group-append{
	margin-left:10px;
}
.cours-search .input-group-append .btn{
	border-radius:4px;
}
.cours-search-bx{
	text-align:center;
	border-radius:4px;
	color:#fff;
	border:1px solid rgba(255,255,255,0.2);
	background-color:rgba(255,255,255,0.15);
	padding:20px 20px 15px 20px;
}
.cours-search-bx h3{
	color:#fff;
	font-weight:300;
	font-size:45px;
}
.cours-search-bx i{
	margin-right:10px;
	font-size: 40px;
}
/* heading-bx */
.heading-bx.left .title-head{
	margin-bottom: 10px;
    margin-top: 0;
    line-height: 32px;
    padding-left: 10px;
    border-left: 5px solid var(--primary);
}
.heading-bx.left p{
	max-width:500px;
	margin-bottom:0;
}
.title-head span{
	font-weight:400;
}
/* section space */
.section-sp1{
	padding-top:80px;
	padding-bottom:50px;
}
.section-sp2{
	padding-top:80px;
	padding-bottom:80px;
}
.section-sp3{
	padding-top:80px;
	padding-bottom:0;
}
.section-sp4{
	padding-top:50px;
	padding-bottom:50px;
}
/*   */
.ovpr-dark:after{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff5e14+0,ff8e14+100 */
background: #ff5e14; /* Old browsers */
background: -moz-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(45deg, #ff5e14 0%,#ff8e14 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(45deg, #ff5e14 0%,#ff8e14 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5e14', endColorstr='#ff8e14',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
/* Event Box */
.event-bx{
	box-shadow:0 0 15px 0 rgba(29,25,0,0.25);
}
.upcoming-event-carousel{
	margin-top:-15px;
}
.upcoming-event-carousel .item{
	padding:15px;
}
.event-bx .info-bx{
	padding:30px;
}
.event-time{
	color: #fff !important;
    background-color: var(--primary);
    text-align: center;
    padding: 15px 10px;
    border-radius: 4px;
    margin-right: 20px;
}
.event-time .event-date{
	font-size: 55px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    line-height: 55px;
	color:  #fff !important;
}
.event-time .event-month{
	color:  #fff !important;
}
.event-info .event-title{
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	font-weight:500;
	margin-bottom:5px;
	font-size:24px;
}
.event-info .media-post{
	margin-bottom:10px;
}
.event-info .media-post li a{
	text-transform: capitalize;
    font-size: 14px;
	color:#757575;
}
.event-info p{
	color: #454545;
    margin-bottom: 0;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}
.upcoming-event-carousel  .owl-item {
	box-shadow: none;
    transform: scale(0.9);
	transition: all 0.5s;
	opacity:0.4;
}
.upcoming-event-carousel .owl-item .item{
	padding:0;
}
.upcoming-event-carousel .owl-item.active.center .item{
	padding:15px;
}
.upcoming-event-carousel .owl-item.active.center{
    transform: scale(1);
	transition: all 0.5s;
	opacity:1;
}
.upcoming-event-carousel.owl-btn-1 .owl-prev,
.upcoming-event-carousel.owl-btn-1 .owl-next{
	margin: 0 100px !important;
    font-size: 20px;
    background-color: var(--primary);
    width: 50px;
    height: 50px;
    line-height: 50px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
}
.upcoming-event-carousel.owl-btn-1 .owl-prev:hover,
.upcoming-event-carousel.owl-btn-1 .owl-next:hover{
	background-color: var(--sc-primary);
}
/* Testimonials */
.testimonial-bx{
	background-color: #fff;
	padding: 20px 20px 20px 70px;
	border-radius: 5px;
	margin-left: 30px;
	border: 1px solid #F0F0F0;
}
.testimonial-bx .testimonial-content p,
.testimonial-bx .testimonial-info p{
	margin: 0;
}
.testimonial-bx .testimonial-info h5{
	font-weight: 500;
	margin-bottom: 0;
}
.testimonial-bx .testimonial-info {
	margin-bottom: 15px;
}
.testimonial-bx .testimonial-info:after {
    content: "\f10e";
    position: absolute;
    font-family: fontawesome;
    font-size: 50px;
    color:#d6d6d6;
    right: 30px;
    top: 10px;
	z-index: 9;
}
.testimonial-thumb {
    width: 80px;
    border-radius: 50px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 0 8px 5px rgba(0,0,0,0.1);
    position: absolute;
    left: 0;
	z-index: 9;
}
.testimonial-bx .testimonial-content p{
	color:#000;
	font-size:15px;
}
.ovbl-middle:after,
.ovbl-light:after,
.ovbl-dark:after{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#391800+0,001739+38,321001+71,011e32+100 */
background: #391800; /* Old browsers */
background: -moz-linear-gradient(left, #391800 0%, #001739 38%, #321001 71%, #011e32 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #391800 0%,#001739 38%,#321001 71%,#011e32 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #391800 0%,#001739 38%,#321001 71%,#011e32 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#391800', endColorstr='#011e32',GradientType=1 ); /* IE6-9 */
}
.our-story{
	position:relative;
	z-index: 1;
}
.our-story:after{
	width:50%;
	content:"";
	height:100%;
	position:absolute;
	left:50%;
	background-color:#fff;
	top:0;
	z-index: -1;
}
.video-bx{
	position:relative;
}
.video-bx .video{
	width:80px;
	height:80x;
	border-radius:80px;
	line-height:80px;
	text-align:center;
	position:absolute;
	left:50%;
	top:50%;
	background:#fff;
	color:#000;
	font-size:24px;
	transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%);
	-webkit-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	transition:all 0.5s;
	-moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-ms-transition:all 0.5s;
	-o-transition:all 0.5s;
}
.video-bx .video:hover{
	transform:translate(-50%, -50%) ro;
	-moz-transform:translate(-50%, -50%);
	-webkit-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%) rotate(360deg);
	-webkit-transform:translate(-50%, -50%) rotate(360deg);
	-ms-transform:translate(-50%, -50%) rotate(360deg);
	-o-transform:translate(-50%, -50%) rotate(360deg);
}
.counter-style-1 span{
	font-size:45px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	font-weight:700;
}
.counter-style-1 .counter-text{
	color: #606060;
	font-size: 16px;
	text-transform: uppercase;
}
.join-content-bx{
	max-width:800px;
	margin:auto;
}
.join-content-bx h2{
	font-size: 45px;
	line-height: 65px;
	margin: 0px 0 20px 0;
}
.join-content-bx h4{
	font-weight:400;
	font-size:30px;
}
.join-content-bx p{
	line-height:24px;
	opacity: 0.8;
}
.choose-bx .choose-bx-in{
	margin-top:-20px;
}
/* Contact */
.contact-info-bx{
	padding:30px;
}
.contact-info-bx .widget_getintuch i{
	font-size: 18px;
	line-height: 16px;
}
.contact-social-bx li a{
	width: 40px;
	padding: 0;
	height: 40px;
	line-height: 38px;
}
.contact-info-bx .widget_getintuch{
	border-top:1px solid rgba(255,255,255,0.2);
	border-bottom:1px solid rgba(255,255,255,0.2);
	padding-top:20px;
	padding-bottom:0;
	margin-bottom:20px;
}
.courses-search-bx .input-group,
.contact-bx .input-group {
	display:block;
	position:relative;
}
.courses-search-bx .input-group .form-control,
.contact-bx .input-group .form-control,
.contact-bx .input-group .form-select,
.courses-search-bx .input-group label,
.contact-bx .input-group label{
	width:100%;
}
.courses-search-bx .input-group label,
.contact-bx .input-group .form-select,
.contact-bx .input-group .form-control input{
	padding-left: 5px;
	/* font-size: 14px;
	font-weight: 400;
	color: #606060;
	position: absolute; */
	/* top: 10px;
	left: 0; */
	/* transition:all 0.5s;
	-moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-ms-transition:all 0.5s;
	-o-transition:all 0.5s; */
}
.courses-search-bx .focused .input-group label,
.contact-bx .focused .input-group label{
	/* top: -8px;
	font-size: 10px;
	color:var(--primary); */
}
.contact-bx .input-group textarea.form-control{
	height:120px;
}
.courses-search-bx .input-group .form-control,
.contact-bx .input-group .form-select,
.contact-bx .input-group .form-control{

	background-color:rgba(0,0,0,0);
	padding:10px 10px;
}

.contact-bx .input-group .form-select option{
	border-width: 0 0 0 0;
	background-color:rgba(0,0,0,0);
	padding:10px 0;
}


/* custome select */


/* custom select */


.contact-bx .heading-bx {
    margin-bottom: 30px;
}
.courses-search-bx .input-group .form-control{
	border-width: 0 0 2px 0;
	border-color:#E0E0E0;
}

.courses-search-bx select{
	border: none !important;
	outline: none !important;
	height: 40px;
	border-bottom: 1px solid #ebebeb;
	width: 100%;
	letter-spacing: 0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin-bottom: 20px;
}
.faq-bx .panel{
	border: 1px solid #D0D0D0;
	padding: 12px 0px 12px 20px;
	border-radius: 4px;
	margin-bottom: 4px;
}
.faq-bx .acod-title a{
	padding:0px 50px 0px 0px;
	border:0;
	color: #000;
}
.faq-bx .acod-content {
    margin: 10px 0 0 0;
}
.faq-bx .acod-body{
	border:0;
}
/* Gallery Box */
.portfolio-bx{
	margin-bottom:30px;
}
.portfolio-bx .portfolio-info-bx p{
	color:#fff;
	font-size:13px;
	margin-bottom:0;
}
.portfolio-bx .portfolio-info-bx h4{
	margin:0;
	font-size:18px;
}
.portfolio-bx .portfolio-info-bx h4 a{
	color:#fff;
}
.portfolio-bx .portfolio-info-bx{
	bottom: -100%;
	position: absolute;
	width: 100%;
	padding: 10px 20px;
	text-align: left;
	transition: all 0.5s;
}
.portfolio-bx .overlay-icon a{
	font-size:18px;
}
.portfolio-bx .overlay-icon a i{
	background:rgba(0,0,0,0);
	color:#fff;
}
.portfolio-bx:hover .portfolio-info-bx{
	bottom: 0;
}
.portfolio-bx:hover .media-ov2:before,
.portfolio-bx:hover .media-ov2:after{
	opacity:0.7;
}
.widget-courses .ttr-post-meta .price del,
.widget-courses .ttr-post-meta .price h5{
	display:inline-block;
	font-weight: 400;
}
.widget-courses .ttr-post-meta .price del{
	font-size:10px;
}
.widget-courses .ttr-post-meta .price h5{
	font-size: 13px;
	font-weight: 500;
	margin: 0;
}
.widget-courses .ttr-post-meta .price .free{
	color:#1fd36b;
}
.widget-courses .ttr-post-meta .review{
	font-size: 13px;
	font-weight: 400;
}
/* course detail bx */
.course-detail-bx{
	padding:20px;
	border:1px solid rgba(0,0,0,0.1);
	position: sticky;
	top: 100px;
}
.course-price{
	text-align:center;
	padding: 10px 0 20px;
}
.course-price .price,
.course-price del{
	display:inline-block;
}
.course-price .price{
	font-size:35px;
	margin:0;
}
.teacher-info{
	display:flex;
	align-items: center;
}
.course-price del{
	margin: 0;
}
.teacher-bx{
	border: 1px solid rgba(0,0,0,0.1);
	padding: 10px 20px;
	margin: 20px -20px 0;
	border-width: 1px 0 1px 0;
}
.teacher-name h5{
	font-size:16px;
	margin-bottom: 0;
	line-height: 18px;
	font-weight:400;
	color:#000;
}
.teacher-thumb{
	width:55px;
	height:55px;
	overflow:hidden;
	border-radius:55px;
	margin-right:15px;
}
.teacher-name span{
	font-size:13px;
	color:#6a6a6a;
}
.course-detail-bx .cours-more-info .price span {
    font-size: 12px;
    color: #3c3c3c;
}
.course-detail-bx .cours-more-info .price h5{
	font-size:16px;
	font-weight:400;
}
.course-detail-bx .cours-more-info {
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    margin: 0;
    border-top: 0;
	margin: 0 -20px;
}
.course-detail-bx .cours-more-info .price, .cours-more-info .review {
    padding: 8px 20px;
}
.course-info-list{
	padding-top:20px;
	margin:0 -20px;
}
.course-info-list ul{
	list-style:none;
	margin:0;
	padding: 0;
}
.course-info-list ul li{
	display: block;
	width: 100%;
}
.course-info-list ul li a{
	padding: 8px 20px;
	font-size: 15px;
	color: #808080;
	display: flex;
	align-items: center;
	transition:all 0.5s;
	-moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-ms-transition:all 0.5s;
	-o-transition:all 0.5s;
}
.course-info-list ul li a.active,
.course-info-list ul li a:hover{
	color:#fff;
	background: var(--primary);
}
.course-info-list ul li a i{
	margin-right:10px;
	font-size:20px;
}
.courses-post .post-title{
	font-size:40px;
	font-weight:700;
}
.course-features{
	margin:0;
	margin-bottom: 30px;
	padding:0;
	list-style:none;
	position:sticky;
	top:80px;
}
.course-features li{
	padding:15px 20px;
	border-bottom:1px solid rgba(0,0,0,0.1);
	display:flex;
	font-size:14px;
	align-items: center;
}
.course-features li i{
	margin-right:10px;
	font-size:20px;
    font-weight: 700;
	color:#B0315E;
}
.course-features li .label{
	width:60%;
    font-size:20px;
    font-weight: 600;
}
.course-features li .value{
	width:40%;
    font-size:20px;
    font-weight: 600;
}
.curriculum-list ul li,
.curriculum-list{
	margin:0;
	padding:0;
	list-style:none;
}
.curriculum-list ul li{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 10px 20px;
	font-size: 15px;
}
.curriculum-list > li{
	margin-bottom:30px;
}
.curriculum-list h5{
	font-size: 14px;
	font-weight: 500;
	color:var(--primary);
	margin-bottom: 0px;
	text-transform: uppercase;
}
.instructor-bx{
	display:flex;
	align-items: start;
	border: 1px solid rgba(0,0,0,0.1);
	padding: 20px 20px;
	margin-bottom:30px;
}
.instructor-author{
	width: 85px;
	height: 85px;
	overflow: hidden;
	border-radius: 55px;
	margin-right: 15px;
	min-width: 85px;
}
.instructor-info h6{
	margin-bottom:0;
}
.instructor-info p,
.instructor-info span{
	font-size:14px;
	line-height:22px;
}
.review-bx {
	display: flex;
	align-items: center;
	padding: 20px 20px;
	border: 1px solid rgba(0,0,0,0.1);
	margin-bottom: 30px;
}
.all-review{
	width: 25%;
	text-align: center;
	margin-right: 20px;
	border: 1px solid rgba(0,0,0,0.1);
	padding: 10px 10px;
}
.all-review .rating-type{
	margin:0;
	font-size: 35px;
	line-height: 40px;
}
.all-review span{
	font-size:14px;
}
.review-bar{
	width:75%;
}
.bar-bx {
    display: flex;
    width: 100%;
    align-items: center;
	font-size: 14px;
	font-weight: 400;
	color: #000;
}
.bar-bx .middle{
	width:80%;
}
.bar-bx .side{
	width:10%;
}
.bar-bx .side.right{
	text-align:right;
}
.bar-container {
    width: 100%;
    background-color: #f1f1f1;
    text-align: center;
    color: white;
}
.bar-container [class*="bar"]{
	height:8px;
	background:var(--primary);
}
/* MemberShip */
.pricingtable-inner {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
	box-shadow: 0 0 15px 0 rgba(17,0,34,0.1);
}
.pricingtable-features,
.pricingtable-features li,
.pricingtable-footer{
	border:0;
}
.pricingtable-features li{
	color: #353535;
	font-size: 14px;
	font-weight: 500;
}
.pricingtable-bx {
	font-size:30px;
	font-weight: 300;
	line-height: 90px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	color:#fff;
}
.priceing-doller {
    vertical-align: top;
	font-size:30px;
	line-height:30px;
	color:#fff;
}
.pricingtable-type{
	color:#fff;
}
.pricingtable-type::before{
	content: "/";
	margin-right: 10px;
	color:#fff;
}
.pricingtable-price{
	padding: 20px 20px;
	background-color: transparent;
	border: 0px solid #E9E9E9;
}
.pricingtable-main{
	background: #ff5e14; /* Old browsers */
	background: -moz-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #ff5e14 0%,#ff8e14 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #ff5e14 0%,#ff8e14 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5e14', endColorstr='#ff8e14',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.pricingtable-title {
	background-color: rgba(255,255,255,0.2);
	padding: 10px 10px 5px 10px;
}
.pricingtable-title h2{
	font-size: 22px;
	line-height: 26px;
	font-weight: 600;
}
.pricingtable-title p{
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
}
.pricingtable-features li:nth-child(2n) {
    background-color: rgba(0,0,0,0.1);
}
.pricingtable-footer{
	background-color: rgba(0,0,0,0.1);
}
.pricingtable-footer .btn{
	font-size:16px;
	padding: 10px 30px;
	/* background-color: #D0293C;
	color: #fff; */
}
/* Profile Box */
.profile-bx{
	border:1px solid #e9e9e9;
	position:sticky;
	top:100px;
}
.user-profile-thumb{
	width:100px;
	height:100px;
	overflow:hidden;
	border-radius:100px;
	border: 5px solid #fff;
	box-shadow:0 0 15px 0 rgba(0,0,0,0.2);
	margin:25px auto 15px;
}
.profile-info{
	margin-bottom:15px;
}
.profile-info h4{
	font-size:18px;
	margin-bottom: 0;
}
.profile-info span{
	font-size:14px;
	color:#717171;
}
.profile-social ul li a{
	width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    border: 1px solid #e9e9e9;
    line-height: 34px;
    border-radius: 40px;
    color: #000;
    font-size: 14px;
}
.profile-social{
	border-bottom: 1px solid #e9e9e9;
	padding-bottom:15px;
}
.profile-content-bx{
	border: 1px solid #e9e9e9;
}
.profile-tabnav{
	margin:20px 0;
}
.profile-tabnav .nav{
	border:0;
}
.profile-tabnav .nav li{
	display:block;
	width:100%;
}
.profile-tabnav .nav li a{
	border:0;
	color: #8a8a8a;
	font-size: 15px;
	text-align: left;
	padding: 10px 30px;
}
.profile-tabnav .nav li a.active{
	background-color: var(--primary);
	color: #fff;
	border-radius: 0;
}
.profile-tabnav .nav li a i{
	margin-right:10px;
}
.profile-head h3{
	font-size:20px;
	text-transform:uppercase;
	margin-bottom:0;
	font-weight:500;
}
.profile-head{
	display:flex;
	padding: 10px 15px 10px 30px;
	border-bottom: 1px solid #e9e9e9;
	align-items: center;
}
.profile-head .feature-filters{
	margin-bottom:0;
}
.courses-filter .action-card{
	margin-bottom:30px;
}
.courses-filter{
	padding:30px 30px 0 30px;
}
.profile-head .feature-filters.style1 li a{
	font-weight: 400;
	font-size: 15px;
}
.edit-profile h3{
	font-size: 18px;
	font-weight: 400;
	margin: 0;
}
.edit-profile .help{
	font-size:12px;
	line-height:18px;

	display: block;
}
.edit-profile .col-form-label{
	font-size:14px;
	font-weight: 400;
}
.edit-profile{
	padding:30px;
}
.edit-profile .form-group {
	margin-bottom: 15px;
}
/* My Account */
.account-form{
	display:flex;
	width: 100%;
	position: relative;
}
.account-head{
	position: sticky;
	left:0;
	top:0;
	z-index: 1;
	width: 500px;
	min-width: 500px;
	height: 100vh;
	background-position: center;
	text-align: center;
	align-items: center;
	display: flex;
	vertical-align: middle;
}
.account-head a{
	display:block;
	width:100%;
}
.account-head:after{
	opacity:0.9;
	content:"";
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	width:100%;
	height:100%;
	background: #ff5e14; /* Old browsers */
	background: -moz-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #ff5e14 0%,#ff8e14 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #ff5e14 0%,#ff8e14 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5e14', endColorstr='#ff8e14',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.account-form-inner {
    width: 100%;
	align-self: center;
}
.account-container {
    max-width: 400px;
	margin: auto;
	padding: 30px 0;
}
.custom-control-label:before{
	width: 20px;
	height: 20px;
	background-color: transparent;
	border: 2px solid var(--primary);
	top: 2px;
}
.custom-control-label:after{
	width: 20px;
	height: 20px;
	top: 2px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{
	background-color: var(--primary);
}
.account-container .form-forget{
	display:flex;
}
.account-container .form-forget .custom-control-label{
	font-weight:400;
}
.account-container .btn.button-md{
	padding: 12px 40px;
}
.account-container .form-control{
	border-color: rgba(0,0,0,0.2);
}
.account-container .facebook i,
.account-container .google-plus i{
	border-right:1px solid #fff;
	padding-right:10px;
	margin-right:10px;
}
.account-form .heading-bx p a{
	color: var(--primary);
	text-decoration: underline;
	padding-bottom: 0px;
}
/* .g-recaptcha {
  transform-origin: left top;
} */
/* Google Recaptcha */

.g-recaptcha,
#rc-imageselect {
    transform:scale(0.99);
    -webkit-transform:scale(0.99);
    -moz-transform:scale(0.99);
    -o-transform:scale(0.99);

    transform-origin:0 0;
    -o-transform-origin:0 0;
    -moz-transform-origin:0 0;
    -webkit-transform-origin:0 0;
}
@media screen and (max-width: 575px){
	#rc-imageselect,
	.g-recaptcha {
        transform:scale(0.77);
        -moz-transform:scale(0.77);
        -o-transform:scale(0.77);
        -webkit-transform:scale(0.77);

        transform-origin:0 0;
        -moz-transform-origin:0 0;
        -o-transform-origin:0 0;
        -webkit-transform-origin:0 0;

    }
}
.recaptcha-box{
 height:60px;
}
.g-recaptcha > div{
	width:250px !important;
}
/* Google Recaptcha */
/* error */
.error-page{
	text-align:center;
}
.error-title{
	font-size:140px;
	line-height: 140px;
	margin-bottom: 0;
}
.error-page h3{
	font-size: 50px;
    opacity: 0.2;
}
.error-page h5{
	font-size: 22px;
	opacity: 1;
	font-weight: 500;
	line-height: 35px;
}
.error-page p{
	font-size:16px;
	line-height:26px;
}
.why-chooses-bx .faq-bx{
	max-width: 700px;
	margin: auto;
}
.why-chooses-bx .faq-bx .panel {
	background:#fff;
	margin-bottom: 6px;
}
@media only screen and (max-width: 1200px) {
	.cours-more-info .review{
		padding: 8px 12px;
	}
	.service-info-bx .action-box{
		margin-top: 40px;
	}
	.account-head{
		width: 350px;
		min-width: 350px;
	}
	.service-bx h4{
		font-size:20px;
	}
	.rev-btn{
		padding-left:20px !important;
		padding-right:20px !important;
	}
	.pricingtable-bx {
		font-size: 80px;
	}
}
@media only screen and (max-width: 991px) {
	.event-time .event-date{
		font-size: 30px;
		line-height: 30px;
	}
	.event-month{
		font-size:12px;
	}
	.event-time{
		padding: 10px 8px;
	}
	.event-bx .info-bx {
		padding: 20px;
	}
	.event-info .event-title{
		 font-size: 20px;
	}
	.upcoming-event-carousel.owl-btn-1 .owl-prev,
	.upcoming-event-carousel.owl-btn-1 .owl-next{
		margin: 0 50px !important;
	}
	.service-info-bx {
		margin-top: 0px;
		padding-top: 80px;
	}
	.service-bx .info-bx {
		padding: 10px 10px 20px 10px;
	}
	.service-bx .info-bx h4 {
		font-size: 16px;
	}
	.service-bx .feature-box-sm {
		width: 60px;
		height: 60px;
		line-height: 60px;
		top: -30px;
	}
	.service-bx .feature-box-sm i {
		font-size: 20px;
	}
	.our-story::after{
		content: unset;
	}
	.bar-bx .side {
		width: 20%;
	}
	.service-info-bx .action-box{
		margin-top: 0;
	}
	.account-head {
		width: 100%;
		min-width: 100%;
		height: 200px;
	}
	.account-form {
		display: block;
	}
	.account-container{
		padding: 50px 20px;
	}
}
@media only screen and (max-width: 767px) {
	.courses-carousel .owl-nav{
		position: unset;
		top: auto;
		right: auto;
		bottom: 0;
		text-align: center;
		margin-top: 20px;
	}
	.section-sp1 {
		padding-top: 50px;
		padding-bottom: 20px;
	}
	.section-sp2 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.upcoming-event-carousel.owl-btn-1 .owl-prev,
	.upcoming-event-carousel.owl-btn-1 .owl-next{
		margin: 0 0 !important;
	}
	.testimonial-carousel .owl-nav,
	.recent-news-carousel .owl-nav {
		position: unset;
		top: auto;
		right: auto;
		text-align: center;
		margin-top: 10px;
	}
	.testimonial-carousel .owl-nav{
		margin-top: 30px;
	}
	.info-bx{
		font-size: 16px;
	}
	.upcoming-event-carousel.owl-btn-1 .owl-prev,
	.upcoming-event-carousel.owl-btn-1 .owl-next{
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		position:unset;
		box-shadow:none;
		margin: 0 5px !important;
		transform: translateY(0);
		-o-transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
	}
	.upcoming-event-carousel.owl-btn-center-lr .owl-nav{
		text-align:center;
		margin-top:15px	;
	}
	.online-cours h2{
		font-size: 30px;
		margin-bottom: 10px;
	}
	.online-cours h5{
		font-size: 18px;
		margin-bottom: 25px;
	}
	.cours-search{
		margin-bottom: 30px;
	}
	.service-info-bx {
		padding-top: 50px;
	}
	.service-bx{
		margin-bottom:30px;
	}
	.service-bx.m-b0{
		margin-bottom:0;
	}
	.event-time{
		margin-right: 0;
		border-radius: 0;
		position: absolute;
		top: -68px;
		left: 0;
	}
	.rev-btn{
		padding:10px 10px !important;
		font-size:12px !important;
	}
	/* Rev Slide */
	.rev-slider .tp-rightarrow,
	.rev-slider .tp-leftarrow{
		display:none;
	}
}
@media only screen and (max-width: 576px) {
	.footer-title{
		font-size:14px;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}
	footer p,
	footer li{
		font-size: 13px;
	}
	footer .widget {
		margin-bottom: 24px;
	}
	.footer-top{
		padding: 0 0 10px;
	}
	.pt-exebar{
		margin-bottom: 30px;
	}
	.pt-logo img{
		width:150px;
	}
	.pt-social-link{
		display:none !important;
	}
	.all-review,
	.bar-bx .side{
		width: 60%;
	}
	.rev-btn{
		padding:10px 15px !important;
	}
	.counter-style-1 span,
	.counter-style-1 .counter{
		font-size: 35px;
		font-weight: 700;
		line-height: 40px;
	}
	.counter-style-1 .counter-text{
		font-size: 12px;
		font-weight: 400;
	}
	.profile-head{
		padding: 10px 15px 10px 15px;
	}
	.edit-profile{
		padding:15px;
	}
	.courses-filter {
		padding: 15px 15px 0 15px;
	}
	.online-cours h5 {
		font-size: 14px;
	}
	.online-cours h2 {
		font-size: 24px;
		margin-bottom: 5px;
	}
}

/*-------------------------------------------------*/
/*=  23.SOCIAL MEDIA SHARE
/*-------------------------------------------------*/
.icon-float {
	position: fixed;
	/* width: 60px; */
   /* left: 0px;
	*/
	top: 35%;
	z-index: 999;
	left: 0px;
}
.icon-float ul {
	padding: 0px;
}
.icon-float ul li {
	list-style-type: none;
}
.icon-float ul li a {
	display: block;
	color: #fff !important;
	border-bottom: 1px solid rgba(0, 0, 0, .4);
    transition: all .3s linear;
    text-decoration: none !important
}
.icon-float ul li a i {
	padding: 8px;
	width: 40px;
	height: 32px;
	text-align: center;
	color: #fff;
}

/* .icon-float ul li a {
    color: #fff !important;
    display: block;
    height: 100%;
    width: 100%;
    line-height: 45px;
    padding-left: 25%;
    border-bottom: 1px solid rgba(0, 0, 0, .4);
    transition: all .3s linear;
    text-decoration: none !important
} */

/* .icon-float ul li a:hover {
	transform: rotateY(-180deg);
}
.icon-float ul li a:hover i {
	transform: rotateY(180deg);
} */

.icon-float ul li a span {
    display: none;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase
}

.icon-float ul li a:hover {
    z-index: 1;
    /* width: 160px; */
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, .3)
}

/* .icon-float ul li:hover a span {
    padding-left: 30%;
    display: block;
    font-size: 15px
} */

.fb1 {
	background: #3b5998;
}
.inst1 {
	background: linear-gradient(#7242C4,#DF3A45,#F7C352);
}
.gp1 {
	background: #dd4b39;
}
.tw1 {
	background: #1da1f2;
}
.li1 {
	background: #0077b5;
}
.yt1 {
	background: #cd201f;
}
.wa1 {
	background: #34af23;
}
.sh {
	background: #fff;
	padding: 10px 0px;
	font-size: 11px;
	text-align: center;
	color: #333;
	border-top-left-radius: 5px;
}
.sh1 {
	color: #333 !important;
	background: #fff;
	border-bottom-left-radius: 5px;
}



 /**** SOCIAL ICON SIDE *************************/

 .social-side nav {
    position: fixed;
    width: 60px;
    margin-top: 150px;
    transition: all 0.3s linear;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, .4);
    z-index: 1;
}

.social-side nav ul {
    margin-top: 0;
    margin-bottom: 0rem
}

.social-side nav li {
    height: 45px;
    position: relative
}

.social-side nav li a {
    color: #fff !important;
    display: block;
    height: 100%;
    width: 100%;
    line-height: 45px;
    padding-left: 25%;
    border-bottom: 1px solid rgba(0, 0, 0, .4);
    transition: all .3s linear;
    text-decoration: none !important
}

.social-side nav li:nth-child(1) a {
    background: #4267B2
}

.social-side nav li:nth-child(2) a {
    background: #1DA1F2
}

.social-side nav li:nth-child(3) a {
        background: #2867B2
}

.social-side nav li:nth-child(4) a {
    background: #E1306C
}

.social-side nav li:nth-child(5) a {
    background: #ff0000
}

.social-side nav li:nth-child(6) a {
    background: #00bfa5;
    border-bottom: 0px;
}

.social-side nav li a i {
    position: absolute;
    top: 14px;
    left: 24px;
    font-size: 20px
}

.social-side ul li a span {
    display: none;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase
}

.social-side a:hover {
    z-index: 1;
    width: 160px;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, .3)
}

.social-side ul li:hover a span {
    padding-left: 30%;
    display: block;
    font-size: 15px
}

  @media screen and (max-width: 800px) {
      .social-side {
          display: none;
      }

  }


  .boxed-btn3 {
	background: #fff;
	color: #4D337E;
	display: inline-block;
	padding: 6px 12px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	font-size: 14px;
	font-weight: 600;
	border: 0;
	border: 1px solid #5F2E7A;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 5px;
	text-transform: uppercase;
	text-align: center;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
	overflow: hidden;
  }

  .boxed-btn3:hover {
	background: #f7b205;
	color: #fff;
	border: 1px solid #f7b205;
  }

  .boxed-btn4 {
    background: transparent;
	color: #f7b205;
	display: inline-block;
	padding: 6px 12px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	font-size: 14px;
	font-weight: 600;
	border: 0;
	border: 1px solid #f7b205;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 5px;
	text-transform: uppercase;
	text-align: center;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
	overflow: hidden;
  }

  .boxed-btn4:hover {
	background: #f7b205;
	color: #fff;
	border: 1px solid #f7b205;
  }

  .boxed-btn5 {
    background: transparent;
	color: #fff;
	display: inline-block;
	padding: 6px 12px;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	font-size: 14px;
	font-weight: 600;
	border: 0;
	border: 1px solid #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 5px;
	text-transform: uppercase;
	text-align: center;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
	overflow: hidden;
  }

  .boxed-btn5:hover {
    background: #fff;
	color: #4D337E;
	border: 1px solid #fff;
  }

  /*---------------------
  Hero Section
-----------------------*/

.hero-items .single-hero-items {
	height: 440px;
	padding-top: 60px;
	padding-bottom: 80px;
}

.hero-items .single-hero-items span {
	color: #e7ab3c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 28px;
	display: inline-block;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-items .single-hero-items h1 {
	color: #fff;
	/* font-family: 'Times New Roman', Times, serif; */
	font-size: 40px;
	font-weight: 600;
	position: relative;
	margin-top: 8px;
	margin-bottom: 20px;
	/* top: 50px; */
	opacity: 0;
}


.hero-items .single-hero-items p {
	margin-bottom: 42px;
	font-size: 34;
	font-weight: 400;
	/* font-family: 'Times New Roman', Times, serif; */
	color: #fff;
	position: relative;
	top: 100px;
	opacity: 0;
}

.hero-items .single-hero-items .primary-btn {
	position: relative;
	top: 50px;
	opacity: 0;
	margin-bottom: 50px;
}

.hero-items .off-card {
	height: 154px;
	width: 154px;
	padding-top: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 140px;
	position: absolute;
	left: 47%;
	top: 160px;
	background: #e7ab3c;
	z-index: 1;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}

.hero-items .off-card:after {
	position: absolute;
	left: 5px;
	top: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 2px dashed #ffffff;
	content: "";
	border-radius: 50%;
	z-index: -1;
}

.hero-items .off-card h2 {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
}

.hero-items .off-card h2 span {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	margin-top: 6px;
}

.hero-items .owl-item.active .single-hero-items span,
.hero-items .owl-item.active .single-hero-items h1,
.hero-items .owl-item.active .single-hero-items p,
.hero-items .owl-item.active .single-hero-items .primary-btn {
	top: 0;
	opacity: 1;
}

.hero-items .owl-item.active .single-hero-items span {
	-webkit-transition: all 0.2s ease 0.2s;
	-o-transition: all 0.2s ease 0.2s;
	transition: all 0.2s ease 0.2s;
}

.hero-items .owl-item.active .single-hero-items h1 {
	-webkit-transition: all 0.4s ease 0.4s;
	-o-transition: all 0.4s ease 0.4s;
	transition: all 0.4s ease 0.4s;
}

.hero-items .owl-item.active .single-hero-items p {
	-webkit-transition: all 0.6s ease 0.6s;
	-o-transition: all 0.6s ease 0.6s;
	transition: all 0.6s ease 0.6s;
}

.hero-items .owl-item.active .single-hero-items .primary-btn {
	-webkit-transition: all 0.8s ease 0.8s;
	-o-transition: all 0.8s ease 0.8s;
	transition: all 0.8s ease 0.8s;
}

.hero-items .owl-item.active .single-hero-items .off-card {
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 1s ease 1s;
	-o-transition: all 1s ease 1s;
	transition: all 1s ease 1s;
}

.hero-items .owl-nav button[type=button] {
	font-size: 30px;
	position: absolute;
	left: 40px;
	top: 45%;
	color: #252525;
}

.hero-items .owl-nav button[type=button]:hover {
	color: #dfad51;
}

.hero-items .owl-nav button[type=button].owl-next {
	left: auto;
	right: 40px;
}





.hero-items .owl-nav button[type=button] {
	font-size: 30px;
	position: absolute;
	left: -62px;
	top: 25%;
	color: #171717;
	opacity: 0.3;
}

.hero-items .owl-nav button[type=button].owl-next {
	left: auto;
	right: -62px;
	color: #171717;
	opacity: 1;
}

.hero-items .owl-dots {
	text-align: center;
	margin-top: 27px;
}

.hero-items .owl-dots button {
	width: 6px;
	height: 6px;
	background: #D8D9DA;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.hero-items .owl-dots button:last-child {
	margin-right: 0;
}

.hero-items .owl-dots button.active {
	width: 30px;
	background: #252525;
	border-radius: 50px;
}

.hero-items .banner_img {
	align-items: center;
	position: absolute;
	right: 0;
	width: 410px;
	top: 3%;
	bottom: 8%;

  }



  @media only screen and (min-width: 992px) and (max-width: 1199px) {

	.hero-items .owl-nav button[type=button] {
		left: 5px;
	}
	.hero-items .owl-nav button[type=button].owl-next {
		right: 5px;
	}
	.hero-items .banner_img {
		position: absolute;
		right: 0;
		width: 400px;
		top: 5%;
	  }
}

@media only screen and (max-width: 991px) {

	.hero-items .owl-nav button[type=button] {
		left: 5px;
	}
	.hero-items .owl-nav button[type=button].owl-next {
		right: 5px;
	}

	.hero-items .banner_img {
		position: absolute;
		right: 0;
		width: 350px;
		top: 10%;
	  }

}

/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.hero-items .off-card {
		left: 62%;
	}
	.hero-items .banner_img {
		position: absolute;
		right: 0;
		width: 320px;
		top: 10%;
	  }
}

/* Large Device: 480px */

@media only screen and (max-width: 767px) {

	.hero-items .single-hero-items {
		padding: 110px 25px 80px;
		height: auto;
		background: left center;
	}
	.hero-items .single-hero-items h1 {
		font-size: 24px;
	}

	.hero-items .off-card {
		display: none;
	}
	.hero-items .banner_img {
		display: none;
	  }
}

/* Small Device: 320px */



.footer-bottom-nav ul li a:hover {
    color: #f1f1f1;
    text-decoration-line: underline;
}
.footer-bottom-nav ul li a {
    font-weight: 500;
    font-size: 13px;
    line-height: 154%;
    /* text-transform: uppercase; */
    /* color: var(--white-color); */
    color: #b0b0b0;
    padding: 0 10px;
}
@media only screen and (max-width: 1199.98px) {
	 .footer-bottom-nav {
        /* display: none; */
        text-align: center;
    }
    .footer-bottom-nav ul {
        justify-content: center!important;

    }
    .footer-bottom-nav ul li a {
        padding: 0 7px;
    }
}

.Newspaper-Button {
		background: #fff;
		color: #AA3463;
		display: inline-block;
		padding: 12px 25px;
        font-family: "Arimo", serif;
        font-optical-sizing: auto;
		font-size: 12px;
		font-weight: 400;
		border: 0;
		border: 1px solid #AA3463;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 30px;
		text-transform: uppercase;
		text-align: center;
		-webkit-transition: 0.5s;
		-moz-transition: 0.5s;
		-o-transition: 0.5s;
		transition: 0.5s;
		cursor: pointer;
		overflow: hidden;
}

.profile-top .profile-image {
    position: relative;
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

 .profile-top .profile-image img {
    width: auto;
    min-height: 100px;
    border-radius: 50%;
    max-width: 100px;
    max-height: 100px;
    height: 100px;
    min-width: 100px;
}

 .profile-top .profile-image .file-uplode-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: -5px;
    text-align: center;
    width: 36px;
    height: 36px;
    font-size: 21px;
    -webkit-box-shadow: 0 0 10px rgba(179, 168, 168, 0.25);
    box-shadow: 0 0 10px rgba(179, 168, 168, 0.25);
    cursor: pointer;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}



 .profile-top .profile-image #fileuplode {
    display: none;
}

.affiliate-copy-btn {
    right: 12px;
    top: 9px;
    color: #f1f1f1;
    padding: 5px;
    z-index: 9 !important;
}

.affiliate-copy-btn:hover {
    color:  #f1f1f1;
}

/*My Courses Page CSS Start*/
.my-courses-page .filter-box {
    height: 45px;
}

.my-courses-page .filter-box-short-icon img {
    margin-right: 5px;
}
.my-courses-page .barra {
    width: 158px;
    margin-left: 0;
}

.courses-filter-bar {
    /* border-bottom: 1px solid #E5E8EC; */
    padding-bottom: 30px;
}

.filter-box {
    border: 1px solid #E5E8EC;
    padding: 0 0 0 10px;
    border-radius: 4px;
    height: 40px;
    display: inline-flex;
}

.sidebar-filter-btn,
.filter-bar-search-box {
    border: 1px solid #E5E8EC;
    height: 40px;
    border-radius: 4px;
    padding: 5px 15px;
}

.sidebar-filter-btn:hover {
    border: 1px solid var(--theme-color);
    color: var(--heading-color);
}

.filter-box-short-icon p,
.filter-box .form-select {
    line-height: 22px;
}

.filter-box .form-select {
    height: 40px;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: 15px;
    min-width: 115px;
    width: 115px;
    max-width: 100%;
    background-color: transparent;
    border: transparent;
    line-height: 22px;
    color: var(--heading-color);
}

.filter-bar-search-box {
    width: 325px;
}


.show-all-course-area {
    margin-top: 40px;
}

.show-all-course-area-inner-tags {
    margin: 5px;
    display: inline-flex;
    align-items: center;
}

.show-all-course-area-inner-tags .iconify {
    border: 1px solid;
    border-radius: 50%;
    margin-right: 5px;
    font-size: 16px;
    padding: 1px;
}

.clear-all-tags {
    border: 1px solid var(--gray-color);
    border-radius: 31px;
    margin-right: 15px;
    padding: 3px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.clear-all-tags .iconify {
    border: 1px solid var(--gray-color);
    border-radius: 50%;
    margin-right: 5px;
    background-color: var(--gray-color);
    color: var(--white-color);
}

/* Show all Courses Area End*/

/*My Courses Page CSS Start*/
.filter-box {
    height: 45px;
}

.filter-box-short-icon img {
    margin-right: 5px;
}

.table{
	border: 1px solid #DEE2E6;
}

.table-td-hover-color {
    background-color: #F9F9F9;
}

table tr {
    transition: .5s ease all;
}

th {
    max-width: 100%;
    min-width: 111px;
}

table tr:hover {
    background-color: #F9F9F9;
}


table .course-item {
    background-color: transparent;
}

.table>:not(caption)>*>* {
    vertical-align: middle;
}

table .course-item {
    background-color: transparent;
}

/*Course Item*/
.wishlist-course-item {
    width: 540px;
}

.card {
    z-index: 0;
    border: none;
    position: relative
}
.wishlist-course-item .card-body .my-learning-invoice img {
    height: 14px;
}

.course-item .card-body {
    flex: 1 1 auto;
    padding: 30px 20px 20px;
}

.card-title {
    margin-bottom: 13px;
}

.course-item.wishlist-item .card-body {
    padding: 0 0 0 20px;
}

.course-item.wishlist-item {
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
    min-height: auto;
    flex-direction: row;
    width: 394px;
}

.wishlist-item .course-img-wrap {
    width: 198px;
    min-height: auto;
}

.course-item.wishlist-item .course-tag.badge {
    padding: 4px 6px;
    top: 10px;
    left: 10px;
    font-size: 11px;
}

.course-item.wishlist-item .card-body {
    padding: 0 0 0 20px;
}

.wishlist-item .course-img-wrap img {
    min-height: auto;
}


.my-learning-give-review .iconify {
    font-size: 13px;
    top: -1px;
    position: relative;
}

.my-learning-invoice:hover {
    color: var(--gray-color2);
}

.wishlist-course-item .card-body .my-learning-invoice img {
    height: 14px;
}


.course-item {
    box-shadow: 0 6px 21px rgba(21, 3, 89, 0.08);
    padding: 10px;
    margin-bottom: 25px;
    min-height: 417px;
}

.course-img-wrap img {
    max-width: 100%;
    transform: scale(1);
    min-height: 221px;
    min-width: auto;
}

.course-item:hover .course-img-wrap img {
    transform: scale(1.1);
}

.course-tag.badge {
    padding: 7px 13px;
    top: 30px;
    left: 30px;
    z-index: 9;
}

.course-item .card-body {
    flex: 1 1 auto;
    padding: 30px 20px 20px;
}

.course-img-wrap {
    border-radius: 4px;
    min-height: 221px;
    width: 100%;
    position: relative;
}

.course-item .course-img-wrap:before {
    background-color: rgba(41, 25, 100, 0.5);
    z-index: 9;
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    opacity: 0;
}

.course-item:hover .course-img-wrap:before {
    opacity: 1;
}

.course-item .course-img-wrap {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 27%;
    min-height: auto;
    height: 188px;
    background-color: #d5d5d5;
}

.course-item .course-img-wrap img {
    min-height: 188px;
}


/*Watch Course Give Rating Modal CSS Start*/
#writeReviewModal .modal-body {
    padding: 2rem 3rem 1rem;
}

#writeReviewModal .modal-footer {
    padding: 1rem 3rem;
}

.give-rating-group label {
    flex: .05;
    color: #E1E1E1;
    font-size: 24px;
    margin: 0 2px;
}

.btn-check.active+.give-rating-star {
    color: #efbb20;
}

#writeReviewModal textarea.form-control {
    height: 130px;
}

#writeReviewModal .theme-button3,
.modal-back-btn {
    border: 1px solid #D8D8D8;
    background-color: var(--white-color);
    color: var(--body-font-color);
    margin-right: 5px;
}

#writeReviewModal .theme-button1 {
    border: 1px solid #5F2E7A;
}

#writeReviewModal .theme-button3:hover,
#writeReviewModal .theme-button1:hover,
.modal-back-btn:hover {
    border: 1px solid #5F2E7A;
    background-color: #FFFFFF;
    color: #5F2E7A;
}

/*Watch Course Give Rating Modal CSS End*/

/*--------------------------------
   2.5 Template Common CSS
-----------------------------------*/
.testimonial-bottom-content .star-full .iconify,
.course-single-page-header .star-full .iconify,
.review-tab-count-box .rating-list .star-full .iconify {
    color: #efbb20;
}

.btn-check.active+.give-rating-star {
    color: #efbb20;
}

#writeReviewModal textarea.form-control {
    height: 130px;
}

.btn-check:active+.btn-danger:focus,
.btn-check:checked+.btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: none;
}


.btn-group {
    border-radius: 0.375rem;
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

/*-------------------------------------------
    30. Cart Page Area Start
-------------------------------------------*/
.cart-page-left-part,
.order-summary-box {
    border: 1px solid #EEEBEB;
}

.cart-page-left-part {
    padding: 40px;
}

.order-summary-box {
    padding: 40px 24px;
}

.price-symbol {
    margin-right: 5px;
}

/* Cart Right Order Summary css */
.order-summary-box-note {
    color: rgba(133, 133, 133, 1);
}

.theme-button1{
	transition: all .5s ease-in-out;
	color: #fff !important;
    background-color: #5F2E7A;
    border: 2px solid var(--theme-color);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    /* text-transform: capitalize; */
    z-index: 99;
    padding: 9.5px 24px !important;
    font-size: 15px !important;
    justify-content: center;
    border-radius: 4px;
    font-weight: 600 !important;
}

.theme-button1:hover {
    color: #5F2E7A !important;
    background-color: #fff !important;
    border: 1px solid #5F2E7A;
}

/*Load More Button css*/
.load-more-btn {
    background-color: #fff !important;
    border: 2px solid #5F2E7A !important;
    color: #5F2E7A !important;
    height: 38px;
    padding: 18px !important;
    font-size: 14px !important;
}

.load-more-btn:hover {
	color: #fff !important;
    background-color: #5F2E7A !important;
    border: 1px solid #fff;
}

.load-more-btn .iconify {
    margin-left: 7px;
}

.wishlist-remove button {
    color: #e22424;
	border: none;
    font-size: 24px;
}

.checkout-table .wishlist-remove {
    margin-bottom: 20px;
}

.checkout-table .wishlist-remove button {
    font-size: 21px !important;
}

.default-delete-btn-red {
    background-color: #FF1F1F;
    border: 1px solid #FF1F1F;
    color: var(--white-color);
    min-width: 93px !important;
}

.default-delete-btn-red .iconify {
    margin-right: 8px;
    margin-left: 0;
}

.default-delete-btn-red:hover {
    background-color: var(--white-color);
    border: 1px solid #FF1F1F !important;
    color: #FF1F1F !important;
}

/* .order-summary-btns .theme-button1:hover {
    border: 2px solid #5F2E7A;
} */

.order-summary-btns .load-more-btn {
    padding: 9.5px 24px !important;
    height: auto;
}

.order-summary-btns .load-more-btn:hover {
    background-color: #FFFFFF !important;
    border: 2px solid #A3A3A3 !important;
    color: #A3A3A3 !important;
}

/*-------------------------------------------
    30. Cart Page Area End
-------------------------------------------*/
.billing-address-box, .payment-method-box {
    box-shadow: 0 0 1px 1px rgb(0 0 0/3%);
    border: 1px solid #eeebeb;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
}
.font-16 {
    font-size: 16px;
}
.font-17 {
    font-size: 18px;
}
.font-medium {
    font-weight: 700;
}
.mb-30 {
    margin-bottom: 30px;
}
.color-heading{
    color: #0A0134;
}
h6 {
    font-size: 21px;
    line-height: 22px;
}

.billing-address-box, .payment-method-box {
    box-shadow: 0 0 1px 1px rgb(0 0 0/3%);
    border: 1px solid #eeebeb;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.payment-method-card-box {
    border: 1px solid #e6e4e4;
    border-radius: 4px;
    padding: 20px!important;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}

.payment-method-card-box .form-check-input {
    margin-right: 10px;
    margin-left: 0;
    position: relative;
    top: 3px;
}
.form-check-input[type=radio] {
    border-radius: 50%;
}

.flex-shrink-0 {
    flex-shrink: 0!important;
}
.flex-grow-1 {
    flex-grow: 1!important;
}
.ms-2 {
    margin-left: 0.5rem!important;
}

.font-13 {
    font-size: 13px;
    line-height: 18px;
}
.mt-30 {
    margin-top: 50px;
}

.checkout-we-protect-content .iconify {
    width: 28px;
    height: 28px;
    border: 1px solid;
    border-radius: 50%;
    padding: 4px;
}
.color-hover {
    color: #5F2E7A;
}
img, svg {
    vertical-align: middle;
}

.sticky-top {
    z-index: 9;
}
.checkout-right-side-box {
    box-shadow: 0 0 1px 1px rgb(0 0 0/3%);
    margin-bottom: 30px;
    border: 1px solid #eeebeb;
    padding: 0 30px;
    background-color: #fff;
}


/* accordition */
.accordion {
	 color: #000;
    background: #fff;
}
/* Accordion CSS End */
.course-watch-banner-items li {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
}

.course-watch-banner-items li .iconify {
    color: #F3AE50;
    font-size: 18px;
	margin-right: 5px;
}

.video-player-area {
    position: relative;
}
.vbox-child::after,  .video-player-area::after {
    position: absolute;
    height: 70px;
    width: 100%;
    background-color: transparent;
    top: 0;
    left: 0;
    z-index: 999999;
    content: "";
}
/* Customize Youtube Player End */

/*Course watch page no video img start*/
.course-watch-no-video-img {
    height: 400px;
    overflow: hidden;
}

/*Course Single Details Area CSS Start*/
.course-single-details-area .tab-pane {
    padding: 40px 40px;
}

.course-single-details-area .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.course-info-box {
    padding: 11px;
}

.course-info-box .video-area-left {
    padding-right: 0;
}

.course-info-video-img img {
    max-height: 300px;
}

.course-info-box .play-btn {
    height: 66px;
    width: 66px;
}

.course-info-box .play-btn img {
    height: 23px;
}

.course-info-box {
    padding-bottom: 1px !important;
}

.course-watch-page-area.course-single-details-area .tab-pane {
    padding: 30px 0 30px 0 !important;
}

.course-watch-page-area.course-single-details-area .review-tab-top-part {
    justify-content: flex-start !important;
}

.course-watch-page-area.course-single-details-area .review-progress-bar-wrap {
    margin-left: 40px;
}

.course-watch-page-area.course-single-details-area .course-watch-right-side .review-progress-bar-wrap {
    margin-left: 0;
}

.course-watch-page-area.course-single-details-area .valor-nivel {
    color: var(--heading-color);
}

/* PDF Reader in Course Watch Page Start */
.course-watch-page-area .pdf-reader-frame {
    height: 600px;
}
/* PDF Reader Modal Start */
.pdf-reader-frame {
    height: 400px;
    width: 100%;
}

/* PDF Reader Modal End */

/* PDF Reader in Course Watch Page Start */
.course-watch-page-area .pdf-reader-frame {
    height: 600px;
}

/* PDF Reader in Course Watch Page End */


.course-watch-page-area .container-fluid {
    padding: 10 30px;
}

.course-watch-page-area .course-watch-right-side .accordion-button::after {
    position: absolute;
    left: 0;
}

.course-watch-page-area .course-single-details-left-content .accordion-item {
    background-color: transparent;
}

.course-watch-page-area .course-single-details-left-content .accordion-body {
    background-color: transparent;
}

.course-watch-page-area .course-details-tab-nav-wrap .tab-nav-list.nav-tabs .nav-link {
    background: transparent;
}

.course-watch-page-area .course-single-details-right-content {
    padding: 25px;
    margin-left: 0;
}

.course-watch-page-area .course-single-details-right-content .curriculum-content .accordion-button {
    font-size: 14px;
    padding: 0 0 0 14px;
}

.course-watch-page-area .course-watch-right-side .barra {
    width: 100%;
    margin: 4px 0 10px;
}

.course-watch-page-area .course-watch-right-side .barra-nivel {
    background: green;
}

.course-watch-page-area .course-watch-right-side .play-list-item {
    margin-bottom: 4px;
}

.course-watch-page-area .course-details-tab-nav-wrap .tab-nav-list.nav-tabs .nav-link {
    padding: 0;
    margin-left: 0;
    margin-right: 20px;
}

.course-watch-page-area.course-single-details-area .tab-pane {
    padding: 30px 0 30px 0 !important;
}

.course-watch-page-area.course-single-details-area .review-tab-top-part {
    justify-content: flex-start !important;
}

.course-watch-page-area.course-single-details-area .review-progress-bar-wrap {
    margin-left: 40px;
}

.course-watch-page-area.course-single-details-area .course-watch-right-side .review-progress-bar-wrap {
    margin-left: 0;
}

.course-watch-page-area.course-single-details-area .valor-nivel {
    color: var(--heading-color);
}

/* --------course-single-details-right-content css---------- */
.course-single-details-right-content {
    margin-top: -50px;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    margin-left: 26px;
}

.course-single-details-area .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.course-info-box {
    padding: 11px;
}

.course-info-box .video-area-left {
    padding-right: 0;
}

.course-info-video-img img {
    max-height: 300px;
}

.course-info-box .play-btn {
    height: 66px;
    width: 66px;
}

.course-info-box .play-btn img {
    height: 23px;
}

.course-info-box {
    padding-bottom: 1px !important;
}

.price-off {
    min-width: 65px;
    height: 24px;
    background: rgba(117, 79, 254, 0.16);
    border-radius: 44px;
}

/*Course Includes css*/
.course-includes-box,
.course-price-box,
.course-info-box .theme-btn,
.money-back-guarantee {
    padding: 0 11px;
}

.course-info-box .theme-btn {
    height: 50px;
}

.course-includes-box ul li span {
    margin-left: 8px;
}

.course-includes-box ul li {
    padding-bottom: 12px;
}

.course-includes-box ul li:last-child {
    padding-bottom: 0;
}

.course-info-box-wishlist-btns .theme-btn {
    border: 1px solid rgba(0, 0, 0, 0.19);
    padding: 10px 16px !important;
    font-weight: 500 !important;
}

.addToWishlist,
.addToCart {
    cursor: pointer;
}

/*Share this article css*/
.share-this-course-box {
    height: 90px;
    padding: 0 20px;
    margin-top: 20px;
}

.course-info-box {
    padding-bottom: 1px !important;
}

.share-this-course-box button:hover {
    color: var(--theme-color);
}

.share-this-course-box svg {
    font-size: 24px;
    margin-right: 10px;
}

/*Course Single Details Area CSS End*/
.course-watch-right-content {
    padding: 0 !important;
}


/*curriculum Tab Start*/
.curriculum-content .accordion-button {
    background-color: transparent;
    line-height: 19px;
    font-size: 18px;
    padding: 0;
}

.curriculum-content .accordion-collapse {
    box-shadow: none;
}

.curriculum-content .accordion-body {
    padding: 0 0 20px;
}

.curriculum-content .accordion-button::after {
    content: "\e92e";
}

/* ---------Curriculum Playlist Item Start--------- */
.play-list-item {
    margin-bottom: 15px;
}

.play-list-item.venobox,
.play-list-item.preview-enabled {
    cursor: pointer;
}

.show-preview {
    display: none;
    margin-right: 30px;
}

.play-list-item.preview-enabled .show-preview {
    display: block;
}

.play-list-left img {
    margin-right: 18px;
    height: 18px;
}

.play-list-left p {
    padding-top: 2px;
}

.play-list-item.venobox .play-list-left p,
.play-list-item.preview-enabled .play-list-left p,
.show-preview {
    color: var(--heading-color);
    text-decoration: underline;
    transition: .5s ease all;
}

/* Custom Venobox CSS Start */
.vbox-backdrop {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.vbox-title {
    display: none !important;
}

.vbox-close {
    right: 30px !important;
    top: 30px !important;
    color: var(--white-color) !important;
    background: none !important;
    display: flex !important;
    font-size: 18px !important;
    z-index: 999 !important;
    border: 1px solid gray;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding: 0;
    justify-content: center;
}

@media (max-width: 1199px) {
    .vbox-close {
        color: black !important;
        opacity: 1 !important;
        background-color: var(--white-color) !important;
    }

    .partner {
        padding-top: 32px;
    }
}

/* Custom Venobox CSS End */

/*Curriculum Playlist Item End*/


@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap");
:root {
  --color-bg: #eeedeb;
  --color-title: #0e1c4e;
  --color-summary-1: #fff6ee;
  --color-summary-1-highlight: #ffc48b;
  --color-summary-2: #fafaff;
  --color-summary-2-highlight: #b4b3ff;
  --color-summary-3: #fff0f3;
  --color-summary-3-highlight: #ffb3c0;
  --font-ibm-plex-sans: "IBM Plex Sans", sans-serif;
}

/* html,
body {
  overflow: auto;
  min-height: 100vh;
  width: 100%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
} */

.card {
  background: white;
  padding: 30px 28px;
  /* margin-top: 40px; */
  margin-bottom: 40px;
  border-radius: 4px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  max-width: 30em;
  width: 100%;
}
.card h1 {
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-title);
  margin-bottom: 15px;
}
.card details {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  border-left: 15px solid gray;
  padding: 10px;
}
.card details {
  margin-top: 15px;
}
.card details.warning {
  --highlight: var(--color-summary-1-highlight);
  background: var(--color-summary-1);
  border-left-color: var(--color-summary-1-highlight);
}
.card details.warning p {
  list-style-type: corona-warning;
}
.card details.info {
  /* --highlight: var(--color-summary-2-highlight); */
  background: var(--color-summary-2);
  border-left-color: var(--color-summary-2-highlight);
}
.card details.info p {
  list-style-type: corona-info;
}
.card details.alert {
  --highlight: var(--color-summary-3-highlight);
  background: var(--color-summary-3);
  border-left-color: var(--highlight);
}
.card details.alert p {
  list-style-type: corona-alert;
}
.card details summary,
.card details p {
  position: relative;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  font-family: "Arimo", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: var(--color-title);
  padding: 14px;
  cursor: pointer;
}
.card details summary::-webkit-details-marker,
.card details p::-webkit-details-marker {
  display: none;
}
.card details summary:focus,
.card details p:focus {
  outline: solid 3px var(--highlight);
}
.card details summary::-moz-selection, .card details p::-moz-selection {
  background-color: var(--highlight);
}
.card details summary::selection,
.card details p::selection {
  background-color: var(--highlight);
}
.card details p {
  display: list-item;
  cursor: default;
  margin-left: 3rem;
  list-style-type: corona;
}
.card details summary::before {
  cursor: pointer;
  position: absolute;
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  left: 0rem;
  margin-right: 0.5rem;
  content: url("data:image/svg+xml,%3Csvg width='100%' height='100%' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.6066 12H1.3934' stroke='%23202842' stroke-width='1.875' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 1.39343V22.6066' stroke='%23202842' stroke-width='1.875' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.card details[open] summary {
  font-weight: 700;
}
.card details[open] summary::before {
  transform: rotate(45deg);
  content: url("data:image/svg+xml,%3Csvg width='100%' height='100%' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.6066 12H1.3934' stroke='%23202842' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 1.39343V22.6066' stroke='%23202842' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/* @counter-style corona-warning {
  system: cyclic;
  symbols: 🧼 🩺 👩🏻‍⚕️ 🚑;
  suffix: " ";
}
@counter-style corona-info {
  system: cyclic;
  symbols: 🧬;
  suffix: " ";
}
@counter-style corona-alert {
  system: fixed;
  symbols: 💉 🩸 😷 🦠 🧫;
  suffix: " ";
} */



/* progressbar */

.animated-progress {
	width: 300px;
	height: 30px;
	border-radius: 5px;
	margin: 20px 10px;
	border: 1px solid rgb(189, 113, 113);
	overflow: hidden;
	position: relative;
  }

  .animated-progress span {
	height: 100%;
	display: block;
	width: 0;
	color: rgb(255, 251, 251);
	line-height: 30px;
	position: absolute;
	text-align: end;
	padding-right: 5px;
  }
  .progress-purple span {
	background-color: indigo;
  }
  .progress-green span {
	background-color: green;
  }


  .container2 {
	background-color: rgb(192, 192, 192);
	width: 80%;
		border-radius: 15px;
}

.skill {
	background-color: rgb(116, 194, 92);
	color: white;
	padding: 1%;
	text-align: right;
	font-size: 20px;
		border-radius: 15px;
}





/* tabs for class */
.warpper{
	display:flex;
	flex-direction: column;
	align-items: flex-start;
  }
  .tab{
	cursor: pointer;
	padding:10px 20px;
	margin:0px 2px;
	background:#4F3383;
	display:inline-block;
	color:#fff;
	border-radius:3px 3px 0px 0px;
	box-shadow: 0 0.5rem 0.8rem #00000080;
  }
  .panels{
	background:#fffffff6;
	box-shadow: 0 2rem 2rem #00000080;
	/* min-height:200px; */
	width:100%;
	/* max-width:500px; */
	border-radius:3px;
	overflow:hidden;
	padding:20px;
  }
  .panels .panel{
	display:none;
	animation: fadein .8s;
  }
  @keyframes fadein {
	  from {
		  opacity:0;
	  }
	  to {
		  opacity:1;
	  }
  }
  .panel-title{
	font-size:1.5em;
	font-weight:bold
  }
  .radio{
	display:none;
  }
  #one:checked ~ .panels #one-panel,
  #two:checked ~ .panels #two-panel,
  #three:checked ~ .panels #three-panel,
  #four:checked ~ .panels #four-panel,
  #five:checked ~ .panels #five-panel,
  #six:checked ~ .panels #six-panel{
	display:block
  }
  #one:checked ~ .tabs #one-tab,
  #two:checked ~ .tabs #two-tab,
  #three:checked ~ .tabs #three-tab,
  #four:checked ~ .tabs #four-tab,
  #five:checked ~ .tabs #five-tab,
  #six:checked ~ .tabs #six-tab{
	background:#fffffff6;
	color:#4F3383;
	border-top: 3px solid #4F3383;
  }

/* tabs */
@import url(https://fonts.googleapis.com/css?family=Gabriela);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

div, h1, h2, h3, p, pre {
	margin: 0;
	padding: 0;
	color: #111111;
}

/* main styles */
/**/
.pcss3t {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 0;
	text-align: left;
}
.pcss3t > input {
	position: absolute;
	left: -9999px;
}
.pcss3t > label {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	cursor: pointer;
	transition: all 0.1s;
	-o-transition: all 0.1s;
	-ms-transition: all 0.1s;
	-moz-transition: all 0.1s;
	-webkit-transition: all 0.1s;
}
.pcss3t > label i {
	display: block;
	float: left;
	margin: 16px 8px 0 -2px;
	padding: 0;
	border: 0;
	outline: none;
	font-family: FontAwesome;
	font-style: normal;
	font-size: 17px;
}
.pcss3t > input:checked + label {
	cursor: default;
}
.pcss3t > ul {
	list-style: none;
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 13px;
}
.pcss3t > ul > li {
	position: absolute;
	width: 100%;
	overflow: auto;
	padding: 30px 40px 40px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	opacity: 0;
	transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.pcss3t > .tab-content-first:checked ~ ul .tab-content-first,
.pcss3t > .tab-content-2:checked ~ ul .tab-content-2,
.pcss3t > .tab-content-3:checked ~ ul .tab-content-3,
.pcss3t > .tab-content-4:checked ~ ul .tab-content-4,
.pcss3t > .tab-content-5:checked ~ ul .tab-content-5,
.pcss3t > .tab-content-6:checked ~ ul .tab-content-6,
.pcss3t > .tab-content-7:checked ~ ul .tab-content-7,
.pcss3t > .tab-content-8:checked ~ ul .tab-content-8,
.pcss3t > .tab-content-9:checked ~ ul .tab-content-9,
.pcss3t > .tab-content-last:checked ~ ul .tab-content-last {
	z-index: 1;
	top: 0;
	left: 0;
	opacity: 1;
	-webkit-transform: scale(1,1);
	-webkit-transform: rotate(0deg);
}


/*----------------------------------------------------------------------------*/
/*                                 EXTENSIONS                                 */
/*----------------------------------------------------------------------------*/

/**/
/* auto height */
/**/
.pcss3t-height-auto > ul {
	height: auto !important;
}
.pcss3t-height-auto > ul > li {
	position: static;
	display: none;
	height: auto !important;
}
.pcss3t-height-auto > .tab-content-first:checked ~ ul .tab-content-first,
.pcss3t-height-auto > .tab-content-2:checked ~ ul .tab-content-2,
.pcss3t-height-auto > .tab-content-3:checked ~ ul .tab-content-3,
.pcss3t-height-auto > .tab-content-4:checked ~ ul .tab-content-4,
.pcss3t-height-auto > .tab-content-5:checked ~ ul .tab-content-5,
.pcss3t-height-auto > .tab-content-last:checked ~ ul .tab-content-last {
	display: block;
}


/**/
/* grid */
/**/
.pcss3t .grid-row {
	margin-top: 20px;
}
.pcss3t .grid-row:after {
	content: '';
	display: table;
	clear: both;
}
.pcss3t .grid-row:first-child {
	margin-top: 0;
}
.pcss3t .grid-col {
	display: block;
	float: left;
	margin-left: 2%;
}
.pcss3t .grid-col:first-child {
	margin-left: 0;
}
.pcss3t .grid-col .inner {
	padding: 10px 0;
	border-radius: 5px;
	background: #f2f2f2;
	text-align: center;
}
.pcss3t .grid-col-1 {
	width: 15%;
}
.pcss3t .grid-col-2 {
	width: 32%;
}
.pcss3t .grid-col-3 {
	width: 49%;
}
.pcss3t .grid-col-4 {
	width: 66%;
}
.pcss3t .grid-col-5 {
	width: 83%;
}
.pcss3t .grid-col-offset-1 {
	margin-left: 19%;
}
.pcss3t .grid-col-offset-1:first-child  {
	margin-left: 17%;
}
.pcss3t .grid-col-offset-2 {
	margin-left: 36%;
}
.pcss3t .grid-col-offset-2:first-child {
	margin-left: 34%;
}
.pcss3t .grid-col-offset-3 {
	margin-left: 53%;
}
.pcss3t .grid-col-offset-3:first-child {
	margin-left: 51%;
}
.pcss3t .grid-col-offset-4 {
	margin-left: 70%;
}
.pcss3t .grid-col-offset-4:first-child {
	margin-left: 68%;
}
.pcss3t .grid-col-offset-5:first-child {
	margin-left: 85%;
}


/**/
/* typography */
/**/
.pcss3t .typography {
	color: #666;
}
.pcss3t .typography h1,
.pcss3t .typography h2,
.pcss3t .typography h3,
.pcss3t .typography h4,
.pcss3t .typography h5,
.pcss3t .typography h6 {
	margin: 40px 0 0 0;
	padding: 0;
    font-family: "Arimo", serif;
    font-optical-sizing: auto;
	text-align: left;
	color: #333;
}
.pcss3t .typography h1 {
	font-size: 40px;
	line-height: 60px;
	text-shadow: 3px 3px rgba(0,0,0,0.1);
}
.pcss3t .typography h2 {
	font-size: 32px;
	line-height: 48px;
	text-shadow: 2px 2px rgba(0,0,0,0.1);
}
.pcss3t .typography h3 {
	font-size: 26px;
	line-height: 38px;
	text-shadow: 1px 1px rgba(0,0,0,0.1);
}
.pcss3t .typography h4 {
	font-size: 20px;
	line-height: 30px;
}
.pcss3t .typography h5 {
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
}
.pcss3t .typography h6 {
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.pcss3t .typography p {
	margin: 20px 0 0 0;
	padding: 0;
	line-height: 20px;
	text-align: left;
}
.pcss3t .typography ul,
.pcss3t .typography ol {
	list-style: none;
	margin: 20px 0 0 0;
	padding: 0;
}
.pcss3t .typography li {
	position: relative;
	margin-top: 5px;
	padding-left: 20px;
}
.pcss3t .typography li ul,
.pcss3t .typography li ol {
	margin-top: 5px;
}
.pcss3t .typography ul li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 4px;
	background: #404040;
}
.pcss3t .typography ol {
	counter-reset: list1;
}
.pcss3t .typography ol > li:before {
	counter-increment:list1;
	content: counter(list1)'.';
	position: absolute;
	top: 0;
	left: 0;
}
.pcss3t .typography a {
	text-decoration: underline;
	color: #1889e6;
}
.pcss3t .typography a:hover {
	text-decoration: none;
}
.pcss3t .typography .pic {
	padding: 4px;
	border: 1px dotted #ccc;
}
.pcss3t .typography .pic img {
	display: block;
}
.pcss3t .typography .pic-right {
	float: right;
	margin: 0 0 10px 20px;
}
.pcss3t .typography .link {
	text-decoration: underline;
	color: #1889e6;
	cursor: pointer;
}
.pcss3t .typography .link:hover {
	text-decoration: none;
}
.pcss3t .typography h1:first-child,
.pcss3t .typography h2:first-child,
.pcss3t .typography h3:first-child,
.pcss3t .typography h4:first-child,
.pcss3t .typography h5:first-child,
.pcss3t .typography h6:first-child,
.pcss3t .typography p:first-child {
	margin-top: 0;
}
.pcss3t .typography .text-center {
	text-align: center;
}
.pcss3t .typography .text-right {
	text-align: right;
}


/**/
/* steps */
/**/
.pcss3t-steps > label {
	cursor: default;
}


/**/
/* animation effects */
/**/
.pcss3t-effect-scale > ul > li {
	-webkit-transform: scale(0.1,0.1);
}
.pcss3t-effect-rotate  > ul > li {
	-webkit-transform: rotate(180deg);
}
.pcss3t-effect-slide-top > ul > li {
	top: -40px;
}
.pcss3t-effect-slide-right > ul > li {
	left: 80px;
}
.pcss3t-effect-slide-bottom > ul > li {
	top: 40px;
}
.pcss3t-effect-slide-left > ul > li {
	left: -80px;
}



/*----------------------------------------------------------------------------*/
/*                                   LAYOUTS                                  */
/*----------------------------------------------------------------------------*/

/**/
/* top right */
/**/
.pcss3t-layout-top-right {
	text-align: right;
}


/**/
/* top center */
/**/
.pcss3t-layout-top-center {
	text-align: center;
}


/**/
/* top combi */
/**/
.pcss3t > .right {
	float: right;
}



/*----------------------------------------------------------------------------*/
/*                                    ICONS                                   */
/*----------------------------------------------------------------------------*/

/**/
/* icons positions */
/**/
.pcss3t-icons-top > label {
	text-align: center;
}
.pcss3t-icons-top > label i {
	float: none;
	margin: 0 auto -10px;
	padding-top: 17px;
	font-size: 23px;
	line-height: 23px;
	text-align: center;
}
.pcss3t-icons-right > label i {
	float: right;
	margin: 0 -2px 0 8px;
}
.pcss3t-icons-bottom > label {
	text-align: center;
}
.pcss3t-icons-bottom > label i {
	float: none;
	margin: -10px auto 0;
	padding-bottom: 17px;
	font-size: 23px;
	line-height: 23px;
	text-align: center;
}
.pcss3t-icons-only > label i {
	float: none;
	margin: 0 auto;
	font-size: 23px;
}


/**/
/* font awesome */
/**/
@font-face
{
	font-family: 'FontAwesome';
	src: url('../fonts/fontawesome-webfont.eot?v=3.0.1');
	src: url('../fonts/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'),
	url('../fonts/fontawesome-webfont.woff?v=3.0.1') format('woff'),
	url('../fonts/fontawesome-webfont.ttf?v=3.0.1') format('truetype');
	font-weight: normal;
	font-style: normal;
}
.icon-glass:before {content: '\f000';}
.icon-music:before {content: '\f001';}
.icon-search:before {content: '\f002';}
.icon-envelope:before {content: '\f003';}
.icon-heart:before {content: '\f004';}
.icon-star:before {content: '\f005';}
.icon-star-empty:before {content: '\f006';}
.icon-user:before {content: '\f007';}
.icon-film:before {content: '\f008';}
.icon-th-large:before {content: '\f009';}
.icon-th:before {content: '\f00a';}
.icon-th-list:before {content: '\f00b';}
.icon-ok:before {content: '\f00c';}
.icon-remove:before {content: '\f00d';}
.icon-zoom-in:before {content: '\f00e';}
.icon-zoom-out:before {content: '\f010';}
.icon-off:before {content: '\f011';}
.icon-signal:before {content: '\f012';}
.icon-cog:before {content: '\f013';}
.icon-trash:before {content: '\f014';}
.icon-home:before {content: '\f015';}
.icon-file:before {content: '\f016';}
.icon-time:before {content: '\f017';}
.icon-road:before {content: '\f018';}
.icon-download-alt:before {content: '\f019';}
.icon-download:before {content: '\f01a';}
.icon-upload:before {content: '\f01b';}
.icon-inbox:before {content: '\f01c';}
.icon-play-circle:before {content: '\f01d';}
.icon-repeat:before {content: '\f01e';}
.icon-refresh:before {content: '\f021';}
.icon-list-alt:before {content: '\f022';}
.icon-lock:before {content: '\f023';}
.icon-flag:before {content: '\f024';}
.icon-headphones:before {content: '\f025';}
.icon-volume-off:before {content: '\f026';}
.icon-volume-down:before {content: '\f027';}
.icon-volume-up:before {content: '\f028';}
.icon-qrcode:before {content: '\f029';}
.icon-barcode:before {content: '\f02a';}
.icon-tag:before {content: '\f02b';}
.icon-tags:before {content: '\f02c';}
.icon-book:before {content: '\f02d';}
.icon-bookmark:before {content: '\f02e';}
.icon-print:before {content: '\f02f';}
.icon-camera:before {content: '\f030';}
.icon-font:before {content: '\f031';}
.icon-bold:before {content: '\f032';}
.icon-italic:before {content: '\f033';}
.icon-text-height:before {content: '\f034';}
.icon-text-width:before {content: '\f035';}
.icon-align-left:before {content: '\f036';}
.icon-align-center:before {content: '\f037';}
.icon-align-right:before {content: '\f038';}
.icon-align-justify:before {content: '\f039';}
.icon-list:before {content: '\f03a';}
.icon-indent-left:before {content: '\f03b';}
.icon-indent-right:before {content: '\f03c';}
.icon-facetime-video:before  {content: '\f03d';}
.icon-picture:before {content: '\f03e';}
.icon-pencil:before {content: '\f040';}
.icon-map-marker:before {content: '\f041';}
.icon-adjust:before {content: '\f042';}
.icon-tint:before {content: '\f043';}
.icon-edit:before {content: '\f044';}
.icon-share:before {content: '\f045';}
.icon-check:before {content: '\f046';}
.icon-move:before {content: '\f047';}
.icon-step-backward:before {content: '\f048';}
.icon-fast-backward:before {content: '\f049';}
.icon-backward:before {content: '\f04a'; position: relative;	left: -2px;}
.icon-play:before {content: '\f04b'; position: relative; left: 1px;}
.icon-pause:before {content: '\f04c';}
.icon-stop:before {content: '\f04d';}
.icon-forward:before {content: '\f04e'; position: relative;	left: 2px;}
.icon-fast-forward:before {content: '\f050';}
.icon-step-forward:before {content: '\f051';}
.icon-eject:before {content: '\f052';}
.icon-chevron-left:before {content: '\f053';}
.icon-chevron-right:before {content: '\f054';}
.icon-plus-sign:before {content: '\f055';}
.icon-minus-sign:before {content: '\f056';}
.icon-remove-sign:before {content: '\f057';}
.icon-ok-sign:before {content: '\f058';}
.icon-question-sign:before {content: '\f059';}
.icon-info-sign:before {content: '\f05a';}
.icon-screenshot:before {content: '\f05b';}
.icon-remove-circle:before {content: '\f05c';}
.icon-ok-circle:before {content: '\f05d';}
.icon-ban-circle:before {content: '\f05e';}
.icon-arrow-left:before {content: '\f060';}
.icon-arrow-right:before {content: '\f061';}
.icon-arrow-up:before {content: '\f062';}
.icon-arrow-down:before {content: '\f063';}
.icon-share-alt:before {content: '\f064';}
.icon-resize-full:before {content: '\f065';}
.icon-resize-small:before {content: '\f066';}
.icon-plus:before {content: '\f067';}
.icon-minus:before {content: '\f068';}
.icon-asterisk:before {content: '\f069';}
.icon-exclamation-sign:before {content: '\f06a';}
.icon-gift:before {content: '\f06b';}
.icon-leaf:before {content: '\f06c';}
.icon-fire:before {content: '\f06d';}
.icon-eye-open:before {content: '\f06e';}
.icon-eye-close:before {content: '\f070';}
.icon-warning-sign:before {content: '\f071';}
.icon-plane:before {content: '\f072';}
.icon-calendar:before {content: '\f073';}
.icon-random:before {content: '\f074';}
.icon-comment:before {content: '\f075';}
.icon-magnet:before {content: '\f076';}
.icon-chevron-up:before {content: '\f077';}
.icon-chevron-down:before {content: '\f078';}
.icon-retweet:before {content: '\f079';}
.icon-shopping-cart:before {content: '\f07a';}
.icon-folder-close:before {content: '\f07b';}
.icon-folder-open:before {content: '\f07c';}
.icon-resize-vertical:before {content: '\f07d';}
.icon-resize-horizontal:before {content: '\f07e';}
.icon-bar-chart:before {content: '\f080';}
.icon-twitter-sign:before {content: '\f081';}
.icon-facebook-sign:before {content: '\f082';}
.icon-camera-retro:before {content: '\f083';}
.icon-key:before {content: '\f084';}
.icon-cogs:before {content: '\f085';}
.icon-comments:before {content: '\f086';}
.icon-thumbs-up:before {content: '\f087';}
.icon-thumbs-down:before {content: '\f088';}
.icon-star-half:before {content: '\f089';}
.icon-heart-empty:before {content: '\f08a';}
.icon-signout:before {content: '\f08b';}
.icon-linkedin-sign:before {content: '\f08c';}
.icon-pushpin:before {content: '\f08d';}
.icon-external-link:before {content: '\f08e';}
.icon-signin:before {content: '\f090';}
.icon-trophy:before {content: '\f091';}
.icon-github-sign:before {content: '\f092';}
.icon-upload-alt:before {content: '\f093';}
.icon-lemon:before {content: '\f094';}
.icon-phone:before {content: '\f095';}
.icon-check-empty:before {content: '\f096';}
.icon-bookmark-empty:before {content: '\f097';}
.icon-phone-sign:before {content: '\f098';}
.icon-twitter:before {content: '\f099';}
.icon-facebook:before {content: '\f09a';}
.icon-github:before {content: '\f09b';}
.icon-unlock:before {content: '\f09c';}
.icon-credit-card:before {content: '\f09d';}
.icon-rss:before {content: '\f09e';}
.icon-hdd:before {content: '\f0a0';}
.icon-bullhorn:before {content: '\f0a1';}
.icon-bell:before {content: '\f0a2';}
.icon-certificate:before {content: '\f0a3';}
.icon-hand-right:before {content: '\f0a4';}
.icon-hand-left:before {content: '\f0a5';}
.icon-hand-up:before {content: '\f0a6';}
.icon-hand-down:before {content: '\f0a7';}
.icon-circle-arrow-left:before {content: '\f0a8';}
.icon-circle-arrow-right:before {content: '\f0a9';}
.icon-circle-arrow-up:before {content: '\f0aa';}
.icon-circle-arrow-down:before {content: '\f0ab';}
.icon-globe:before {content: '\f0ac';}
.icon-wrench:before {content: '\f0ad';}
.icon-tasks:before {content: '\f0ae';}
.icon-filter:before {content: '\f0b0';}
.icon-briefcase:before {content: '\f0b1';}
.icon-fullscreen:before {content: '\f0b2';}
.icon-group:before {content: '\f0c0';}
.icon-link:before {content: '\f0c1';}
.icon-cloud:before {content: '\f0c2';}
.icon-beaker:before {content: '\f0c3';}
.icon-cut:before {content: '\f0c4';}
.icon-copy:before {content: '\f0c5';}
.icon-paper-clip:before {content: '\f0c6';}
.icon-save:before {content: '\f0c7';}
.icon-sign-blank:before {content: '\f0c8';}
.icon-reorder:before {content: '\f0c9';}
.icon-list-ul:before {content: '\f0ca';}
.icon-list-ol:before {content: '\f0cb';}
.icon-strikethrough:before {content: '\f0cc';}
.icon-underline:before {content: '\f0cd';}
.icon-table:before {content: '\f0ce';}
.icon-magic:before {content: '\f0d0';}
.icon-truck:before {content: '\f0d1';}
.icon-pinterest:before {content: '\f0d2';}
.icon-pinterest-sign:before {content: '\f0d3';}
.icon-google-plus-sign:before {content: '\f0d4';}
.icon-google-plus:before {content: '\f0d5';}
.icon-money:before {content: '\f0d6';}
.icon-caret-down:before {content: '\f0d7';}
.icon-caret-up:before {content: '\f0d8';}
.icon-caret-left:before {content: '\f0d9';}
.icon-caret-right:before {content: '\f0da';}
.icon-columns:before {content: '\f0db';}
.icon-sort:before {content: '\f0dc';}
.icon-sort-down:before {content: '\f0dd';}
.icon-sort-up:before {content: '\f0de';}
.icon-envelope-alt:before {content: '\f0e0';}
.icon-linkedin:before {content: '\f0e1';}
.icon-undo:before {content: '\f0e2';}
.icon-legal:before {content: '\f0e3';}
.icon-dashboard:before {content: '\f0e4';}
.icon-comment-alt:before {content: '\f0e5';}
.icon-comments-alt:before {content: '\f0e6';}
.icon-bolt:before {content: '\f0e7';}
.icon-sitemap:before {content: '\f0e8';}
.icon-umbrella:before {content: '\f0e9';}
.icon-paste:before {content: '\f0ea';}
.icon-lightbulb:before {content: '\f0eb';}
.icon-exchange:before {content: '\f0ec';}
.icon-cloud-download:before {content: '\f0ed';}
.icon-cloud-upload:before {content: '\f0ee';}
.icon-user-md:before {content: '\f0f0';}
.icon-stethoscope:before {content: '\f0f1';}
.icon-suitcase:before {content: '\f0f2';}
.icon-bell-alt:before {content: '\f0f3';}
.icon-coffee:before {content: '\f0f4';}
.icon-food:before {content: '\f0f5';}
.icon-file-alt:before {content: '\f0f6';}
.icon-building:before {content: '\f0f7';}
.icon-hospital:before {content: '\f0f8';}
.icon-ambulance:before {content: '\f0f9';}
.icon-medkit:before {content: '\f0fa';}
.icon-fighter-jet:before {content: '\f0fb';}
.icon-beer:before {content: '\f0fc';}
.icon-h-sign:before {content: '\f0fd';}
.icon-plus-sign-alt:before {content: '\f0fe';}
.icon-double-angle-left:before {content: '\f100';}
.icon-double-angle-right:before {content: '\f101';}
.icon-double-angle-up:before {content: '\f102';}
.icon-double-angle-down:before {content: '\f103';}
.icon-angle-left:before {content: '\f104';}
.icon-angle-right:before {content: '\f105';}
.icon-angle-up:before {content: '\f106';}
.icon-angle-down:before {content: '\f107';}
.icon-desktop:before {content: '\f108';}
.icon-laptop:before {content: '\f109';}
.icon-tablet:before {content: '\f10a';}
.icon-mobile-phone:before {content: '\f10b';}
.icon-circle-blank:before {content: '\f10c';}
.icon-quote-left:before {content: '\f10d';}
.icon-quote-right:before {content: '\f10e';}
.icon-spinner:before {content: '\f110';}
.icon-circle:before {content: '\f111';}
.icon-reply:before {content: '\f112';}
.icon-github-alt:before {content: '\f113';}
.icon-folder-close-alt:before {content: '\f114';}
.icon-folder-open-alt:before {content: '\f115';}



/*----------------------------------------------------------------------------*/
/*                               RESPONSIVENESS                               */
/*----------------------------------------------------------------------------*/

/**/
/* pad */
/**/
@media screen and (max-width: 980px) {

}


/**/
/* phone */
/**/
@media screen and (max-width: 767px) {
	.pcss3t > label {
		display: block;
	}
	.pcss3t > .right {
		float: none;
	}
}



/*----------------------------------------------------------------------------*/
/*                                   THEMES                                   */
/*----------------------------------------------------------------------------*/

/**/
/* default */
/**/
.pcss3t > label {
	padding: 0 20px;
	background: #e5e5e5;
	font-size: 13px;
	line-height: 49px;
}
.pcss3t > label:hover {
	background: #f2f2f2;
}
.pcss3t > input:checked + label {
	background: #fff;
}
.pcss3t > ul {
	background: #fff;
	text-align: left;
}
.pcss3t-steps > label:hover {
	background: #e5e5e5;
}


/**/
/* theme 1 */
/**/
.pcss3t-theme-1 > label {
	margin: 0 5px 5px 0;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 2px rgba(0,0,0,0.2);
	color: #808080;
	opacity: 0.8;
}
.pcss3t-theme-1 > label:hover {
	background: #fff;
	opacity: 1;
}
.pcss3t-theme-1 > input:checked + label {
	margin-bottom: 0;
	padding-bottom: 5px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	color: #2b82d9;
	opacity: 1;
}
.pcss3t-theme-1 > ul {
	border-radius: 5px;
	box-shadow: 0 3px rgba(0,0,0,0.2);
}
.pcss3t-theme-1 > .tab-content-first:checked ~ ul {
	border-top-left-radius: 0;
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-1 > label {
		margin-right: 0;
	}
	.pcss3t-theme-1 > input:checked + label {
		margin-bottom: 5px;
		padding-bottom: 0;
		border-radius: 5px;
	}
	.pcss3t-theme-1 > .tab-content-first:checked ~ ul {
		border-top-left-radius: 5px;
	}
}


/**/
/* theme 2 */
/**/
.pcss3t-theme-2 {
	padding: 5px;
	background: rgba(0,0,0,0.2);
}
.pcss3t-theme-2 > label {
	margin-right: 0;
	margin-bottom: 0;
	background: none;
	border-radius: 0;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	color: #fff;
	opacity: 1;
}
.pcss3t-theme-2 > label:hover {
	background: rgba(255,255,255,0.2);
}
.pcss3t-theme-2 > input:checked + label {
	padding-bottom: 0;
	background: #fff;
	background: linear-gradient(to bottom, #e5e5e5 0%, #ffffff 100%);
	background: -o-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -ms-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -moz-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -webkit-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5', endColorstr='#ffffff', GradientType=0);
	text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
	color: #822bd9;
}
.pcss3t-theme-2 > ul {
	margin: 0 -5px -5px;
	border-radius: 0;
	box-shadow: none;
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-2 > ul {
		margin-top: 5px;
	}
}


/**/
/* theme 3 */
/**/
.pcss3t-theme-3 {
	background: rgba(0,0,0,0.8);
}
.pcss3t-theme-3 > label {
	background: none;
	border-right: 1px dotted rgba(255,255,255,0.5);
	text-align: center;
	color: #fff;
	opacity: 0.6;
}
.pcss3t-theme-3 > label:hover {
	background: none;
	color: #d9d92b;
	opacity: 0.8;
}
.pcss3t-theme-3 > input:checked + label {
	background: #d9d92b;
	color: #000;
	opacity: 1;
}
.pcss3t-theme-3 > ul {
	border-top: 4px solid #d9d92b;
	border-bottom: 4px solid #d9d92b;
	border-radius: 0;
	box-shadow: none;
}


/**/
/* theme 4 */
/**/
.pcss3t-theme-4 > label {
	margin: 0 10px 10px 0;
	border-radius: 5px;
	background: #78c5fd;
	background: linear-gradient(to bottom, #78c5fd 0%, #2c8fdd 100%);
	background: -o-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -ms-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -moz-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -webkit-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#78c5fd', endColorstr='#2c8fdd', GradientType=0);
	box-shadow: inset 0 1px rgba(255,255,255,0.5), 0 1px rgba(0,0,0,0.5);
	line-height: 39px;
	text-shadow: 0 1px rgba(0,0,0,0.5);
	color: #fff;
}
.pcss3t-theme-4 > label:hover {
	background: #90cffc;
	background: linear-gradient(to bottom, #90cffc 0%, #439bde 100%);
	background: -o-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -ms-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -moz-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -webkit-linear-gradient(top, #90cffc 0%, #439bde 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#90cffc', endColorstr='#439bde', GradientType=0);
}
.pcss3t-theme-4 > input:checked + label {
	top: 1px;
	background: #5f9dc9;
	background: linear-gradient(to bottom, #5f9dc9 0%, #2270ab 100%);
	background: -o-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -ms-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -moz-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -webkit-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5f9dc9', endColorstr='#2270ab', GradientType=0);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), 0 1px rgba(255,255,255,0.5);
	text-shadow: none;
}
.pcss3t-theme-4 > ul {
	border-radius: 5px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-4 > label {
		margin-right: 0;
	}
}


/**/
/* theme 5 */
/**/
.pcss3t-theme-5 {
	padding: 15px;
	border-radius: 5px;
	background: #ad6395;
	background: linear-gradient(to right, #ad6395 0%, #a163ad 100%);
	background: -o-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -ms-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -moz-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -webkit-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5f9dc9', endColorstr='#a163ad', GradientType=1);
}
.pcss3t-theme-5 > label {
	margin-right: 10px;
	margin-bottom: 15px;
	background: none;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	opacity: 1;
}
.pcss3t-theme-5 > label:hover {
	background: rgba(255,255,255,0.15);
}
.pcss3t-theme-5 > input:checked + label {
	background: rgba(255,255,255,0.3);
	color: #000;
}
.pcss3t-theme-5 > input:checked + label:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: 10px;
	margin-left: -6px;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
}
.pcss3t-theme-5 > ul {
	margin: 0 -15px -15px;
	border-radius: 0 0 5px 5px;
	box-shadow: none;
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-5 > input:checked + label:after {
		display: none;
	}
}


/*----------------------------------------------------------------------------*/
/*                               CUSTOMIZATION                                */
/*----------------------------------------------------------------------------*/

/**/
/* height */
/**/
.pcss3t > ul,
.pcss3t > ul > li {
	height: 370px;
}


/* enroll */
.course-watch-enrolled-wrap ul {
    display: flex;
    align-items: center;
}

.course-watch-enrolled-wrap ul li {
    width: 30px;
    height: 30px;
    margin-left: -9px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-watch-enrolled-wrap ul li:last-child {
    background-color: var(--orange-color);
    color: var(--white-color);
    font-size: 10px;
    border: 2px solid var(--white-color);
    text-align: center;
}

.course-watch-enrolled-wrap ul li img {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    border: 2px solid var(--white-color);
}

/* course-watch-inner-title-wrap */
.course-watch-inner-title-right-part button {
    border: 1px solid var(--gray-color);
}

/*Overview tab Start*/
.what-you-will-learn {
    padding-bottom: 30px;
    padding-top: 30px;
}

.what-you-learn-list-wrap ul {
    padding-right: 25px;
}

.what-you-learn-list-wrap ul li {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.check-wrap {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--color-light-green);
    color: var(--color-green);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.what-you-learn-list-wrap ul li p {
    margin-left: 10px;
	text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Overview tab End*/

/* ----------Course Single Review Tab Start---------- */
.review-tab-count-box {
    background: var(--white-color);
    box-shadow: 0 6px 21px rgba(21, 3, 89, 0.08);
    padding: 32px;
}

.review-tab-count-box .rating-list {
    justify-content: center;
    margin: 5px;
}

/* Review Progress Bar */
.barras {
    width: 100%;
    margin: 0 auto 6px;
}

.barra {
    width: 400px;
    height: 7px;
    background: #EEEBEB;
    margin: 10px;
    border-radius: 44px;
}

.barra-nivel {
    height: 7px;
    background: #F27827;
    width: 1px;
    -webkit-transition: width 1s ease;
    -moz-transition: width 1s ease;
    transition: width 1s ease;
    border-radius: 44px;
}

.valor-nivel {
    line-height: 30px;
    color: var(--white-color);
    margin-left: 10px;
    font-size: 12px;
}

/* -----Customer Review Item Start---- */
.review-tab-top-part {
    margin-bottom: 45px;
}

.customer-review-item {
    padding: 50px 0 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.customer-review-part .customer-review-item:last-child {
    border-top: none;
}

.customer-review-item-img-wrap {
    height: 76px;
    width: 76px;
}

.customer-review-item-img-wrap img {
    height: 76px;
    width: 100%;
}

.customer-review-item .rating-list {
    margin-bottom: 10px;
    margin-top: 5px;
}

.customer-review-load-more-btn .load-more-btn {
    margin-left: 90px;
}

/* -----Customer Review Item End----- */
.star-full .iconify {
    color: var(--color-yellow);
}

/* -----Discussion Item Start----- */
.before-login-purchase-course-details .discussion-top-block,
.before-login-purchase-course-details .discussion-reply-block {
    display: none !important;
}

.discussion-top-block {
    margin-bottom: 30px;
}

.discussion-top-block {
    border: 1px solid #E5E8EC;
    padding: 25px;
}

.discussion-left-img-wrap {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 26px;
}

.discussion-left-img-wrap img {
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
}

.discussion-righ-wrap .editor-wrap {
    display: block;
}

.discussion-righ-wrap.show-editor .editor-wrap {
    display: block;
}

.discussion-righ-wrap.show-editor .start-conversation-btn-wrap button {
    background-color: var(--gray-color);
    color: var(--white-color);
}

.course-info-box-wishlist-btns {
    justify-content: center;
}

/* Editor css */
.editor-wrap textarea {
    width: 100%;
}

.editor-wrap .tox .tox-menubar,
.editor-wrap .tox .tox-statusbar {
    display: none;
}

.tox-notifications-container {
    display: none;
}

.editor-wrap .tox .tox-editor-container {
    flex-direction: column-reverse;
}

.editor-wrap .tox-tinymce {
    border: 1px solid #E5E8EC;
    height: 200px !important;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.tox .tox-menubar+.tox-toolbar,
.tox .tox-menubar+.tox-toolbar-overlord {
    border-top: 1px solid #E5E8EC !important;
}

.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary {
    background-color: #fcfcfc !important;
}

.tox .tox-toolbar__group {
    background: var(--white-color);
    border: 1px solid transparent;
    border-radius: 0;
}

.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
    border: 1px solid #E5E8EC !important;
    border-radius: 5px;
    height: 36px;
}

.tox .tox-toolbar__group {
    margin: 0 10px 0 0 !important;
    padding: 0 !important;
}

.tox-tbtn.tox-split-button__chevron {
    display: none !important;
}

.tox .tox-tbtn {
    color: #222f3e;
    height: 36px !important;
    margin: -1px !important;
    outline: 0;
    padding: 0;
    width: 60px !important;
    border-right: 0 !important;
    border: 1px solid #E5E8EC;
}

.tox-toolbar__group .tox-tbtn:not(:last-child) {
    border-right: 1px solid #E5E8EC !important;
    border-radius: 0 !important;
}

.tox-toolbar__group .tox-split-button:not(:last-child) {
    border-right: 1px solid #E5E8EC !important;
    border-radius: 0 !important;
}

.tox .tox-toolbar__primary {
    background-image: none !important;
    padding: 13px 15px !important;
}

.tox .tox-split-button {
    margin: -1px !important;
}

.tox:not(.tox-tinymce-inline) .tox-editor-header {
    padding: 0;
}

.tox .tox-toolbar__group {
    border: 1px solid #E5E8EC;
    border-radius: 0;
    border-radius: 4px;
}

.start-conversation-btn-wrap {
    border: 1px solid #E5E8EC;
    background-color: #FCFCFC;
    height: 75px;
    display: flex;
    padding: 20px;
    align-items: center;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.start-conversation-btn-wrap button {
    background-color: #E7E7E7;
    height: 44px;
    padding: 7px 20px;
    border-radius: 5px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
}

.start-conversation-btn-wrap button .iconify {
    margin-right: 15px;
    font-size: 26px;
}

/* Editor End */

/* Discussion Comment Block Start */
.single-comment-box {
    margin-bottom: 30px;
    border-bottom: 1px solid #E5E8EC;
    padding-bottom: 15px;
}

.discussion-comment-block .single-comment-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.discussion-comment-item {
    margin-bottom: 25px;
}

.discussion-inner-comment-item {
    margin-left: 45px;
}

.comment-content-part .comment-content-part-top {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 6px;
}

.extra-info-left button {
    margin-right: 20px;
}

.extra-info-right div {
    margin-left: 20px;
}

.extra-info-right div .iconify {
    margin-right: 5px;
}

.discussion-comment-block {
    border: 1px solid #E5E8EC;
    padding: 20px;
}

.discussion-comment-left-img-wrap {
    margin-right: 15px;
    height: 30px;
    width: 30px;
    overflow: hidden;
    border-radius: 50%;
}

.discussion-comment-left-img-wrap img {
    min-height: 30px;
    min-width: 30px;
    max-height: 30px;
    max-width: 30px;
}

.extra-info-right .iconify {
    font-size: 13px;
}

.teacher-badge {
    margin-left: 10px;
}

.discussion-reply-block {
    margin-left: 45px;
    border-top: 1px solid #E5E8EC;
    margin-top: 20px;
    padding-top: 20px;
}

.discussion-reply-block form .theme-btn {
    float: right;
    height: 34px;
}

.discussion-inner-comment-item-2 {
    margin-left: 90px;
}

/* Discussion Comment Block End */

/* -----Discussion Item End----- */

/* Quiz List Page Start */
.quiz-list-page-top {
    background-image: url('../img/quiz-img/quiz-list-top-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.quiz-list-page-top {
    background-image: url('../img/quiz-img/quiz-list-top-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 20px;
    border-radius: 10px;
}

.create-new-quiz-btn {
    background-color: var(--white-color);
    border-radius: 3px;
    padding: 11px 26px;
    display: inline-block;
    color: var(--theme-color);
}

.instructor-quiz-list-page table {
    border: 1px solid #EEEBEB;
}

.instructor-quiz-list-page table thead tr:first-child th {
    border-top-left-radius: 3px;
}

.instructor-quiz-list-page table thead tr:last-child th {
    border-top-right-radius: 3px;
}

.instructor-quiz-list-page table th {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    color: var(--heading-color);
    padding: 20px;
}

.instructor-quiz-list-page table td {
    color: var(--gray-color);
    padding: 20px;
    min-width: 100px;
    max-width: 100%;
}

.instructor-quiz-list-page table .theme-btn {
    padding: 7px 18px !important;
    font-weight: 500 !important;
    min-width: 111px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.quiz-status {
    background-color: #D0FFDB;
    padding: 5px 8px;
    text-align: center;
    color: #0A800E;
    border-radius: 5px;
}

.quiz-status.unpublish {
    background-color: #FFEEC8;
    color: #AB7501;
}

.add-question-btn {
    padding: 7px 18px !important;
    color: var(--white-color);
    border-radius: 3px;
    display: inline-block;
    font-size: 15px;
    min-width: 131px !important;
}

.instructor-quiz-list-page .dropdown button {
    color: var(--gray-color);
    font-size: 20px;
}

.instructor-quiz-list-page .dropdown-menu {
    min-width: 8rem;
    border-color: #F1F1F1;
}

.instructor-quiz-list-page .dropdown li a {
    color: var(--body-font-color);
    font-size: 15px;
    line-height: 22px;
}

.instructor-quiz-list-page .dropdown li a .iconify {
    font-size: 17px;
    margin-right: 10px;
}

/* Quiz List Page End */

/* after-purchase-course-watch-tab Start*/

/* Quiz */

/* Multiple choice quiz */
.course-watch-quiz-title-right-side p:not(:last-child) {
    border-right: 1px solid #B5B4BD;
    margin-right: 26px;
    padding-right: 26px;
}

.course-watch-quiz-top-bar {
    border-bottom: 1px solid #EEEBEB;
    margin-bottom: 40px;
    padding-bottom: 12px;
}

.quiz-answer-progress-bar {
    margin-top: 15px;
}

.quiz-answer-progress-bar .barra {
    width: 200px;
}

.quiz-answer-progress-bar .valor-nivel {
    display: none;
}

.quiz-answer-progress-bar .barra-nivel {
    background: green;
}


.multiple-quiz-answer-list-box {
    margin-bottom: 30px;
}

.multiple-quiz-block .form-check {
    margin-bottom: .75rem;
}

.multiple-quiz-block .form-check-label {
    color: var(--gray-color2);
}

.multiple-quiz-block .form-check .iconify {
    display: none;
    margin-left: 5px;
}

.multiple-quiz-block .form-check .form-check-label {
    display: inline-flex;
    align-items: center;
}

.multiple-quiz-block .given-answer-wrong .wrong-iconify {
    display: block !important;
}

.multiple-quiz-block .form-check.given-answer-right .correct-iconify {
    display: block;
}

.multiple-quiz-block .form-check.correct-answer-was .correct-iconify {
    display: block;
}

.given-answer-wrong .form-check-label {
    color: var(--orange-color);
}

.given-answer-right .form-check-label {
    color: var(--color-green);
}

.course-watch-quiz-btn-wrap {
    border-top: 1px solid #EEF1F4;
    padding-top: 20px;
}

/* Multiple choice quiz */

/* Quiz Leatherboard Area */
.student-own-leatherboard {
    background-color: var(--theme-color);
}

.merit-list-leatherboard {
    background-color: #FFBC2D;
}

.merit-list-leatherboard .leatherboard-item,
.student-own-leatherboard .leatherboard-item {
    background-color: var(--white-color);
}

.merit-list-crown-img-wrap {
    margin-left: 30px;
}

.all-leatherboard-wrap .course-watch-leatherboard-area:not(:last-child) {
    margin-bottom: 30px;
}

.course-watch-leatherboard-area {
    padding: 20px 18px;
    border: 1px solid #E5E8EC;
    border-radius: 6px;
}

.leatherboard-item {
    background-color: #F6F6F6;
    border-radius: 6px;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.leatherboard-left {
    width: 45%;
}

.leatherboard-right {
    width: 50%;
}

.student-img-wrap {
    margin: 0 16px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.student-img-wrap img {
    min-height: 40px;
    min-width: 40px;
}

.btn-violet-transparent {
    background-color: rgba(117,79,254,.27);
    border: 2px solid rgba(117,79,254,.27)!important;
    color: var(--theme-color)!important;
}

/* Quiz Leatherboard Area */

/* Quiz */

