@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
font-family: 'Raleway', sans-serif;
*/

/* -----------------------------------
[01] GENERAL
[02] LOADER
[03] FOOTER
[04] SCROLL UP
[05] HEADER
[06] TOP MENU
[07] SIDE BAR
[08] SIDE BAR MENU
[09] ZOOM MODAL
[10] INDEX
	[10.1] TITLE PAGE
	[10.2] COURSE
	[10.3] LECTURE CAROUSEL
	[10.4] LABS BLOCK
	[10.5] PRESENTATION
	[10.6] VIDEO BLOCK
	[10.7] BALLS
	[10.8] FAQ
	[10.9] TEACHER
[11] PAGES
-------------------------------------*/

:root {	
	--sss-main:#474747;
	--sss-main-rgb:27,27,27;
	--sss-red:#bb0b0b;
	--sss-rose:#C64747;
	
	--sss-light:#eceff1;
	
	--sss-gray:#607d8b;
	--sss-gray-rgba:96,125,139;	
}

/* -----------------------------------
	[01] GENERAL
-------------------------------------*/
* {
	outline: none!important;
	transition: all 0.3s ease-out 0s;
}
*, *::after, *::before {
	box-sizing: border-box;
}
html {
	position: relative;
	min-height: 100%;
	overflow-x: hidden;
}
body {
	-webkit-tap-highlight-color: transparent;	
	   -webkit-text-size-adjust: 100%;	
	width: 100%;	
	background:#fff;
	color: var(--sss-main);
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height:1.5;  
	overflow-x: hidden;
}
@media (min-width: 992px) {
	body {
		margin-bottom:80px;
	}
	footer {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 80px;
	}
}
p, h1, h2, h3, h4, h5, h6 {	
	font-weight: 500;
	margin: 20px 0;
	line-height: 1.5;
}
a, 
a:hover, 
a:active,
a:focus{
	color: var(--sss-main);
	text-decoration: underline;
}
a {
	  color: var(--sss-rose);
	text-decoration: none;
}
img {
	max-width: 100%;
}
section {
	padding: 100px 0;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.simple-list li{
	margin: 10px 10px 10px 0;
}
.simple-list ul li{
	margin-left: 60px;
	list-style: circle;
}
@media (min-width: 1200px) {
	.container-narrow {
		max-width: 1024px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;	  
	}
}
@media only screen and (max-width: 991px) {
    .hidden-md {
        display: none !important;
    }
}
@media only screen and (max-width: 767px) {
    .hidden-sm {
        display: none !important;
    }
}
.offwrap {
	width: 100%;
	left: 100%;
	transition: all 0.8s ease-out 0s;
	position: fixed;
	background: rgba(0,0,0,0.8);
	height: 100vh;
	top: 0;
	bottom: 0;
	z-index: 999;
}
body.nav-expanded .offwrap {
	left: 0%;
	transition: all 0.8s ease-out 0s;
}

/* -----------------------------------
	[02] LOADER
-------------------------------------*/
#pre-load {
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	margin-top: 0px;
	top: 0px;
	z-index: 9999;
}
.loader .loader-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border: 3px solid #ebebec;
	border-radius: 50%;
}
.loader .loader-container:before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border-top: 3px solid var(--sss-red);
	border-radius: 50%;
	animation: loaderspin 1.8s infinite ease-in-out;
}
.loader .loader-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	text-align: center;
}
.loader .loader-icon img {
	animation: loaderpulse alternate 900ms infinite;
	width: 40px;
}
@keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
	}
	@-webkit-keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes loaderpulse {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}

/* -----------------------------------
	[03] FOOTER
-------------------------------------*/
footer {
	background: var(--sss-main);
	color: #fff;
	padding: 50px 0;
	text-align: center;
}
footer a{
	color: rgba(255,255,255,0.6);
}
footer a:hover{
	color: rgba(255,255,255,1);
}
/* -----------------------------------
	[04] SCROLL UP
-------------------------------------*/
#scrollUp {
	text-align: center;
	bottom: 40px;
	cursor: pointer;
	display: none;
	position: fixed;
	right: 20px;
	z-index: 999;
	border-radius: 50px 50px 4px 4px;
}
#scrollUp i {
	height: 40px;
	font-size: 24px;
	width: 42px;
	border-radius: 0 10px 0 10px;
	color: #fff;
	line-height: 36px;
	transition: all 0.3s ease 0s;
	background: var(--sss-red);
	margin-left: 2px;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.04);
	display: block;
}
#scrollUp i:before {
	font-weight: 900;
}
#scrollUp i:hover {
	opacity: 0.8;
}
/* -----------------------------------
	[05] HEADER
-------------------------------------*/
.header {
  position: relative;
}
.top-line {
	background: var(--sss-main);
	color: #fff;
	padding: 10px 0;
}
.top-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-block a {
	color: rgba(255,255,255,0.7);
}
.top-block a:hover {
	color: rgba(255,255,255,1);
}
.top-block li {
	display: inline-block;
	margin-left: 20px;
}
.header .menu {
	position: relative;
	transition: all 0.3s ease 0s;
	z-index: 10;
}
.header .menu .menu-line {
	display: flex;
	width: 100%;
	position: relative;
	align-items: center;
	justify-content: space-between;
}
.header .menu .menu-line .menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .menu .menu-line .logo-box {
	font-size: 2.6em;
	font-weight: 900;	
}
.header .menu .menu-line .logo-box a{
	color: rgba(var(--sss-main-rgb),0.7);
	text-decoration: none;
}
.header .menu .menu-line .logo-box a:hover{
	color: rgba(var(--sss-main-rgb),1);
	text-decoration: none;
}
/* -----------------------------------
	[06] TOP MENU
-------------------------------------*/
.header .menu {
	padding: 20px 0;
}
.header .menu.sticky {
	padding: 0;
}
.header .menu .top-menu ul li {
	display: inline-block;
	position: relative;	
	margin: 0 30px;
	padding: 0;
}
.header .menu .top-menu ul li a {
	display: block;
	transition: all 0.3s ease;
	font-size: 1.1em;
	font-weight: 600;
	padding: 0;
	color: var(--sss-main);
	position: relative;
}
.header .menu .top-menu ul li.menu-item-has-children > a {
	padding-right: 20px;
}
.header .menu .top-menu ul li.menu-item-has-children > a:before {
	content: "\f107";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	position: absolute;
	left: auto;
	right: 0;
	top: 52%;
	text-align: center;
	z-index: 9999;
	font-size: 0.8em;
	display: block;
	cursor: pointer;
	transform: translateY(-50%);
}
.header .menu .top-menu ul li.menu-item-has-children:hover > a:before {
	content: "\f106";
	font-family: 'Line Awesome Free';
	font-weight: 900;	
}
.header .menu .top-menu ul li a:hover,
.header .menu .top-menu ul li.active a,
.header .menu .top-menu ul li.current-menu-item > a,
.header .menu .top-menu ul li.current-menu-item > a:before {
	color: var(--sss-rose);
	text-decoration: none;
}
.header .menu .top-menu ul li.menu-item-has-children li a {
	line-height: 1.5;
	height: auto;
	padding: 10px;
}
.top-menu ul ul {
	position: absolute;
	top: 100%;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	opacity: 0;
	visibility: hidden;	
	transform: translateY(0px);
	transform-origin: 0 0 0;
	width:auto;
}
.top-menu ul ul a {
	width: 260px;
}
.top-menu li:active > ul, 
.top-menu li:focus > ul, 
.top-menu li:hover > ul {		
	display:block;
	z-index: 17;
	opacity: 1;
	visibility:visible;		
	transform: translateY(20px);
}
.top-menu ul ul li{
	font-size: 0.8em;
	font-weight: 400;
	border-bottom: 1px dashed rgba(0,0,0,0.3);
	padding: 7px 5px;
}
.top-menu ul ul li:last-child{
	border-bottom: none;
}

.menu-sticky {
	background: #fff;
	margin: 0;
	width: 100%;
	top: 0;
	position: relative;
	padding: 0;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
@media screen and (min-width: 992px){
    .sticky{ 
		position: fixed !important;
		top: 0px;
		left: 0;
		right: 0;
		z-index: 999;
		animation: sticky-animation ease-out 500ms;		
    }
}
@-webkit-keyframes sticky-animation {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}
	@keyframes sticky-animation {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


/* -----------------------------------
	[07] SIDE BAR
-------------------------------------*/
.nav-expanded {
	position: relative;
}
.nav-expanded nav {
    right: 0 !important;
}
nav.sidebar-toggle {
	  position: fixed;
	background: rgba(0,0,0,0.9);
	display: block;
	width: 100%;
	max-width: 520px;	
	height: 100%;
	top: 0;
	right: -520px;	
	overflow: auto;
	font-size: 1em;
	z-index: 2000;
	transition: right 0.3s ease-in-out 0s;
}
.nav-expanded nav {
	right: 0;
}
body.nav-expanded {
	margin-left: 0;
	transition: right 0.4s ease-in-out 0s;
}
.header .expand-btn-inner ul {
	display: flex;
	align-items: center;
	list-style: none;
}
.header .expand-btn-inner ul li{
	font-size: 2.2em;
	margin-left: 20px;
}
.header .expand-btn-inner ul li a {
	color: var(--sss-main);
}
.header .expand-btn-inner ul li a:hover {
	color: var(--sss-red);
}
.header .expand-btn-inner ul .bars-btn {
	display: none;
}
.header .expand-btn-inner ul .bars-btn .nav-expander .bar {
	padding: 16px 13px;
	background: transparent;
	max-width: 50px;
	display: flex;
	flex-wrap: wrap;
	padding-right: 0;
	margin-right: -4px;
}
.header .expand-btn-inner ul .bars-btn .nav-expander .bar span {
	height: 5px;
	width: 5px;
	display: block;
	background: var(--sss-main);
	list-style: none;
	transition: all 0.3s ease;
	margin: 2px 3px;
}
.header .sidebar-toggle {
	background: #fff;
	padding: 30px;
	max-width: 400px;
	width: 100%;
	right: -420px;
	z-index: 999999;
	transition: all 0.3s ease;
	position: fixed;
	overflow-y: auto;
}
.header .sidebar-toggle .close-btn {
	overflow: visible;
	position: absolute;
	display: block;
	top: 10px;
	right: 10px;
	z-index: 99;
	cursor: pointer;
}
.header .sidebar-toggle .close-btn .nav-close .line {
	width: 40px;
	height: 40px;
	line-height: 40px;
}
.header .sidebar-toggle .close-btn .nav-close .line span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 1px !important;
	height: 25px !important;
	background: var(--sss-main);
	border: none !important;
}
.header .sidebar-toggle .close-btn .nav-close .line span.line2 {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.header .sidebar-toggle .close-btn:hover .nav-close .line span {
	background: var(--sss-red);
}
@media screen and (min-width: 992px) {
	.nav-menu .menu-item-has-children > span {
		display:none;
	}
}

@media only screen and (max-width: 991px) {	
    .header .expand-btn-inner ul .disk-btn {
		display: none;
    }	
    .header .expand-btn-inner ul .bars-btn {
        display: block;
    }	
}

/* -----------------------------------
	[08] SIDE BAR MENU
-------------------------------------*/
.header .mobile-navbar-menu .nav-menu {
	margin-top: 50px;
}
.header .mobile-navbar-menu .nav-menu li {
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header .mobile-navbar-menu .nav-menu li a {	
	display: block;
	color: var(--sss-main);
	padding: 10px 0;
	width: 100%;
}
.header .mobile-navbar-menu ul ul li,
.header .mobile-navbar-menu li:hover > ul > li {
	height: auto;
}
.header .mobile-navbar-menu .sub-menu {
	display: none;
	position: relative;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: left;
}
.header .mobile-navbar-menu span.submenu-button {
	position: absolute;
	z-index: 99;
	right: 0;
	top: 5px;
	display: block;
	height: 40px;
	width: 40px;
	cursor: pointer;
}
.header .mobile-navbar-menu span.submenu-button:before,
.header .mobile-navbar-menu span.submenu-button:after {
	position: absolute;
	top: 24px;
	right: 12px;
	width: 12px;	
	height: 1px;
	display: block;
	background: #333;
	z-index: 2;
	content: '';
}
.header .mobile-navbar-menu span.submenu-button:before {
	width: 1px;
	height: 12px;
	right: 17px;
	top: 18px;
}
.header .mobile-navbar-menu .hash-has-sub span.submenu-button {
	width: 100%;
	cursor: pointer;
	top: 0;
	height: 50px;
}
.header .mobile-navbar-menu .submenu-button.submenu-opened:before {
	display: none;
}
.header .mobile-navbar-menu .sub-menu li{
	margin: 0;
	font-size: 0.9em;
	padding-left: 30px;
	border: none;
}
@media screen and (min-width: 992px){
    .sidebar-toggle.mobile-navbar-menu{
        display: none;
    }
}
.sidebar-disk-inner {
	margin-top: 30px;
}
.sidebar-disk-inner li {
	padding: 10px 0;
}
.sidebar-disk-inner li li {
	padding: 10px 0 0 20px;
}
.disk-list li {
	display: flex;
	justify-content: space-between;
	padding: 0 30px 5px;
}
/* -----------------------------------
	[09] ZOOM MODAL
-------------------------------------*/

body.modal-open {
	padding: 0 !important;
}
body .modal.show .modal-dialog {
	width: 94%;
	max-width: 900px;
}
body .modal {
	z-index: 9999;
}
body .zoom-modal {
	padding: 0 !important;
	background: rgba(0,0,0,0.7);
}
body .zoom-modal .modal-content {
	position: initial;
	border: 0;
	background: unset;
	color: #fff;
}
body .zoom-modal .close {
	position: fixed;
	right: 50px;
	top: 50px;
	width: 50px;
	height: 50px;	
	background: #fff;
	border-radius: 100%;
	color: var(--sss-red);
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0;
	font-size: 2em;
	cursor: pointer;
}
body .zoom-modal .close:hover {
	opacity: 0.8 !important;
}

@media screen and (max-width: 991px) {
	.sidebar-zoom {
		display:none;
	}
}
/* -----------------------------------
	[10] INDEX
-------------------------------------*/
/* -----------------------------------
	[10.1] TITLE PAGE
-------------------------------------*/
.title-page {
	background: url(../images/bg/bg-title.jpg) no-repeat center center fixed;
	background-size: cover;
	padding: 30px 0;
	text-align: center;
	color: #fff;
}
.title-page.index {
	padding: 100px 0 100px;
}
.title-page a {
	color: rgba(255,255,255,0.6);	
}
.title-page a:hover {
	color: rgba(255,255,255,1);	
}
.title-page h1 {
	font-size: 2em;
	margin-top: 0;
}
.title-page h5 {
	margin-bottom: 0;
}
.title-list li{
	display: inline-block;
	margin: 10px 5px;

}
.title-list li::after {
	display: inline-block;
	content: "|";
	font-size: 0.8em;
	margin-left: 10px;
}
.title-heading {
	position: relative;
}
.title-heading h5 {
	font-size: 1em;
	line-height: 1;
	color: var(--sss-red);
	text-transform: uppercase;
	margin: 0;
	display: block;
}
.title-heading h2 {
	font-size: 2.6em;
	font-weight: 700;
	line-height: 1.3;
	color: var(--sss-main);
	margin: 0 0 30px;
}
.title-heading h2 span {
	color: var(--sss-red);
}

/* -----------------------------------
	[10.2] COURSE
-------------------------------------*/

.course-list {
	text-align: center;
}	
.course-list li {
	display: inline-block;
	list-style: none;
	width: 350px;
	margin: 10px 5px;
    padding: 25px 0;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);	
}
@media (max-width: 575px) {
	.course-list li {
		width: 90%;
	}	
}
.course-list li:hover{
    box-shadow: 0 0 25px rgba(0,0,0,0.22);
}
.course-list li figure {
    position: relative;
    overflow: hidden;
	margin: 0 25px;
}
.course-list li figure::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
	content: "";
	pointer-events: none;
    opacity: 0;	
	background: rgba(0,0,0,0.3);
    transform: scale(0.5);
    transition: all 0.5s ease-in-out 0s;    
    z-index: 2;
}
.course-list li:hover figure::before {
    opacity: 1;
    z-index: 1;
	background: rgba(0,0,0,0.8);
    transform: scale(1);
}	
.course-list li figure figcaption {
	padding: 15px 0 0;	
}
.course-list li figcaption > h4 {
    font-size: 1.1em;
    margin: 0;
}
.course-list li:hover figcaption > h4 {
    opacity: 0;
    visibility: hidden;
}
.course-list li .hover-content {	
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	transform: translateY(0);
	opacity: 0;
	visibility: hidden;
	padding: 0 10px;
	display: flex;
	align-items: center;
	z-index: 99;
}
.course-list li:hover .hover-content {
    opacity: 1;
    visibility: visible;
}
.course-list li .hover-content h4 {
	font-size: 1.5em;
	margin-top: 0;
	color: #eee;
}	
.course-list li .hover-content p {
    color: #fff;
	font-size: 0.9em;
    margin: 0;
}	

/* -----------------------------------
	[10.3] LECTURE CAROUSEL
-------------------------------------*/
/* LECTURE CAROUSEL */
.lecture-block {
	background: url(../images/bg/bg-index1.jpg) no-repeat top center;
	background-size: cover;
}
.lecture-carousel {
	position: relative;
}	
.lecture-block .lecture-item {
	box-shadow: 0 0 10px rgba(0,0,0,0.07);
	background: #fff;
	padding: 15px;
	border-radius: 5px;
	transition: 0.5s;
	text-align: center;
}
.lecture-block .lecture-item img {
	border-radius: 5px;
}
.lecture-block .lecture-item h3 {
	font-size: 1.25em;
	margin: 20px auto 10px;
}
.lecture-block .lecture-item a {
	color: var(--sss-main);
}
.lecture-block .lecture-item:hover {
	background: var(--sss-red);
	color: #fff;
}
.lecture-block .lecture-item:hover a {
	color: #fff;
}
.lecture-block .owl-stage-outer {
	padding: 10px;
	margin: -20px -10px;
}
.lecture-carousel .owl-nav {
	display: block;
}
.lecture-carousel .owl-nav .owl-next,
.lecture-carousel .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 30px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100%;
	background: var(--sss-red);
	text-align: center;
	color: #fff;
	transition: all 0.5s;
	transition-delay: 0.70s;
	opacity: 0;
	visibility: hidden;
}
.lecture-carousel .owl-nav .owl-next i:before,
.lecture-carousel .owl-nav .owl-prev i:before {
	content: "\f104";
	font-family: 'Line Awesome Free';
	font-weight: 900;
}
.lecture-carousel .owl-nav .owl-next {
	right: 30px;
	left: unset;
}
.lecture-carousel .owl-nav .owl-next i:before {
	content: "\f105";
	font-family: 'Line Awesome Free';
	font-weight: 900;
}
.lecture-carousel:hover .owl-nav .owl-next,
.lecture-carousel:hover .owl-nav .owl-prev {
	left: -50px;
	transition-delay: 0s;
	visibility: visible;
	opacity: 1;
}
.lecture-carousel:hover .owl-nav .owl-next {
	right: -50px;
	left: unset;
}	
.lecture-carousel .owl-dots {
	text-align: center;
	margin-top: 50px;
}
.lecture-carousel .owl-dots .owl-dot {
	width: 8px;
	height: 8px;
	display: inline-block;
	margin: 0 6px;
	padding: 3px 0;
	border-radius: 10px;
	border: none;
	background: var(--sss-main);
	box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
}
.lecture-carousel .owl-dots .owl-dot:hover,
.lecture-carousel .owl-dots .owl-dot.active {
	width: 50px;
	background: var(--sss-red);
	opacity: 1;
}	
/* -----------------------------------
	[10.4] LABS BLOCK
-------------------------------------*/

.labs-list {
	text-align: center;
}	
.labs-list .labs-item {
	display: inline-block;
	width: 320px;
	border-radius: 5px;
	border: none;
	border-bottom: 2px solid #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
	overflow: hidden;
	padding:0;
	margin: 15px;
	position: relative;
}
@media (max-width: 991px) {
	.labs-list .labs-item {
		width: 300px;
		margin: 15px 10px;
	}
}
.labs-list .labs-item b{
	position: absolute;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	background: var(--sss-red);
	color: #fff;
	top: 0;
	left: 0;
	font-size: 2em;
}	
.labs-list .labs-item:hover {
	border-bottom-color: var(--sss-red);
	transform: translateY(-5px);
}
.labs-list .labs-item a {
	color: var(--sss-main);
}
.labs-list .labs-item:hover a {
	color: var(--sss-rose);
	text-decoration: none;
}
.labs-list .labs-item h5 {
	font-size: 1.2em;
	line-height: 1.2;
	margin: 10px;
	min-height: 50px;
}
/* -----------------------------------
	[10.5] PRESENTATION
-------------------------------------*/
.presentation-block {
	background: url(../images/bg/bg-index2.jpg) no-repeat top center;
	background-size: cover;
}
.presentation-block ul.nav {
	margin: 0;
	display: inline-flex;
}
.presentation-block ul.nav .nav-item {
	margin: 0 30px 20px 0;
}
.presentation-block ul.nav .nav-item .nav-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	top: 1px;
	font-size: 1.1em;
	font-weight: 600;
	padding: 17px 20px;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.04);
	border-radius: 0px 10px 0px 10px;
	color: var(--sss-main);
	background-color: #fff;
	text-decoration: none;
}
.presentation-block ul.nav .nav-item .nav-link i {
	display: inline-block;
	font-size: 1.4em;
	margin-right: 5px;
}
.presentation-block ul.nav .nav-item .nav-link:hover {
	background: var(--sss-red);
	color: #fff;
}
.presentation-block ul.nav .nav-item:last-child {
	margin-right: 0 !important;
}
.presentation-block ul.nav .nav-item.active .nav-link {
	background: var(--sss-red);
	color: #fff;
}
.presentation-block .tab-content {
	background: #fff;
	box-shadow: 0 0 50px 0 rgba(0,0,0,0.03);
	margin-top: 30px;
	padding: 30px 40px 50px 60px;
	border-radius: 5px;
}
@media (max-width: 575px) {
	.presentation-block .tab-content {
		padding: 30px 20px;
	}
}
.presentation-block .tab-content .tab-pane .tab-text {
	padding: 50px 40px 10px 10px;
}
.presentation-block .tab-content .tab-pane .tab-text h4 {
	font-size: 1.8em;
	line-height: 1.3;
	font-weight: 700;
	color: var(--sss-main);
	margin: 0 0 26px;
}
.presentation-block .tab-pane.active {
	animation: slide-down 5s ease-out;
}
@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(10%);
	}
	10% {
		opacity: 1;
		transform: translateY(0);
	}
}	
.presentation-block .tab-img {
	text-align: center;
}
@media (max-width: 991px) {
	.presentation-block .tab-img {
		display: none;
	}
}
ul.check-lists li {
	padding-left: 35px;
	position: relative;
	margin-top: 12px;
	margin-bottom: 15px;
}
ul.check-lists li:before {
	content: "\f00c";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	font-size: 1.2em;
	color: var(--sss-red);
	margin: 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: -2px;
}

/* -----------------------------------
	[10.6] VIDEO BLOCK
-------------------------------------*/
.video-block {
	position: relative;
}
.video-block .overly-border {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;	
	border: 1px solid var(--sss-red);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}
.video-block .overly-border a i {
	font-size: 2em;
	color: #fff;
	position: relative;
	z-index: 1;
}
.video-block .overly-border a:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	animation: pulse-border 1500ms ease-out infinite;
	transition: all 0.3s ease;
	background: var(--sss-red);
}
.video-block .overly-border a:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	transition: all 200ms;
	animation: pulse-border 1.5s ease-out infinite;
}
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
@media (max-width: 991px) {
	.video-block {
		display: none;
	}
}
.selfwork-list li {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.selfwork-list li span{
	background: var(--sss-red);
	width: 50px;
	height: 50px;
	border-radius: 4px;
	margin-right: 20px;
	color: #fff;
	font-size: 2em;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all ease-in-out .3s;
}
.selfwork-list li:hover span{
	border-radius: 100%;
}	
.selfwork-list li a {
	color: #fff;
	font-size: 1.3em;
	transition: all ease-in-out .3s;
}	
.selfwork-list li:hover a {
	padding-left: 5px;
}
@media (max-width: 575px) {
	.selfwork-list li a {
		font-size: 1.1em;
	}
	.selfwork-list li span{
		width: 40px;
		height: 40px;
		font-size: 1.5em;
	}
}	
/* -----------------------------------
	[10.7] BALLS
-------------------------------------*/
.balls-block {
	background: #f7f7f7;
}
.balls-list {
	text-align: center;		
}
.balls-list .balls-list-item {
	display: inline-block;
	position: relative;
	width: 400px;
	background: #fff;
	margin: 40px 20px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	padding: 20px;
	border-radius: 5px;
}
@media (max-width: 575px) {
	.balls-list .balls-list-item {
		width: 300px;
		margin: 40px 10px;
		padding: 10px;
	}
}
.balls-list .balls-list-item .balls-value {
	position: absolute;
	right: 40px;
	top: -20px;
}	
.balls-list .balls-list-item .balls-value .value-tag {
	margin-bottom: 0.5rem;
	color: #fff;
	font-size: 1,5em;
	right: -70px;
	background: var(--sss-red);
	position: relative;
	padding: 5px 15px;
	border-radius: 0 10px;
}
.balls-list .balls-list-item .balls-value .value-tag:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-top: 30px solid #000;
	border-right: 30px solid transparent;
	top: 34px;
	right: 0px;
}
.value-list li {
	text-align: left;
	border-bottom: 1px dashed rgba(0,0,0,0.2);
	padding: 10px;
}
.value-list li:first-child {
	border-top: 1px dashed rgba(0,0,0,0.2);
}
.value-list li strong{
	display: inline-flex;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.3);
	color: #fff;
	margin-right: 20px;
	font-size: 1.6em;
	font-weight: 400;
}	
.value-list li strong.dark{
	background: rgba(0,0,0,0.6);
	color: #fff;
}

/* ------------------------------------
	[10.8] FAQ
---------------------------------------*/
.faq-block {
	position: relative;
}
.faq-block .faq-content .accordion {
	border-width: 12px;
}
.faq-block .faq-content .accordion .card {
	margin-bottom: 30px;
	border: none;
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	border-radius: 0px 10px;
}
.faq-block .faq-content .accordion .card:last-child {
	margin-bottom: 0;
}
.faq-block .faq-content .accordion .card .card-header {
	display: flex;
	align-items: center;
	padding: 0 !important;
	border: none;
	background: #fff;
	border-radius: 0px 10px;
}
.faq-block .faq-content .accordion .card .card-header .card-link {
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
	line-height: 29px;
	font-size: 1.2em;
	padding: 17px 25px;
	border-radius: 0px 10px;
	background-color: var(--sss-red);
	color: #fff;
	text-decoration: none;
}
.faq-block .faq-content .accordion .card .card-header .card-link:after {
	position: absolute;
	font-family: 'Line Awesome Free';
	content: "\f068";
	font-weight: 900;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	font-size: 1em;
	line-height: 26px;
	color: #fff;
	right: 20px;
	margin-top: -2px;
}
.faq-block .faq-content .accordion .card .card-header .card-link.collapsed {
	background-color: #fff;
	color: var(--sss-main);
	padding: 17px 25px;
	border-radius: 0px 10px;
	box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.18);
}
.faq-block .faq-content .accordion .card .card-header .card-link.collapsed:after {
	color: var(--sss-main);
	content: "\f067";
}
.faq-block .faq-content .accordion .card .card-body {
	background-color: #fff;
	font-size: 1em;
	width: 100%;
	padding: 30px 25px !important;
}
/* -----------------------------------
	[10.9] TEACHER
-------------------------------------*/
.teacher-list {
	text-align: center;		
}	
.teacher-item {
	width: 360px;
	display: inline-block;
	position: relative;
	text-align: center;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	margin: 10px 20px;
	padding-bottom: 20px;
}
@media (max-width: 575px) {
	.teacher-item {
		width: 300px;
		margin: 10px;
	}
}
.teacher-item a:hover {
	text-decoration: none;
}
.teacher-item img {
	width: 100%;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}			
.teacher-social ul {
	position: absolute;
	height: auto;
	width: 70px;
	right: -80px;
	top: 10px;
	text-align: center;
	padding-top: 20px;
	transition: all 0.3s ease;
	opacity: 0;
	z-index: 5;
}
.teacher-social ul li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	font-size: 1.5em;
	color: #fff;
	background: var(--sss-red);
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
}
.teacher-social ul li a:hover {
	transform: rotate(360deg);
}
.teacher-social:hover ul {
	opacity: 1;
	right: 0;
}
.teacher-social:hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.teacher-item-in {
	overflow: hidden;
	opacity: 1;
}
.teacher-item h3 {
	display: inline-block;
	font-weight: 400;
	font-size: 1.3em;
	padding: 20px 0 16px;
	position: relative;
	margin: 0;
}
.teacher-item h3 a {
	color: var(--sss-red);
}
.teacher-item h3::after {
	position: absolute;
	content: "";
	width: 0%;
	height: 2px;
	left: 0;
	bottom: 12px;
	background-color: var(--sss-red);
	transition: all 0.5s;
}
.teacher-item h3:hover::after {
	width: 100%;
}
.teacher-item h5 {
	margin: 0;
}

.summaru-list {
	margin:0;
}
.summaru-list li {
	list-style:none;
	display: flex;
	align-items: center;
	margin:0;
	border-bottom: 1px dashed rgba(0,0,0,0.15);
	padding: 8px;
	font-size: 0.9em;
}
.summaru-list li a{
	color: #474747;
}	
.summaru-list li a:hover{
	color: var(--sss-rose);
	padding-left: 5px;
	text-decoration: none;
}	
.summaru-list li span{
	display: inline-flex;
	align-items: center;
    justify-content: center;	
	background: var(--sss-red);
	width:30px;
	height:30px;
	margin-right:10px;
	border-radius:100%;
	font-size: 1.3em;
	color: #fff;
}
.summaru-list li:hover span{
	transform: rotate(360deg);
}	
.summaru-list li.title {
	font-size: 1.1em;
	font-weight: 600;
}	
.summaru-list li.title  span{
	background:transparent;
	width:100px;
	height:100px;
	border-radius: 0;
	margin-right:10px;
}
.summaru-list li.title:hover  span{
	transform: none;
}
.summaru-list li.title span img{
	width:100px;
	height:100px;
	border-radius: 0;
}
.summaru-list li strong {
	margin-right: 20px;
}

/* -----------------------------------
	[11] PAGES
-------------------------------------*/
article, aside {
	padding: 50px 0;
}
article h6 {
	text-align: center;
	margin: 30px 0;
}
article ul li {
	margin: 10px 10px 10px 40px;
	list-style: circle;
}
aside {
	padding-left: 30px!important;
}
aside ul li {
	list-style: none;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
	padding: 10px 0;
}
aside ul li:first-child {
	border-top: 1px dashed rgba(0,0,0,0.1);
}
aside ul li:hover {
	background: rgba(0,0,0,0.03);
	padding-left: 5px;
}
aside li a {
	color: var(--sss-main);
}
aside li a:hover {
	text-decoration: none;
}
.img-right {
	float: right;
	margin: 0 0 15px 15px;	
}
.annotation {
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	padding: 20px 20px 20px 100px;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.07);
}
.annotation p{	
	font-size: 1.2em;
	font-weight: 300;
}	
.annotation span {
	position: absolute;
	top: -25px;
	left: 20px;
	font-size: 5em;
	color: var(--sss-red);
}

@media (max-width: 767px) {
	.annotation {
		padding-left: 20px;
	}
	.annotation p{	
		font-size: 1.2em;
		font-weight: 300;
	}	
	.annotation span {
		display: none;
	}

}	
.task li {
	margin: 10px 0;
	padding: 0;
}
.video-gallery .ratio {
	margin: 10px;
}
.video-gallery h5 {
	text-align: center;
	margin: 0 0 25px;
}
@media only screen and (min-width: 992px) {
	.ratio-box  {
		width: 60%;
		margin: auto;
	}
}

@media only screen and (min-width: 992px){
	.video-single {
		width: 800px;
		margin: auto;
	}	
}
.lecture-course a {
	color: var(--sss-main);
}
.lecture-course a:hover {
	color: var(--sss-rose);
}

.multi-img-magnific{
	text-align: center;	
}
.multi-img-magnific img{
	margin: 5px;
	height: 150px;
}

/* Journals*/
.result-block .nav-pills .nav-link {
	border: 0;
	border-radius: 0;
	background-color: var(--sss-light);
	color: var(--wd-main);
	margin-bottom: 10px;
	width: auto;
}
.result-block .nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
	color: #fff;
	background-color: var(--sss-gray);
}
.result-title .nav-link span:after{
	display: inline-block;
	margin-left: 10px;	
	font-family: 'Line Awesome Free';
	font-weight: 900;
	content: "\f107";
}	
@media (min-width:1200px){
	.result-block{
		display: flex;
		width: 100%;
		justify-content: space-between;
	}	
	.result-title {
		flex-shrink: 0;
		/*width: 20%;*/
		display: block;
	}
	.result-title .nav-link{
		/*width: 100%;
		text-align: right;*/
	}
	.result-title .nav-link span:after{
		display: inline-block;
		content: "\f105";
		margin-left: 10px;
		font-family: 'Line Awesome Free';
		font-weight: 900;
	}	
	.result-table {
		width:100%;
		min-height: 100vh;
		border: 1px solid #ccc;
		overflow: auto;
		scrollbar-width: thin;
	}
}			
.result-table::-webkit-scrollbar{
	width: 7px;
	background:var(--sss-light);
}
.result-table::-webkit-scrollbar-thumb{
	width: 7px;
	background: var(--sss-gray);
}
		
.result-table iframe{
	width: 100%!important;
	min-height: 100vh;
}
.result-table h6 {
	font-size: 0.85em;
	text-align: right;
	margin:10px 20px;
	font-weight: 400;
}