@charset "utf-8";
@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;*/

:root {	
	--wd-main:#444444;
	--wd-main-rgb:68,68,68;
	
	--wd-light:#eaeff3;
	--wd-light-rgb:234,239,243;
	--wd-gray:#607d8b;
	--wd-gray-rgba:96,125,139;
	
	--wd-red:#ba68c8;
	--wd-red-rgb:186,104,200;
	--wd-blue:#049dd9;
	--wd-blue-rgb:4,157,217;
	--wd-yellow:#f2b705;
	--wd-yellow-rgb:242,183,5;	
	--wd-white:#ffffff;
	--wd-white-rgb:255,255,255;
	
	--wd-shadow:0 10px 40px rgba(0,0,0,0.15);
	--wd-shadow-dark:0 16px 35px rgba(0,0,0,0.2);
	--wd-border:1px solid #cfd8dc;
	--wd-border-white:1px solid #fff;
}

/*---------------------------------------------------------/
[01] COMMON STYLE
[02] BUTTON
[03] ANIMATE
[04] TITLE
[05] PRELOADER 
[06] SCROLL UP
[07] OFFCANVAS
[08] FOOTER
[09] HEADER 
[10] MENU 
[11] HERO 
[12] ABOUT
[13] STEPS
[14] LECTURE 
[15] PARTS 
[16] LABS 
[17] JAVASCRIPT 
[18] SELFWORK 
[19] BRANDS 
[20] PRESENTATION 
[21] BALLS 
[22] TEACHERS 
[23] VIDEO PRESENTATION 
[24] FAQ 
[25] PAGES
[26] JOURNAL
---------------------------------------------------------*/
/*--------------------------------------------------------/
[01] COMMON STYLE
---------------------------------------------------------*/

* {
	outline: none!important;
	transition: all 0.3s ease-out 0s;
}
*, *::after, *::before {
	box-sizing: border-box;
}
html {
	position: relative;
	min-height: 100%;
}
html,
body {
	-webkit-tap-highlight-color: transparent;	
	   -webkit-text-size-adjust: 100%;	
	width: 100%;	
	background:var(--wd-white);
	color: var(--wd-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:400px;
	}
	footer {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 400px;
	}
}
button {
  border: none;
  background-color: transparent;
  padding: 0;
}
img {
	max-width: 100%;
}
span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	margin: 20px 0;
	line-height: 1.5;
}
h6 {
	text-align: center;
}
h1 {
	margin: 30px 0;
}
ul, ol {
	padding: 0;
	margin: 0;
	list-style: none;
}
ul.simple-list li {
	list-style: circle;
	margin: 10px 10px 10px 30px;
}
a, 
a:hover, 
a:active,
a:focus{
	color: var(--wd-main);
	text-decoration: none;
}
a {
	color: var(--wd-blue);
}
*::-moz-selection {
	background: var(--wd-gray);
	color:var(--wd-white);
	text-shadow: none;
}
::-moz-selection {
	background: var(--wd-gray);
	color:var(--wd-white);
	text-shadow: none;
}
::selection {
	background: var(--wd-gray);
	color:var(--wd-white);
	text-shadow: none;
}
*::-moz-placeholder {
	color: var(--wd-gray);
	font-size: 1em;
	opacity: 1;
}
*::placeholder {
	color: var(--wd-gray);
	font-size: 1em;
	opacity: 1;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--wd-gray);
	border-radius: 5px;
}
::-webkit-scrollbar-thumb {
	background: var(--wd-gray);
	border-radius: 10px;
}
.fix {
	overflow: hidden;
}
section {
	position: relative;
	padding: 80px 0;
}
@media only screen and (max-width: 991px) {
	section {
		padding: 40px 0 50px;
	}	
}
@media (min-width: 1200px) {
	.container-narrow {
		max-width: 1024px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;	  
	}
}
main {
	padding: 140px 0 50px;
}	
article ul li {
    list-style: circle;
    margin: 10px 0 10px 30px;
}
article ol li {
    list-style: decimal;
    margin: 10px 0 10px 30px;
}



/*--------------------------------------------------------/
[02] BUTTON
---------------------------------------------------------*/
.theme-btn {
	display: inline-block;
	position: relative;
	padding: 17px 27px;
	gap: 10px;
	color: var(--wd-white);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	background: var(--wd-blue);
	z-index: 1;
	line-height: 1;
	overflow: hidden;
	border:var(--wd-border);
	text-transform: capitalize;
}
@media (max-width:1399px) {
	.theme-btn {
		font-size: 16px;
		padding: 12px 13px;
	}
}
.theme-btn i,
.theme-btn svg {
	margin-left: 6px;
}
.theme-btn:before {
	transition-duration: 800ms;
	position: absolute;
	width: 210%;
	height: 290%;
	content: "";
	top: 162%;
	left: 50%;
	background:var(--wd-red);
	transform: translateX(-50%) rotate(-8deg);
	border-radius: 80%;
	z-index: -1;
}
.theme-btn:hover,
.theme-btn:active{
	color: var(--wd-white) !important;
}
.theme-btn:hover:before {
	top: -96%;
}
.theme-btn:focus {
  color: white;
}

/*--------------------------------------------------------/
[03] ANIMATE
---------------------------------------------------------*/
.img-custom-anim-left {
	animation: img-anim-left 1.3s forwards cubic-bezier(.645, .045, .355, 1) 0.4s;
	opacity: 0;
}
@keyframes img-anim-left {
	0% {
		transform: translateX(-5%);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.img-custom-anim-right {
	animation: img-anim-right 1.3s forwards cubic-bezier(.645, .045, .355, 1) 0.4s;
	opacity: 0;
}
@keyframes img-anim-right {
	0% {
		transform: translateX(5%);
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}	
.img-custom-anim-top {
	animation: img-anim-top 1.3s forwards cubic-bezier(.645, .045, .355, 1);
	opacity: 0;
}
@keyframes img-anim-top {
	0% {
		transform: translateY(-5%);
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}
.img-custom-anim-bottom {
	animation: img-anim-bottom 1.3s forwards cubic-bezier(.645, .045, .355, 1);
	opacity: 0
}
@keyframes img-anim-bottom {
	0% {
		transform: translateY(5%);
		clip-path: inset(100% 0 0 0);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}
/*--------------------------------------------------------/
[04] TITLE
---------------------------------------------------------*/
.section-title {
	text-align: center;
	margin-bottom: 50px;
}
.section-title .subtitle {
	position: relative;
	color: var(--wd-gray);
	font-size: 0.9em;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 600;
	line-height: 0;
	margin:0;
	margin-left: 50px;
}
.section-title .subtitle:before {
	position: absolute;
	top: 8px;
	left: -50px;
	padding:0;
	margin: 0;
	font-family: 'Line Awesome Free';
	font-weight: 900;
	content: "\f141";
	font-size: 3em;
	color:var(--wd-red);
	margin-right: 10px;
	
}
.section-title h2 {
	color: var(--wd-blue);
	font-size: 2em;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 30px;
}
@media (max-width:991px) {
	.section-title h2 {
		font-size: 1.8em;
	}
}
@media (max-width:575px) {
	.section-title h2 {
		font-size: 1.5em;
	}
}

/*--------------------------------------------------------/
[05] PRELOADER 
---------------------------------------------------------*/
.preloader {
	position: fixed;
	left: 0;
	top: 0;	
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;	
	height: 100%;	
	background: var(--wd-light);
	cursor: default;
	z-index: 9999999;
}
.preloader.loaded .animation-preloader {
	opacity: 0;
}	
.preloader .animation-preloader {
	z-index: 1000;
}
.preloader .animation-preloader .spinner {
	width: 9em;
	height: 9em;
	border-radius: 50%;
	border: 3px solid rgba(var(--wd-main-rgb),0.2);
	border-top-color: var(--wd-blue);
	margin: 0 auto 3.5em auto;	
	animation: spinner 1s infinite linear;
}
@media (max-width:767px) {
	.preloader .animation-preloader .spinner {
		width: 7em;
		height: 7em;
		margin: 0 auto 1.5em;
	}
}
@keyframes spinner {
	to {
		transform: rotateZ(360deg)
	}
}	
.preloader .animation-preloader .txt-loading {
	font-size: 5em;
	font-weight: 900;
	text-align: center;
	user-select: none;
}
@media (max-width:767px) {
	.preloader .animation-preloader .txt-loading {
		font-size: 2.5em
	}
}
.preloader .animation-preloader .txt-loading .letters-loading {
	color: var(--wd-blue);
	position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
	animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
	animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
	animation: letters-loading 4s infinite;
	color: var(--wd-main);
	content: attr(data-text-preloader);
	left: 0;
	opacity: 0;
	position: absolute;
	top: -3px;
	transform: rotateY(-90deg);
}
@keyframes letters-loading {
	0%,
	75%,
	100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}	
.preloader p {
	font-size: 1em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 8px;
	color: var(--wd-blue);
}

/*--------------------------------------------------------/
[06] SCROLL UP 
---------------------------------------------------------*/
.scroll-up {
	position: fixed;
	right: 30px;
	bottom: 30px;	
	display: inline-block;
	width: 50px;
	height: 50px;	
	border-radius: 12px;
	background-color: var(--wd-blue);
	color: var(--wd-white);
	font-size: 1.2em;
	line-height: 50px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	z-index: 9999;
}
.scroll-up:hover {
	background-color: var(--wd-main);
}
.scroll-up.show {
	opacity: 1;
	visibility: visible;
	transform: translate(0);
}	
/*--------------------------------------------------------/
[07] OFFCANVAS 
---------------------------------------------------------*/
.offcanvas__logo {
	max-width: 200px;
}	
.offcanvas-list li {
	display: flex;
	align-items: center;
}
.offcanvas-list li .offcanvas-icon {
	margin-right: 20px;
	flex-shrink: 0;
}
.offcanvas-list li .offcanvas-icon i {
	color: var(--wd-blue);
}
.aside-list	{
	margin: 20px 0;
}
.aside-list	li{
	display: flex;
	align-items: center;
	margin: 5px 0;
}
.aside-list	li i{
	font-size: 1.2em;
	flex-shrink: 0;
	margin-right: 10px;
}	
.aside-social li {
	display: inline-block;
	margin: 10px;
}
.aside-social li i {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background:  var(--wd-red);
	color: var(--wd-white);	
	font-size: 1.5em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.aside-social li:hover i {
	background: var(--wd-main);
}
.offcanvas__info {
	background: var(--wd-white);
	border-left: 2px solid var(--wd-blue);
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	transform: translateX(calc(100% + 80px));
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	z-index: 99999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
	display: none;
}
.offcanvas__info.info-open {
	opacity: 1;
	transform: translateX(0);
}
.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
	color: var(--wd-main);
}
.offcanvas__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}	
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--wd-blue);
	position: relative;
	z-index: 9;
	cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: var(--wd-white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
	width: 100%;
	padding: 20px 40px;
	text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
	padding-bottom: 50px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
	margin-top: 30px;
	gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: 16px;
	display: block;
	background:rgba(var(--wd-white-rgb), 0);
	color: var(--wd-main);
	border-radius: 50%;
	text-align: center;
	border: var(--wd-border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
	background-color: var(--wd-blue);
	color: var(--wd-white);
}
.offcanvas__overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	background: var(--wd-main);
	z-index: 900;
	top: 0;
	opacity: 0;
	visibility: hidden;
	right: 0;
}
.offcanvas__overlay.overlay-open {
	opacity: .8;
	visibility: visible;
}
@media (max-width:450px) {
	.offcanvas__info {
		width: 300px;
	}
}
@media (max-width:575px) {
	.offcanvas__wrapper {
		padding: 20px;
	}
}

/*--------------------------------------------------------/
[08] FOOTER
---------------------------------------------------------*/
footer {
	background:var(--wd-light);
	padding: 50px 0;
	/*color: var(--wd-main);*/
}
footer a {
	color: var(--wd-main);
}
footer a:hover {
	color: var(--wd-blue);
}
.footer-logo img {
	margin-bottom: 30px;
	max-width: 200px;
}
.footer-button {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.footer-button i {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background:var(--wd-red);
	border-radius: 8px;
	color:var(--wd-white);
	font-size: 2em;
	margin-right: 24px;
}
.footer-button .contact-number {
	color:var(--wd-main);
	font-size: 1.3em;
}
.footer-button .number {
	display: block;
	font-weight: 700;
	color:var(--wd-red);
	transition: 0.4s;
	font-size: 1.2em;
}
.footer-button .number:hover {
	color:var(--wd-blue);
}
.footer-list {
	margin-top: 15px;
}
.footer-list li {
	margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
	.footer-list {
		margin-top: 30px;
	}	
	.footer-list li {
		display: inline-block;	
		margin-right: 20px;
	}
	.footer-list li::after {
		display: inline-block;
		margin-left: 20px;
		content: "|";
	}	
}
@media only screen and (max-width: 500px) {
	.footer-list li {
		display: block;	
		margin-right: 0px;
	}
	.footer-list li::after {
		display: none;
	}	
}
.copyright {
	text-align: center;
	padding-top: 30px;
	margin-top: 20px;
	border-top:2px dotted rgba(var(--wd-main-rgb),0.5);
}	
/*--------------------------------------------------------/
[09] HEADER 
---------------------------------------------------------*/
.header-block {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	z-index: 999;
}
.header-block .container-fluid {
	padding: 0 120px;
	padding-left: 226px;
}
@media (max-width:1600px) {
	.header-block .container-fluid {
		padding: 0 40px;
	}
}
@media (max-width:1399px) {
	.header-block .container-fluid {
		padding: 0 20px;
	}
}
@media (max-width:1199px) {
	.header-block .container-fluid {
		padding: 0 30px;
	}
}
@media (max-width:991px) {
	.header-top {
		display: none;
	}
}
.header-top {
	background-color: rgba(var(--wd-white-rgb),0);
	position: relative;
	z-index: 9;
}
.header-top::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: radial-gradient(210.75% 326.05% at -18.48% -74.46%, rgba(var(--wd-white-rgb),0.4) 0%, rgba(var(--wd-white-rgb),0) 100%);
	backdrop-filter: blur(25px);
	left: 106px;
	z-index: -1;
}
@media (max-width:1899px) {
	.header-top::before {
		left: 0;
	}
}	
.header-top-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 0;
}
.header-top-box ul {
	display: flex;
	align-items: center;
	gap: 30px;
}
.header-top-box ul li {
	color: var(--wd-white);
}
.header-top-box ul li i {
	margin-right: 10px;
}
.header-top-box ul li a {
	color: var(--wd-white);
}
@media (min-width:1400px) {
	.header-box .container {
		max-width: 1890px;
	}	
}
.header-box {
	position: relative;
	background-color: rgba(var(--wd-white-rgb),0);
}
.header-box .header-logo {
	display: none;
}
.header-box .header-logo-2 {
	display: none;
}
@media (max-width:1899px) {
	.header-box .header-logo-2 {
		display: block;
	}
}	
.header-box .header-right {
	gap: 30px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header-box .header-right .sidebar__toggle {
	cursor: pointer;
}
.header-box .header-right .sidebar__toggle .header-bar {
	position: relative;
	width: 31px;
	height: 18px;
}
.header-box .header-right .sidebar__toggle .header-bar span {
	position: absolute;
	width: 100%;
	height: 2px;
	display: inline-block;
	left: 0;
	background: var(--wd-white);
	overflow: hidden;
}
.header-box .header-right .sidebar__toggle .header-bar span:first-child {
	top: 0;
	left: 16px;
	width: 15px;
}
.header-box .header-right .sidebar__toggle .header-bar span:nth-child(2) {
	top: 44%;
	width: 30px;
}
.header-box .header-right .sidebar__toggle .header-bar span:last-child {
	bottom: 0;
	width: 15px;
}
.header-box .header-right .sidebar__toggle .header-bar.active span:first-child {
	transform: rotate(45deg) translate(3px, 9px);
}
.header-box .header-right .sidebar__toggle .header-bar.active span:nth-child(2) {
	opacity: 0;
}
.header-box .header-right .sidebar__toggle .header-bar.active span:last-child {
	transform: rotate(-45deg) translate(3px, -9px);
}
.header-box .header-right .sidebar__toggle .header-bar:hover {
	cursor: pointer;
}
@media (max-width:1199px) {
	.header-box .header-right .header-button {
		display: none;
	}
}
.header-box .header-right .header-button .theme-btn {
	background: rgba(var(--wd-white-rgb),0.2);
	border: none;
	padding: 20px 27px;
}
.header-box .header-right .header-button .theme-btn:before {
	background:var(--wd-blue);
}
.header-box .mega-menu-wrapper {
	position: relative;
	z-index: 9;
	border-bottom: 1px solid rgba(var(--wd-white-rgb),0.6);
}	
@media (max-width:1899px) {
	.header-box .mega-menu-wrapper {
		border: none;
	}
}	

.header-block.page-block {
	background: var(--wd-gray);
}
.header-block.page-block .header-top::before {
	left: 0;
}	
.header-block.page-block .header-box .header-logo {
	display: none;
}
.header-block.page-block .header-box .header-logo-2 {
	display: block;
}
.header-block.page-block .sticky.header-box .header-logo {
	display: block;
}
.header-block.page-block .sticky.header-box .header-logo-2 {
	display: none;
}

.sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: all 0.9s;
	background-color: var(--wd-white);
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow:var(--wd-shadow);
}	
.sticky.header-box {
  background-color: var(--wd-white);
}	
.sticky.header-box .header-logo {
	display: block;
}
.sticky.header-box .header-logo-2 {
	display: none;
}
.sticky.header-box .main-menu ul li a {
	color: var(--wd-main);
}
.sticky.header-box .main-menu ul li a:hover {
	color: var(--wd-blue) !important;
}
.sticky.header-box .header-right {
	gap: 30px;
}
.sticky.header-box .header-right .sidebar__toggle .header-bar span {
	background: var(--wd-main);
}
@media (max-width:1199px) {
	.sticky.header-box .header-right .header-button {
		display: none;
	}
}
.sticky.header-box .header-right .header-button .theme-btn {
	border:var(--wd-border);
	color: var(--wd-main);
}
.sticky.header-box .header-right .header-button .theme-btn::before {
	background: var(--wd-main);
}
.sticky.header-box .header-right .header-button .theme-btn:hover {
	color: var(--wd-white) !important;
}
.sticky.header-box .header-right .search-icon {
	color: var(--wd-main);
}
.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
.header-main .header-logo img,
.header-main .header-logo-2 img {
	width: 200px;
}
@media (max-width:1199px) {
	.header-main .header-logo img,
	.header-main .header-logo-2 img{
		width: 140px;
	}
}

/*--------------------------------------------------------/
[10] MENU 
---------------------------------------------------------*/
.header-main .main-menu ul {
	margin-bottom: 0;
}
.header-main .main-menu ul li {
	position: relative;
	list-style: none;
	display: inline-block;
	margin-inline-end: 40px;
}
.header-main .main-menu ul li:last-child {
	margin-inline-end: 0;
}
.header-main .main-menu ul li a {
	display: inline-block;
	font-size: 1em;
	font-weight: 500;
	color: var(--wd-white);
	padding: 20px 0;
	text-align: left;
	position: relative;
	text-transform: capitalize;
}
.header-main .main-menu ul li a i {
	margin-left: 4px;
	font-size: 0.9em;
}
.header-main .main-menu ul li a:hover {
	color: var(--wd-white) !important;
}
.header-main .main-menu ul li .submenu {
	position: absolute;
	top: 115%;
	inset-inline-start: 0;
	min-width: 240px;
	background: var(--wd-white);
	padding: 20px 0;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transform-origin: top center;
	color: var(--wd-main);
	transform: translateY(-10px);
	border-top: 6px solid var(--wd-blue);
	box-shadow: var(--wd-shadow);
}
.header-main .main-menu ul li .submenu li {
	display: block;
	width: 100%;
	margin: 0;
}
.header-main .main-menu ul li .submenu li a {
	position: relative;
	z-index: 11;
	font-size: 1em;
	font-weight: 500;
	color: var(--wd-main);
	line-height: 38px;
	padding: 0 0 0 32px;
	width: 100%;
}
.header-main .main-menu ul li .submenu li a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--wd-blue);
	left: 14px;
	bottom: 18px;
}
.header-main .main-menu ul li .submenu li a:hover {
	color: var(--wd-blue) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
	border: none;
}
.header-main .main-menu ul li:hover>a {
	color: var(--wd-white);
}
.header-main .main-menu ul li:hover>a::after {
	color: var(--wd-white);
}
.header-main .main-menu ul li:hover>.submenu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.mean-container a.meanmenu-reveal {
	display: none;
}
.mean-container .mean-nav {
	background: none;
	margin-top: 0;
}
.mean-container .mean-bar {
	padding: 0;
	min-height: auto;
	background: none;
}
.mean-container .mean-nav>ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
	display: block !important;
}
.mean-container a.meanmenu-reveal {
	display: none !important;
}
.mean-container .mean-nav ul li a {
	width: 100%;
	padding: 10px 0;
	color: var(--wd-main);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
	text-transform: capitalize;
	border-bottom:var(--wd-border) !important;
	border: none;
}
.mean-container .mean-nav ul li a:hover {
	color: var(--wd-blue);
}
.mean-container .mean-nav ul li a:last-child {
	border-bottom: 0;
}
.mean-container .mean-nav ul li a:hover {
	color: var(--wd-blue);
}
.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 5px;
	padding: 0 !important;
}
.mean-container .mean-nav ul li>a>i {
	display: none;
}
.mean-container .mean-nav ul li>a.mean-expand i {
	display: inline-block;
	font-size: 18px;
}
.mean-container .mean-nav>ul>li:first-child>a {
	border-top: 0;
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
	transform: rotate(45deg);
}
.mean-container .mean-nav ul li .mega-menu li a {
	height: 200px;
	width: 100%;
	padding: 0;
	border-top: 0;
	margin-bottom: 20px;
}
/*--------------------------------------------------------/
[11] HERO 
---------------------------------------------------------*/
.hero-block {
	position: relative;
	overflow: hidden;
}
.hero-block::before {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 106px;
	height: 100%;
	content: "";
	opacity: .65;
	background: var(--wd-main);
	z-index: 9;
}
@media (max-width:1899px) {
	.hero-block::before {
		display: none;
	}
}	
.hero-block .hero-logo {
	position: absolute;
	top: 50px;
	left: 30px;
	z-index: 9999;
}
.hero-block .hero-logo img {
	width: 50px;
}
@media (max-width:1899px) {
	.hero-block .hero-logo {
		display: none;
	}
}	
.hero-block .social-list {
	transform: rotate(-90deg);
	position: absolute;
	bottom: 60px;
	left: 30px;
	width: 20px;
	z-index: 9;
}
@media (max-width:1899px) {
	.hero-block .social-list {
		display: none;
	}
}
.hero-block .social-list li {
	display: flex;
	align-items: center;
	gap: 30px;
}
.hero-block .social-list li a {
	text-transform: uppercase;
	font-size: 0.8em;
	font-weight: 500;
	color: var(--wd-white);
}	
.hero-block .array-button {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 99;
}
@media (max-width:1199px) {
	.hero-block .array-button {
		display: none;
	}
}
.hero-block .array-button .array-prevs,
.hero-block .array-button .array-nexts {
	width: 80px;
	height: 56px;
	line-height: 56px;
}
.hero-block .array-button .array-prevs {
	background-color: var(--wd-white);
	color: var(--wd-main);
}
.hero-block .array-button .array-nexts {
	background-color: var(--wd-main);
	color: var(--wd-white);
}	
.hero-block .swiper-slide.swiper-slide-active .slider-image {
	transform: scale(1.19);
}	
.hero-box {
	position: relative;
}
.hero-box .container-fluid {
	padding: 0 228px;
}
@media (max-width:1600px) {
	.hero-box .container-fluid {
		padding: 50px;
	}
}
@media (max-width:1399px) {
	.hero-box .container-fluid {
		padding: 40px;
	}
}
@media (max-width:1199px) {
	.hero-box .container-fluid {
		padding: 30px;
	}
}
.hero-box .slider-image {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transform: scale(1);
}
.hero-box .slider-image:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .65;
	background: var(--wd-main);
}
.hero-box .hero-content {
	position: relative;
	z-index: 9;
	padding: 200px 0 150px;
}
@media (max-width:1199px) {
	.hero-box .hero-content {
		padding: 130px 0 60px;
	}
}
.hero-box .hero-content p {
	font-size: 0.8em;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--wd-white);
}
.hero-box .hero-content h1 {
	font-size: 5em;
	color: var(--wd-white);
	font-weight: 700;
}
@media (max-width:1200px) {
	.hero-box .hero-content h1 {
		font-size: 4em;
	}
}
@media (max-width:991px) {
	.hero-box .hero-content h1 {
		font-size: 3em;
	}
}
@media (max-width:767px) {
	.hero-box .hero-content h1 {
		font-size: 2em;
	}
}
@media (max-width:575px) {
	.hero-box .hero-content h1 {
		font-size: 1.5em;
	}
}
.hero-box .hero-content .circle-text {
	position: relative;
	display: inline-block;
	margin-top: 40px;
}
.hero-box .hero-content .circle-text .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--wd-white);
	font-size: 1.5em;
}
.hero-box .hero-content .circle-text img {
	animation: circl 10s linear infinite;
}	
.circl {
	animation: circl 20s linear infinite;
}
@keyframes circl {
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------/
[12] ABOUT 
---------------------------------------------------------*/
.about-box .about-thumb {
	position: relative;
}
.about-box .about-thumb .thumb1 {
	position: relative;
	z-index: 2;
	max-width: 500px;
}
.about-box .about-thumb .thumb1 img {
	width: 100%;
	height: 100%;
}
.about-box .about-thumb .thumb2 {
	position: absolute;
	z-index: 4;
	bottom: -100px;
	border: 4px solid var(--wd-white);
	border-radius: 100%;
	right: 20px;
	overflow: hidden;
}
@media (max-width:991px) {
	.about-box .about-thumb {
		margin-bottom: 40px;
	}	
	.about-box .about-thumb .thumb2 {
		right: 0;
		bottom: 0;
	}
	.about-box .about-thumb .thumb2 img {
		width: 100%;
		height: 100%;
	}	
}
@media (max-width:575px) {
	.about-box .about-thumb .thumb2 {
		right: 0;
		max-width: 200px;
		bottom: 70px;
	}
	.about-box .about-thumb .thumb2 img {
		width: 100%;
		height: 100%;
	}
}
@media (max-width:575px) {
	.about-box .about-thumb .thumb2 {
		right: 0;
		max-width: 200px;
		bottom: 70px;
	}
	.about-box .about-thumb .thumb2 img {
		width: 100%;
		height: 100%;
	}
}
.about-box .about-thumb .shape {
	margin-top: 20px;
}
.about-box .about-thumb .counter-box {
	position: absolute;
	top: 40px;
	right: 40px;
	transform: rotate(-90deg);
}
@media (max-width:1199px) {
	.about-box .about-thumb .counter-box {
		display: none;
	}
}
.about-box .about-thumb .counter-box h2 {
	font-size: 3em;
	font-weight: 700;
	margin-bottom: 0;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: rgba(var(--wd-red),0.35);
	-webkit-text-fill-color: rgba(var(--wd-white-rgb),0);
}
.about-box .about-thumb .counter-box p {
	font-weight: 500;
	font-size: 1.1em;
	color: var(--wd-main);
}
.about-box .about-content .section-title {
	padding-bottom: 20px;
	border-bottom:var(--wd-border);
	text-align: left;
	margin-bottom: 0;
}
.about-box .about-content .checklist-box {
	margin-top: 25px;
	display: flex;
	align-items: center;
	gap: 60px;
	padding-bottom: 20px;
	border-bottom:var(--wd-border);
}
@media (max-width:1199px) {
	.about-box .about-content .checklist-box {
		flex-wrap: wrap;
		gap: 25px;
	}
}
.checklist li {
	position: relative;
	color: var(--wd-gray);
	font-size: 1em;
	margin:10px;
	margin-left: 25px;
}
.checklist li:before {
	position: absolute;
	top: 0px;
	left: -25px;
	padding:0;
	margin: 0;
	font-family: 'Line Awesome Free';
	font-weight: 900;
	content: "\f14a";
	font-size: 1em;
	color:var(--wd-red);
	margin-right: 10px;	
}
.about-box .about-content .about-contact {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 40px;
}
@media (max-width:1199px) {
	.about-box .about-content .about-contact {
		flex-wrap: wrap;
		gap: 25px;
	}
}
.about-photo {
	width: 50px;
	border-radius: 100%;
	border: var(--wd-border);
	overflow: hidden;
}
.about-name	h5 {
	font-size: 1.1em;
	margin: 0;
}

/*--------------------------------------------------------/
[13] STEPS 
---------------------------------------------------------*/
.steps-block {
	background: var(--wd-light);
	position: relative;
}
.steps-block .steps-item {
	border-top: var(--wd-border);
}
@media (max-width:1199px) {
	.steps-block .steps-item {
		border: none;
	}
}

.steps-block .steps-item .dot-and-step-no {
	margin-bottom: 10px;
}
.steps-block .steps-item .dot-and-step-no .dot {
	margin-bottom: 25px;
	position: relative;
}
.steps-block .steps-item .dot-and-step-no .dot span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--wd-red);
	display: block;
	margin-left: 32px;
	margin-bottom: 90px;
	position: relative;
	margin-top: -5px;
}
@media (max-width:1199px) {
	.steps-block .steps-item .dot-and-step-no .dot span {
		display: none;
	}
}
.steps-block .steps-item .dot-and-step-no .dot span::before {
	position: absolute;
	bottom: -72px;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	background-color:var(--wd-main);
	opacity: .25;
	width: 1px;
	height: 75px;
}
.steps-block .steps-item .dot-and-step-no .step-no {
	position: relative;
	display: flex;
	align-items: center;
}
.steps-block .steps-item .dot-and-step-no .step-no h2 {
	-webkit-text-fill-color: rgba(var(--wd-white-rgb),0);
	-webkit-text-stroke: 1px rgba(var(--wd-main-rgb),0.5);
	font-size: 4.5em;
	font-weight: 900;
	line-height: 66.56px;
	letter-spacing: .06em;
	text-align: left;
	margin-bottom: 0;
	transition: 0.5s;
}
.steps-block .steps-item:hover .dot-and-step-no .step-no h2 {
	-webkit-text-stroke: 1px var(--wd-red);
}	
@media (max-width:1399px) {
	.steps-block .steps-item .dot-and-step-no .step-no h2 {
		font-size: 6em;
	}
}
@media (max-width:1199px) {
	.steps-block .steps-item .dot-and-step-no .step-no h2 {
		font-size: 7em;
	}
}
@media (max-width:991px) {
	.steps-block .steps-item .dot-and-step-no .step-no h2 {
		font-size: 6.5em;
	}
}
.steps-block .steps-item .dot-and-step-no .step-no h6 {
	font-size: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
	color:var(--wd-main);
	transform: rotate(-90deg);
}
.steps-block .steps-item .steps-content {
	max-width: 260px;
}
@media (max-width:575px) {	
	.steps-block .steps-item {
		text-align: center;
	}
	.steps-block .steps-item .dot-and-step-no .step-no {
		display: block;
		text-align: center;
	}
	.steps-block .steps-item .dot-and-step-no .step-no h2{
		text-align: center;
	}	
	.steps-block .steps-item .steps-content {
		max-width: 90%;
		margin: auto;
	}	
}
.steps-block .steps-item .steps-content h3 {
	color: var(--wd-gray);
	font-size: 1.25em;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 20px;
}
.steps-block .steps-item .steps-content p {
	color: var(--wd-main);
	font-size: 1em;
	font-weight: 400;
	letter-spacing: .03em;
	text-align: left;
}

/*--------------------------------------------------------/
[14] LECTURE 
---------------------------------------------------------*/
.lecture-block {
	padding-bottom: 100px;
}
.lecture-block .swiper {
	overflow: visible;
}
.lecture-item {
	position: relative;
}
.lecture-item .thumb img {
	width: 100%;
}
.lecture-item .lecture-content {
	position: absolute;
	bottom: 20px;
	right: 20px;
	left: 20px;
	padding: 10px 10px 10px 20px;
	background: rgba(var(--wd-white-rgb),0.9);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.lecture-item .lecture-content .content .tag {
	font-size: 0.9em;
	font-weight: 600;
	text-transform: uppercase;
}
.lecture-item .lecture-content .link-meta a {
	display: inline-block;
	width: 56px;
	height: 91px;
	line-height: 91px;
	text-align: center;
	border-radius: 24px;
	background-color: var(--wd-light);
}
.lecture-item .lecture-content .link-meta a i {
	color: var(--wd-blue);
	font-size: 1.3em;
}
.lecture-item .lecture-content .link-meta a:hover {
	background-color: var(--wd-red);
}
.lecture-item .lecture-content .link-meta a:hover i {
	color: var(--wd-white);
}

/*--------------------------------------------------------/
[15] PARTS 
---------------------------------------------------------*/
.part-block {
	position: relative;
	background: var(--wd-gray);
}
.part-box .part-content .section-title {
	color: var(--wd-white);
	text-align: left;
	margin-left: 250px;
}
@media (max-width:1899px) {
	.part-box .part-content .section-title {
		margin-left: 150px;
	}
}
@media (max-width:1399px) {
	.part-box .part-content .section-title {
		margin-left: 0;
		text-align: center;
	}
}
.part-block .section-title h2,	
.part-block .section-title .subtitle,	
.part-block .section-title .subtitle:before {
	color:var(--wd-white);
}		
.part-block .company-image {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 0;
	max-width: 980px;
}
@media (max-width:1600px) {
	.part-block .company-image {
		max-width: 700px;
	}
}
@media (max-width:1399px) {
	.part-block .company-image {
		display: none;
	}
}
.part-block .company-image img {
	width: 100%;
	height: 100%
}
.part-box {
	position: relative;
}
.part-box .part-content .part-items {
	text-align: center;
	position: relative;
	padding: 0 10px 25px;
	z-index: 9;
}
.part-box .part-content .part-items::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--wd-white);
	z-index: -1;
	top: 50px;
	height: initial;
}
.part-box .part-content .part-items .icon {
	width: 95px;
	height: 95px;
	line-height: 85px;
	text-align: center;
	border-radius: 50%;
	border: 4px solid var(--wd-white);
	background-color:var(--wd-gray);
	margin: 0 auto;
	box-shadow:var(--wd-shadow);
}
.part-box .part-content .part-items .content {
	margin-top: 20px;
}
.part-box .part-content .part-items .content h3 {
	font-size: 24px;
	margin-bottom: 10px;
}
.part-box .part-content .part-items:hover .icon {
	background-color: var(--wd-red);
}

/*--------------------------------------------------------/
[16] LABS 
---------------------------------------------------------*/
.labs-block {
	background-color: var(--wd-light);
	position: relative;
}
.labs-block .shape {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}	
.labs-list {
	text-align: center;
}
.labs-list li{
	display: inline-block;
	vertical-align: top;
	width: 350px;
	margin: 10px;
	text-align: left;
}	
.labs-card {
	padding: 10px;
	background-color: var(--wd-white);
	position: relative;
	z-index: 9;
}
.labs-card .thumb {
	text-align: center;
	height: 300px;
}
.labs-card .content {
	position: relative;
	margin: 20px 20px 15px;
	border-bottom:var(--wd-border);
	min-height: 200px;
}
.labs-card .content h4 {
	font-size: 1.2em;
	letter-spacing: -.96px
}
.labs-card .content h4 a {
	color: var(--wd-main);	
}
.labs-card .content h4 a:hover {
	color: var(--wd-red);
}
.labs-card .content .icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: var(--wd-red);
	position: absolute;
	top: -70px;
	right: 10px;
	border-radius: 50%;
	border: 4px solid var(--wd-red);
}
.labs-card .content .icon i {
	display: inline-block;
	color: var(--wd-white);
	font-size: 2em;
	text-align: center;
}
.labs-card:hover .content .icon {
	background-color: var(--wd-red);
	border: 4px solid var(--wd-white);
}
.labs-card:hover .content .icon i {
	color: var(--wd-white);
}	
.labs-card .link-meta {
	padding: 0 20px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.labs-card .link-meta a {
	color: var(--wd-main);
	font-size: 1em;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -.64px;
}
.labs-card .link-meta a:hover {
	color: var(--wd-red);
}

/*--------------------------------------------------------/
[17] JAVASCRIPT 
---------------------------------------------------------*/
.javascript-box {
	margin-bottom: 22px;
	padding: 20px;
	background:var(--wd-light);
	position: relative;
	z-index: 9;
}
.javascript-box a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}		
.javascript-box:hover {
	margin-right: -250px;
}
@media (max-width:991px) {
	.javascript-box:hover {
		margin-right: 0;
	}
}		
.javascript-box .title-wrap {
	color: var(--wd-main);
	font-size: 1.2em;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -.96px;
	white-space: nowrap;
	margin-right: 20px;
}
@media (max-width:1199px) {
	.javascript-box .title-wrap {
		font-size: 1em;
	}
}
@media (max-width:400px) {
	.javascript-box .title-wrap {
		white-space:normal;
	}
}		
.javascript-box .title-wrap .box-icon {
	display: inline-block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	margin-right: 20px;
	background: rgba(var(--wd-main-rgb),0.1);
}
.javascript-box:hover .title-wrap .box-icon {
	background: var(--wd-red);
	color: var(--wd-white);
}		
.javascript-box p {
	margin: 0;
	margin-left: -200px;
	opacity: 0;
	visibility: hidden;
}

.javascript-box:hover p {
	opacity: 1;
	visibility: visible;
	margin-left: 0;
}
@media (max-width:991px) {
	.javascript-box p {
		display: none;
	}
}
.javascript-box .icon i {
	font-size: 2em;
	color: var(--wd-main);
}
.javascript-box:hover .icon i {
	transform: rotate(90deg);
}
@media (max-width:991px) {
	.javascript-box p {
		margin-left: 0;
	}
	.javascript-img {
		display: none;
	}	
}
/*--------------------------------------------------------/
[18] SELFWORK 
---------------------------------------------------------*/
.selfwork-block {
	background-image: url('../picture/index/selfwork-bg.jpg');
}	
@media (max-width:991px) {
	.selfwork-block {
		background-image: initial !important;
		background-color: var(--wd-light);	
	}
}	
.selfwork-block .section-title {
	text-align: left;
}
.selfwork-block .selfwork-content {
	position: relative;
	max-width: 415px;
}
.selfwork-block .selfwork-content .arrow-btn {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 15px;
	margin-top: 40px;
}
.selfwork-block .selfwork-content .arrow-btn .slider-prev, 
.selfwork-block .selfwork-content .arrow-btn .slider-next	{
	width: 56px;
	height: 56px;
	line-height: 56px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--wd-white);
	box-shadow: var(--wd-shadow);
}
.selfwork-block .selfwork-content .arrow-btn .slider-prev:hover,
.selfwork-block .selfwork-content .arrow-btn .slider-next:hover	{
	background-color: var(--wd-red);
	color: var(--wd-white);
}
.selfwork-card {
	position: relative;
	padding: 40px 30px;
	border-radius: 16px;
	border:var(--wd-border);
	background-color:var(--wd-white);
}
.selfwork-card .selfwork-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	position: relative;
}
.selfwork-card .selfwork-header h4{
	margin: 0;	
}
.selfwork-card .selfwork-header span{
	display: block;
	margin-top: 40px;
	font-size: 10em;
	line-height: 0;
	color: rgba(var(--wd-main-rgb),0.2);
	font-weight: 600;
}

/*--------------------------------------------------------/
[19] BRANDS 
---------------------------------------------------------*/
.brand-block .brand-title {
	position: relative;
	color: var(--wd-blue);
	text-align: center;
	font-size: 1.4em;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 30px;
}
.brand-block .brand-title:before,
.brand-block .brand-title:after	{
	position: absolute;
	content: "";
	width: 430px;
	height: 1px;
	background-color: var(--wd-gray);
}	
.brand-block .brand-title:before {
	top: 15px;
	left: 0;
}
.brand-block .brand-title:after {
	top: 15px;
	right: 0;
}	
@media (max-width:1199px) {
	.brand-block .brand-title:before,
	.brand-block .brand-title:after {
		display: none;
	}
}
.brand-logo-box {
	width: 150px;
	height: 150px;
	overflow: hidden;
	margin: auto;
	position: relative;
	display: block;
}
.brand-logo-box img {
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.brand-logo-box img.gray {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
}
.brand-logo-box img.original {
	opacity: .4;
	transform: translateY(0%);
}	
.brand-logo-box:hover a img.gray {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
}
.brand-logo-box:hover a img.original {
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
}

/*--------------------------------------------------------/
[20] PRESENTATION 
---------------------------------------------------------*/
.presentation-block {
	background: var(--wd-light);
}
.presentation-box .presentation-img-box {
	position: relative;
	margin: 0 60px;
}
.presentation-box .presentation-img-box img {
	border: 6px solid var(--wd-white);
}			
@media (max-width:1199px) {
	.presentation-box .presentation-img-box {
		margin-left: 0;
		margin-bottom: 0;
	}
}
@media (max-width:997px) {
	.presentation-box .presentation-img-box {
		display: none;
	}
}
.presentation-box .presentation-img-box .img1 {
	position: relative;
}
.presentation-box .presentation-img-box .img2 {
	position: absolute;
	bottom: -130px;
	left: -150px;
	max-width: 300px;
}
.presentation-box .presentation-img-box .img2 img {
	border-radius: 10px 100px 5px 30px; 
}	
@media (max-width:1199px) {
	.presentation-box .presentation-img-box .img2 {
		left: -50px;
		bottom: -100px;
	}
}
.presentation-content .section-title {
	text-align: left;
}	
.presentation-box .accordion .pr-accordion-item {
	background: var(--wd-white);
	border: var(--wd-border);
	margin-bottom: 10px;
	border-radius: 0;
}
.presentation-box .accordion .pr-accordion-item .pr-accordion-header {
	margin: 0;
}
.presentation-box .accordion .pr-accordion-item .pr-accordion-button {
	color: var(--wd-main);
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	padding: 15px 30px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	text-align: left;
}
@media (max-width:575px) {
	.presentation-box .accordion .pr-accordion-item .pr-accordion-button {
		padding: 20px;
		font-size: 18px;
	}
}
@media (max-width:450px) {
	.presentation-box .accordion .pr-accordion-item .pr-accordion-button {
		padding: 14px;
		font-size: 16px;
	}
}
.presentation-box .accordion .pr-accordion-item .pr-accordion-button span {
	z-index: 11;
}
.presentation-box .accordion .pr-accordion-item .pr-accordion-button span i {
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	background-color: var(--wd-blue);
	color: var(--wd-white);
	font-size: 16px;
	display: inline-block;
}
.presentation-box .accordion .pr-accordion-item .pr-accordion-button.collapsed span {
	transform: rotate(-90deg);
}
.presentation-box .accordion .pr-accordion-item .pr-accordion-button.collapsed span i {
	background-color: var(--wd-light);
	color: var(--wd-main);
}
.presentation-box .accordion .pr-accordion-item .pr-accordion-body {
	padding: 10px 50px 30px 35px;
}
@media (max-width:450px) {
	.presentation-box .accordion .pr-accordion-item .pr-accordion-body {
		padding: 0 26px 26px 26px;
	}
}	
.pr-list {
	margin:0;
}
.pr-list li {
	margin:0;
	border-bottom: 1px dashed var(--wd-gray);
	padding: 8px;
	font-size: 0.9em;
}
.pr-list li:hover{
	padding-left: 13px;
}

/*--------------------------------------------------------/
[21] BALLS 
---------------------------------------------------------*/
.ball-block .nav {
	border: none;
	margin-bottom: 50px;
}
.ball-block .nav .nav-tabs {
	border-bottom: 0;
	display: flex;
	justify-content: center;
}
.ball-block .nav .nav-link {
	font-size: 1.1em;
	font-weight: 500;
	border: 0;
	border-radius: 0;
	padding: 7px 56px;
	position: relative;
	background: rgba(var(--wd-white-rgb),0);
	z-index: 2;
	color: var(--wd-main);
	margin-bottom: 0;
}
.ball-block .nav .nav-link::before {
	position: absolute;
	content: "";
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(50%);
	background: var(--wd-light);
	width: 75px;
	height: 32px;
	border-radius: 20px;
	border: 1px solid var(--wd-blue);
}
.ball-block .nav .nav-link::after {
	position: absolute;
	content: "";
	right: -33px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--wd-blue);
	z-index: 1;
}
.ball-block .nav .nav-link:first-child {
	padding-left: 0;
}
.ball-block .nav .nav-link:last-child {
	padding-right: 0;
}
.ball-block .nav .nav-link:last-child::after {
	display: none;
}
.ball-block .nav .nav-link:last-child::before {
	display: none;
}
.ball-block .nav .nav-link.active {
	color: var(--wd-main);
}
.ball-block .nav .nav-link.active::after {
	right: 8px;
}	
.block-list {
	text-align: center;
}
.block-list li{
	display: inline-block;
	width: 370px;
	margin: 10px;
	text-align: left;
	vertical-align: top;
}	
@media (max-width:575px) {
	.block-list li{
		width: 90%;
		margin: 10px auto;
	}
}
.ball-item {
	border-radius: 15px 0 0 15px;
	background: var(--wd-white);
	box-shadow: var(--wd-shadow);
	padding:20px 40px 40px;
	border-radius: 15px;
}
@media (max-width:575px) {
	.ball-item {
		padding:20px;
		border-radius: 15px;
	}
}
.ball-item .ball-list {
	margin-top: 30px;
}
.ball-item .ball-list li {
	font-size: 1.1em;
	color: var(--wd-main);
	margin-bottom: 20px;
}
.ball-item .ball-list li span {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
	font-weight: 600;
	background: var(--wd-light);
	color: var(--wd-main);
	margin-right: 8px;
}
.ball-item .ball-list li span.gray {
	background: var(--wd-gray);
	color: var(--wd-white);
}	
.ball-item .ball-list li span.red {
	background: var(--wd-red);
	color: var(--wd-white);
}	
.ball-block .inner-box {
	margin-top: 40px;
	text-align: center;
}
.ball-block .inner-bullet {
	text-align:center;
}
.ball-block .inner-bullet li {
	display:inline-flex;
	align-items: center;
	margin: 10px;
}
.ball-block .inner-bullet strong{
	display:inline-block;
	background:var(--wd-light);
	width:30px;
	height:30px;
	margin-right:5px;
	border-radius:100%;
}
.ball-block .inner-bullet strong.test{
	background:var(--wd-red);
}
.balls-box .inner-box span.pres{
	background:var(--wd-gray);
	color: #fff;
}
.ball-block .inner-bullet strong.pres{
	background:var(--wd-gray);
}
.ball-item.active {
	background-color: var(--wd-blue);
	color: var(--wd-white);
}
.ball-item.active .ball-list li {
	color: var(--wd-white);
}

/*--------------------------------------------------------/
[22] TEACHERS 
---------------------------------------------------------*/
.teacher-block {
	position: relative;
	background-color: var(--wd-light);
}
.teacher-list {
	text-align: center;
}
.teacher-list li{
	display: inline-block;
	margin: 10px;
	width: 300px;
	text-align: left;		
}	
.teacher-card {
	position: relative;
	z-index: 99;
}
.teacher-card .thumb {
	position: relative;
	overflow: hidden;
}
.teacher-card .thumb a img {
	width: 100%;
}
.teacher-card .thumb .social-list {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	bottom: 24px;
	left: -24px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.teacher-card:hover .thumb a img {
	transform: scale(1.1);
}
.teacher-card:hover .thumb .social-list {
	opacity: 1;
	visibility: visible;
	left: 24px;
}	
.teacher-card .thumb .social-list li {
	margin: 3px;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 100%;
	overflow: hidden;
}
.teacher-card .thumb .social-list li a {
	display: block;
	background: var(--wd-blue);
	color: var(--wd-white);
}	
.teacher-card .thumb .social-list li a:hover {
	background-color: var(--wd-red);
	color: var(--wd-white) !important;
}
.teacher-card h5 {
	font-size: 1em;
	font-weight: 600;
}
.teacher-card .content .name-wrap h5 a {
	color: var(--wd-main);
}
.teacher-card .content .name-wrap .name a:hover {
	color: var(--wd-blue);
}

/*--------------------------------------------------------/
[23] VIDEO PRESENTATION 
---------------------------------------------------------*/
.video-presentation {
	position: relative;
	padding: 209px 0;
	background: url('../picture/index/video-bg.jpg') fixed no-repeat center center;
	background-size: cover;
}
@media (max-width:1199px) {
	.video-presentation {
		padding: 200px 0;
	}
}
@media (max-width:767px) {
	.video-presentation {
		padding: 170px 0;
	}
}
@media (max-width:575px) {
	.video-presentation {
		padding: 150px 0;
	}
}
.video-presentation:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--wd-main-rgb),0.6);
}
.video-presentation-box {
	max-width: 785px;
	margin: 0 auto;
	text-align: center;
	display: block;
}
.video-presentation-box h2 {
	position: relative;
	z-index: 4;
	color: var(--wd-white);
	text-align: center;
	font-size: 2.5em;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.video-presentation-box .video-wrap {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	line-height: 100px;
	margin-bottom: 48px;
}
.video-presentation-box .video-wrap a {
	position: relative;
	display: inline-block;
}
.video-presentation-box .video-wrap a i {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 2em;
	color: var(--wd-white);
	transform: translate(-50%, -50%);
}
.video-presentation-box .video-wrap a img {
	position: relative;
	width: 100px;
	height: 100px;
	line-height: 100px;
	animation: circl 10s linear infinite;
}	

/*--------------------------------------------------------/
[24] FAQ 
---------------------------------------------------------*/
.faq-box .accordion .faq-accordion-item {
	background: var(--wd-white);
	border: var(--wd-border);
	margin-bottom: 10px;
	border-radius: 0;
}
.faq-box .accordion .faq-accordion-item .faq-accordion-header {
	margin: 0;
}
.faq-box .accordion .faq-accordion-item .faq-accordion-button {
	color: var(--wd-main);
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	padding: 15px 30px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	text-align: left;
}
@media (max-width:575px) {
	.faq-box .accordion .faq-accordion-item .faq-accordion-button {
		padding: 20px;
		font-size: 18px;
	}
}
@media (max-width:450px) {
	.faq-box .accordion .faq-accordion-item .faq-accordion-button {
		padding: 14px;
	}
}
.faq-box .accordion .faq-accordion-item .faq-accordion-button span {
	z-index: 11;
}
.faq-box .accordion .faq-accordion-item .faq-accordion-button span i {
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	background-color: var(--wd-red);
	color: var(--wd-white);
	font-size: 16px;
	display: inline-block;
}
.faq-box .accordion .faq-accordion-item .faq-accordion-button.collapsed span {
	transform: rotate(-90deg);
}
.faq-box .accordion .faq-accordion-item .faq-accordion-button.collapsed span i {
	background-color: var(--wd-light);
	color: var(--wd-main);
}
.faq-box .accordion .faq-accordion-item .faq-accordion-body {
	padding: 10px 50px 30px 35px;
}
@media (max-width:450px) {
	.faq-box .accordion .faq-accordion-item .faq-accordion-body {
		padding: 0 26px 26px 26px;
	}
}	
.faq-list {
	margin:0;
}
.faq-list li {
	margin:0;
	border-bottom: 1px dashed var(--wd-gray);
	padding: 8px;
	font-size: 0.9em;
}
.faq-list li:hover{
	padding-left: 13px;
}
.faq-list li span{
	display: inline-flex;
	align-items: center;
    justify-content: center;	
	background: var(--wd-red);
	width:30px;
	height:30px;
	margin-right:10px;
	border-radius:100%;
	font-size: 1.3em;
	color:var(--wd-white);
}
.faq-list li:hover span{
	transform: rotate(360deg);
}
@media(max-width:991px){
	.faq-img {
		margin-top: 50px;
	}	
}
@media(max-width:575px){
	.faq-img {
		display: none;
	}	
}
/*--------------------------------------------------------/
[25] PAGES
---------------------------------------------------------*/
aside {
	padding-left: 2rem !important;
}	
aside h5 {
	font-weight: 600;
	font-size: 1em;
	text-transform: uppercase;
	line-height: 25px;
	display: block;
	margin: 0 0 20px;
	color: var(--wd-gray);
	letter-spacing: 1px;
}	
aside h5 i {
	color: var(--wd-red);
	font-size: 3em;
	position: relative;
	top: 10px;
}	

.work-tags li {
	display: inline-block;
	margin: 0 10px 10px 0;
	list-style: none;
	font-size: 0.8em;
	font-weight: 600;
}
.work-tags li a {
	display: block;
	background:var(--wd-blue);
	color:var(--wd-white);
	padding: 10px;
}
.work-tags.red li a {
	background:var(--wd-red);
}
.work-tags.gray li a {
	background:var(--wd-gray);
}
.work-tags.dark li a {
	background:var(--wd-main);
}
.work-tags li a:hover {
	background:var(--wd-light);
	color:var(--wd-main);
}
.resource-list li {
	border-bottom: 1px solid var(--wd-light);
	padding: 0;
	margin: 0;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-size: 0.9em;
	list-style: none;
}
.resource-list li a {
	color:var(--wd-gray);
	display: block;
}
.resource-list li:hover {
	border-color: var(--wd-gray);
}
.resource-list li:hover a {
	color: var(--wd-red);
}
.image-list {
	padding: 0px;
	margin: 20px auto;
	list-style: none;
	text-align: center;
}
.image-list li {
	width:250px;
	display: inline-block;
	margin: 10px;
	padding: 0px;
	vertical-align:top;
	list-style: none;
}
.image-list figure{
	position: relative;
    overflow: hidden;
    margin: 0;
	padding:10px;
}
.image-list li figure:hover{
	box-shadow:0 10px 20px -12px rgba(0, 0, 0, 0.42), 
				0 3px 20px 0px rgba(0, 0, 0, 0.12), 
				0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.image-list figure img{
	max-width:230px;
	max-height:230px;
}
.image-list figcaption {
	padding: 10px;
	font-size: 1.2em;
}
@media(min-width:576px){
	.image-list.big li {
		width:300px;
	}
	.image-list.big figure img{
		max-width:280px;
		max-height:280px;
	}	
}
ul.column3,
ul.column2,
ul.column1 {
	margin:10px 0 20px;
}
ul.column3{
 -webkit-columns: 3; 
	-moz-columns: 3; 
		 columns: 3;
		 
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	 
}
ul.column2{
 -webkit-columns: 2; 
	-moz-columns: 2; 
		 columns: 2;
		 
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	 
}
ul.column3,
ul.column2 {
	margin:10px 0 20px;
}
@media (max-width:991px) {
	ul.column3,
	ul.column2 {
	 -webkit-columns: 1; 
		-moz-columns: 1; 
			 columns: 1;
	}
}
.masonry1 {
	-webkit-column-count: 2;
	-moz-column-count:2;
	column-count: 2;
	-webkit-column-gap: 1.5em;
	-moz-column-gap: 1.5em;
	column-gap: 1.5em;
	margin: 0;
	padding: 0;
	font-size: .85em;
	display: block;
}
.masonry1 .item {
	display: inline-block;
	background: var(--wd-white);
	padding: 10px 10px 0;
	margin: 0 0 1.5em;
	width: 100%;
	transition:1s ease all;
	box-sizing: border-box;
	border: 1px dotted rgba(0,0,0,0.4);
	border-radius: 10px;
}
.masonry1 .item p{
	font-size: 1.1em;
	line-height: 1.5;
}

.masonry1 .item .box-code {
	font-size: 0.75em;
	line-height: 1.2;
}
@media only screen and (max-width: 767px) {
	.masonry1 {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}
.box-code {
	background:var(--wd-white);
	box-shadow: var(--wd-shadow);
	padding:10px 20px;
	margin:20px 0;
	line-height: 1;
}
.video-block .ratio {
	margin: 10px;
}
.video-block h5 {
	text-align: center;
	margin: 0 0 25px;
}
@media only screen and (min-width: 992px) {
	.ratio-box  {
		width: 60%;
		margin: auto;
	}
}
.example {
	width: 100%; 
	min-height: 300px; 
	border: 1px solid var(--wd-light); 
	box-shadow: var(--wd-shadow-dark);
}
/*--------------------------------------------------------/
[26] JOURNAL
---------------------------------------------------------*/

.result-block .nav-pills .nav-link {
	border: 0;
	border-radius: 0;
	background-color: var(--wd-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(--wd-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;
		display: block;
	}
	.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(--wd-light);
}
.result-table::-webkit-scrollbar-thumb{
	width: 7px;
	background: var(--wd-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;
}
@media (max-width:1199px){
	.result-table iframe{
		width: 100%!important;
		min-height: 100vh;
		border: var(--wd-border);
	}	
	.result-title button {
		margin: 10px;
	}	
}
/*--------------------------------------------------------/
[] 
---------------------------------------------------------*/

/*--------------------------------------------------------/
[] 
---------------------------------------------------------*/
