/***
=============================================
    Page Header
=============================================
***/
.page-header {
	position: relative;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: scroll;
	z-index: 1;
}
.page-header:before {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: "";
	background: rgba(28,30,39, 0.4);
	z-index: -1;
}
.page-header__wrapper {
	position: relative;
	display: block;
	padding-top: 150px;
	z-index: 3;
}
.page-header__title {
	position: relative;
	display: block;
	padding-bottom: 97px;
}
.page-header__title h2 {
	font-size: 40px;
	color: #ffffff;
	line-height: 1em;
	font-weight: 100;
	text-transform: capitalize;
	letter-spacing: 2px;
}
.page-header__title p {
	font-size: 16px;
	color: #ffffff;
	line-height: 1em;
	font-weight: 100;
	text-transform: capitalize;
	letter-spacing: 2px;
}
.page-header__menu {
	position: relative;
	display: block;
	float: right;
}
.page-header__menu-list {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 10px 30px 6px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.page-header__menu-list li {
	position: relative;
	float: left;
	color: var(--thm-gray);
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	margin-right: 25px;
}
.page-header__menu-list li::before {
	position: absolute;
	top: 7px;
	left: -12px;
	bottom: 7px;
	content: "";
	width: 1px;
	background: #e0e2e9;
	transform: rotate(25deg);
}
.page-header__menu-list li:first-child::before {
	display: none;
}
.page-header__menu-list li:last-child {
	margin-right: 0;
}
.page-header__menu-list li.active {
	color: #a30404;
}
.page-header__menu-list li a {
	color: #333;
	padding: 0 5px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.page-header__menu-list li a:hover {
	color: #a30404;
}
/***
=============================================
    Features One
=============================================
***/
.features-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 120px 0px 90px;
}
.features-one__single {
	position: relative;
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
	padding: 35px 40px 26px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
	border: 1px solid #ffffff;
	margin-bottom: 30px;
}
.features-one__single:hover {
	border: 1px solid var(--thm-base);
}
.features-one__single::before {
	position: absolute;
	left: -1px;
	bottom: -1px;
	right: -1px;
	height: 10px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	background: var(--thm-base);
	content: "";
	transform: scaleY(0);
	transform-origin: center;
	transform-style: preserve-3d;
	transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.22);
	z-index: 1;
}
.features-one__single:hover:before {
	transform: scaleY(1.0);
}
.features-one__single-icon {
	position: relative;
	display: block;
	color: var(--thm-black);
	transition: all 500ms ease;
}
.features-one__single:hover .features-one__single-icon {
	transform: rotateY(180deg);
	color: var(--thm-base);
}
.features-one__single-icon span::before {
	font-size: 60px;
}
.features-one__single-text {
	position: relative;
	display: block;
	padding-left: 20px;
}
.features-one__single-text h4 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}
.features-one__single-text h4 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.features-one__single-text h4 a:hover {
	color: var(--thm-base);
}
.features-one__single-text p {
	margin: 0;
	line-height: 28px;
}
/***
=============================================
    About One
=============================================
***/
.about-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 0px 0 120px;
}
.about-one__left {
	position: relative;
	display: block;
	margin-left: -130px;
	margin-right: 30px;
}
.about-one__left-img-box {
	position: relative;
	display: block;
	margin-left: -5px;
	margin-right: -5px;
	z-index: 1;
}
.about-one__left::before {
	position: absolute;
	top: 30px;
	left: -20px;
	bottom: 30px;
	background: var(--thm-base);
	width: 40px;
	border-radius: 8px;
	content: "";
	z-index: 1;
}
.about-one__left-single {
	position: relative;
	float: left;
	padding: 0px 5px 0px;
}
.about-one__left-img1 {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
}
.about-one__left-img1::before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, .2);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 1;
}
.about-one__left-img1:hover:before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
.about-one__left-img1 img {
	border-radius: 8px;
	width: 100%;
	transform: scale(1);
	transition: all 0.7s ease 0s;
}
.about-one__left-img1:hover img {
	transform: scale(1.1);
}
.about-one__left-img2 {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
}
.about-one__left-img2::before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, .2);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 1;
}
.about-one__left-img2:hover:before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
.about-one__left-img2 img {
	border-radius: 8px;
	width: 100%;
	transform: scale(1);
	transition: all 0.7s ease 0s;
}
.about-one__left-img2:hover img {
	transform: scale(1.1);
}
.about-one__left-overlay {
	position: absolute;
	bottom: 20px;
	right: 0px;
	display: flex;
	align-items: center;
	background: #ffffff;
	box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 29px 50px 21px 30px;
	z-index: 10;
}
.about-one__left-overlay .icon {
	position: relative;
	display: block;
}
.about-one__left-overlay .icon span::before {
	font-size: 60px;
	color: var(--thm-base);
}
.about-one__left-overlay .title {
	position: relative;
	display: block;
	padding-left: 19px;
}
.about-one__left-overlay .title h6 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
}
.about-one__left-overlay .title h6 span {
	position: relative;
	display: inline-block;
	line-height: 28px;
}
.about-one__right {
	position: relative;
	display: block;
}
.about-one__right-inner {
	position: relative;
	display: block;
}
.about-one__right-text {
	margin: 0;
}
.about-one__right-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 40px;
}
.about-one__right-list-item {
	position: relative;
	display: block;
	margin-bottom: 8px;
}
.about-one__right-list-item:last-child {
	margin-bottom: 0;
}
.about-one__right-list-item .icon {
	position: absolute;
	top: 3px;
	left: 0;
	color: var(--thm-base);
	font-size: 20px;
	transform: scale(1);
	transition: color 500ms ease, transform 500ms ease;
}
.about-one__right-list-item:hover .icon {
	color: var(--thm-black);
	transform: scale(.8);
}
.about-one__right-list-item .text {
	position: relative;
	display: block;
	padding-left: 35px;
}
.about-one__right-list-item .text p {
	margin: 0;
}
.about-one__btn {
	position: relative;
	display: block;
	margin-top: 54px;
}
/***
=============================================
    Courses One
=============================================
***/
.courses-one {
	position: relative;
	display: block;
	padding: 0px 0px 90px;
	background: #ffffff;
}
.courses-one .section-title {
	margin-bottom: 42px;
}
.courses-one__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
}
.courses-one__single-img {
	position: relative;
	display: block;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	overflow: hidden;
	z-index: 1;
}
.courses-one__single-img::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: rgba(var(--thm-black-rgb), .3);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	transform: scaleX(0);
	transition: all 500ms ease;
	z-index: 1;
}
.courses-one__single:hover .courses-one__single-img:before {
	transform: scaleX(1);
}
.courses-one__single-img img {
	width: 100%;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	transition: all 500ms ease;
	transform: scale(1);
}
.courses-one__single:hover .courses-one__single-img img {
	transform: scale(1.05);
}
.courses-one__single-img .overlay-text {
	position: absolute;
	top: 7px;
	right: 10px;
	z-index: 2;
}
.courses-one__single-img .overlay-text p {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 10px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
	background: var(--thm-base);
	margin: 0;
	border-radius: 8px;
	padding: 5px 10px 2px;
	letter-spacing: 0.1em;
}
.courses-one__single-content {
	position: relative;
	display: block;
	box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
	padding: 30px 30px 17px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.courses-one__single-content-overlay-img {
	position: absolute;
	top: -15px;
	z-index: 5;
}
.courses-one__single-content-overlay-img img {
	width: 100%;
}
.courses-one__single-content-name {
	color: var(--thm-base);
	font-size: 12px;
	line-height: 22px;
	font-weight: 400;
	margin-bottom: 2px;
}
.courses-one__single-content-title {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
}
.courses-one__single-content-title a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.courses-one__single-content-title a:hover {
	color: var(--thm-base);
}
.courses-one__single-content-review-box {
	position: relative;
	display: flex;
	align-items: center;
}
.courses-one__single-content-review-box ul {
	position: relative;
	display: block;
	overflow: hidden;
}
.courses-one__single-content-review-box ul li {
	position: relative;
	float: left;
}
.courses-one__single-content-review-box ul li i::before {
	color: var(--thm-primary);
	font-size: 15px;
}
.courses-one__single-content-review-box .rateing-box {
	position: relative;
	display: block;
}
.courses-one__single-content-review-box .rateing-box span {
	position: relative;
	display: inline-block;
	color: var(--thm-gray);
	font-size: 12px;
	line-height: 22px;
	font-weight: 400;
	padding-left: 5px;
}
.courses-one__single-content-price {
	color: var(--thm-black);
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	margin: 0;
	margin-bottom: 11px;
}
.courses-one__single-content-courses-info {
	position: relative;
	display: block;
	overflow: hidden;
	border-top: 1px solid #e0e2e9;
	padding-top: 15px;
}
.courses-one__single-content-courses-info li {
	position: relative;
	float: left;
	color: var(--thm-gray);
	font-size: 12px;
	line-height: 22px;
	font-weight: 400;
	margin-left: 10px;
	padding-left: 10px;
}
.courses-one__single-content-courses-info li:first-child {
	margin-left: 0;
	padding-left: 0;
}
.courses-one__single-content-courses-info li::before {
	position: absolute;
	top: 5px;
	left: 0;
	bottom: 8px;
	width: 1px;
	background: #e0e2e9;
	content: "";
	transform: rotate(25deg);
}
.courses-one__single-content-courses-info li:first-child:before {
	display: none;
}
.courses-one--courses {
	position: relative;
	display: block;
	padding: 120px 0px 90px;
}
.courses-one--courses__top {
	position: relative;
	display: block;
	margin-bottom: 30px;
}
.courses-one--courses__menu-box {
	position: relative;
	display: block;
	overflow: hidden;
}
.courses-one--courses__menu-box ul {
	position: relative;
	display: block;
	overflow: hidden;
}
.courses-one--courses__menu-box ul .active {
	color: #ffffff;
	background-color: var(--thm-base);
}
.courses-one--courses__menu-box ul li {
	position: relative;
	float: left;
	color: var(--thm-gray);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	padding: 10px 15px 6px;
	cursor: pointer;
	transition: all 0.4s linear;
	border-radius: 8px;
	margin-right: 2px;
}
.courses-one--courses__menu-box ul li:last-child {
	margin-right: 0;
}
.courses-one--courses__menu-box ul li:hover {
	color: #ffffff;
	background: var(--thm-base);
}
.courses-one--courses__menu-box li .count {
	display: none;
}
/***
=============================================
    Registration One
=============================================
***/
.registration-one {
	position: relative;
	display: block;
	padding: 120px 0px 120px;
	z-index: 1;
}
.registration-one .section-title__tagline {
	color: #ffffff;
}
.registration-one .section-title__title {
	color: #ffffff;
}
.registration-one .section-title__title span {
	color: var(--thm-primary);
}
.registration-one__bg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 345px;
	right: 0;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}
.registration-one__bg::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(var(--thm-black-rgb), .7);
	content: "";
	z-index: 1;
}
.registration-one__left {
	position: relative;
	display: block;
	max-width: 625px;
	width: 100%;
	z-index: 2;
}
.registration-one__left-text {
	color: rgba(255, 255, 255, .7);
	margin: 0;
}
.registration-one__left-transform-box {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 175px;
	padding-bottom: 60px;
	border-bottom: 1px solid #e0e2e9;
}
.registration-one__left-transform-box-icon {
	position: relative;
	display: block;
	width: 105px;
	height: 105px;
	border-radius: 50%;
	background: var(--thm-base);
	color: #ffffff;
	text-align: center;
}
.registration-one__left-transform-box-icon span::before {
	font-size: 50px;
	line-height: 105px;
}
.registration-one__left-transform-box-text {
	position: relative;
	display: block;
	padding-left: 30px;
}
.registration-one__left-transform-box-text h3 {
	font-size: 22px;
	line-height: 32px;
	font-weight: 700;
}
.registration-one__left-transform-box-text h3 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.registration-one__left-transform-box-text h3 a:hover {
	color: var(--thm-base);
}
.registration-one__left-transform-box-text p {
	margin: 0;
}
.registration-one__right {
	position: relative;
	display: block;
	z-index: 2;
	margin-top: 64px;
}
.registration-one__right-form {
	position: relative;
	background-color: #ffffff;
	padding: 55px 60px 60px;
	max-width: 470px;
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
	z-index: 2;
	border-radius: 8px;
}
.registration-one__right-form .title-box {
	position: relative;
	display: block;
}
.registration-one__right-form .title-box h4 {
	position: relative;
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
}
.registration-one__right-form .form-box {
	position: relative;
	margin-top: 30px;
}
.registration-one__right-form .form-group {
	position: relative;
	margin-bottom: 10px;
}
.registration-one__right-form .form-group input[type="text"], .registration-one__right-form .form-group input[type="email"], .registration-one__right-form .form-group input[type="tel"], .registration-one__right-form .form-group input[type="url"], .registration-one__right-form .form-group textarea, .registration-one__right-form .form-group select {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 25px;
	color: var(--thm-gray);
	font-weight: 400;
	padding: 16px 30px 13px;
	width: 100%;
	height: 60px;
	border-radius: 8px;
	background-color: #f1f2f6;
	outline: none;
	border: none;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.registration-one__right-form .form-group textarea {
	height: 130px;
	resize: none;
}
.registration-one__right-form button {
	border: none;
	outline: none;
	padding: 0;
}
/***
=============================================
    Categories One
=============================================
***/
.categories-one {
	position: relative;
	display: block;
	padding: 0px 0px 120px;
}
.categories-one .section-title {
	margin-bottom: 42px;
}
.categories-one__wrapper {
	position: relative;
	display: block;
}
.categories-one__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
}
.categories-one__single-img {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
}
.categories-one__single-img::before {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-color: rgba(var(--thm-black-rgb), .30);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	transform: scaleY(0);
	opacity: 0;
	z-index: 1;
}
.categories-one__single:hover .categories-one__single-img::before {
	opacity: 1;
	transform: scaleY(1);
}
.categories-one__single-img img {
	width: 100%;
}
.categories-one__single-overlay {
	position: absolute;
	left: 20px;
	bottom: 20px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	transform: scaleY(0);
	z-index: 1;
}
.categories-one__single:hover .categories-one__single-overlay {
	transform: scaleY(1);
}
.categories-one__single-overlay-text1 {
	position: relative;
	display: block;
}
.categories-one__single-overlay-text1 p {
	position: relative;
	display: inline-block;
	color: #aeb2c2;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	background: var(--thm-black);
	padding: 10px 20px 6px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	margin: 0;
}
.categories-one__single-overlay-text2 {
	position: relative;
	display: block;
}
.categories-one__single-overlay-text2 h4 {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
	padding: 15px 75px 10px 20px;
	background: var(--thm-base);
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.categories-one__btn {
	position: relative;
	display: block;
	margin-top: 10px;
}
.categories-one__btn .thm-btn {
	background: #f1f2f6;
	color: var(--thm-gray);
}
.categories-one__btn .thm-btn:hover {
	color: #ffffff;
}
/***
=============================================
    Testimonials One
=============================================
***/
.testimonials-one {
	position: relative;
	display: block;
	padding: 120px 0px 108px;
	background: var(--thm-base);
	overflow: hidden;
}
.testimonials-one::before {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: #ffffff;
	height: 425px;
	content: "";
}
.testimonials-one .section-title {
	margin-bottom: 42px;
}
.testimonials-one .section-title__tagline {
	color: #ffffff;
}
.testimonials-one .section-title__title {
	color: #ffffff;
}
.testimonials-one .auto-container {
	max-width: 1500px;
	width: 100%;
}
.testimonials-one__wrapper {
	position: relative;
	display: block;
	z-index: 1;
}
.testimonials-one__wrapper .shape1 {
	position: absolute;
	top: -475px;
	right: -325px;
	z-index: -1;
}
.testimonials-one__pattern {
	position: absolute;
	left: -325px;
	top: -680px;
	z-index: -1;
	opacity: 0.15;
}
.testimonials-one__single {
	position: relative;
	display: block;
}
.testimonials-one__single-inner {
	position: relative;
	display: block;
	background: #ffffff;
	border-radius: 8px;
	padding: 45px 51px 50px;
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.testimonials-one__single-title {
	color: var(--thm-base);
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	margin-bottom: 23px;
}
.testimonials-one__single-text {
	margin: 0;
	font-weight: 300;
}
.testimonials-one__single-client-info {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 18px;
}
.testimonials-one__single-client-info-img {
	position: relative;
	display: block;
}
.testimonials-one__single-client-info-img img {
	width: 100%;
}
.testimonials-one__single-client-info-text {
	position: relative;
	display: block;
	padding-left: 20px;
}
.testimonials-one__single-client-info-text h5 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
}
.testimonials-one__single-client-info-text p {
	font-size: 14px;
	line-height: 24px;
	margin: 0;
}
.testimonials-one__carousel.owl-theme .owl-stage-outer {
	overflow: visible;
}
.testimonials-one__carousel .owl-stage-outer .owl-item {
	opacity: 0;
	transition: all 500ms linear;
	transition-delay: 0.1s;
}
.testimonials-one__carousel .owl-stage-outer .owl-item.active {
	opacity: 1;
}
/***
=============================================
    Company Logos One
=============================================
***/
.company-logos-one {
	position: relative;
	display: block;
	background-color: #ffffff;
	padding: 0px 0px 120px;
}
.company-logos-one__title {
	position: relative;
	display: block;
	padding-bottom: 106px;
	z-index: 1;
}
.company-logos-one__title::before {
	position: absolute;
	width: 100%;
	content: "";
	height: 1px;
	background: #e0e2e9;
	top: 14px;
	left: 0;
	z-index: -1;
}
.company-logos-one__title h6 {
	position: relative;
	display: inline-block;
	color: var(--thm-gray);
	background: #ffffff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	text-transform: uppercase;
	padding-left: 20px;
	padding-right: 20px;
}
.company-logos-one .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.company-logos-one .swiper-slide img {
	-webkit-transition: 500ms;
	transition: 500ms;
	opacity: 0.2;
	max-width: 100%;
	cursor: pointer;
}
.company-logos-one .swiper-slide img:hover {
	opacity: 0.6;
}
.company-logos-one--two {
	position: relative;
	display: block;
	padding: 0px 0px 120px;
}
/***
=============================================
    Why Choose
=============================================
***/
.why-choose-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 120px 0px 120px;
}
.why-choose-one::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: #f1f2f6;
	width: 43%;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	content: "";
}
.why-choose-one__left {
	position: relative;
	display: block;
	max-width: 490px;
	width: 100%;
}
.why-choose-one__left-text {
	margin: 0;
}
.why-choose-one__left-learning-box {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 38px;
	margin-bottom: 38px;
}
.why-choose-one__left-learning-box .icon {
	position: relative;
	display: block;
	color: var(--thm-base);
	transition: all 500ms ease;
}
.why-choose-one__left-learning-box:hover .icon {
	color: var(--thm-black);
	transform: rotateY(180deg);
}
.why-choose-one__left-learning-box .icon span::before {
	font-size: 65px;
}
.why-choose-one__left-learning-box .text {
	position: relative;
	display: block;
	padding-left: 20px;
}
.why-choose-one__left-learning-box .text h4 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
}
.why-choose-one__left-list {
	position: relative;
	display: block;
}
.why-choose-one__left-list ul {
	position: relative;
	display: block;
	overflow: hidden;
}
.why-choose-one__left-list-single {
	position: relative;
	display: block;
	margin-bottom: 8px;
}
.why-choose-one__left-list-single:last-child {
	margin-bottom: 0;
}
.why-choose-one__left-list-single .icon {
	position: absolute;
	top: 3px;
	left: 0;
}
.why-choose-one__left-list-single .icon span::before {
	color: var(--thm-base);
	font-size: 20px;
	display: block;
	transition: color 500ms ease, transform 500ms ease;
	transform: scale(1);
}
.why-choose-one__left-list-single:hover .icon span::before {
	color: var(--thm-black);
	transform: scale(.8);
}
.why-choose-one__left-list-single .text {
	position: relative;
	display: block;
	padding-left: 35px;
}
.why-choose-one__left-list-single .text p {
	margin: 0;
}
.why-choose-one__right {
	position: relative;
	display: block;
}
.why-choose-one__right-img {
	position: relative;
	display: block;
}
.why-choose-one__right-img img {
	max-width: none;
	float: left;
}
.why-choose-one__right-img-overlay {
	position: absolute;
	top: 245px;
	left: -185px;
	background: var(--thm-base);
	padding: 20px 95px 16px;
	transform: rotate(90deg);
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}
.why-choose-one__right-img-overlay p {
	color: #ffffff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0.1em;
}
/***
=============================================
    Blog One
=============================================
***/
.blog-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 113px 0px 90px;
}
.blog-one .section-title {
	margin-bottom: 42px;
	margin-top: 0px;
}
.blog-one__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
}
.blog-one__single-img {
	position: relative;
	display: block;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	overflow: hidden;
}
.blog-one__single-img::before {
	position: absolute;
	content: '';
	background-color: rgba(var(--thm-black-rgb), .30);
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	transition: all 500ms ease;
}
.blog-one__single:hover .blog-one__single-img::before, .blog-one__single:hover .blog-one__single-img::after {
	width: 50%;
}
.blog-one__single-img::after {
	position: absolute;
	content: '';
	background-color: rgba(var(--thm-black-rgb), .30);
	width: 0%;
	height: 100%;
	right: 0px;
	top: 0px;
	transition: all 500ms ease;
}
.blog-one__single-img img {
	width: 100%;
	transform: scale(1.05);
	transition: all 500ms ease;
}
.blog-one__single:hover .blog-one__single-img img {
	transform: scale(1);
}
.blog-one__single-content {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 45px 40px 38px;
	border: 1px solid #e0e2e9;
	border-top: none;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.blog-one__single:hover .blog-one__single-content {
	box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
}
.blog-one__single-content-overlay-mata-info {
	position: absolute;
	top: -20px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
	padding: 9px 25px 4px;
	overflow: hidden;
	z-index: 10;
}
.blog-one__single-content-overlay-mata-info ul {
	position: relative;
	display: block;
}
.blog-one__single-content-overlay-mata-info ul li {
	position: relative;
	float: left;
	margin-right: 13px;
}
.blog-one__single-content-overlay-mata-info ul li:last-child {
	margin-right: 0;
}
.blog-one__single-content-overlay-mata-info ul li a {
	color: var(--thm-gray);
	font-size: 13px;
	line-height: 23px;
	font-weight: 400;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.blog-one__single-content-overlay-mata-info ul li a:hover {
	color: var(--thm-base);
}
.blog-one__single-content-overlay-mata-info ul li a span::before {
	position: relative;
	display: inline-block;
	color: var(--thm-base);
	font-size: 15px;
	margin-right: 3px;
	font-weight: 700;
}
.blog-one__single-content-title {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
}
.blog-one__single-content-title a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.blog-one__single-content-title a:hover {
	color: var(--thm-base);
}
.blog-one__single-content-text {
	margin: 0;
	margin-top: 22px;
}
.blog-one--blog-two {
	position: relative;
	display: block;
	padding: 120px 0px 80px;
	overflow: hidden;
	z-index: 1;
}
.blog-one--blog-two__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 440px;
	background: #f1f2f6;
	content: "";
	z-index: -1;
}
.blog-one--blog {
	position: relative;
	display: block;
	padding: 120px 0px 90px;
}
/***
=============================================
    Newsletter One
=============================================
***/
.newsletter-one {
	position: relative;
	display: block;
	padding: 122px 0px 102px;
	background: var(--thm-base);
	overflow: hidden;
	z-index: 1;
}
.newsletter-one .section-title {
	margin-bottom: 0;
}
.newsletter-one .section-title__title {
	color: #ffffff;
}
.newsletter-one__left {
	position: relative;
	display: block;
}
.newsletter-one__right {
	position: relative;
	display: block;
	max-width: 500px;
	margin-left: 70px;
}
.newsletter-one__right .shape1 {
	position: absolute;
	top: -265px;
	right: 70px;
	z-index: -1;
}
.newsletter-one__right .shape2 {
	position: absolute;
	top: -450px;
	right: -470px;
	z-index: -1;
}
.newsletter-one__right .newsletter-form {
	display: block;
	overflow: hidden;
}
.newsletter-one__right .newsletter-form form {
	position: relative;
	display: block;
}
.newsletter-one__right .newsletter-form form input[type=text] {
	position: relative;
	display: block;
	background: transparent;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	height: 70px;
	padding-left: 0px;
	padding-right: 40px;
	transition: all 500ms ease 0s;
	border: 1px solid transparent;
	border-bottom: 2px solid #5f6fe6;
	max-width: 100%;
	width: 100%;
	outline: none;
}
.newsletter-one__right .newsletter-form form button {
	position: absolute;
	top: 0;
	right: 0px;
	color: var(--thm-primary);
	font-size: 20px;
	line-height: 70px;
	text-align: center;
	transition: all 500ms ease 0s;
	width: 50px;
	padding: 0;
	border: none;
	background: none;
}
.newsletter-one__right-checkbox {
	position: relative;
	display: block;
	margin-top: 23px;
}
.newsletter-one__right-checkbox label {
	position: relative;
	display: inline-block;
	padding-left: 25px;
	margin-right: 0px;
	margin-bottom: 0;
	color: #ffffff;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	cursor: pointer;
}
.newsletter-one__right-checkbox input[type="checkbox"] {
	display: none;
}
.newsletter-one__right-checkbox input[type="checkbox"]+label span {
	position: absolute;
	display: block;
	top: 4px;
	left: 0;
	width: 15px;
	height: 15px;
	background-color: transparent;
	border: 2px solid #ffffff;
	cursor: pointer;
	border-radius: 50%;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.newsletter-one__right-checkbox label span:before {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: "";
	background: #ffffff;
	border-radius: 50%;
	transform: scale(0);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.newsletter-one__right-checkbox input[type="checkbox"]:checked+label span {
	border-color: #ffffff;
}
.newsletter-one__right-checkbox input[type="checkbox"]:checked+label span:before {
	transform: scale(1.0);
}
/***
=============================================
    Categories Two
=============================================
***/
.categories-two {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 120px 0px 90px;
	z-index: 1;
}
.categories-two__inner {
	position: relative;
	display: block;
}
.categories-two__inner .shape1 {
	position: absolute;
	top: -255px;
	left: -650px;
	z-index: -1;
}
.categories-two__wrapper {
	position: relative;
	display: block;
}
.categories-two__single {
	position: relative;
	float: left;
	width: 210px;
	background: #ffffff;
	border: 1px solid #e0e2e9;
	text-align: center;
	border-radius: 8px;
	margin-right: 30px;
	margin-bottom: 30px;
	padding: 30px 0px 18px;
}
.categories-two__single:last-child {
	margin-right: 0;
}
.categories-two__single-icon {
	position: relative;
	display: block;
	width: 115px;
	height: 115px;
	border-radius: 50%;
	color: var(--thm-base);
	text-align: center;
	background: #f1f2f6;
	margin: 0 auto;
	margin-bottom: 25px;
	z-index: 1;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.categories-two__single:hover .categories-two__single-icon {
	color: #ffffff;
}
.categories-two__single-icon span::before {
	font-size: 65px;
	line-height: 115px;
}
.categories-two__single-icon .count {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35px;
	height: 35px;
	background: #ffffff;
	border-radius: 50%;
	text-align: center;
	box-shadow: 0px 10px 20px 0px rgb(0, 0, 0, 0.2);
	z-index: 1;
}
.categories-two__single-icon .count::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	content: "";
	border-radius: 50%;
	z-index: -1;
	transform: scale(0.0);
	transform-origin: center;
	transform-style: preserve-3d;
	transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
	background: #1a3546;
}
.categories-two__single:hover .categories-two__single-icon .count::before {
	transform: scaleX(1.0);
}
.categories-two__single-icon .count h5 {
	display: block;
	color: #1a3546;
	font-size: 14px;
	font-weight: 400;
	padding: 12px 0px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.categories-two__single:hover .categories-two__single-icon .count h5 {
	color: #ffffff;
}
.categories-two__single-icon .overly-bg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 50%;
	z-index: -1;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	opacity: 0;
	-webkit-transform: perspective(400px) scale(0.5);
	-ms-transform: perspective(400px) scale(0.5);
	transform: perspective(400px) scale(0.5);
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}
.categories-two__single:hover .categories-two__single-icon .overly-bg {
	opacity: 1.0;
	-webkit-transform: perspective(400px) scale(1);
	-ms-transform: perspective(400px) scale(1);
	transform: perspective(400px) scale(1);
}
.categories-two__single-icon .overly-bg::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(var(--thm-base-rgb), .7);
	content: "";
	border-radius: 50%;
}
.categories-two__single-text {
	position: relative;
	display: block;
}
.categories-two__single-text h5 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
}
.categories-two__single-text h5 a {
	color: #1d1d1d;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.categories-two__single-text h5 a:hover {
	color: var(--thm-base);
}
.categories-two__single-text p {
	font-size: 14px;
	line-height: 24px;
	margin: 0;
}
/***
=============================================
    Welcome One
=============================================
***/
.welcome-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 0px 0px 120px;
}
.welcome-one__left {
	position: relative;
	display: block;
}
.welcome-one__left-text {
	margin: 0;
}
.welcome-one__left-features-box {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 48px;
}
.welcome-one__left-features-box-single {
	position: relative;
	display: flex;
	align-items: center;
	float: left;
	margin-right: 55px;
}
.welcome-one__left-features-box-single:last-child {
	margin-right: 0;
}
.welcome-one__left-features-box-single-icon {
	position: relative;
	display: block;
	color: var(--thm-base);
	transition: all 500ms ease;
}
.welcome-one__left-features-box-single:hover .welcome-one__left-features-box-single-icon {
	color: var(--thm-black);
	transform: rotateY(180deg);
}
.welcome-one__left-features-box-single-icon span::before {
	font-size: 65px;
}
.welcome-one__left-features-box-single-title {
	position: relative;
	display: block;
	padding-left: 15px;
}
.welcome-one__left-features-box-single-title h4 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}
.welcome-one__left-btn {
	position: relative;
	display: block;
	margin-top: 52px;
}
.welcome-one__right {
	position: relative;
	display: block;
	max-width: 570px;
	float: right;
	z-index: 1;
}
.welcome-one__right .shape1 {
	position: absolute;
	bottom: -90px;
	right: -191px;
	z-index: -1;
}
.welcome-one__right-img1 {
	position: relative;
	display: block;
	z-index: 2;
}
.welcome-one__right-img1::after {
	position: absolute;
	top: 40px;
	left: -20px;
	bottom: 300px;
	width: 45px;
	background: var(--thm-base);
	border-radius: 8px;
	content: "";
	z-index: -1;
}
.welcome-one__right-img1 img {
	width: 100%;
}
.welcome-one__right-img1-inner {
	position: relative;
	display: block;
	overflow: hidden;
}
.welcome-one__right-img1-inner::before {
	position: absolute;
	top: 0;
	left: -100%;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	transform: skewX(-25deg);
	z-index: 1;
}
.welcome-one__right:hover .welcome-one__right-img1-inner::before {
	-webkit-animation: shine 1.5s;
	animation: shine 1.5s;
}
.welcome-one__right-img2 {
	position: absolute;
	left: -100px;
	bottom: 0;
	border-radius: 8px;
	overflow: hidden;
	z-index: 10;
}
.welcome-one__right-img2 img {
	width: 100%;
}
/***
=============================================
    Video One
=============================================
***/
.video-one {
	position: relative;
	display: block;
	padding: 0px 0px 0px;
	z-index: 2;
}
.video-one__box {
	position: relative;
	display: flex;
	min-height: 520px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	border-radius: 8px;
}
.video-one__box-title {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-one__box-title h2 {
	color: rgba(255, 255, 255, .5);
	font-size: 70px;
	line-height: 1em;
	font-weight: 400;
	font-family: var(--thm-reey-font);
}
.video-one__box .icon {
	position: relative;
	display: inline-block;
}
.video-one__box .icon a {
	position: relative;
	display: inline-block;
	width: 110px;
	height: 110px;
	text-align: center;
	color: var(--thm-black);
	background: var(--thm-primary);
	border-radius: 50%;
	z-index: 1;
	transition: all 500ms ease;
}
.video-one__box .icon a span::before {
	font-size: 35px;
	line-height: 110px;
}
.video-one__box .icon .border-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--thm-primary);
	animation: squares 2.9s linear 0s infinite;
	-webkit-animation: squares 2.9s linear 0s infinite;
	-ms-animation: squares 2.9s linear 0s infinite;
	-o-animation: squares 2.9s linear 0s infinite;
	-webkit-animation-play-state: running;
	animation-play-state: running;
	opacity: 0;
	border-radius: 50%;
}
.video-one__box .icon .border-animation.border-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.video-one__box .icon .border-animation.border-3 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
/***
=============================================
    Counter One
=============================================
***/
.counter-one {
	position: relative;
	display: block;
	padding: 340px 0px 108px;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
	margin-top: -220px;
}
.counter-one::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(23,83,168, .95);
	z-index: -1;
	content: "";
}
.counter-one .section-title__title {
	color: #ffffff;
}
.counter-one__left-text {
	color: #aeb2c2;
	margin: 0;
}
.counter-one__right {
	position: relative;
	display: block;
}
.counter-one__right-box {
	position: relative;
	display: block;
	overflow: hidden;
}
.counter-one__right-single {
	position: relative;
	float: left;
	width: 210px;
	text-align: center;
	border-radius: 8px;
	background: #0d0f13;
	margin-right: 20px;
	padding: 40px 0px 31px;
	margin-bottom: 30px;
}
.counter-one__right-single:last-child {
	margin-right: 0;
}
.counter-one__right-single-icon {
	color: var(--thm-base);
	font-size: 60px;
	margin-bottom: 25px;
}
.counter-one__right-text {
	color: #aeb2c2;
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}
.counter-one__right-single h3 {
	color: #ffffff;
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
}
.counter-one--about {
	position: relative;
	display: block;
	padding: 120px 0px 108px;
	margin-top: 0px;
}
/***
=============================================
    Meet Teachers One
=============================================
***/
.meet-teachers-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 120px 0px 90px;
}
.meet-teachers-one .section-title {
	margin-bottom: 42px;
}
.meet-teachers-one__single {
	position: relative;
	display: block;
	border: 1px solid #e0e2e9;
	border-radius: 8px;
	text-align: center;
	padding: 40px 0px 40px;
	margin-bottom: 30px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.meet-teachers-one__single:hover {
	box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
}
.meet-teachers-one__single-img {
	position: relative;
	display: block;
	overflow: hidden;
	width: 205px;
	height: 205px;
	border-radius: 50%;
	margin: 0 auto;
	z-index: 1;
}
.meet-teachers-one__single-img::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	border-radius: 50%;
	background-color: rgba(var(--thm-black-rgb), .3);
	transform: scale(0);
	transition: all 500ms ease;
	z-index: 1;
}
.meet-teachers-one__single:hover .meet-teachers-one__single-img::before {
	transform: scale(1);
}
.meet-teachers-one__single-img img {
	width: 100%;
	transition: all 500ms ease;
}
.meet-teachers-one__single:hover .meet-teachers-one__single-img img {
	transform: scale(1.2)
}
.meet-teachers-one__single-content {
	position: relative;
	display: block;
}
.meet-teachers-one__single-middle-content {
	position: relative;
	display: block;
	padding: 0px 60px 0px;
}
.meet-teachers-one__single-content .title {
	position: relative;
	display: block;
	margin-top: 24px;
	margin-bottom: 15px;
}
.meet-teachers-one__single-content .title h4 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
}
.meet-teachers-one__single-content .title h4 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.meet-teachers-one__single-content .title h4 a:hover {
	color: var(--thm-base);
}
.meet-teachers-one__single-content .title p {
	color: var(--thm-base);
	font-size: 12px;
	line-height: 22px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0;
}
.meet-teachers-one__single-content-text {
	font-size: 16px;
	margin: 0;
}
.meet-teachers-one__single-bottom-content {
	position: relative;
	display: block;
	padding: 0px 40px 0px;
	margin-top: 23px;
}
.meet-teachers-one__single-content-courses-box {
	position: relative;
	display: flex;
	background: #f1f2f6;
	border-radius: 8px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	padding: 15px 30px 12px;
}
.meet-teachers-one__single-content-courses-box .text {
	position: relative;
	display: block;
}
.meet-teachers-one__single-content-courses-box .text p {
	font-size: 14px;
	margin: 0;
}
.meet-teachers-one__single-content-courses-box .social-icon {
	position: relative;
	display: block;
}
.meet-teachers-one__single-content-courses-box .social-icon ul {
	position: relative;
	display: block;
	overflow: hidden;
}
.meet-teachers-one__single-content-courses-box .social-icon ul li {
	position: relative;
	float: left;
	margin-right: 15px;
}
.meet-teachers-one__single-content-courses-box .social-icon ul li:last-child {
	margin-right: 0px;
}
.meet-teachers-one__single-content-courses-box .social-icon ul li a {
	color: var(--thm-gray);
	font-size: 15px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.meet-teachers-one__single-content-courses-box .social-icon ul li a:hover {
	color: var(--thm-base);
}
/***
=============================================
    Cta One
=============================================
***/
.cta-one {
	position: relative;
	display: block;
	padding: 0px 0px 120px;
}
.cta-one__wrapper {
	position: relative;
	display: flex;
	border-radius: 8px;
	background: var(--thm-black);
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	padding: 63px 60px 56px;
}
.cta-one__wrapper .shape1 {
	position: absolute;
	top: -125px;
	left: -140px;
	z-index: -1;
	opacity: 0.3;
}
.cta-one__left {
	position: relative;
	display: block;
}
.cta-one__left-text {
	color: #ffffff;
	font-size: 26px;
	line-height: 36px;
	font-weight: 700;
}
.cta-one__right {
	position: relative;
	display: block;
}
.cta-one__right-btn {
	position: relative;
	display: block;
}
.cta-one__right-btn .thm-btn:hover {
	color: var(--thm-black);
}
.cta-one__right-btn .thm-btn:hover::after {
	background: #ffffff;
}
/***
=============================================
    Registration Two
=============================================
***/
.registration-two {
	position: relative;
	display: block;
	padding: 115px 0px 102px;
	background: var(--thm-base);
	overflow: hidden;
	z-index: 1;
}
.registration-two__wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
}
.registration-two__wrapper .shape1 {
	position: absolute;
	top: -255px;
	right: 70px;
	z-index: -1;
}
.registration-two__wrapper .shape2 {
	position: absolute;
	top: -435px;
	right: -455px;
	z-index: -1;
}
.registration-two__left {
	position: relative;
	display: block;
}
.registration-two__left-text {
	color: #ffffff;
	font-size: 50px;
	line-height: 1.2em;
	font-weight: 700;
	text-transform: capitalize;
}
.registration-two__right {
	position: relative;
	display: block;
}
.registration-two__right-btn {
	position: relative;
	display: block;
}
.registration-two__right-btn .thm-btn {
	background: #ffffff;
	color: var(--thm-black);
}
.registration-two__right-btn .thm-btn:hover {
	color: #ffffff;
}
/***
=============================================
    Features Two
=============================================
***/
.features-two {
	position: relative;
	display: block;
	padding: 120px 0px 90px;
	background: #ffffff;
}
.features-two__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
	max-width: 570px;
}
.features-two__single-img {
	position: relative;
	display: block;
}
.features-two__single-img-inner {
	position: relative;
	display: block;
	overflow: hidden;
	width: 500px;
	border-radius: 8px;
}
.features-two__single-img-inner:before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, .2);
	border-radius: 0%;
	transform: translate(-50%, -50%);
	opacity: 0;
}
.features-two__single:hover .features-two__single-img-inner:before {
	-webkit-animation: circle .95s;
	animation: circle .95s
}
.features-two__single-img-inner img {
	transition: all 500ms ease;
	width: 100%;
}
.features-two__single:hover .features-two__single-img-inner img {
	transform: scale(1.05);
}
.features-two__single-overlay {
	position: absolute;
	width: 340px;
	border-radius: 8px;
	background: var(--thm-base);
	padding: 35px 50px 31px;
	bottom: 30px;
	right: 0;
	z-index: 1;
	overflow: hidden;
}
.features-two__single-overlay::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--thm-black);
	content: "";
	transform: scaleX(0.7) rotateX(20deg);
	transition: all 0.4s linear;
	border-radius: 8px;
	z-index: -1;
	opacity: 0;
}
.features-two__single:hover .features-two__single-overlay::before {
	transform: scaleX(1.0) rotateX(0deg);
	transition: all 0.4s linear;
	opacity: 1;
}
.features-two__single-overlay-title {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 14px;
}
.features-two__single-overlay-title a {
	color: #ffffff;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.features-two__single-overlay-title a:hover {
	color: var(--thm-base);
}
.features-two__single-overlay-text {
	color: #d3d8ff;
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}
/***
=============================================
    Testimonials Two
=============================================
***/
.testimonials-two {
	position: relative;
	display: block;
	background: #f1f2f6;
	padding: 120px 0px 120px;
	z-index: 1;
	overflow: hidden;
}
.testimonials-two .container {
	position: relative;
}
 @media(min-width: 1845px) {
.testimonials-two {
	padding-top: 120px;
	padding-bottom: 200px;
}
}
.testimonials-two__pattern {
	position: absolute;
	left: -360px;
	bottom: -374px;
	z-index: 4;
	opacity: 0.1;
}
.testimonials-two__left {
	position: relative;
	display: block;
	z-index: 11;
}
.testimonials-two .section-title {
	z-index: 4;
}
.testimonials-two__left-text {
	position: relative;
	margin: 0;
	z-index: 4;
}
.testimonials-two__right {
	position: relative;
	display: block;
	z-index: 9;
}
 @media(min-width: 1200px) {
.testimonials-two__right {
	margin-top: 50px;
}
}
 @media(min-width: 1845px) {
.testimonials-two__right {
	position: absolute;
	top: 0px;
	left: calc(100% - 775px);
	min-width: 1470px;
	margin-top: 0;
}
.testimonials-two__carousel.owl-dot-type1.style2 .owl-dots {
	position: absolute;
	top: 213px;
	left: -445px;
}
}
.testimonials-two__carousel.owl-theme .owl-stage-outer {
	overflow: visible;
}
.testimonials-two__carousel .owl-stage-outer .owl-item {
	opacity: 0;
	transition: all 500ms linear;
	transition-delay: 0.1s;
}
.testimonials-two__carousel .owl-stage-outer .owl-item.active {
	opacity: 1;
	transition: all 200ms linear;
}
.testimonials-two__carousel.owl-dot-type1.style2 .owl-dots {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	z-index: 9;
}
 @media(min-width: 1845px) {
.testimonials-two__carousel.owl-dot-type1.style2 .owl-dots {
	position: absolute;
	top: 279px;
	left: -430px;
}
}
/***
=============================================
    About Two
=============================================
***/
.about-two {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 90px 0px 90px;
}
.about-two__single-img {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
}
.about-two__single-img::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, .2);
	border-radius: 0%;
	transform: translate(-50%, -50%);
	opacity: 0;
	border-radius: 8px;
}
.about-two__single-img:hover:before {
	-webkit-animation: circle .95s;
	animation: circle .95s
}
.about-two__single-img img {
	width: 100%;
	transition: all 500ms ease;
}
.about-two__single-img:hover img {
	transform: scale(1.05);
}
.about-two__bottom-content {
	position: relative;
	display: block;
}
.about-two__title-box {
	position: relative;
	display: block;
}
.about-two__text-box {
	position: relative;
	display: block;
}
.about-two__text-box-text {
	margin: 0;
	line-height: 26px;
	letter-spacing: 0.02em;
	text-align: left;
}
.about-two__text-box-btn {
	position: relative;
	display: block;
	margin-top: 38px;
}
/***
=============================================
    News Details
=============================================
***/
.news-details {
	position: relative;
	display: block;
	padding: 120px 0 120px;
}
.news-details__left {
	position: relative;
	display: block;
}
.blog-one__single.style2 {
	margin-bottom: 20px;
}
.blog-one__single.style2 .blog-one__single-img {
	border-radius: 8px;
}
.blog-one__single.style2 .blog-one__single-content {
	border: none;
}
.blog-one__single.style2 .blog-one__single-content {
	padding: 25px 0px 0px;
}
.blog-one__single.style2:hover .blog-one__single-content {
	box-shadow: none;
}
.blog-one__single.style2 .blog-one__single-content-overlay-mata-info {
	position: relative;
	display: block;
	top: 0px;
	background: none;
	border-radius: 0px;
	box-shadow: none;
	padding: 0px 0px 0px;
	overflow: hidden;
	z-index: 10;
}
.blog-one__single.style2 .blog-one__single-content-overlay-mata-info ul li {
	margin-left: 2px;
}
.blog-one__single.style2 .blog-one__single-content-overlay-mata-info ul li:last-child {
	margin-left: 0;
}
.blog-one__single.style2 .blog-one__single-content-title {
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
	margin-top: 5px;
}
.news-details__text1 {
	position: relative;
	display: block;
	margin-bottom: 40px;
}
.news-details__text1 p {
	margin: 0;
}
.news-details__text2 {
	position: relative;
	display: block;
	margin-bottom: 40px;
}
.news-details__text2 p {
	margin: 0;
}
.news-details__text3 {
	position: relative;
	display: block;
}
.news-details__text3 p {
	margin: 0;
}
.news-details__bottom {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: 1px solid #e0e2e9;
	padding: 39px 0 40px;
	margin-top: 48px;
}
.news-details__bottom p {
	margin: 0;
}
.news-details__tags span {
	color: var(--thm-black);
	font-weight: 700;
	font-size: 20px;
	margin-right: 15px;
}
.news-details__tags a {
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background: var(--thm-base);
	border-radius: 8px;
	padding: 14px 20px 12px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.news-details__tags a:hover {
	background: var(--thm-black);
}
.news-details__tags a+a {
	margin-left: 5px;
}
.news-details__social-list {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.news-details__social-list a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	color: #717580;
	background-color: #f1f2f6;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	font-size: 15px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.news-details__social-list a+a {
	margin-left: 10px;
}
.news-details__social-list a:hover {
	color: #ffffff;
	background: var(--thm-base);
}
/***
=============================================
    Author
=============================================
***/
.author-one {
	background-color: #f1f2f6;
	padding: 60px 60px 54px;
	display: -webkit-box;
	display: flex;
	margin-bottom: 55px;
	border-radius: 8px;
}
.author-one__image {
	position: relative;
	display: block;
}
.author-one__image img {
	border-radius: 8px;
}
.author-one__content {
	margin-left: 40px;
	margin-top: -5px;
}
.author-one__content h3 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
}
.author-one__content p {
	margin: 0;
	margin-top: 13px;
}
/***
=============================================
    Comments
=============================================
***/
.comment-one {
	position: relative;
	display: block;
}
.comment-one__title, .comment-form__title {
	margin: 0;
	color: var(--thm-black);
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
	margin-bottom: 47px;
}
.comment-one__single {
	position: relative;
	display: block;
	border-bottom: 1px solid #e0e2e9;
	padding-bottom: 52px;
	margin-bottom: 60px;
}
.comment-one__image {
	position: absolute;
	top: 0;
	left: 0;
}
.comment-one__content {
	position: relative;
	display: block;
	margin-left: 150px;
}
.comment-one__content p {
	margin: 0;
}
.comment-one__content-top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.comment-one__content-text {
	position: relative;
	display: block;
	margin-bottom: 14px;
}
.comment-one__content-text h3 {
	color: var(--thm-black);
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}
.comment-one__content-text h3 span {
	color: var(--thm-base);
	font-size: 14px;
	line-height: 24px;
	padding-left: 8px;
}
.comment-one__content-btn {
	position: relative;
	display: block;
}
.comment-one__content-btn .thm-btn {
	padding: 6px 25px 2px;
	font-size: 12px;
}
.comment-one__image img {
	border-radius: 50%;
}
.comment-form .comment-form__title {
	margin-top: -6px;
}
.comment-form__input-box input[type="text"], .comment-form__input-box input[type="email"] {
	height: 60px;
	width: 100%;
	border: none;
	background: #f1f2f6;
	padding: 0 30px;
	margin-bottom: 30px;
	border-radius: 8px;
	outline: none;
	font-size: 14px;
	color: var(--thm-gray);
	font-weight: 400;
	text-transform: capitalize;
}
.comment-form__input-box textarea {
	font-size: 14px;
	color: var(--thm-gray);
	height: 200px;
	width: 100%;
	background: #f1f2f6;
	padding: 22px 30px 30px;
	border: none;
	border-radius: 8px;
	outline: none;
	margin-bottom: 20px;
	font-weight: 400;
	text-transform: capitalize;
}


/***
=============================================
    Sidebar
=============================================
***/

@media (max-width: 991px) {
.sidebar {
	margin-top: 50px;
}
}
.sidebar__single+.sidebar__single {
	margin-top: 30px;
}
.sidebar__title {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 23px;
	margin: 0;
}
.sidebar__search {
	position: relative;
	display: block;
}
.sidebar__search-form {
	position: relative;
}
.sidebar__search-form input[type="search"] {
	display: block;
	border: none;
	outline: none;
	background-color: var(--thm-base);
	color: #ffffff;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
	padding-left: 40px;
	height: 85px;
	border-radius: 8px;
	width: 100%;
	padding-right: 100px;
}
 .sidebar__search-form ::-webkit-input-placeholder {
 color: #ffffff;
 opacity: 1;
}
 .sidebar__search-form ::-moz-placeholder {
 color: #ffffff;
 opacity: 1;
}
 .sidebar__search-form :-ms-input-placeholder {
 color: #ffffff;
 opacity: 1;
}
 .sidebar__search-form ::-ms-input-placeholder {
 color: #ffffff;
 opacity: 1;
}
 .sidebar__search-form ::placeholder {
 color: #ffffff;
 opacity: 1;
}
 .sidebar__search-form :-ms-input-placeholder {
 color: #ffffff;
}
 .sidebar__search-form ::-ms-input-placeholder {
 color: #ffffff;
}
.sidebar__search-form button[type="submit"] {
	background-color: transparent;
	color: #ffffff;
	font-size: 16px;
	position: absolute;
	top: 0;
	right: 18px;
	bottom: 0;
	width: 80px;
	outline: none;
	border: none;
	padding: 0;
}
.sidebar__post {
	position: relative;
	display: block;
	padding: 35px 40px 32px;
	background-color: #f1f2f6;
	border-radius: 8px;
}
.sidebar__post .sidebar__title {
	margin-bottom: 10px;
}
.sidebar__post-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
}
.sidebar__post-list li {
	position: relative;
	display: block;
	margin-bottom: 12px;
}
.sidebar__post-list li:last-child {
	margin-bottom: 0;
}
.sidebar__post-image {
	position: absolute;
	top: 10px;
	left: 0;
}
.sidebar__post-content {
	position: relative;
	display: block;
	padding-left: 90px;
}
.sidebar__post-content ul {
	position: relative;
	display: block;
	overflow: hidden;
}
.sidebar__post-content ul li {
	position: relative;
	display: block;
}
.sidebar__post-content ul li p {
	margin: 0;
}
.sidebar__post-content ul li p a {
	color: var(--thm-gray);
	font-size: 13px;
	line-height: 23px;
	font-weight: 400;
}
.sidebar__post-content ul li p a i::before {
	position: relative;
	display: inline-block;
	color: var(--thm-base);
	font-size: 15px;
	padding-right: 5px;
	top: 1px;
}
.sidebar__post-content ul li h3 {
	font-size: 18px;
	line-height: 30px;
	font-weight: 700;
}
.sidebar__post-content ul li h3 a {
	color: var(--thm-black);
	transition: all 500ms ease
}
.sidebar__post-content ul li h3 a:hover {
	color: var(--thm-base);
}
.sidebar__category {
	position: relative;
	display: block;
	background: #f1f2f6;
	padding: 36px 40px 30px;
	border-radius: 8px;
}
.sidebar__category .sidebar__title {
	margin-bottom: 12px;
}
.sidebar__category-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
}
.sidebar__category-list li+li {
	margin-top: 8px;
}
.sidebar__category-list li a {
	position: relative;
	display: block;
	color: var(--thm-gray);
	font-size: 16px;
	background: none;
	font-weight: 400;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.sidebar__category-list li a:hover {
	color: var(--thm-base);
}
.sidebar__category-list li a i::before {
	position: relative;
	display: inline-block;
	padding-right: 20px;
	font-size: 15px;
	color: var(--thm-base);
	font-weight: 700;
}
.sidebar__tags {
	position: relative;
	display: block;
	background: #f1f2f6;
	padding: 35px 40px 30px;
	border-radius: 8px;
}
.sidebar__tags .sidebar__title {
	margin-bottom: 20px;
}
.sidebar__tags-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin-left: -5px;
	margin-right: -5px;
}
.sidebar__tags-list li {
	position: relative;
	float: left;
	margin-bottom: 10px;
	padding: 0px 5px 0px;
}
.sidebar__tags-list li a {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background: var(--thm-base);
	border-radius: 8px;
	padding: 4px 20px 1px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.sidebar__tags-list li a:hover {
	background: var(--thm-black);
}
/***
=============================================
   Teaching One
=============================================
***/
.teaching-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 120px 0px 0px;
}
.teaching-one__apply-form {
	position: relative;
	background-color: #f1f2f6;
	padding: 55px 70px 60px;
	max-width: 500px;
	z-index: 2;
	border-radius: 8px;
}
.teaching-one__apply-form .title-box {
	position: relative;
	display: block;
}
.teaching-one__apply-form .title-box h4 {
	position: relative;
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
}
.teaching-one__apply-form .form-box {
	position: relative;
	margin-top: 30px;
}
.teaching-one__apply-form .form-group {
	position: relative;
	margin-bottom: 10px;
}
.teaching-one__apply-form .form-group input[type="text"], .teaching-one__apply-form .form-group input[type="email"], .teaching-one__apply-form .form-group input[type="tel"], .teaching-one__apply-form .form-group input[type="url"], .teaching-one__apply-form .form-group textarea, .teaching-one__apply-form .form-group select {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 25px;
	color: var(--thm-gray);
	font-weight: 400;
	padding: 16px 30px 13px;
	width: 100%;
	height: 60px;
	border-radius: 8px;
	background-color: #ffffff;
	outline: none;
	border: none;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.teaching-one__apply-form .form-group textarea {
	height: 130px;
	resize: none;
}
.teaching-one__apply-form button {
	border: none;
	outline: none;
	padding: 0;
}
.teaching-one__content {
	position: relative;
	display: block;
}
.teaching-one__content-title {
	font-size: 40px;
	line-height: 1em;
	font-weight: 700;
	margin-bottom: 33px;
}
.teaching-one__content-text1 {
	margin: 0;
}
.teaching-one__content-img {
	position: relative;
	display: block;
	margin-top: 38px;
	margin-bottom: 43px;
}
.teaching-one__content-img img {
	width: 100%;
}
.teaching-one__content-text2 {
	margin: 0;
}
/***
=============================================
    Contact Details One
=============================================
***/
.contact-details-one {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 100px 0px 70px;
}
.contact-details-one__single {
	position: relative;
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #ffffff;
	box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 0.1);
	padding: 24px 30px 24px;
	margin-bottom: 30px;
	transition: all 200ms linear;
}
.contact-details-one__single:hover {
}
.contact-details-one__single-icon {
	position: relative;
	display: inline-block;
	width: 65px;
	height: 65px;
	background: #f1f2f6;
	text-align: center;
	border-radius: 50%;
	z-index: 1;
}
.contact-details-one__single-icon::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	content: "";
	border-radius: 50%;
	z-index: -1;
	transform: scale(0.0);
	transform-origin: center;
	transform-style: preserve-3d;
	transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
	background: #a30404;
}
.contact-details-one__single:hover .contact-details-one__single-icon::before {
	transform: scaleX(1.0);
}
.contact-details-one__single-icon span::before {
	color: #a30404;
	font-size: 30px;
	line-height: 65px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.contact-details-one__single:hover .contact-details-one__single-icon span::before {
	color: #ffffff;
}
.contact-details-one__single-text {
	position: relative;
	display: block;
	padding-left: 20px;
}
.contact-details-one__single-text h4 {
	font-size: 17px;
	line-height: 28px;
	font-weight: 600;
	margin: 0;
}
.contact-details-one__single-text h4 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.contact-details-one__single-text h4 a:hover {
	color: var(--thm-base);
}
.contact-details-one__single-text p {
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}
.sec-title p {
	font-size: 18px;
	line-height: 1.7em;
	font-weight: 300;
	color: #686a6f;
	padding: 40px 0 0;
}
.sec-title p b {
	font-size: 24px;
	line-height: 1.5em;
}
.sec-title p span {
	font-size: 16px;
	line-height: 2em;
}
/***
=============================================
    Contact Page
=============================================
***/
.contact-page {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 90px 0px 90px;
}
.contact-page__left {
	position: relative;
	display: block;
}
.contact-page__left .section-title {
	margin: 0;
}
.contact-page__left .main-title{
    text-align: left;
	margin: 0 auto;
}
.contact-page__left .main-title strong{
	margin: 20px 0;
}
.contact-page__right {
	position: relative;
	display: block;
}
/***
=============================================
    Google Map
=============================================
***/
.contact-page-google-map {
	position: relative;
	display: block;
	z-index: 3;
}
.contact-page-google-map__one {
	position: relative;
	display: block;
	border: none;
	height: 580px;
	width: 100%;
}
/***
=============================================
    Course Details
=============================================
***/
.course-details {
	position: relative;
	display: block;
	background: #ffffff;
	padding: 120px 0px 120px;
}
.course-details__content {
	position: relative;
	display: block;
}
.courses-one__single.style2 {
	position: relative;
	display: block;
}
.courses-one__single.style2 .courses-one__single-content {
	box-shadow: none;
	padding: 40px 50px 50px;
	border: 1px solid #e0e2e9;
	border-top: none;
}
.courses-one__single.style2 .courses-one__single-content-name {
	color: var(--thm-base);
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}
.courses-one__single.style2 .courses-one__single-content-name span {
	position: relative;
	display: inline-block;
	color: var(--thm-gray);
	margin-left: 10px;
	padding-left: 10px;
}
.courses-one__single.style2 .courses-one__single-content-name span::before {
	position: absolute;
	top: 4px;
	left: 0;
	bottom: 8px;
	width: 1px;
	background: #e4e6ec;
	content: "";
	transform: rotate(25deg);
}
.courses-one__single.style2 .courses-one__single-content-title {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-top: 4px;
}
.courses-one__single.style2 .courses-one__single-content-overlay-img {
	position: absolute;
	top: -25px;
	z-index: 5;
}
.courses-one__single.style2 .courses-one__single-content-review-box {
	border-bottom: 1px solid #e0e2e9;
	padding-bottom: 40px;
}
.course-details__content-text1 {
	position: relative;
	display: block;
	margin-top: 45px;
}
.course-details__content-text1 p {
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}
.course-details__content-text2 {
	position: relative;
	display: block;
	margin-top: 33px;
	margin-bottom: 36px;
}
.course-details__content-text2 p {
	font-size: 16px;
	margin: 0;
}
.course-details__content-list {
	position: relative;
	display: block;
}
.course-details__content-list ul {
	position: relative;
	display: block;
	overflow: hidden;
}
.course-details__content-list ul li {
	position: relative;
	display: block;
	margin-bottom: 8px;
}
.course-details__content-list ul li:last-child {
	margin-bottom: 0;
}
.course-details__content-list ul li .icon {
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 20px;
	color: var(--thm-base);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.course-details__content-list ul li:hover .icon {
	color: var(--thm-black);
}
.course-details__content-list ul li .text {
	position: relative;
	display: block;
	padding-left: 35px;
}
.course-details__content-list ul li .text p {
	color: var(--thm-black);
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}
.course-details__curriculum {
	position: relative;
	display: block;
	border: 1px solid#e0e2e9;
	border-radius: 8px;
	padding: 45px 50px 50px;
}
.course-details__curriculum-title {
	color: var(--thm-black);
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 44px;
}
.course-details__curriculum-single {
	position: relative;
	display: block;
	margin-bottom: 55px;
}
.course-details__curriculum-single.mar-buttom0 {
	margin-bottom: 0;
}
.course-details__curriculum-single-title {
	color: var(--thm-black);
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 23px;
}
.course-details__curriculum-single-text {
	margin: 0;
}
.course-details__curriculum-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 47px;
}
.course-details__curriculum-list.style2 li:last-child {
	border: none;
}
.course-details__curriculum-list li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: 1px solid #e0e2e9;
	padding-bottom: 19px;
	margin-bottom: 19px;
}
.course-details__curriculum-list li:last-child {
	margin-bottom: 0;
}
.course-details__curriculum-list-left {
	position: relative;
	display: flex;
	align-items: center;
}
.course-details__curriculum-list-left-icon {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--thm-base);
	text-align: center;
	line-height: 30px;
	margin-right: 20px;
}
.course-details__curriculum-list-left-icon i::before {
	color: #ffffff;
	font-size: 10px;
}
.course-details__curriculum-list-left-icon.style2 {
	background: var(--thm-primary);
}
.course-details__curriculum-list-left-icon.style2 i::before {
	color: var(--thm-black);
}
.course-details__curriculum-list-left-title {
	color: var(--thm-black);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.course-details__curriculum-list-left-title:hover {
	color: var(--thm-base);
}
.course-details__curriculum-list-left span {
	position: relative;
	display: inline-block;
	color: var(--thm-gray);
	font-size: 10px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background: #f1f2f6;
	border-radius: 8px;
	padding: 5px 15px 2px;
	margin-left: 20px;
}
.course-details__curriculum-list-right {
	position: relative;
	display: block;
}
.course-details__curriculum-list-right p {
	font-size: 16px;
	margin: 0;
}
.course-details__reviews {
	position: relative;
	display: block;
	background: #ffffff;
	border: 1px solid #e0e2e9;
	border-radius: 8px;
	padding: 45px 50px 50px;
	margin-top: 30px;
}
.course-details__reviews-title {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 41px;
}
.course-details__progress-review {
	position: relative;
	display: block;
	border-bottom: 1px solid #e0e2e9;
	padding-bottom: 43px;
}
.course-details__progress {
	position: relative;
	display: block;
}
.course-details__progress-item {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.course-details__progress-text {
	color: var(--thm-black);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	min-width: 100px;
	margin: 0;
}
.course-details__progress-bar {
	position: relative;
	display: block;
	width: 210px;
	height: 3px;
	background: #e0e2e9;
	margin-left: 20px;
	margin-right: 20px;
}
.course-details__progress-bar span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: var(--thm-base);
}
.course-details__progress-bar span::before {
	content: '';
	width: 15px;
	height: 15px;
	background-color: var(--thm-base);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.course-details__progress-bar span.no-bubble::before {
	display: none;
}
.course-details__progress-count {
	font-size: 16px;
	margin: 0;
}
.course-details__review-box {
	position: relative;
	display: block;
	width: 250px;
	background: #f1f2f6;
	border-radius: 8px;
	text-align: center;
	padding: 42px 0px 32px;
}
.course-details__review-count {
	color: var(--thm-base);
	font-size: 60px;
	line-height: 0.9em;
	font-weight: 400;
}
.course-details__review-stars {
	position: relative;
	display: block;
	overflow: hidden;
}
.course-details__review-stars i {
	position: relative;
	display: inline-block;
	color: var(--thm-primary);
	font-size: 15px;
}
.course-details__review-text {
	color: var(--thm-black);
	font-size: 12px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0;
	margin-top: 5px;
}
.course-details__comment {
	position: relative;
	display: block;
}
.course-details__comment-single {
	position: relative;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e0e2e9;
	padding-top: 56px;
	padding-bottom: 52px;
}
.course-details__comment-img {
	position: relative;
	display: block;
}
.course-details__comment-text {
	position: relative;
	display: block;
	padding-left: 30px;
}
.course-details__comment-text-top {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.course-details__comment-text-name {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
}
.course-details__comment-text-top p {
	color: var(--thm-base);
	font-size: 14px;
	line-height: 25px;
	margin: 0;
	padding-left: 10px;
	padding-right: 10px;
}
.course-details__comment-review-stars {
	position: relative;
	display: block;
}
.course-details__comment-review-stars i {
	position: relative;
	display: inline-block;
	color: var(--thm-primary);
	font-size: 14px;
}
.course-details__comment-text-bottom {
	margin: 0;
}
.course-details__add-review {
	position: relative;
	display: block;
	margin-top: 55px;
}
.course-details__add-review-title {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 13px;
}
.course-details__add-review-text {
	margin: 0;
}
.course-details__add-review-text a {
	font-size: 18px;
	color: #f1f2f6;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.course-details__add-review-text a.pd-left {
	padding-left: 14px;
}
.course-details__add-review-text a.active {
	color: var(--thm-primary);
}
.course-details__add-review-text a:hover {
	color: var(--thm-primary);
}
.course-details__add-review-form {
	position: relative;
	display: block;
	margin-top: 38px;
}
.course-details__sidebar {
	position: relative;
	display: block;
}
.course-details__price {
	position: relative;
	display: block;
	background: #f1f2f6;
	text-align: center;
	padding: 45px 0px 50px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.course-details__price-amount {
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
}
.course-details__price-amount span {
	color: var(--thm-gray);
	font-size: 12px;
	line-height: 22px;
	font-weight: 400;
	padding-left: 10px;
}
.course-details__price-btn {
	position: relative;
	display: block;
	margin-top: 19px;
}
.course-details__sidebar-meta {
	position: relative;
	display: block;
	border: 1px solid #e0e2e9;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding: 50px 50px 50px;
}
.course-details__sidebar-meta-list {
	position: relative;
	display: block;
	overflow: hidden;
}
.course-details__sidebar-meta-list-item {
	position: relative;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e0e2e9;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.course-details__sidebar-meta-list-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.course-details__sidebar-meta-list-item .icon {
	position: relative;
	display: block;
}
.course-details__sidebar-meta-list-item .icon a {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	color: var(--thm-base);
	border-radius: 50%;
	background: #f1f2f6;
}
.course-details__sidebar-meta-list-item .icon a i::before {
	font-size: 15px;
	line-height: 40px;
}
.course-details__sidebar-meta-list-item .text {
	position: relative;
	display: block;
	padding-left: 20px;
}
.course-details__sidebar-meta-list-item .text p {
	font-size: 16px;
	margin: 0;
}
.course-details__sidebar-meta-list-item .text p a {
	color: var(--thm-gray);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.course-details__sidebar-meta-list-item .text p a:hover {
	color: var(--thm-base);
}
.course-details__sidebar-meta-list-item .text p a span {
	color: var(--thm-black);
	font-size: 16px;
}
.course-details__new-courses {
	position: relative;
	display: block;
	border: 1px solid #e0e2e9;
	border-radius: 8px;
	padding: 45px 50px 41px;
	margin-top: 30px;
}
.course-details__new-courses-title {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 15px;
}
.course-details__new-courses-list {
	position: relative;
	display: block;
	overflow: hidden;
}
.course-details__new-courses-list-item {
	position: relative;
	display: block;
	border-bottom: 1px solid #e0e2e9;
	margin-bottom: 25px;
	padding-bottom: 22px;
}
.course-details__new-courses-list-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.course-details__new-courses-list-item-img {
	position: absolute;
	top: 5px;
	left: 0;
}
.course-details__new-courses-list-item-content {
	position: relative;
	display: block;
	padding-left: 95px;
}
.course-details__new-courses-list-item-content-title {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
}
.course-details__new-courses-list-item-content-title a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}
.course-details__new-courses-list-item-content-title a:hover {
	color: var(--thm-base);
}
.course-details__new-courses-rateing-box {
	position: relative;
	display: flex;
	align-items: center;
}
.course-details__new-courses-rateing-box ul {
	position: relative;
	display: block;
	overflow: hidden;
}
.course-details__new-courses-rateing-box ul li {
	position: relative;
	display: inline-block;
}
.course-details__new-courses-rateing-box ul li i {
	color: var(--thm-primary);
	font-size: 15px;
}
.course-details__new-courses-rateing-count {
	position: relative;
	display: inline-block;
}
.course-details__new-courses-rateing-count span {
	position: relative;
	display: inline-block;
	color: var(--thm-gray);
	font-size: 12px;
	padding-left: 5px;
}
.course-details__new-courses-price {
	color: var(--thm-base);
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	margin: 0;
}
/***
=============================================
    Tiny Scrollbar
=============================================
***/
#scrollbar1 {
	width: 270px;
	margin: 0;
}
#scrollbar1 .viewport {
	position: relative;
	width: 270px;
	height: 530px;
	overflow: hidden;
}
#scrollbar1 .overview {
	list-style: none;
	position: absolute;
	left: 15px;
	top: 0;
	padding: 0;
	margin: 0;
	max-width: 500px;
	width: 100%;
	height: 100%;
}
#scrollbar1 .scrollbar {
	position: absolute;
	top: 0;
	right: 0px;
	background: #e7e7e7;
	width: 4px;
}
#scrollbar1 .track {
	background: transparent;
	height: 100%;
	width: 4px;
	position: relative;
	padding: 0;
}
#scrollbar1 .thumb {
	background: #fa401b;
	background-image: none;
	height: 20px;
	width: 4px;
	cursor: pointer;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0px;
	opacity: 1;
	z-index: 3;
}
#scrollbar1 .thumb .end {
	background: #353742 no-repeat 50% 0;
	overflow: hidden;
	height: 0px;
	width: 4px;
}
#scrollbar1 .disable {
	display: none;
}

.sec-title {
  position: relative;
}
.sec-title.centered {
  max-width: 650px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.sec-title .upper-text {
  position: relative;
  display: inline-block;
  line-height: 1.6em;
  font-size: 16px;
  color: #9b9fa6;
  font-weight: 400;
  margin: 0 0 20px;
}
.sec-title h2 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--thm-black);
  font-weight: 600;
  margin-bottom: 0;
}
.sec-title h2 strong {
  font-weight: 700;
}
.sec-title h2 .dot {
  color: var(--thm-base);
  padding-left: 7px;
}
.sec-title .lower-text {
  position: relative;
  display: block;
  font-size:16px;
  line-height: 1.9em;
  font-weight: 300;
  color: #686a6f;
  padding: 20px 0 0;
}

 @media only screen and (min-width: 1200px) and (max-width: 1499px) {
/***About Three Css***/
.about-three .container-fullwidth {
	display: block;
}
.about-three__content-box .section-title__title br {
	display: none;
}
.about-three__img-box {
	width: 100%;
	float: none;
	max-width: 900px;
	margin: 0 auto;
}
.about-three__content-box {
	float: none;
	padding-left: 0px;
	max-width: 900px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 120px;
}
}
 @media only screen and (min-width: 1200px) and (max-width: 1220px) {
/***Counter One Css***/
.counter-one__right-single {
	width: 200px;
}
}




/** Medium screen**/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
/***Features One Css***/
.features-one__single {
	padding: 35px 18px 26px;
}
.features-one__single-text p {
	font-size: 16px;
}
/***About One Css***/
.about-one .section-title__title br {
	display: none;
}
.about-one__left {
	margin-left: 0px;
}
.about-one__left-overlay {
	bottom: 20px;
	right: 230px;
}
.about-one__right {
	margin-top: 50px;
}
/***Registration One Css***/
.registration-one .section-title__title {
	font-size: 43px;
}
.registration-one__left-transform-box-text p {
	font-size: 17px;
}
.registration-one__left-transform-box {
	margin-top: 202px;
}
.registration-one__right-form {
	padding: 55px 25px 60px;
}
/***Blog One Css***/
.blog-one__single-content {
	padding: 45px 20px 38px;
}
.blog-one__single-content-overlay-mata-info {
	left: 12px;
	padding: 9px 15px 4px;
}
.blog-one__single-content-title {
	font-size: 22px;
}
/***Why Choose One Css***/
.why-choose-one .section-title__title br {
	display: none;
}
.why-choose-one .section-title__title {
	font-size: 45px;
}
/***Newsletter One Css***/
.newsletter-one .section-title__title br {
	display: none;
}
.newsletter-one__right {
	margin-left: 50px;
}
/***Categories Two Css***/
.categories-two__single {
	width: 160px;
}
/***Welcome One Css***/
.welcome-one .section-title__title br {
	display: none;
}
.welcome-one__right {
	float: none;
	margin-left: 100px;
	margin-top: 60px;
}
.welcome-one__right-img1 img {
	width: auto;
}
.welcome-one__right .shape1 {
	right: -100px;
}
/***Counter One Css***/
.counter-one__right-single {
	width: 160px;
}
.counter-one .section-title__title br {
	display: none;
}
.counter-one .section-title__title {
	font-size: 42px;
}
/***Meet Teachers One Css***/
.meet-teachers-one__single-middle-content {
	padding: 0px 40px 0px;
}
.meet-teachers-one__single-bottom-content {
	padding: 0px 30px 0px;
}
/***About Two Css***/
.about-two .section-title__title {
	font-size: 39px;
}
/***Testimonials Two Css***/
.testimonials-two__pattern {
	display: none;
}
/***Contact Details One Css***/
.contact-details-one__single {
	padding: 24px 20px 24px;
}
.contact-details-one__single-text {
	padding-left: 12px;
}
.contact-details-one__single-text h4 {
	font-size: 16px;
}
/***Contact Page Css**/
.contact-page .section-title__title {
	font-size: 42px;
}
.contact-page .section-title__title br {
	display: none;
}
/***Teaching One Css**/
.teaching-one__apply-form {
	padding: 55px 35px 60px;
}
/***Course Details Css**/
.course-details__review-box {
	width: 225px;
}
.course-details__sidebar-meta {
	padding: 50px 35px 50px;
}
.course-details__new-courses {
	padding: 45px 25px 41px;
}
.course-details__new-courses-list-item-content {
	padding-left: 80px;
}
.course-details__new-courses-list-item-content-title {
	font-size: 15px;
}
/***Testimonials Two Css**/
.testimonials-two .section-title__title br {
	display: none;
}
.testimonials-two__right {
	width: 100%;
}
.testimonials-two__left-bg {
	display: none;
}
.testimonials-two__left {
	margin-bottom: 50px;
}
}


/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
/***Features One Css***/
.features-one__single {
	max-width: 500px;
	margin: 0 auto 30px;
}
/***About One Css***/
.about-one .section-title__title br {
	display: none;
}
.about-one__left {
	margin-left: 0px;
	margin-right: 0;
}
.about-one__left-overlay {
	bottom: 20px;
	right: 20px;
}
.about-one__right {
	margin-top: 50px;
}
/***Blog One Css***/
.blog-one__single {
	max-width: 500px;
	margin: 0 auto 30px;
}
/***Registration One***/
.registration-one .section-title__title br {
	display: none;
}
.registration-one__left {
	max-width: none;
}
.registration-one__left-transform-box {
	margin-top: 80px;
}
/***Why Choose One Css***/
.why-choose-one {
	padding: 120px 0px 0px;
}
.why-choose-one .section-title__title br {
	display: none;
}
.why-choose-one::before {
	display: none;
}
.why-choose-one__left {
	max-width: none;
}
.why-choose-one__left-learning-box .text h4 br {
	display: none;
}
.why-choose-one__right {
	margin-top: 50px;
}
/***Testimonials One Css***/
.testimonials-one .shape1 {
	display: none;
}
/***Newsletter One***/
.newsletter-one__right {
	margin-left: 0px;
	margin-top: 30px;
}
.newsletter-one__right .shape1 {
	display: none;
}
.newsletter-one .section-title__title br {
	display: none;
}
/***Categories Two Css***/
.categories-two__single {
	float: left;
	width: 285px;
	margin-left: 30px;
	margin-right: 30px;
	z-index: 1;
}
.categories-two__single:last-child {
	float: none;
	display: block;
	margin: 30px auto 30px;
	overflow: hidden;
}
/***Welcome One Css***/
.welcome-one .section-title__title br {
	display: none;
}
.welcome-one__right {
	float: none;
	margin-left: 100px;
	margin-top: 60px;
}
.welcome-one__right-img1 img {
	width: auto;
}
.welcome-one__right .shape1 {
	right: -100px;
}
/***Counter One Css***/
.counter-one {
	padding: 340px 0px 90px;
}
.counter-one .section-title__title br {
	display: none;
}
.counter-one__right {
	margin-top: 50px;
}
/***Meet Teachers One Css***/
.meet-teachers-one__single {
	max-width: 500px;
	margin: 0 auto 30px;
}
/***Cta One Css***/
.cta-one__wrapper {
	flex-direction: column;
	padding: 75px 60px 80px;
}
.cta-one__right-btn {
	margin-top: 20px;
}
/***Registration Two Css***/
.registration-two__wrapper {
	flex-direction: column;
}
.registration-two__left-text {
	text-align: center;
}
.registration-two__right-btn {
	margin-top: 20px;
}
/***About Two Css***/
.about-two .section-title__title br {
	display: none;
}
/***Testimonials Two Css***/
.testimonials-two__pattern {
	display: none;
}
/***Registration Two Css***/
.registration-two__wrapper .shape1 {
	display: none;
}
/***Counter One About Css***/
.counter-one--about {
	padding: 120px 0px 90px;
}
/***Contact Details One Css***/
.contact-details-one__single {
	max-width: 500px;
	margin: 0 auto 30px;
}
/***Contact Page Css**/
.contact-page .section-title__title br {
	display: none;
}
.contact-page__left {
	margin-bottom: 40px;
}
/***Company Logos One Css**/
.company-logos-one {
	padding: 0px 0px 0px;
}
.company-logos-one--two {
	padding: 0px 0px 120px;
}
/***Teaching One Css**/
.meet-teachers-one--teachers {
	position: relative;
	display: block;
	padding: 108px 0px 90px;
}
.teaching-one__apply-form {
	max-width: none;
}
.teaching-one__content {
	margin-top: 50px;
}
/***Course Details Css**/
.course-details__sidebar {
	margin-top: 40px;
}
/***News Details Css**/
.blog-one__single.style2 {
	max-width: none;
	margin: 0px 0px 30px;
}
/***Testimonials Two Css**/
.testimonials-two .section-title__title br {
	display: none;
}
.testimonials-two__right {
	width: 100%;
}
.testimonials-two__left-bg {
	display: none;
}
.testimonials-two__left {
	margin-bottom: 50px;
}
}



/** Mobile Layout: 320px. **/
@media only screen and (max-width: 767px) {
.section-title__title {
	font-size: 40px;
}
/***Features One Css***/
.features-one__single {
	max-width: 500px;
	padding: 35px 15px 26px;
	margin: 0 auto 30px;
}
.features-one__single-text p {
	font-size: 16px;
}
/***About One Css***/
.about-one .section-title__title br {
	display: none;
}
.about-one__left {
	margin-left: 0px;
	margin-right: 0;
}
.about-one__left-img2 {
	margin-top: 20px;
}
.about-one__left-overlay {
	position: relative;
	bottom: 0px;
	right: 0px;
	margin-top: 25px;
}
.about-one__right {
	margin-top: 50px;
}
.about-one__left::before {
	display: none;
}
/***Courses One Css***/
.courses-one__single {
	max-width: 500px;
	margin: 0 auto 30px;
}
.courses-one .section-title__title {
	font-size: 38px;
}
/***Testimonials One Css***/
.testimonials-one .shape1 {
	display: none;
}
.testimonials-one__pattern {
	display: none;
}
/***Categories One Css***/
.categories-one__single {
	max-width: 500px;
}
/***Blog One Css***/
.blog-one__single {
	max-width: 500px;
	margin: 0 auto 30px;
}
.blog-one__single-content {
	padding: 45px 20px 38px;
}
.blog-one__single-content-overlay-mata-info {
	left: 20px;
	padding: 9px 15px 4px;
}
.blog-one__single-content-title {
	font-size: 22px;
}
/***Registration One***/
.registration-one .section-title {
	text-align: center;
}
.registration-one .section-title__title br {
	display: none;
}
.registration-one__left-text {
	text-align: center;
}
.registration-one__left {
	max-width: none;
}
.registration-one__left-transform-box-icon {
	margin: 0 auto 20px;
}
.registration-one__left-transform-box {
	display: block;
	margin-top: 50px;
}
.registration-one__left-transform-box-text {
	padding-left: 0px;
	text-align: center;
}
.registration-one__left-transform-box-text p br {
	display: none;
}
.registration-one__right-form {
	padding: 55px 15px 60px;
}
/***Why Choose One Css***/
.why-choose-one {
	padding: 120px 0px 0px;
}
.why-choose-one .section-title__title br {
	display: none;
}
.why-choose-one::before {
	display: none;
}
.why-choose-one__left {
	max-width: none;
}
.why-choose-one__left-learning-box .text h4 br {
	display: none;
}
.why-choose-one__right {
	margin-top: 50px;
}
/***Newsletter One***/
.newsletter-one__right {
	margin-left: 0px;
	margin-top: 30px;
}
.newsletter-one .section-title__title {
	font-size: 39px;
}
.newsletter-one .section-title__title br {
	display: none;
}
.newsletter-one__right .shape1 {
	display: none;
}
.newsletter-one__right .shape2 {
	display: none;
}
/***Categories Two Css***/
.categories-two__single {
	display: block;
	float: none;
	width: 285px;
	margin: 0 auto 30px;
}
.categories-two__single:last-child {
	margin-right: auto;
}
.categories-two .shape1 {
	display: none;
}
/***Welcome One Css***/
.welcome-one .section-title__title br {
	display: none;
}
.welcome-one__right {
	float: none;
	margin-top: 60px;
}
.welcome-one__right .shape1 {
	display: none;
}
.welcome-one__right-img2 {
	position: relative;
	left: 0px;
	margin-top: 20px;
}
.welcome-one__left-features-box-single-title h4 br {
	display: none;
}
.welcome-one__left-features-box-single {
	margin-right: 0;
	margin-bottom: 15px;
}
.welcome-one__left-features-box-single:last-child {
	margin-bottom: 0;
}
/***Video One Css***/
.video-one__box-title h2 {
	font-size: 45px;
}
/***Counter One Css***/
.counter-one {
	padding: 340px 0px 90px;
}
.counter-one .section-title__title br {
	display: none;
}
.counter-one__right {
	margin-top: 50px;
}
.counter-one .section-title {
	text-align: center;
}
.counter-one__left-text {
	text-align: center;
}
.counter-one__right-single {
	display: block;
	float: none;
	margin: 0 auto 30px;
}
.counter-one__right-single:last-child {
	margin-right: auto;
}
/***Meet Teachers One Css***/
.meet-teachers-one__single {
	max-width: 500px;
	margin: 0 auto 30px;
}
.meet-teachers-one__single-middle-content {
	padding: 0px 40px 0px;
}
.meet-teachers-one__single-bottom-content {
	padding: 0px 30px 0px;
}
/***Cta One Css***/
.cta-one__wrapper {
	flex-direction: column;
	padding: 75px 25px 80px;
}
.cta-one__right-btn {
	margin-top: 20px;
}
.cta-one__left-text {
	font-size: 24px;
	text-align: center;
}
/***Features Two Css***/
.features-two__single {
	max-width: none;
}
.features-two__single-img-inner {
	width: 100%;
}
.features-two__single-overlay {
	position: relative;
	width: 290px;
	padding: 35px 30px 31px;
	bottom: 0px;
	right: 0;
}
/***Registration Two Css***/
.registration-two__wrapper {
	flex-direction: column;
}
.registration-two__left-text {
	text-align: center;
	font-size: 35px;
}
.registration-two__left-text br {
	display: none;
}
.registration-two__right-btn {
	margin-top: 20px;
}
/***About Two Css***/
.about-two .section-title__title br {
	display: none;
}
.about-two .section-title {
	text-align: center;
}
.about-two__text-box {
	text-align: center;
}
/***Testimonials Two Css***/
.testimonials-two__pattern {
	display: none;
}
/***Registration Two Css***/
.registration-two__wrapper .shape1 {
	display: none;
}
.registration-two__wrapper .shape2 {
	display: none;
}
/***Counter One About Css***/
.counter-one--about {
	padding: 120px 0px 90px;
}
.contact-details-one__single {
	max-width: 500px;
	margin: 0 auto 30px;
	padding: 24px 20px 24px;
}
.contact-details-one__single-text {
	padding-left: 12px;
}
.contact-details-one__single-text h4 {
	font-size: 16px;
}
/***Contact Page Css**/
.contact-page .section-title__title br {
	display: none;
}
.contact-page__left {
	margin-bottom: 40px;
}
/***Company Logos One Css**/
.company-logos-one {
	padding: 0px 0px 0px;
}
.company-logos-one--two {
	padding: 0px 0px 120px;
}
/***Teaching One Css**/
.meet-teachers-one--teachers {
	position: relative;
	display: block;
	padding: 108px 0px 90px;
}
.teaching-one__apply-form {
	max-width: none;
	padding: 55px 20px 60px;
}
.teaching-one__content {
	margin-top: 50px;
}
.teaching-one__content-title {
	font-size: 34px;
}
/***Course Details Css**/
.course-details__sidebar {
	margin-top: 40px;
}
.courses-one__single.style2 .courses-one__single-content-name {
	position: relative;
	display: block;
}
.courses-one__single.style2 .courses-one__single-content-name span {
	position: relative;
	display: block;
	margin-left: 0px;
	padding-left: 0px;
}
.courses-one__single.style2 .courses-one__single-content {
	padding: 40px 30px 50px;
}
.courses-one__single.style2 .courses-one__single-content-title {
	font-size: 18px;
}
.course-details__curriculum {
	padding: 45px 30px 50px;
}
.course-details__curriculum-list-left {
	display: block;
}
.course-details__curriculum-list-left span {
	margin-left: 0px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.course-details__curriculum-list-left-icon {
	margin-right: 9px;
}
.course-details__progress-text {
	min-width: 85px;
}
.course-details__reviews {
	padding: 45px 29px 50px;
}
.course-details__review-box {
	width: 230px;
	margin-top: 20px;
}
.course-details__comment-single {
	display: block;
	text-align: center;
}
.course-details__comment-text {
	padding-left: 0px;
}
.course-details__comment-text-top {
	display: block;
}
.course-details__comment-text-name {
	margin-top: 15px;
}
.course-details__sidebar-meta {
	padding: 50px 30px 50px;
}
.course-details__new-courses-list-item-img {
	position: relative;
	top: 0px;
}
.course-details__new-courses-list-item-content {
	padding-left: 0px;
}
.course-details__new-courses-list-item-content-title {
	margin-top: 10px;
}
.course-details__new-courses {
	padding: 45px 30px 41px;
}
.course-details__new-courses-list-item-content-title a br {
	display: none;
}
/***News Details Css**/
.blog-one__single.style2 {
	max-width: none;
	margin: 0px 0px 30px;
}
.blog-one__single.style2 .blog-one__single-content-overlay-mata-info {
	left: 0px;
}
.news-details__social-list {
	margin-top: 20px;
}
.author-one {
	display: block;
	padding: 60px 20px 54px;
	text-align: center;
}
.author-one__content {
	margin-left: 0px;
	margin-top: 20px;
}
.comment-one__image {
	position: relative;
}
.comment-one__content {
	margin-top: 25px;
	margin-left: 0px;
}
.comment-one__content-top {
	display: block;
}
.comment-one {
	text-align: center;
}
.comment-one__content p {
	margin-top: 15px;
}
.sidebar__post {
	padding: 35px 25px 32px;
}
.sidebar__tags {
	padding: 35px 25px 30px;
}
/***Testimonials One Css**/
.testimonials-one .section-title {
	margin-bottom: 47px;
}
.testimonials-one .section-title__title {
	font-size: 37px;
}
/***Testimonials Two Css**/
.testimonials-two__right {
	width: 100%;
}
.testimonials-two__left-bg {
	display: none;
}
.testimonials-two__left {
	margin-bottom: 50px;
}
.testimonials-two .section-title__title br {
	display: none;
}
.owl-carousel.owl-dot-type1.style2 .owl-dots {
	display: none;
}
.about-one__left-single {
	display: block;
	float: none;
	padding: 0px 5px 0px;
}
.registration-one__left-text {
	color: #fff;
}
.registration-one__left-transform-box-text h3 a {
	color: #fff;
}
.registration-one__left-transform-box-text p {
	color: #fff;
}
}
 @media only screen and (max-width: 450px) {
.case-studies-one .container-fluid {
	padding-left: 15px;
	padding-right: 15px;
}
}
 @media only screen and (max-width: 991px) {
.order-box-2 {
	-ms-flex-order: 2;
	order: 2;
}
.order-box-1 {
	-ms-flex-order: 1;
	order: 1;
}
}

/*--------------------------------------------------------------
# Slider All Responsice Css
/////////
--------------------------------------------------------------*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
.main-slider__content-tagline {
	width: 380px;
}
.main-slider__content-tagline h2 {
	font-size: 30px;
}
.main-slider__content-title {
	font-size: 80px;
}
.main-slider-one .swiper-slide .shape2 img {
	width: 70%;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.main-slider__content-tagline {
	width: 280px;
}
.main-slider__content-tagline h2 {
	font-size: 30px;
}
.main-slider__content-title {
	font-size: 60px;
}
.main-slider-one .swiper-slide .shape2 img {
	width: 70%;
}
.main-slider__content-text {
	font-size: 18px;
	line-height: 30px;
}
/** Main SLider Two css**/
.main-slider__title {
	font-size: 60px;
}
}
 @media only screen and (max-width: 767px) {
/** Main Slider One css**/
.main-slider__content-tagline {
	width: 280px;
}
.main-slider__content-tagline h2 {
	font-size: 30px;
}
.main-slider__content-title {
	font-size: 50px;
}
.main-slider-one .swiper-slide .shape1 img {
	width: 70%;
}
.main-slider-one .swiper-slide .shape2 img {
	width: 0%;
}
.main-slider__content-text {
	font-size: 18px;
	line-height: 30px;
	font-weight: 600;
}
.main-slider__content-text br {
	display: none;
}
.main-slider__nav {
	display: none;
}
.main-slider__content-icon-one {
	display: none;
}
.main-slider-one__img img {
	display: none;
}
/** Main SLider Two css**/
.main-slider-two {
	margin-top: 0;
}
.main-slider__title {
	font-size: 50px;
}
}
 @media (max-width: 575px) {
.main-slider__content-icon-two,  .main-slider-one__round-box {
	display: none;
}
.main-slider .container {
	padding-top: 100px;
	padding-bottom: 100px;
}
}
.default-btn2 {
	display: inline-block;
	background: #a30404;
	color: #fff;
	font-size: 14px;
	font-weight: 100;
	text-transform: uppercase;
	height: 45px;
	line-height: 45px;
	padding: 0 40px;
	letter-spacing: 0;
	border-radius: 2px;
	overflow: hidden;
	position: relative;
	transition: all ease 700ms;
	-moz-transition: all ease 700ms;
	-webkit-transition: all ease 700ms;
	-ms-transition: all ease 700ms;
	-o-transition: all ease 700ms;
	z-index: 1;
	margin-top: 15px;
	border: none;
	outline: none !important;
}
.default-btn2:hover {
	color: #fff
}
.default-btn2 span {
	background: #1a1a1a none repeat scroll 0 0;
	border-radius: 50%;
	display: block;
	height: 0;
	position: absolute;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transition: width .6s ease 0s, height .6s ease 0s;
	-moz-transition: width .6s ease 0s, height .6s ease 0s;
	-webkit-transition: width .6s ease 0s, height .6s ease 0s;
	-ms-transition: width .6s ease 0s, height .6s ease 0s;
	-o-transition: width .6s ease 0s, height .6s ease 0s;
	width: 0;
	z-index: -1
}
.default-btn2:hover span {
	height: 562.5px;
	width: 562.5px
}
.blog-section {
	padding: 50px 0 50px 0;
}
.blog-wrap {
	justify-content: center;
}
.blog-item {
	box-shadow: 0 1px 8px rgba(0,0,0,.15);
	display: flex;
}
.blog-item:hover {
	background: #a30404;
}
.blog-item .blog-thumb {
	position: relative;
	overflow: hidden;
	margin: 22px 0 22px 22px;
	padding-right: 0;
	padding-left: 0;
}
.blog-item .blog-thumb .category {
	background-color: #a30404;
	padding: 5px 15px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: work sans, sans-serif;
	position: absolute;
	width: auto;
	height: auto;
	left: 0;
	bottom: 0
}
.blog-item .blog-thumb .category a {
	color: #fff
}
.blog-item .blog-thumb img {
	width: 100%;
	margin: 0
}
.blog-content {
	padding: 30px 50px 30px 30px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.blog-content h3 {
	font-size: 20px;
	color: #333;
	line-height: 26px;
	font-weight: 100;
	margin-top: 0;
	margin-bottom: 10px;
	-ms-word-wrap: break-word;
	word-wrap: break-word
}
.blog-content h3 a {
	color: #333;
}
.blog-item:hover .blog-content h3 {
	color: #fff
}
.blog-content p {
	font-size: 14px;
	line-height: 24px;
	color: #333;
	height: 45px;
	overflow: hidden;
}
.blog-item:hover .blog-content p {
	color: #fff
}
.blog-content .read-more {
	font-family: work sans, sans-serif;
	color: #666;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-left: 40px
}
.blog-item:hover .blog-content .read-more {
	color: #fff
}
.blog-content .read-more:before {
	background-color: #a30404;
	position: absolute;
	content: "";
	width: 30px;
	height: 4px;
	left: 0;
	top: calc(50% - 2px)
}
.blog-item:hover .blog-content .read-more:before {
	background-color: #fff;
}
.blog-item:hover .blog-thumb img {
	transform: scale(1.1)
}
.padding-30 {
	padding: 40px
}
.blog-single-content {
}
.blog-single-content h2 {
	font-size: 26px;
	line-height: 36px;
	color: #333;
}
.blog-single-content h2 a {
	font-size: 28px;
	color: #263a4f
}
.blog-single-content h2 a:hover {
	color: #a30404
}
.single-post-meta {
	margin-bottom: 20px
}
.single-post-meta li {
	display: inline-block;
	margin-right: 20px
}
.single-post-meta li i {
	font-size: 12px;
	color: #a30404;
	margin-right: 5px
}
.single-post-meta li a {
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 100;
	color: #333
}
.post-navigation {
	background-color: #fff;
	border: 1px solid #eee;
	margin-top: 40px;
	margin-left: 0;
	margin-right: 0
}
.post-navigation .col {
	padding: 20px
}
.post-navigation .col:not(:last-of-type) {
	border-right: 1px solid rgba(17,17,17,.04)
}
.post-navigation .col a {
	color: #333;
	font-size: 12px;
	font-weight: 600;
}
.post-navigation .col.next-post {
	display: flex;
	justify-content: flex-end
}
.post-navigation .col.next-post a {
	justify-content: flex-end
}
.post-navigation .col i {
	display: inline-block;
	font-size: 14px
}
.post-navigation .ti-arrow-left {
	margin-right: 10px
}
.post-navigation .ti-arrow-right {
	margin-left: 10px
}
.post-navigation .col a:hover {
	color: #a30404
}
.post-navigation .col.prev-post .fa {
	margin-right: 10px
}
.post-navigation .col.next-post .fa {
	margin-left: 10px
}

/*************鏂伴椈璧勮**************/
.news_list {
  background: #fff;
  margin: 50px 8.4vw 90px;
}
.news_list .news_list_main {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.news_list li {
  width: 100%;
  list-style: none;
}
.news_list .news_item {
  display: flex;
  padding: 44px 0;
  border-bottom: 1px dashed #D9D9D9;
  transition: 0.2s all ease-in;
}
.news_list .news_item .mimg {
  width: 400px;
  margin-right: 60px;
  overflow: hidden;
  flex-shrink: 0;
  background: url(../images/newsbg.jpg) no-repeat;
  background-size: cover;
}
.news_list .news_item .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s all ease-in;
}
.news_list .news_item .mmain {
  padding-top: 20px;
  width: 100%;
}
.news_list .news_item .mmain h6 {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: normal;
}
.news_list .news_item .mmain h3 {
  transition: 0.2s all ease-in;
  font-size: 25px;
  color: #333;
  margin-bottom: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: normal;
}
.news_list .news_item .mmain p {
  color: #999;
  font-size: 15px;
  line-height: 172.5%;
  height: 55px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
.news_list .news_item .mmain .mbom {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_list .news_item .mmain .mbom h5 {
  color: #a30404;
  font-size: 14px;
  transition: 0.2s all ease-in;
}
.news_list .news_item .mmain .mbom .mfont {
  display: flex;
  align-items: center;
  transition: 0.2s all ease-in;
}
.news_list .news_item .mmain .mbom .mfont span {
  transition: 0.2s all ease-in;
  font-size: 13px;
  color: #999;
  margin-right: 6px;
}
.news_list .news_item .mmain .mbom .mfont i {
  transition: 0.2s all ease-in;
  color: #999;
  font-size: 16px;
}
.news_list .news_item:hover {
  transform: translateY(-3px);
}
.news_list .news_item:hover .mimg img {
  transform: scale(1.05);
}
.news_list .news_item:hover .mmain h3 {
  color: #a30404;
}
.news_list .news_item:hover .mmain .mfont {
  transform: translateX(-5px);
}
.news_list .news_item:hover .mmain .mfont span {
  color: #a30404;
}
.news_list .news_item:hover .mmain .mfont i {
  color: #a30404;
}
.news_show {
  width: 100%;
  background: #fff;
  padding: 50px 30px 60px 30px;
}
.news_show .news_show_main {
  max-width: 1200px;
  margin: 0 auto;
}
.news_show .nshowWarp {
  width: 100%;
  margin-top: 7.5px;
}
.news_show .nshowWarp .nshowBox {
  background-color: #fff;
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
}
.news_show .nshowWarp .nshowBox .nshowTitle {
  font-size: 32px;
  line-height: 32px;
  color: #333;
  margin-bottom: 10px;
  font-weight: normal;
}
.news_show .nshowWarp .nshowBox .nshowTag {
  height: 50px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #a30404;
}
.news_show .nshowWarp .nshowBox .nshowTag p {
  line-height: 20px;
  color: #999;
}
.news_show .nshowWarp .nshowBox .nshowTag span {
  display: block;
  width: 1px;
  height: 13px;
  background: #D9D9D9;
  margin: 0 10px;
}
.news_show .nshowWarp .nshowBox .xhremark {
  background: #eee;
  width: 100%;
  padding: 15px;
}
.news_show .nshowWarp .nshowBox .xhremark p {
  color: #333;
  font-size: 14px;
}
.news_show .nshowWarp .nshowBox .nshowInfo {
  margin: 40px 0;
  line-height: 28px;
  font-size: 14px;
}
.news_show .nshowWarp .nshowBox .nshowOther {
  height: 60px;
  padding: 10px;
  border-radius: 30px;
  background-color: #F2F2F2;
  display: flex;
  justify-content: space-between;
  line-height: 40px;
}
.news_show .nshowWarp .nshowBox .nshowBack {
  width: 150px;
  height: 40px;
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
  color: #a30404;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  transition: 0.2s all ease-in;
}
.news_show .nshowWarp .nshowBox .nshowBack:hover {
  background: #a30404;
  color: #fff;
  transition: 0.2s all ease-in;
}
.news_show .nshowWarp .nshowBox .nshowNext {
  display: flex;
  color: #666;
}
.news_show .nshowWarp .nshowBox .nshowNext i {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 10px 0 0;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  text-align: center;
  line-height: 40px;
  color: #a30404;
  font-size: 20px;
  transition: 0.2s all ease-in;
}
.news_show .nshowWarp .nshowBox .nshowNext i:hover {
  background: #a30404;
  color: #fff;
  transition: 0.2s all ease-in;
}
.news_show .nshowWarp .nshowBox .nshowNext span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_show .nshowWarp .nshowBox .nshowNext:last-of-type {
  flex-direction: row-reverse;
}
.news_show .nshowWarp .nshowBox .nshowNext:last-of-type i {
  margin: 0 0 0 10px;
}
.news_show .nshowWarp .nshowBox .nshowOther a:first-child {
  width: 40%;
}
.news_show .nshowWarp .nshowBox .nshowOther a:last-child {
  width: 40%;
}

@media screen and (max-width: 1025px) {
	.news_list {
    background: #fff;
    margin: 50px 5vw 90px;
}
  .news_list .news_list_main ul {
    display: flex;
    flex-wrap: wrap;
	padding-left: 0;
  }
  .news_list .news_list_main li {
    padding-bottom: 30px;
  }
  .news_list .news_item {
    flex-direction: column;
    padding: 0;
    padding-bottom: 0.3rem;
    margin-bottom: 0.3rem;
  }
  .news_list .news_item .mimg {
    width: 100%;
  }
  .news_list .news_item .mmain {
    padding-top: 15px;
  }
  .news_list .news_item .mmain h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .news_list .news_item .mmain p {
    font-size: 16px;
    height: auto;
  }
  .news_list .news_item .mmain .mbom {
    margin-top: 20px;
  }
  .news_show .nshowWarp {
    width: 100%;
  }
  .news_show {

  }
  .news_show .news_show_main {
    width: 100%;
    padding: 0;
  }
  .news_show .news_show_main .nshowWarp .nshowBox {
    width: auto;
    padding: 0;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowTitle {
    font-size: 1.44rem;
    line-height: 1.5rem;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowTag {
    height: auto;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowTag p {
    margin-right: 0;
	font-size: 13px;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowInfo {
    margin: 0.8rem 0;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowInfo p {
    font-size: 0.26rem;
    line-height: 0.4rem;
    margin-bottom: 0.2rem;
    text-indent: 0.2em;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowInfo img {
    width: 100%;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowOther {
    height: auto;
    padding: 0.2rem;
    border-radius: 1rem;
    justify-content: space-between;
    line-height: 0.4rem;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowBack {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 0.8rem;
    border-radius: 0.8rem;
    font-size: 0.26rem;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowNext i {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0;
    border-radius: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.26rem;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowNext span {
    display: none;
  }
  .news_show .news_show_main .nshowWarp .nshowBox .nshowNext:last-of-type i {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .news_list .news_list_main li {
    width: 100%;
  }
  .news_list .news_item .mmain h3 {
    font-size: 20px;
  }
}

/*******************浜у搧璇︽儏**************************/
.proshow {
  width: 100%;
  background: #fff;
  padding: 90px 8.4vw 60px;
}
.proshow .proshow_main {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.proshow .mleft {
  width: 35%;
  position: relative;
  box-shadow: 0 1px 10px 1px rgb(61 1 4 / 10%);
}
.proshow .mleft .proshow_imgswi {
  width: 100%;
}
.proshow .mleft .proshow_imgswi .mimg {
  width: 100%;
}
.proshow .mleft .proshow_imgswi .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proshow .mleft .proshow_imgswi_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.proshow .mleft .proshow_imgswi_btn .swiper-button-prev,
.proshow .mleft .proshow_imgswi_btn .swiper-button-next {
  width: 80px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: unset;
}
.proshow .mleft .proshow_imgswi_btn .swiper-button-prev i,
.proshow .mleft .proshow_imgswi_btn .swiper-button-next i {
  color: #fff;
  font-size: 20px;
}
.proshow .mleft .proshow_imgswi_btn .swiper-button-prev {
  margin-right: 1px;
}
.proshow .mleft .proshow_imgswi_num {
  position: absolute;
  left: 30px;
  bottom: 15px;
  display: flex;
  align-items: center;
  z-index: 10;
}
.proshow .mleft .proshow_imgswi_num p {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.proshow .mleft .proshow_imgswi_num i {
  color: #999;
  font-size: 16px;
  margin: 0 5px;
}
.proshow .mleft .proshow_imgswi_num span {
  font-size: 16px;
  color: #666;
}
.proshow .mright {
  width: 65%;
  padding: 0 60px;
}
.proshow .mright h2 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.proshow .mright .mtop {
  margin-bottom: 25px;
}
.proshow .mright .mtop h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}
.proshow .mright .mtop hr {
  border: none;
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
}
.proshow .mright ul {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.proshow .mright ul li {
  margin-right: 10px;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  border: 1px solid #D9D9D9;
}
.proshow .mright .minfo {
  font-size: 14px;
  color: #666;
  line-height: 180%;
  margin-bottom: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  display: -webkit-box;
}
.proshow .mright a {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 45px;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
}
.proshow .mright a span {
  position: relative;
  z-index: 10;
}
.proshow .mright a::after {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  background: #a30404;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 40px;
  transform: scale(0);
  transition: 0.3s all ease-in;
  z-index: 1;
}
.proshow .mright a:hover {
  border: 1px solid rgba(255, 255, 255, 0);
}
.proshow .mright a:hover::after {
  transform: scale(3);
}
.proshow_tabs {
  border-bottom: 2px solid #dfdfdf;
  height: 70px;
  margin: 50px 0 30px;
}
.proshow_tabs ul {
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  height: 100%;
  padding-left: 0;
}
.proshow_tabs ul li {
  width: 250px;
  height: 100%;
  list-style: none;
}
.proshow_tabs ul a {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: 0.2s all ease-in;
}
.proshow_tabs ul li.curr a {
  background: #a30404;
}
.proshow_tabs ul a:hover {
  background: #a30404;
}
.proshow_boxs {
  padding: 0 0;
}
.proshow_boxs .page_title {
  margin-bottom: 60px;
}
.proshow_boxs .proshow_04 {
  width: 100%;
  display: none;
}
.proshow_boxs .proshow_03 {
  display: none;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.proshow_boxs .proshow_03 ul {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.proshow_boxs .proshow_03 ul li {
  transition: 0.2s all ease-in;
  padding: 0 20px;
}
.proshow_boxs .proshow_03 ul li a {
  font-size: 15px;
  color: #333;
  display: block;
  position: relative;
  transition: 0.2s all ease-in;
  user-select: none;
}
.proshow_boxs .proshow_03 ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
  /*鍦ㄤ笁瑙掑舰搴曡竟璁剧疆涓€涓竟鐣岄鑹�/
					border-top: 20px solid red;
					/*鍏跺畠3杈硅缃浉鍚岄鑹诧紝*/
  border-top: 6px solid #fff;
  border-bottom: 6px solid #fff;
  border-left: 6px solid #a30404;
  border-right: 6px solid #fff;
  border-radius: 5px;
  transition: 0.2s all ease-in;
  position: absolute;
  left: -13px;
  top: 5px;
}
.proshow_boxs .proshow_03 ul li a::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
  transition: 0.2s all ease-in;
  /*鍦ㄤ笁瑙掑舰搴曡竟璁剧疆涓€涓竟鐣岄鑹�/
					border-top: 20px solid red;
					/*鍏跺畠3杈硅缃浉鍚岄鑹诧紝*/
  border-top: 6px solid #fff;
  border-bottom: 6px solid #fff;
  border-left: 6px solid #fff;
  border-right: 6px solid #a30404;
  border-radius: 5px;
  position: absolute;
  right: -13px;
  top: 5px;
}
.proshow_boxs .proshow_03 ul li a:hover {
  transform: translateY(-3px);
}
.proshow_boxs .proshow_03 ul li.curr a {
  color: #a30404;
}
.proshow_boxs .proshow_03 ul li.curr a::after {
  opacity: 1;
}
.proshow_boxs .proshow_03 ul li.curr a::before {
  opacity: 1;
}
.proshow_boxs .proshow_03 .mmain .mitem {
  display: none;
}
.proshow_boxs .proshow_03 .mmain .mitem p {
  font-size: 15px;
  color: #333;
  line-height: 170%;
}
.proshow_boxs .proshow_03 .mmain .mitem img {
  max-width: 100%;
  margin: 0 auto;
}
.proshow_boxs .proshow_02 {
  display: none;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.proshow_boxs .proshow_02 .minfo p {
  font-size: 15px;
  color: #333;
  line-height: 170%;
}
.proshow_boxs .proshow_02 .minfo img {
  max-width: 100%;
  margin: 0 auto;
}
.proshow_boxs .proshow_01 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 26px;
}
.proshow_boxs .proshow_01 .mtitle {
  margin-bottom: 30px;
}
.proshow_boxs .proshow_01 .mtitle h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.proshow_boxs .proshow_01 .mtitle span {
  display: block;
  width: 140px;
  height: 3px;
  background: #a30404;
}
.proshow_boxs .proshow_01 .minfo_01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.proshow_boxs .proshow_01 .minfo_01 .mleft {
  width: 48%;
}
.proshow_boxs .proshow_01 .minfo_01 .mright {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proshow_boxs .proshow_01 .minfo_01 .mright img {
  max-width: 95%;
}
.proshow_boxs .proshow_01 .minfo_02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 50px;
}
.proshow_boxs .proshow_01 .minfo_02 .mleft {
  width: 48%;
  padding-left: 30px;
}
.proshow_boxs .proshow_01 .minfo_02 .mright {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proshow_boxs .proshow_01 .minfo_02 .mright img {
  max-width: 95%;
}
.proshow_boxs .proshow_01 .minfo_03 {
  width: 100%;
  margin-bottom: 50px;
}
.proshow_boxs .proshow_01 .minfo_04 {
  width: 100%;
  margin-bottom: 30px;
}
.proshow_boxs .proshow_01 .minfo_04 img {
  width: 100%;
  max-width: 95%;
}
.proshow_boxs .proshow_01 .info_over {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.proshow_boxs .proshow_01 .info_over h5 {
  font-size: 16px;
  color: #666;
  margin: 0 40px;
}
.proshow_boxs .proshow_01 .info_over span {
  width: 250px;
  height: 2px;
  background: #E3E3E3;
}

@media screen and (max-width: 1200px) {
  .proshow {
    padding: 90px 5vw 60px;;
  }
	.proshow .mright {
    padding: 0 20px;
  }
  .proshow .mright ul li {
    margin-bottom: 10px;
    padding: 6px;
  }
  .proshow .mright h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 1025px) {
	.proshow {
    padding: 90px 5vw 60px;;
  }
  .proshow .proshow_main {
    flex-direction: column;
  }
  .proshow .mleft {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .proshow .mleft .proshow_imgswi_btn .swiper-button-prev,
  .proshow .mleft .proshow_imgswi_btn .swiper-button-next {
    width: 0.8rem;
    height: 0.6rem;
  }
  .proshow .mleft .proshow_imgswi_btn .swiper-button-prev i,
  .proshow .mleft .proshow_imgswi_btn .swiper-button-next i {
    font-size: 0.35rem;
  }
  .proshow .mleft .proshow_imgswi_num {
    left: 0.3rem;
    bottom: 0.2rem;
  }
  .proshow .mright {
    width: 100%;
    padding: 20px 0 0;
  }

  .proshow .mright ul li {
    padding: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
  }
  .proshow .mright .mtop {
    margin-bottom: 15px;
  }
  .proshow .mright ul {
    margin-bottom: 30px;
  }
  .proshow_tabs {
    
  }
  .proshow_tabs ul a {
    
  }
  .proshow_boxs {
    padding: 0.3rem;
  }
  .proshow_boxs .proshow_01 .mtitle h3 {
    font-size: 0.35rem;
  }
  .proshow_boxs .proshow_01 .mtitle {
    margin-bottom: 30px;
  }
  .proshow_boxs .proshow_01 .minfo_01 {
    flex-direction: column-reverse;
    margin-bottom: 50px;
  }
  .proshow_boxs .proshow_01 .minfo_01 .mleft {
    width: 100%;
  }
  .proshow_boxs .proshow_01 .minfo_01 .mright {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .proshow_boxs .proshow_01 b {
    font-size: 0.3rem;
  }
  .proshow_boxs .proshow_01 .minfo_03 {
    margin-bottom: 0.8rem;
  }
  .proshow_boxs .proshow_01 .minfo_02 {
    flex-direction: column-reverse;
    margin-bottom: 0.5rem;
  }
  .proshow_boxs .proshow_01 .minfo_02 .mleft {
    width: 100%;
  }
  .proshow_boxs .proshow_01 .minfo_02 .mright {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .proshow_boxs .proshow_01 .minfo_04 {
    margin-bottom: 0.6rem;
  }
  .proshow_boxs .proshow_01 .info_over h5 {
    font-size: 0.7rem;
    margin: 0 0.8rem;
  }
  .proshow_boxs .proshow_01 .info_over span {
    width: auto;
    flex: 1;
  }

  .proshow_boxs .proshow_04 .servezl_mbom {
    padding: 0 ;
  }
  .proshow_boxs .page_title {
    margin-bottom: 0.4rem;
  }
  .proshow_boxs .proshow_03 ul {
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }
  .proshow_boxs .proshow_03 ul li {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .proshow_boxs .proshow_03 ul li a {
    text-align: center;
  }
  .proshow_tabs{
    
  }
}

.other_box_case {
  width: 100%;
  padding: 60px 0 30px;
  background: #fff;
}
.other_box_case .other_box_main {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.other_box_case .page_title {
  margin-bottom: 30px;
}
.other_box_case a {
  display: block;
  position: relative;
  overflow: hidden;
}
.other_box_case a .mimg {
  width: 100%;
  overflow: hidden;
}
.other_box_case a .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all ease-in;
}
.other_box_case a .mfont {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transition: 0.2s all ease-in;
  height: 50px;
  padding: 20px 20px 10px 20px;
  transform: translateY(0px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0.01%, rgba(0, 0, 0, 0.372642) 49.48%, rgba(0, 0, 0, 0.52) 100%);
}
.other_box_case a .mfont p {
  color: #fff;
  font-size: 15px;
}
.other_box_case a:hover .mimg img {
  transform: scale(1.05);
}
.other_box_case a:hover .mfont {
  transform: translateY(0);
}
@media screen and (max-width: 1025px) {
  .other_box_case {
    padding: 3rem 0.15rem;
  }
  .other_box_case .page_title {
    margin-bottom: 0.5rem;
  }
  .other_box_case a .mfont {
    padding: 0.15rem 0.1rem;
    height: auto;
  }
}

.flex3 {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
#product{
	margin: 90px 8.4vw 50px;
}
.container-left {
    width: 20%;
}
.side-menu {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
}
.side-menu .ax-accordion {
    background-color: #f5f5f5;
	    padding-left: 0;
}
.side-menu .ax-accordion a {
    color: inherit;
}
.side-menu .ax-title {
    background-color: #222;
    border-radius: 5px 5px 0 0;
}
.side-menu .ax-title h1 {
    padding: 0 25px;
    line-height: 55px;
    font-size: 20px;
    margin: 0;
	color: #fff;
}
.ax-accordion > li + li {
    border-top: 1px solid #ddd;
}
.ax-accordion li.ax-item {
    padding: 0;
    line-height: 55px;
    font-size: 16px;
    font-weight: 500;
	list-style: none;
}
.ax-accordion li.ax-item.ax-show a {
    color: #fff;
}
.ax-accordion li.ax-item .ax-panel-header {
    padding: 0 25px;
}
.ax-accordion li.ax-item.ax-show .ax-panel-header {
    background: #a30404;
}
.ax-accordion li.ax-item .ax-panel-header .ax-operate {
    height: 55px;
    line-height: 55px;
    margin: 0;
}
.ax-accordion li.ax-item .sub-nav li i.ax-iconfont {
    color: #ccc;
}
.ax-accordion li.ax-item .sub-nav li {
    line-height: 40px;
    padding: 0 25px;
    font-size: 14px;
}
.ax-accordion li a {
    display: block;
    width: 100%;
    transition: all .3s;
}
.ax-accordion li a.ax-operate {
    width: auto;
}
.ax-accordion li:hover > a, .ax-accordion li a:hover {
    padding-left: 10px;
}
.ax-card-block {
    padding: 0;
}
.ax-card-block .ax-title, .ax-card-block .ax-des {
    padding: 0 10px;
}
.ax-card-block .ax-from {
    padding: 10px;
}
.ax-card-block .ax-title {

    height: 50px;
    text-align: center;
}
.ax-card-block .ax-title a {
    display: block;
    line-height: 40px;
}
.ax-card-block .ax-img {
    margin-bottom: 0;
}
.container-right{
	width: 76%;
}
.container-right ul{
    padding-left: 0;
}

@media only screen and (max-width: 1440px){
.container-right {
    width: calc(100% - 240px);
}
}

@media only screen and (max-width: 1199px) {
    #product {
    margin: 90px 5vw 50px;
    }
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#index-pro .swiper-slide, .pro-list li {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    font-weight: normal;
	width: 31.3333%;
	border: 1px solid #ddd;
    margin-bottom: 35px;
}
#index-pro .swiper-slide, .pro-list li > a {
    display: block;
}

#index-pro .swiper-slide img,
.pro-list li img {
	width: 100%;
    transition: all .5s;
    padding-bottom: 20px;
}
#index-pro .swiper-slide img.begin-img,
#index-pro .swiper-slide:hover img.hover-img,
.pro-list li img.begin-img,
.pro-list li:hover img.hover-img {
    display: block;
}
#index-pro .swiper-slide img.hover-img,
#index-pro .swiper-slide:hover img.begin-img,
.pro-list li:hover img.begin-img,
.pro-list li img.hover-img {
    display: none;
}
#index-pro .swiper-slide:hover,
.pro-list li:hover {
    box-shadow: 0 0 10px #ccc;
}
#index-pro .swiper-slide .content:before,
.pro-list li .content:before {
    content: '';
    position: absolute;
    left: 35%;
    top: 0;
    width: 30%;
    height: 1px;
    border-bottom: 3px solid #ccc;
    transition: all .3s;
}
#index-pro .swiper-slide .content,
.pro-list li .content {
    padding-top: 20px;
    position: relative;
	
}
#index-pro .swiper-slide .content,
.pro-list li .content h3{
	font-size: 18px;
	font-weight: bold;
    padding-bottom: 5px;
}
#index-pro .swiper-slide .content,
.pro-list li .content p{
  font-size: 14px;
}
#index-pro .swiper-slide:hover .content:before,
.pro-list li:hover .content p{
  color: #a30404;
}
#index-pro .swiper-slide:hover .content:before,
.pro-list li:hover .content:before {
    width: 100%;
    left: 0;
    border-color: #a30404;
}
#index-pro .swiper-slide .content .ax-sign,
.pro-list li .content .ax-sign {
    border-color: #ccc;
    transition: all .3s;
}
#index-pro .swiper-slide:hover .content .ax-sign,
.pro-list li:hover .content .ax-sign {
    border-color: #a30404;
    background-color: #a30404;
    color: #fff;
}

.ax-sign.ax-xxs {
  font-size: 12px;
  height: 22px;
  width: 22px;
  text-align: center;
  padding-left: 8px;
}
.ax-sign.ax-xxs *[class*="font"] {
  font-size: 12px;
}
.ax-sign.ax-xxs svg {
  height: 12px;
  width: 12px;
}
.ax-sign.ax-xxs img {
  height: 12px;
  width: 12px;
}
.swiper-slide{
	float: left;
	width: 25%;
    padding-right: 20px;
}
.swiper-wrapper{
	flex-wrap: wrap;
}
.menu{
	display: flex;
    border-bottom: 1px solid #eaeaea;
    justify-content: space-between;
    align-items: center;
    line-height: 2rem;
    margin-bottom: 30px;
}
.menu .menu-name {
	color: #333;
    border-bottom: 2px solid #a30404;
    padding-bottom: 2px;
    font-size: 20px;
    font-weight: bold;
}

@media only screen and (max-width: 992px) {
    #product {
        margin: 70px 5vw 40px;
    }
	.container-left {
    display: none;
}
.container-right {
    width: 100%;
}
#product .pro-list li {
    width: 100%;
	    margin-bottom: 8%;
}
.swiper-slide{
	width: 50%;
	padding-bottom: 20px;
}
}

.joinus03 {
  background: #fff;
  padding: 80px 8.4vw;
}
.joinus03 .joinus_main {
  width: 100%;
  margin: 0 auto;
}
.joinus03 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
      padding-inline-start: 0;
}
.joinus03 ul li {
  list-style: none;
  width: 33%;
  transition: 0.2s all ease-in;
  padding: 15px 13px;
}
.joinus03 ul a {
  display: block;
  overflow: hidden;
  position: relative;
}
.joinus03 ul a .mimg {
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.joinus03 ul a .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s all ease-in;
}
.joinus03 ul a .mfont {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.joinus03 ul a .mfont h3 {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  transition: 0.2s all ease-in;
}
.joinus03 ul a:hover .mimg img {
  transform: scale(1.05);
}
.joinus03 ul a:hover .mfont h3 {
  transform: translateY(-4px);
}
@media screen and (max-width: 1199px) {
  .joinus03 {
       padding: 60px 5vw;
  }
  .joinus03 ul a .mfont h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1025px) {
  .joinus03 {
       padding: 60px 5vw;
  }
  .joinus03 ul li {
    width: 50%;
  }
  .joinus03 ul a .mfont h3 {
    font-size: 20px;
  }
  .joinus03 ul a .mfont {
    left: 35px
    bottom: 35px;
  }
}

@media screen and (max-width: 768px) {
.joinus03 ul li {
    width: 100%;
  }
}

.case_list {
  background: #fff;
  padding: 80px 8.4vw 70px;
  overflow: hidden;
}
.case_list .case_list_main {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.case_list .case_list_main ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-inline-start: 0;
}
.case_list .case_list_main ul li {
  position: relative;
  width: 33%;
  padding: 15px;
}
.case_list .case_list_main ul a {
  display: block;
  position: relative;
  overflow: hidden;
}
.case_list .case_list_main ul a .mimg {
  width: 100%;
  overflow: hidden;
}
.case_list .case_list_main ul a .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all ease-in;
}
.case_list .case_list_main ul a .mfont {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transition: 0.2s all ease-in;
  height: 75px;
  padding: 20px 20px 10px 25px;
  transform: translateY(0px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0.01%, rgba(0, 0, 0, 0.372642) 49.48%, rgba(0, 0, 0, 0.52) 100%);
}
.case_list .case_list_main ul a .mfont p {
  color: #fff;
  font-size: 26px;
}
.case_list .case_list_main ul a:hover .mimg img {
  transform: scale(1.05);
}
.case_list .case_list_main ul a:hover .mfont {
  transform: translateY(0);
}
/***************宸ョ▼妗堜緥璇︽儏*************/
.case_show {
  width: 100%;
  background: #fff;
  padding: 60px 0;
}
.case_show .case_show_main {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.case_show .case_show_main h2 {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 60px;
}
.case_show .mmain {
  display: flex;
}
.case_show .mmain .mleft {
  flex-shrink: 0;
  margin-right: 50px;
}
.case_show .mmain .mleft .mimg {
  width: 500px;
  height: 375px;
  overflow: hidden;
}
.case_show .mmain .mleft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all ease-in;
}
.case_show .mmain .mleft img:hover {
  transform: scale(1.05);
}
.case_show .mmain .mright {
  padding-top: 0px;
  flex: 1;
}
.case_show .mmain .mright .mtop {
  margin-bottom: 30px;
}
.case_show .mmain .mright .mtop ul {
  display: flex;
  padding-left: 0;
  padding-inline-start: 0;
}
.case_show .mmain .mright .mtop li {
  width: 100%;
  padding-right: 30px;
}
.case_show .mmain .mright .mtop li p {
  font-size: 15px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.case_show .mmain .mright .mtop li h4 {
  font-size: 22px;
  color: #333;
  font-weight: bold;
}
.case_show .mmain .mright .minfo {
  margin-bottom: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 14;
  display: -webkit-box;
  line-height: 175%;
  font-size: 15px;
  color: #666;
}
.case_show .mmain .mright .minfo p {
  margin-bottom: 10px;
}
.case_show .mmain .mright a {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 45px;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
}
.case_show .mmain .mright a span {
  position: relative;
  z-index: 10;
}
.case_show .mmain .mright a::after {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  background: #a30404;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 40px;
  transform: scale(0);
  transition: 0.3s all ease-in;
  z-index: 1;
}
.case_show .mmain .mright a:hover {
  border: 1px solid rgba(255, 255, 255, 0);
}
.case_show .mmain .mright a:hover::after {
  transform: scale(3);
}
.case_img {
  background: #fff;
  padding: 50px 0px 50px 30px;
  position: relative;
  overflow: hidden;
}
.case_img .xhhonor_topmain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 120px;
}
.case_img .xhhonor_topmain .nonor_btn {
  position: absolute;
  right: 125px;
  top: 20px;
  display: flex;
  align-items: center;
}
.case_img .xhhonor_topmain .nonor_btn .swiper-button-prev {
  margin-right: 3px;
}
.case_img .xhhonor_topmain .nonor_btn .swiper-button-next,
.case_img .xhhonor_topmain .nonor_btn .swiper-button-prev {
  position: relative!important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f4f4f4;
  width: 60px;
  height: 50px;
  transition: 0.2s all ease-in;
}
.case_img .xhhonor_topmain .nonor_btn .swiper-button-next i,
.case_img .xhhonor_topmain .nonor_btn .swiper-button-prev i {
  color: #666;
  font-size: 16px;
  font-weight: bold;
}
.case_img .xhhonor_topmain .nonor_btn .swiper-button-next:active,
.case_img .xhhonor_topmain .nonor_btn .swiper-button-prev:active {
  background: #707070;
  transform: translate(-1px, 1px);
}
.case_img .xhhonor_topmain .nonor_btn .swiper-slide {
  overflow: hidden;
}
.case_img .xhhonor_topmain .nonor_btn .swiper-button-next:after,
.case_img .xhhonor_topmain .nonor_btn .swiper-button-prev:after {
  display: none;
}
.case_img .xhhonor_main {
  position: relative;
  padding-top: 30px;
  padding-left: 120px;
}
.case_img .mmain {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.case_img .mmain img {
  user-select: none;
  transition: 0.2s all ease-in;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case_img .mmain:hover img {
  transform: scale(1.05);
}
.case_img .honor_line {
  margin-top: 50px;
  position: relative;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}
.case_img .honor_line span {
  background: #286bad;
  height: 2px;
  width: 50px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.2s linear;
}

@media screen and (max-width: 1400px) {
.case_list .case_list_main ul li {
    width: 33.33%;
  }
  .case_show .mmain .mleft .mimg {
    width: 560px;
  }
  .case_show .mmain .mleft {
    margin-right: 30px;
  }
  .case_show .mmain .mright .minfo {
    -webkit-line-clamp: 20;
  }
  .case_show .mmain .mright .mtop {
    margin-bottom: 20px;
  }
  .case_img .mmain {
    height: 280px;
  }
}

@media screen and (max-width: 1199px) {
.case_list {
    padding: 90px 5vw 70px;
  }
}

@media screen and (max-width: 1025px) {
.case_list {
    padding: 50px 5vw 30px;
  }
  .case_list .case_list_main ul li {
    width: 50%;
    padding: 10px;
    margin-bottom: 20px;
  }
  .case_list .case_list_main ul a .mfont {
    transform: translateY(0);
    height: auto;
  }
  .case_show {
    padding: 60px 0
  }
  .case_show .case_show_main h2 {
    font-size: 0.4rem;
    margin-bottom: 30px;
  }
  .case_show .mmain {
    flex-direction: column;
  }
  .case_show .mmain .mleft {
    width: 100%;
    margin: 0;
  }
  .case_show .mmain .mleft .mimg {
    width: 100%;
    height: auto;
  }
  .case_show .mmain .mright .mtop ul {
    flex-wrap: wrap;
  }
  .case_show .mmain .mright .mtop li {
    width: 100%;
    margin-bottom: 10px;
    padding-right: 0;
  }
  .case_show .mmain .mright .mtop li h4 {
    font-size: 22px;
  }
  .case_show .mmain .mright .mtop li p {
    font-size: 14px;
  }
  .case_show .mmain .mright .mtop {
	margin-top: 10px;
    margin-bottom: 35px;
  }
  .case_show .mmain .mright .minfo {
    height: auto;
    margin-bottom: 30px;
    font-size: 0.28rem;
    line-height: 160%;
    -webkit-line-clamp: 100;
  }
  .case_img {
    padding: 0.3rem 0 0.3rem 0.3rem;
  }
  .case_img .xhhonor_main {
    padding-top: 30px;
    padding-left: 30px;
  }
  .case_img .mmain {
    height: 240px;
  }
  .case_img .xhhonor_topmain {
    padding-left: 30px;
  }
  .case_img .xhhonor_topmain .nonor_btn {
    right: 0.3rem;
    top: 24px;
  }
  .case_img .xhhonor_topmain .nonor_btn .swiper-button-next,
  .case_img .xhhonor_topmain .nonor_btn .swiper-button-prev {
    width: 80px;
    height: 60px;
  }
  .case_img .xhhonor_topmain .nonor_btn .swiper-button-next i i,
  .case_img .xhhonor_topmain .nonor_btn .swiper-button-prev i i {
    font-size: 0.35rem;
  }
  .case_img .honor_line {
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
.case_list .case_list_main ul li {
    width: 100%;
    padding: 0;
  }
.case_list .case_list_main ul a .mfont p{
	font-size: 20px;
}
  .news_list .news_list_main li {
    width: 100%;
    padding: 0;
  }
}
