html {
	font-size: 100%;
	overflow-x: hidden;
}

* {
	margin: 0;
	padding: 0;
	outline: none;
}

a {
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	color: #001e3c;
	font-weight: 600;
}

h1 {
	font-size: 60px;
	line-height: 75px;
}

h2 {
	margin-top: 5px;
	font-size: 30px;
}

h3 {
	font-size: 38px;
	line-height: 52px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 15px;
}

p {
	margin: 0;
	padding: 0;
}

ul {
	margin: 0;
}

li {
	list-style: none;
}

input,
select,
textarea {
	border: none;
	outline: none;
}

button {
	border: none;
	cursor: pointer;
}

button,
button:hover,
button:focus {
	outline: none;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 26px;
	color: #444444;
	overflow-x: hidden;
}

.section_padding {
	padding: 120px 0;
}

.section_title {
	margin-bottom: 55px;
}

.section_title h2 {
	position: relative;
}

/*标签下方添加图片背景
.section_title h2:after{
	content: '';
	width: 54px;
	height: 16px;
	display: block;
	margin: 17px auto 10px;
}
*/
.section_title span {
	color: #0db896;
	font-size: 14px;
	display: block;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 5px;
}

.bg_image {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}

.gray_bg {
	background: #f9f9f9;
}

.domar_btn {
	display: inline-block;
	padding: 12px 33px;
	border-radius: 30px;
	text-transform: uppercase;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border: 1px solid #0db896;
	background: #0db896;
	transition: all .5s;
}

.domar_btn:hover,
.domar_btn:focus {
	background: transparent;
	color: #0db896;
	border-color: #0db896;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
		/* max-width: 100%; */
		padding: 0px 50px;
	}
}

@media (min-width: 1200px) {
	.container-top {
		max-width: 100%;
		padding: 0px 50px;
	}
}

/*>----------------------------------
	End Default css
------------------------------------<*/

/*>----------------------------------
	02. Start Search Wrapper css
------------------------------------*/
.search_wrapper.active {
	top: 0;
}

.search_wrapper {
	position: fixed;
	top: -100%;
	left: 0;
	background-color: #001e3c;
	height: 50%;
	width: 100%;
	z-index: 999999;
	-webkit-transition: all 0.6s ease-out 0s;
	-moz-transition: all 0.6s ease-out 0s;
	-ms-transition: all 0.6s ease-out 0s;
	-o-transition: all 0.6s ease-out 0s;
	transition: all 0.6s ease-out 0s;
}

.search_wrapper .close_link {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: #0db896;
	border: none;
	color: #fff;
	text-align: center;
	font-size: 22px;
}

.search_wrapper .form_control {
	background: transparent;
	width: 70%;
	position: absolute;
	top: 50%;
	left: 15%;
	height: 60px;
	padding-left: 30px;
	margin: 0 auto;
	color: #fff;
	border: none;
	border-bottom: 1px solid #fff;
	transition: all .5s;
}

.search_wrapper .form_control:focus {
	border-color: #0db896;
}

.search_wrapper .form_control::placeholder {
	color: #fff;
	letter-spacing: 2px;
	text-transform: capitalize;
}

/*>----------------------------------
	End Search Wrapper css
<------------------------------------*/

/*>----------------------------------
	03. Start Preloader css
<------------------------------------*/
.preloader_area {
	background: #fff;
	height: 100%;
	overflow: hidden;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 11000;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 50px;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 10px;
}

.spinner>div {
	background-color: #333;
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .line2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .line3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.spinner .line4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .line5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

.spinner .line6 {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}

.spinner .line7 {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s;
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4)
	}

	20% {
		-webkit-transform: scaleY(1.0)
	}
}

@keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}

	20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}

/*>标题栏跟着鼠标的滚动固定到顶部<*/
.sticky.transparent_header,
.sticky.header_area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 337;
	background: #fff;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(232, 227, 232, 1);
	-moz-box-shadow: 0px 0px 10px 0px rgba(232, 227, 232, 1);
	box-shadow: 0px 0px 10px 0px rgba(232, 227, 232, 1);
}

.sticky.transparent_header .site_menu .main_menu ul li a {
	color: #012237;
}

.transparent_header .site_menu .main_menu ul li a {
	color: #fff;
}

.site_menu .main_menu {
	float: right;
}

.site_menu .main_menu ul li {
	position: relative;
	display: inline-block;
	margin-left: 50px;
}

.site_menu .main_menu ul li a {
	display: block;
	font-size: 16px;
	color: #222222;
	padding: 40px 0;
	transition: all .5s;
}

.site_menu .main_menu ul li:hover>a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 10px;
	border-bottom: 4px solid #4D86FC;
	box-sizing: border-box;
	border-radius: 2px;
	top: 61px;
}

.is-select-menu::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 10px;
	border-bottom: 4px solid #4D86FC;
	box-sizing: border-box;
	border-radius: 2px;
	top: 61px;
}

.site_menu .main_menu ul li:hover>a {
	color: #4D86FC;
}

.site_menu .main_menu ul li:hover>ul.sub-menu {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	top: 100%;
	visibility: visible;
	opacity: 1;
}

.site_menu .main_menu ul li>ul.sub-menu li {
	display: block;
	margin: 0;
}

.site_menu .main_menu ul li>ul.sub-menu li>a {
	padding: 5px 35px;
	color: #012237;
	font-size: 14px;
	text-transform: capitalize;
}

.site_menu .main_menu ul li>ul.sub-menu li:hover>a:after {
	display: none;
}

.site_menu .main_menu ul li>ul.sub-menu li:hover>a {
	color: #0db896;
	padding-left: 40px;
}

.site_menu .main_menu ul li ul.sub-menu li>ul.sub-menu {
	top: 0;
	left: 100%;
	opacity: 0;
	visibility: hidden;
}

.site_menu .main_menu ul li ul.sub-menu li:hover>ul.sub-menu {
	visibility: visible;
	opacity: 1;
}

/*sidebar_menu*/
.sticky.transparent_header .mobile_menu ul li a {
	color: #001e3c;
}

.mobile_wrapper {
	display: none;
	padding: 15px 0;
}

.mobile_menu {
	float: right;
}

.mobile_menu ul li {
	display: inline-block;
	margin-left: 20px;
}

.mobile_menu ul li a {
	color: #001e3c;
	font-size: 16px;
	display: block;
	cursor: pointer;
}

.sidenav_menu {
	overflow: hidden;
	width: 80%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 50px 20px;
	z-index: 9999;
	background: #ffffff;
	overflow: auto;
	transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: -webkit-transform 0.6s ease;
	transition: transform 0.6s ease;
}

.sidenav_menu.active {
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.sidebar-menu li a {
	text-transform: capitalize;
	color: #04040d;
	border: none;
}

.sidebar-menu>li:hover>a,
.sidebar-menu>li.active>a {
	color: #0db896;
	background: #fff;
	border: none;
}

.sidebar-menu .sub-menu {
	padding-left: 10px;
	margin: 0;
	background: #fff;
}

.sidebar-menu .sub-menu li a {
	color: #04040d;
}

.close_icon {
	position: absolute;
	right: 0;
	top: 0;
}

.close_icon .close_btn {
	cursor: pointer;
}

.close_icon .close_btn i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #04040d;
	color: #fff;
	font-size: 16px;
}

.mobile_wrapper .sidebar-menu li.menu-item-has-children.active>a:after,
.mobile_wrapper .sidebar-menu li.menu-item-has-children>a:after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	float: right;
	cursor: pointer;
	transition: all .5s;
}

.mobile_wrapper .sidebar-menu li.menu-item-has-children>a:after {
	content: '\f107';
}

.mobile_wrapper .sidebar-menu li.menu-item-has-children.active>a:after {
	content: '\f106';
}

.transparent_header .mobile_menu ul li a {
	color: #fff;
}

/*>----------------------------------
	End Header_area css
------------------------------------<*/


/*>----------------------------------
	>---06. Start Home_v1 css---<
------------------------------------<*/
/*
	Start hero section
*/
.hero_v1 {
	/* padding: 203px 0 352px; */
	height: 391px;
}

.hero_v1 .bg_overlay {
	opacity: 0.471;
}

/*
	Start hero section
*/

/*
	Start domar_countdown
*/
.domar_offer_box {
	max-width: 1266px;
	padding: 55px 30px;
	background: rgb(255, 255, 255);
	box-shadow: 0px 3px 77.28px 14.72px rgba(0, 0, 0, 0.2);
	margin: 0 auto;
	margin-top: -137px;
	z-index: 1;
	position: relative;
}

.countdown_newsletter h4 {
	margin-bottom: 30px;
}

.countdown_newsletter h4 span {
	color: #0db896;
}

.countdown_newsletter .form_group {
	position: relative;
}

.countdown_newsletter .form_group .form_control {
	border-radius: 30px;
	background: #f5f5f5;
	border: none;
	height: 60px;
	padding-left: 27px;
}

.countdown_newsletter .form_group .domar_btn {
	position: absolute;
	top: 0;
	right: 0;
	padding: 17px 26px;
	border: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.countdown_newsletter .form_group .domar_btn:hover,
.countdown_newsletter .form_group .domar_btn:focus {
	background: #0db896;
}

.offer_countdown {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.counter_column {
	position: relative;
	height: 143px;
	width: 143px;
	background: url(../images/badge.png)no-repeat center;
}

.counter_column .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #012237;
	font-weight: bold;
	font-size: 21px;
}

.counter_column .inner span {
	margin-bottom: 12px;
	font-size: 36px;
	display: block;
}

/*
	End domar_countdown
*/

/*
	Start categories_v1 section css
*/
.categories_style_v1 .section_title {
	margin-top: -7px;
}

.categories_style_v1 {
	margin-bottom: -30px;
}

.categories_style_v1 .categorie_box {
	display: block;
	max-height: 150px;
	width: 100%;
	padding: 52px 0;
	text-align: center;
	margin-bottom: 30px;
}

.categories_style_v1 .categorie_box:hover .bg_overlay {
	background-color: rgb(13, 184, 150);
}

.categories_style_v1 .bg_overlay {
	background: rgb(1, 34, 55);
	opacity: 0.78;
	transition: all .5s;
}

.categories_style_v1 .domar_content {
	position: relative;
}

.categories_style_v1 .domar_content h4 {
	color: #fff;
	margin-bottom: 6px;
}

.categories_style_v1 .domar_content h6 {
	color: #fff;
}

/*
	End categories_v1 section css
*/

/*
	Start couse_style_v1 section css
*/
.course_style_v1 {
	padding-bottom: 90px;
}

.course_style_v1 .section_title {
	margin-top: -10px;
}

.course_style_v1 .course_box {
	margin-bottom: 30px;
}

.course_style_v1 .course_box .domar_img {
	position: relative;
}

.course_style_v1 .course_box .domar_img .overlay_content {
	position: absolute;
	bottom: -15px;
	left: 30px;
}

.course_style_v1 .course_box .domar_img .overlay_content .cat_btn {
	display: inline-block;
	padding: 3px 10px;
	background: #0db896;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.course_style_v1 .course_box .domar_img .overlay_content .cat_btn.cat_1 {
	background: #0d85d2;
}

.course_style_v1 .course_box .domar_img .overlay_content .cat_btn.cat_2 {
	background: #0db896;
}

.course_style_v1 .course_box .domar_img .overlay_content .cat_btn.cat_3 {
	background: #3127ee;
}

.course_style_v1 .course_box .domar_img .overlay_content .cat_btn.cat_4 {
	background: #0db896;
}

.course_style_v1 .course_box .domar_img .overlay_content .cat_btn.cat_5 {
	background: #e22af3;
}

.course_style_v1 .course_box .domar_img .overlay_content .cat_btn.cat_6 {
	background: #ee7727;
}

.course_style_v1 .course_box .domar_info {
	padding: 27px 30px 15px;
	border: 1px solid #ddd;
	border-top: none;
}

.course_style_v1 .course_box .domar_info .post_title h3 {
	font-size: 22px;
	line-height: 34px;
	margin-bottom: 15px;
}

.course_style_v1 .course_box .domar_info .post_title h3 a {
	color: #001e3c;
}

.course_style_v1 .course_box .domar_info .post_meta .top_info {
	margin-bottom: 13px;
}

.course_style_v1 .course_box .domar_info .post_meta .top_info p {
	display: inline-block;
	float: right;
}

.course_style_v1 .course_box .domar_info .post_meta .top_info a.author {
	color: #444;
}

.course_style_v1 .course_box .domar_info .post_meta .top_info p span.price {
	margin-right: 10px;
	text-decoration: line-through;
}

.course_style_v1 .course_box .domar_info .post_meta .bottom_info {
	padding-top: 12px;
	border-top: 1px solid #ddd;
}

.course_style_v1 .course_box .domar_info .post_meta .bottom_info ul li {
	display: inline-block;
	vertical-align: middle;
}

.course_style_v1 .course_box .domar_info .post_meta .bottom_info ul li.star:after {
	content: '\f005';
	font-weight: 900;
	font-family: 'Font Awesome 5 Free';
	color: #f5d817;
}

.course_style_v1 .course_box .domar_info .post_meta .bottom_info ul li.enroll {
	float: right;
}

/*
	End couse_style_v1 section css
*/

/*
	Start teacher_v1 section css
*/
.domar_teachers .section_title {
	margin-top: -10px;
}

.teacher_box:hover .overlay_content {
	visibility: visible;
	opacity: .8;
	transform: translate(-50%, -50%);
}

.teacher_box:hover .bg_overlay {
	visibility: visible;
	opacity: .8;
	transform: translate(-50%, -50%);
}

.teacher_box .domar_img {
	position: relative;
	overflow: hidden;
}

.teacher_box .bg_overlay {
	width: 330px;
	height: 410px;
	opacity: 0;
	visibility: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-100%, -50%);
	transition: all .3s;
}

.teacher_box .overlay_content {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	width: 87%;
	padding: 10px 16px;
	opacity: 0;
	visibility: hidden;
	transform: translate(100%, -50%);
	transition: all .5s;
}

.teacher_box .overlay_content .info {
	margin-bottom: 25px;
}

.teacher_box .overlay_content .info h4 {
	color: #fff;
	margin-bottom: 10px;
}

.teacher_box .overlay_content .info h5 {
	color: #fff;
}

.teacher_box .overlay_content .text {
	margin-bottom: 40px;
}

.teacher_box .overlay_content .text p {
	color: #fff;
}

.teacher_box .overlay_content .social a {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background: #012237;
	color: #fff;
	margin-left: 3px;
	margin-right: 3px;
	transition: all .5s;
}

.teacher_box .overlay_content .social a:hover,
.teacher_box .overlay_content .social a:focus {
	background: #0db896;
	color: #fff;
}

.teacher_v2 {
	padding: 190px 0 120px;
}

.light_bg {
	background: #f3fdff;
}

.testimonial_v3 .teacher_box {
	margin-bottom: 40px;
}

.testimonial_v3 {
	margin-bottom: -40px;
}

/*
	End teacher_v1 section css
*/

/*
	Start domar_joined_v1 section css
*/
.domar_joined_v1 .domar_content_box {
	margin-top: -8px;
}

.domar_joined_v1 {
	padding: 120px 0 5px;
}

.domar_joined_v1 .bg_overlay {
	background: rgb(1, 34, 55);
	opacity: 0.6;
}

.domar_joined_v1 .domar_content_box h2 {
	color: #fff;
	margin-bottom: 25px;
	font-size: 60px;
	line-height: 70px;
}

.domar_joined_v1 .domar_content_box p {
	color: #fff;
	margin-bottom: 30px;
}

.domar_joined_v1 .domar_button .domar_btn {
	border-radius: 0;
	padding: 13px 43px;
}

.joined_wrapper {
	padding: 50px 30px 55px;
	background: #0db896;
	opacity: 1;
	position: relative;
	margin-top: 125px;
	margin-bottom: -85px;
	clip-path: polygon(0 0, 100% 17%, 100% 100%, 0% 100%);
}

.joined_wrapper .domar_content_box h2 {
	font-size: 50px;
	line-height: 60px;
	margin-bottom: 10px;
}

.joined_wrapper .domar_content_box p {
	margin-bottom: 0;
	font-size: 15px;
}

.joined_wrapper .domar_button {
	float: right;
}

.joined_wrapper .domar_button .domar_btn {
	padding: 13px 47px;
	border-color: #fff;
	background: #fff;
	color: #001e3c;
	border-radius: 30px;
}

.joined_wrapper .domar_button .domar_btn:hover,
.joined_wrapper .domar_button .domar_btn:focus {
	background: transparent;
	color: #fff;
}

/*
	End domar_joined_v1 section css
*/

/*
	Start why_choose_v1 section css
*/
.why_choose_v1 .domar_content_box {
	margin-top: -10px;
}

.why_choose_v1 {
	padding: 195px 0 120px;
}

.domar_why_choose .domar_content_box h3 {
	margin-bottom: 40px;
}

.domar_why_choose .content_list .single_list {
	margin-bottom: 30px;
}

.domar_why_choose .content_list .single_list:last-child {
	margin-bottom: 0;
}

.domar_why_choose .content_list .list_info {
	position: relative;
	padding-left: 48px;
}

.domar_why_choose .content_list .list_info:after {
	position: absolute;
	top: 6px;
	left: 0;
	content: '';
	width: 18px;
	height: 18px;
	border-radius: 2px;
	background: #fff;
	display: block;
	border: 5px solid #fd5656;
}

.domar_why_choose .content_list .list_info.list_2:after {
	border-color: #2a46eb;
}

.domar_why_choose .content_list .list_info.list_3:after {
	border-color: #0db896;
}

/*
	why_choose_v1 section css
*/

/*
	Start domar_blog section css
*/
.blog_style_v1 .section_title {
	margin-top: -10px;
}

.blog_style_v1 .blog_box {
	width: 100%;
	height: 640px;
	overflow: hidden;
	position: relative;
}

.blog_style_v1 .blog_box .bg_overlay {
	background: rgb(1, 34, 55);
	opacity: 0.58;
	transition: all .5s;
}

.blog_style_v1 .blog_box .blog_info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	word-break: break-word;
	padding: 40px 30px;
}

.blog_style_v1 .blog_box .blog_info h3 {
	font-size: 28px;
	line-height: 45px;
	margin-bottom: 20px;
}

.blog_list_wrapper .blog_box_2 .blog_info h3 a,
.blog_style_v1 .blog_box .blog_info h3 a {
	color: #fff;
}

.blog_style_v1 .blog_box .blog_info a.date {
	color: #fff;
}

.blog_style_v1 .blog_box .blog_info a.btn_link {
	color: #fff;
}

.blog_list_wrapper .blog_box_2 .blog_info a.date i,
.blog_style_v1 .blog_box .blog_info a.date i {
	margin-right: 10px;
}

.blog_list_wrapper .blog_box_2 {
	height: 195px;
	margin-bottom: 27px;
}

.blog_list_wrapper .blog_box_2:hover .bg_overlay {
	background: #0db896;
}

.blog_list_wrapper .blog_box_2:last-child {
	margin-bottom: 0;
}

.blog_list_wrapper .blog_box_2 .bg_overlay {
	background: #012237;
	opacity: .87;
	transition: all .5s;
}

.blog_list_wrapper .blog_box_2 .blog_info {
	position: relative;
	padding: 36px 30px 20px;
	height: 100%;
}

.blog_list_wrapper .blog_box_2 .blog_info a.date {
	margin-bottom: 15px;
	display: block;
	color: #fff;
}

.blog_list_wrapper .blog_box_2 .blog_info h3 {
	font-size: 28px;
	line-height: 45px;
	font-weight: bold;
}

/*
	End domar_blog section css
*/

/*
	Start domar_footer css
*/
.footer_v1 .bg_overlay {
	background-color: rgb(1, 34, 55);
	opacity: 0.949;
}

.footer_widget_wrapper {
	padding: 117px 0 110px;
}

.footer_widget_wrapper .widget_box .widget_title {
	margin-bottom: 20px;
}

.footer_widget_wrapper .widget_box .widget_title h4 {
	color: #fff;
}

.contact_wrapper .single_contact {
	display: flex;
	flex-wrap: row wrap;
	margin-bottom: 15px;
	align-items: center;
}

.contact_wrapper .single_contact .list_icon i {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background: #0db896;
	color: #fff;
}

.contact_wrapper .single_contact .list_text {
	margin-left: 22px;
}

.contact_wrapper .single_contact .list_text p,
.contact_wrapper .single_contact .list_text p a {
	color: #fff;
}

.footer_widget_wrapper .widget_box ul.widget_link li {
	line-height: 35px;
	color: #fff;
}

.footer_widget_wrapper .widget_box ul.widget_link li a {
	color: #fff;
	transition: all .5s;
}

.footer_widget_wrapper .widget_box ul.widget_link li:hover a {
	padding-left: 5px;
}

.footer_widget_wrapper .widget_box ul.widget_link li:hover:before {
	background: #fd5656;
	margin-right: 10px;
	visibility: visible;
	opacity: 1;
}

.footer_widget_wrapper .widget_box ul.widget_link li:before {
	display: inline-block;
	background: #fff;
	margin-right: -5px;
	content: '';
	width: 5px;
	visibility: hidden;
	opacity: 0;
	height: 5px;
	border-radius: 50%;
	vertical-align: middle;
	transition: all .2s;
}

.footer_copyright {
	position: relative;
	border-top: 1px solid #546874;
	padding: 18px 0;
}

.copyright_text p {
	width: 1000px;
	color: #fff;
}

.copyright_link {
	float: right;
}

.copyright_link ul li {
	margin-left: 22px;
	display: inline-block;
}

.copyright_link ul li a {
	color: #fff;
}

.copyright_link ul li a:hover,
.copyright_link ul li a:focus {
	color: #0db896;
}

/*
	End domar_footer css
*/
/*>----------------------------------
	>---End Home_v1 css---<
------------------------------------<*/

/*>----------------------------------
	>---07. Start Home_v2 css---<
------------------------------------<*/
/*
	Start hero seciton
*/
.hero_v2 {
	padding: 198px 0 370px;
}

.hero_v3 .bg_overlay,
.hero_v2 .bg_overlay {
	opacity: .65;
}

.hero_v3 .domar_button .domar_btn,
.hero_v2 .domar_button .domar_btn {
	margin-left: 5px;
	margin-right: 5px;
	background: transparent;
	border: none;
	color: #fff;
	font-weight: 400;
	text-transform: capitalize;
}

.hero_v3 .domar_button .domar_btn:hover,
.hero_v3 .domar_button .domar_btn:focus,
.hero_v2 .domar_button .domar_btn:hover,
.hero_v2 .domar_button .domar_btn:focus {
	background: #0db896;
	color: #fff;
}

.hero_v3 .domar_button .domar_btn i,
.hero_v2 .domar_button .domar_btn i {
	margin-right: 10px;
}

.hero_v3 .domar_button .domar_btn.active_btn,
.hero_v2 .domar_button .domar_btn.active_btn {
	background: #0db896;
}

.hero_v3 .domar_button .domar_btn.active_btn:hover,
.hero_v3 .domar_button .domar_btn.active_btn:focus,
.hero_v2 .domar_button .domar_btn.active_btn:hover,
.hero_v2 .domar_button .domar_btn.active_btn:focus {
	background: transparent;
	color: #fff;
	border: none;
}

.hero_v2 .banner_content .domar_content_box h1,
.hero_v3 .banner_content .domar_content_box h1 {
	margin-bottom: 31px;
}

.hero_v2 .banner_content .domar_content_box p,
.hero_v3 .banner_content .domar_content_box p {
	margin-bottom: 46px;
}

/*
	End hero seciton
*/

/*
	Start domar_feature section
*/
.featured_v1 {
	position: relative;
	margin-top: -160px;
	z-index: 1;
}

.featured_v1 .domar_box {
	position: relative;
	overflow: hidden;
	padding: 60px 33px 50px;
	border-radius: 5px;
	background: rgb(255, 255, 255);
	z-index: 1;
	box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
	transition: all .5s;
}

.featured_v1 .domar_box:hover {
	background: url(../images/featured_bg.jpg) no-repeat center;
	background-size: cover;
}

.featured_v1 .domar_box:hover:after {
	opacity: .71;
	visibility: visible;
}

.featured_v1 .domar_box:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0db896;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: all .5s;
}

.featured_v1 .domar_box:hover .domar_icon i,
.featured_v1 .domar_box:hover .domar_info h4,
.featured_v1 .domar_box:hover .domar_info p,
.featured_v1 .domar_box:hover .domar_info a.btn_link {
	color: #fff;
}

.featured_v1 .domar_box .domar_icon i {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin-bottom: 20px;
	font-size: 50px;
	color: #0db896;
}

.featured_v1 .domar_box .domar_icon,
.featured_v1 .domar_box .domar_info {
	position: relative;
}

.featured_v1 .domar_box .domar_info h4 {
	margin-bottom: 10px;
}

.featured_v1 .domar_box .domar_info p {
	margin-bottom: 10px;
}

.featured_v1 .domar_box .domar_info a.btn_link {
	color: #444;
}

/*
	End domar_feature section
*/

/*
	Start domar_about section css
*/
.about_v1 .section_title {
	margin-bottom: 25px;
}

.about_v1 .section_title h2 {
	margin-bottom: 20px;
}

.about_v1 .section_title h2:after {
	display: none;
}

.about_v1 .content_list {
	margin-bottom: 10px;
}

.about_v1 .content_list ul li {
	line-height: 36px;
}

.about_v1 .content_list ul li:before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 15px;
	color: #0db896;
}

.domar_img_box {
	position: relative;
}

.text_box {
	position: absolute;
	bottom: 5%;
	left: 35%;
	width: 117px;
	height: 117px;
	line-height: 117px;
	text-align: center;
	border-radius: 50%;
	background: rgb(255, 255, 255);
	padding-top: 35px;
	box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.3);
}

/*
	End  domar_about section css
*/

/*
	Start Domar_event section css
*/
.event_v1 .section_title {
	margin-top: -10px;
}

.event_v1 .section_title h2:after {
	display: none;
}

.event_v1 .domar_button {
	margin-bottom: 60px;
	float: right;
}

.event_v1 .event_box .domar_img {
	box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.13);
}

.event_v1 .event_box .event_info {
	padding: 45px 35px;
}

.event_v1 .event_box .event_info h3 {
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 19px;
}

.event_v1 .event_box .event_info h3 a {
	color: #001e3c;
}

.event_v1 .event_box .event_info p.meta {
	margin-bottom: 15px;
}

.event_v1 .event_box .event_info p.meta span {
	margin-right: 15px;
}

.event_v1 .event_box .event_info p.meta span i {
	margin-right: 10px;
}

.event_v1 .event_list_wrapper .event_box {
	position: relative;
	overflow: hidden;
	padding: 26px 30px;
	border-radius: 5px;
	border: 1px solid #dddddd;
	margin-bottom: 30px;
	cursor: pointer;
	z-index: 1;
}

.event_v1 .event_list_wrapper .event_box:hover {
	background: url(../images/event_2.jpg) no-repeat center;
	background-size: cover;
}

.event_v1 .event_list_wrapper .event_box:hover:after {
	opacity: 0.902;
	visibility: visible;
}

.event_v1 .event_list_wrapper .event_box:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(13, 184, 150);
	opacity: 0;
	visibility: hidden;
	transition: all .5s;
	z-index: -1;
}

.event_v1 .event_list_wrapper .event_box:hover .event_info a.date,
.event_v1 .event_list_wrapper .event_box:hover .event_info h3 a,
.event_v1 .event_list_wrapper .event_box:hover .event_info p {
	color: #fff;
}

.event_v1 .event_list_wrapper .event_box .event_info {
	padding: 0;
}

.event_v1 .event_list_wrapper .event_box .event_info a.date {
	color: #444;
	margin-bottom: 10px;
	display: block;
}

.event_v1 .event_list_wrapper .event_box .event_info h3 {
	margin-bottom: 13px;
}

.event_v1 .event_list_wrapper .event_box .event_info p.meta {
	margin-bottom: 0;
}

/*
	End Domar_event section css
*/

/*
	Start testimonial_v1 section css
*/
.testimonial_v1 {
	padding: 190px 0 120px;
}

.testimonial_v1 .testimonial_slide_1 {
	margin-left: -15px;
	margin-right: -15px;
}

.testimonial_v1 .testimonial_box {
	margin: 20px 0 40px;
	margin-left: 15px;
	margin-right: 15px;
	outline: none;
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 10px 10px 1px rgba(41, 44, 61, 0.15);
}

.testimonial_v1 .testimonial_box .testimonial_img {
	position: relative;
	width: 33.85%;
	background: url(../images/client_bg.jpg)no-repeat center;
	background-size: cover;
	z-index: 1;
}

.testimonial_v1 .testimonial_box .testimonial_img:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0db896;
	opacity: 83%;
	z-index: -1;
}

.testimonial_v1 .testimonial_box .testimonial_img .domar_img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120px;
	transform: translate(-50%, -50%);
}

.testimonial_v1 .testimonial_box .testimonial_img .domar_img img {
	width: 120px;
	height: 120px;
	border-radius: 50%;

}

.testimonial_v1 .testimonial_box .testimonial_info {
	padding: 55px 40px;
	width: 66.15%;
	background: #fff;
}

.testimonial_slide_1 .slick-dots {
	bottom: -35px;
}

.testimonial_slide_1 .slick-dots li {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #0db896;
	border: 2px solid #fff;
	margin: 0 5px;
	transition: all .5s;
}

.testimonial_slide_1 .slick-dots li.slick-active {
	background: transparent;
	border-color: #0db896;
}

/*
	End testimonial_v1 section css
*/
/*>----------------------------------
	>---End Home_v2 css---<
------------------------------------<*/

/*>----------------------------------
	>---08. Start Home_v3 css---<
------------------------------------<*/
/*
	Start hero_bg section
*/
.hero_v3 {
	padding: 270px 0 280px;
}

/*
	End hero_bg section
*/

/*
	Start why_choose_v2 section
*/
.why_choose_v2 {
	padding: 110px 0;
}

/*
	End why_choose_v2 section
*/

/*
	Start domar_appointment section
*/
.appointment_v1 .section_title {
	margin-top: -5px;
}

.appointment_v1 .appointment_form .form_group .selectoption {
	height: 45px;
	line-height: 45px;
	border-radius: 0;
	border-color: #ddd;
	width: 100%;
}

.appointment_v1 .appointment_form .form_group .selectoption.nice-select .list {
	width: 100%;
}

.appointment_v1 .appointment_form .form_group {
	margin-bottom: 30px;
}

.appointment_v1 .domar_button .play_button .play_btn {
	display: inline-block;
	width: 94px;
	height: 94px;
	line-height: 94px;
	text-align: center;
	font-size: 45px;
	color: #fff;
	border-radius: 50%;
	background: rgb(13, 184, 150);
	border: 3px solid #fff;
}

/*
	End domar_appointment section
*/

/*
	Start domar_event section
*/
.event_v2 {
	padding: 120px 0 315px;
}

/*
	End domar_event section
*/

/*
	Start domar_joined section
*/
.joined_v2 .domar_content_box {
	margin-top: 15px;
}

.joined_v2 {
	padding: 10px 0 115px;
}

.joined_v2 .bg_overlay {
	opacity: .6;
}

.scholarship_wrpper {
	position: relative;
}

.scholarship_wrpper {
	position: relative;
	z-index: 1;
	margin-top: -220px;
	margin-bottom: 130px;
}

.scholarship_wrpper .domar_box {
	padding: 90px 70px 100px;
	border-right: 1px solid #80d9c7;
}

.scholarship_wrpper .domar_box .domar_info h3 {
	margin-bottom: 20px;
}

.scholarship_wrpper .domar_box .domar_info p {
	margin-bottom: 40px;
}

.scholarship_wrpper .domar_box .domar_info h3,
.scholarship_wrpper .domar_box .domar_info p {
	color: #fff;
}

.scholarship_wrpper .domar_box .domar_btn {
	background: #fff;
	color: #0db896;
}

.scholarship_wrpper .domar_box .domar_btn:hover,
.scholarship_wrpper .domar_box .domar_btn:focus {
	border-color: #fff;
	color: #fff;
	background: transparent;
}

.scholarship_wrpper .bg_overlay {
	background: #0db896;
	opacity: .95;
}

.joined_v2 .domar_content_box h2,
.joined_v2 .domar_content_box p {
	color: #fff;
}

.no-gutters>[class*=col-] {
	padding-right: 0;
	padding-left: 0;
}

/*
	End domar_joined section
*/

/*
	Start testimonial section
*/
.testimonial_v2 {
	padding: 112px 0 120px;
}

/*>----------------------------------
	>---End Home_v3 css---<
------------------------------------<*/

/*>----------------------------------
	09. Start domar_breadcrumb css
------------------------------------<*/
.domar_breadcrumb {
	position: relative;
	padding: 240px 0 165px;
}

.domar_breadcrumb .bg_overlay {
	opacity: 0.6;
}

.breadcrumb_content {
	position: relative;
}

.breadcrumb_content h2 {
	color: #FFF;
	margin-bottom: 30px;
}

.breadcrumb_content ul li {
	display: inline-block;
}

.breadcrumb_content ul li:after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: inline-block;
	color: #fff;
	vertical-align: middle;
	margin-left: 5px;
}

.breadcrumb_content ul li:last-child:after {
	display: none;
}

.breadcrumb_content ul li a {
	color: #fff;
}

.breadcrumb_content ul li.active {
	color: #fff;
}

/*>----------------------------------
	End domar_breadcrumb css
------------------------------------<*/

/*>----------------------------------
	10. Start single_course.html css
------------------------------------<*/
.single_course_wrapper .content_title {
	margin-bottom: 35px;
}

.single_course_wrapper .content_title h3 {
	margin-bottom: 15px;
}

.single_course_wrapper .admin_area {
	padding: 0;
	background: #fff;
	margin-bottom: 0;
	padding-bottom: 25px;
	border-bottom: 1px solid #ddd;
}

.single_course_wrapper .admin_box {
	overflow: hidden;
}

.single_course_wrapper .admin_area .admin_thumb {
	max-width: 95px;
	float: left;
}

.single_course_wrapper .admin_area .admin_thumb img {
	width: 95px;
	height: 95px;
	border-radius: 50%;
}

.single_course_wrapper .admin_area .admin_info {
	margin-left: 115px;
}

.single_course_wrapper .admin_area .admin_info h4 {
	margin-bottom: 4px;
}

.single_course_wrapper .admin_area .admin_info h6 {
	margin-bottom: 8px;
}

.single_course_wrapper .admin_area .admin_info ul li {
	display: inline-block;
	color: #f5d817;
	margin-right: 2px;
}

.single_course_wrapper .admin_area .admin_info ul li a {
	color: #444;
}

.single_course_wrapper .price_area {
	justify-content: flex-end;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.single_course_wrapper .price_area .price_tag h4 span {
	font-size: 18px;
	text-decoration: line-through;
	margin-right: 15px;
}

.single_course_wrapper .price_area .price_tag {
	margin-right: 75px;
}

.single_course_wrapper .discription_area {
	margin-bottom: 30px;
}

.single_course_wrapper .discription_tab {
	padding-bottom: 23px;
	padding-top: 24px;
	border-bottom: 1px solid #ddd;
}

.single_course_wrapper .discription_tab .nav-tabs {
	border: none;
}

.single_course_wrapper .discription_tab .nav-tabs .nav-link.active {
	text-decoration: line-through;
}

.single_course_wrapper .discription_tab .nav-tabs .nav-link,
.single_course_wrapper .discription_tab .nav-tabs .nav-link.active {
	border: none;
	padding: 0;
	padding-right: 30px;
	color: #444;
}

.single_course_wrapper .discription_area .domar_content_box {
	margin-top: 15px;
}

.single_course_wrapper .discription_area .domar_content_box h4 {
	margin-bottom: 20px;
	font-weight: bold;
}

.single_course_wrapper .discription_area .domar_content_box p {
	margin-bottom: 35px;
}

.recent_course.course_style_v1 {
	padding-bottom: 0;
	margin-bottom: -30px;
}

.recent_course .title {
	margin-bottom: 25px;
}

.recent_course .title span {
	color: #0db896;
	vertical-align: middle;
}

.recent_course .title span:before {
	content: '';
	width: 3px;
	height: 28px;
	background: #0db896;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 5px;
	margin-right: 10px;
}

.recent_course .course_box .domar_img {
	margin-bottom: 0;
}

/*>----------------------------------
	End single_course.html css
------------------------------------<*/

/*>----------------------------------
	11. Start single_event.html css
------------------------------------<*/
.single_event_wrapper .content_title h3 {
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 10px;
}

.single_event_wrapper .content_title {
	margin-bottom: 25px;
}

.single_event_wrapper .admin_area {
	padding: 0;
	background: #fff;
	margin-bottom: 30px;
}

.single_event_wrapper .admin_area .admin_box ul li {
	display: inline-block;
	margin-right: 15px;
}

.single_event_wrapper .admin_area .admin_box ul li img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	margin-right: 10px;
}

.single_event_wrapper .admin_area .meta_link ul li a,
.single_event_wrapper .admin_area .admin_box ul li a {
	color: #444;
}

.single_event_wrapper .admin_area .meta_link {
	float: right;
}

.single_event_wrapper .admin_area .meta_link ul li {
	display: inline-block;
	margin-left: 15px;
}

.single_event_wrapper .admin_area .meta_link ul li a i {
	margin-right: 10px;
}

.single_event_wrapper .social_widget {
	margin-bottom: 45px;
}

.single_event_wrapper .social_widget ul li {
	display: inline-block;
	margin-right: 10px;
}

.single_event_wrapper .social_widget ul li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: rgb(0, 123, 182);
	text-align: center;
	color: #fff;
	font-size: 16px;
}

.single_event_wrapper .domar_content_box h4 {
	margin-bottom: 15px;
	font-weight: bold;
}

.single_event_wrapper .domar_content_box p {
	margin-bottom: 40px;
}

.single_event_wrapper .domar_content_box .map_box {
	margin-bottom: 40px;
}

.single_event_wrapper .domar_content_box .map_box iframe {
	height: 334px;
	display: inherit;
}

/*>----------------------------------
	End single_event.html css
------------------------------------<*/

/*>----------------------------------
	12. Start blog.html css
------------------------------------<*/
.blog_v2 .blog_box {
	margin-bottom: 40px;
}

.blog_v2 .blog_box:hover .domar_info {
	box-shadow: 0px 3px 20px 0px rgba(76, 76, 76, 0.15);
}

.blog_v2 .domar_info {
	background: #fff;
	border: 1px solid #ddd;
}

.blog_v2 .domar_info {
	padding: 20px;
	transition: all .5s;
}

.blog_v2 .domar_info h3 {
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 10px;
	font-weight: 600;
}

.blog_v2 .domar_info h3 a {
	color: #001e3c;
}

.blog_v2 .domar_info a.btn_link:hover,
.blog_v2 .domar_info a.btn_link:focus,
.blog_v2 .domar_info h3 a:hover,
.blog_v2 .domar_info h3 a:focus {
	color: #0db896;
}

.blog_v2 .domar_info p {
	margin-bottom: 10px;
}

.blog_v2 .domar_info a.btn_link {
	font-size: 14px;
	color: #444;
	font-weight: 500;
	transition: all .5s;
}

.domar_pagination ul li {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

.domar_pagination ul li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	color: #444;
	border: 1px solid #ddd;
	transition: all .5s;
}

.domar_pagination ul li a:hover,
.domar_pagination ul li a:focus {
	border-color: #0db896;
	color: #fff;
	background: #0db896;
}

/*>----------------------------------
	End blog.html css
------------------------------------<*/

/*>----------------------------------
	13. Start single_blog.html css
------------------------------------<*/
.single_event_wrapper .domar_img,
.single_course_wrapper .domar_img,
.single_blog_wrapper .domar_img {
	margin-bottom: 18px;
}

.single_blog_wrapper .domar_content_wrapper .admin_box {
	margin-bottom: 20px;
}

.single_blog_wrapper .domar_content_wrapper .admin_box ul li {
	display: inline-block;
	margin-right: 20px;
}

.single_blog_wrapper .domar_content_wrapper .admin_box ul li img {
	margin-right: 15px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.single_blog_wrapper .domar_content_wrapper p {
	margin-bottom: 25px;
}

.single_blog_wrapper .domar_content_wrapper h3 {
	margin-bottom: 17px;
}

.single_blog_wrapper .domar_content_wrapper .domar_blockquote {
	padding: 30px;
	background: rgb(255, 255, 255);
	box-shadow: 0px 0px 9.3px 0.7px rgba(0, 0, 0, 0.06);
	margin-bottom: 30px;
}

.single_blog_wrapper .domar_content_wrapper .domar_blockquote h6 {
	text-align: right;
	color: #444;
}

.single_blog_wrapper .domar_content_wrapper .domar_blockquote h6:before {
	content: '';
	width: 34px;
	height: 1px;
	display: inline-block;
	background: rgb(81, 86, 234);
	margin-bottom: 5px;
	margin-right: 5px;
}

.single_blog_wrapper .domar_content_wrapper .domar_blockquote p {
	margin-bottom: 5px;
}

.single_blog_wrapper .domar_content_wrapper .admin_box ul li i {
	margin-right: 10px;
}

.single_blog_wrapper .domar_content_wrapper ul.tag_list {
	padding: 20px 0 30px;
}

.single_blog_wrapper .domar_content_wrapper ul.tag_list li {
	display: inline-block;
	margin-right: 10px;
}

.single_blog_wrapper .domar_content_wrapper ul.tag_list li a {
	display: block;
	padding: 2px 15px;
	background: #0db896;
	font-size: 14px;
	color: #fff;
	border-radius: 5px;
}

.single_blog_wrapper .domar_content_wrapper ul.tag_list li.tag_1 a {
	background: #5156ea;
}

.single_blog_wrapper .domar_content_wrapper ul.tag_list li.tag_3 a {
	background: #08647b;
}

.single_blog_wrapper .domar_content_wrapper ul.tag_list li.tag_4 a {
	background: #0e7a58;
}

.single_blog_wrapper .domar_content_wrapper ul.tag_list li.tag_5 a {
	background: #0431b0;
}

.single_blog_wrapper .share_list {
	margin-bottom: 30px;
	padding: 20px 0;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
}

.single_blog_wrapper .share_list ul li {
	display: inline-block;
	margin-left: 13px;
	margin-right: 13px;
}

.single_blog_wrapper .share_list ul li a {
	color: #444;
}

.single_blog_wrapper .admin_area {
	background: #f8f8f8;
	padding: 40px 40px;
	margin-bottom: 45px;
	border: 1px solid #ddd;
}

.single_blog_wrapper .admin_area .admin_thumb {
	float: left;
	max-width: 80px;
}

.single_blog_wrapper .admin_area .admin_info {
	margin-left: 100px;
}

.single_blog_wrapper .admin_area .admin_info h4 {
	margin-bottom: 5px;
}

.single_blog_wrapper .admin_area .admin_info h5 {
	color: #0db896;
	margin-bottom: 12px;
}

.single_blog_wrapper .admin_area .admin_info p {
	margin-bottom: 25px;
}

.single_blog_wrapper .admin_area .admin_info .domar_btn {
	border-radius: 0;
}

.comments_area {
	margin-bottom: 40px;
}

.comments_area h4 {
	margin-bottom: 25px;
}

.single_comment {
	margin-bottom: 50px;
}

.single_comment:last-child {
	margin-bottom: 0;
}

.single_comment:nth-child(odd) {
	padding-left: 70px;
}

.single_comment .comment_img {
	float: left;
	max-width: 70px;
}

.single_comment .comment_img img {
	border-radius: 5px;
}

.single_comment .comment_info {
	margin-left: 100px;
}

.single_comment .comment_info ul li {
	display: inline-block;
}

.single_comment .comment_info ul li:last-child {
	float: right;
}

.single_comment .comment_info ul li:first-child:after {
	content: '|';
	display: inline-block;
	margin-left: 7px;
	margin-right: 5px;
}

.single_comment .comment_info ul li a {
	text-transform: uppercase;
	color: #444;
}

.single_comment .comment_info ul li:last-child a i {
	margin-right: 10px;
}

.single_comment .comment_info p {
	font-size: 14px;
	line-height: 24px;
}

.comment_area h4 {
	margin-bottom: 50px;
}

.comment_form .form_group {
	margin-bottom: 30px;
}

.comment_form .form_group .form_control {
	background: #f8f8f8;
}

/*
	single page sidebar
*/
.domar_sidebar {
	padding: 55px 35px 55px;
	background: #f8f8f8;
}

.domar_sidebar .widget_box {
	margin-bottom: 55px;
}

.domar_sidebar .widget_box:last-child {
	margin-bottom: 0;
}

.domar_sidebar .widget_title {
	margin-bottom: 30px;
}

.domar_sidebar .widget_title h4 {
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

.featured_area .single_news {
	overflow: hidden;
	margin-bottom: 20px;
}

.featured_area .single_news .news_thumb {
	float: left;
	max-width: 75px;
}

.featured_area .single_news .news_thumb img {
	width: 100%;
}

.featured_area .single_news .news_info {
	margin-left: 95px;
}

.featured_area .single_news .news_info h3 {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 6px;
}

.featured_area .single_news .news_info h3 a {
	color: #333333;
}

.featured_area .single_news .news_info a.date {
	color: #444;
}

.categories_box ul.widget_list li {
	line-height: 39px;
}

.tags_box .widget_list li {
	display: inline-block;
	margin-right: 15px;
}

.categories_box ul.widget_list li a,
.tags_box ul.widget_list li a {
	color: #444444;
}

/*>----------------------------------
	End single_blog.html css
------------------------------------<*/

/*>----------------------------------
	14. Start contact.html css
------------------------------------<*/
.contact_v1 .domar_box {
	background: #f9f9f9;
	margin-bottom: 50px;
	padding: 55px 20px;
	transition: all .5s;
}

.contact_v1 .domar_box:hover {
	background: #0db896;
}

.contact_v1 .domar_box:hover .domar_icon i,
.contact_v1 .domar_box:hover .domar_info h5,
.contact_v1 .domar_box:hover .domar_info p,
.contact_v1 .domar_box:hover .domar_info p a {
	color: #fff;
}

.contact_v1 .domar_box .domar_icon i {
	display: block;
	font-size: 24px;
	color: #06163a;
	margin-bottom: 10px;
}

.contact_v1 .domar_box .domar_info h5 {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
}

.contact_v1 .domar_box .domar_info p,
.contact_v1 .domar_box .domar_info p a {
	color: #06163a;
}

.contact_v1 .form_group {
	margin-bottom: 40px;
}

.form_control {
	width: 100%;
	height: 45px;
	padding: 18px 16px;
	border: 1px solid #dddddd;
}

textarea.form_control {
	display: inherit;
	height: 280px;
	padding: 10px 16px;
}

.map_box iframe {
	display: inherit;
	width: 100%;
	height: 560px;
	border: none;
}

/*>----------------------------------
	End contact.html css
------------------------------------<

/*>-----------------------------
	15. Start scroll_top css
-------------------------------<*/
#scroll_top {
	position: fixed;
	bottom: 20px;
	display: none;
	right: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	z-index: 337;
	cursor: pointer;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.title1 {
	height: 100%;
	font-size: 17px;
}

.syy-video {
	width: 100%;
	position: relative;
}
.syy-video img{
	position: absolute;
	width: 27%;
	height: 20%;
	left: 16%;
	top: 25%;
	z-index: 99;
}
.syy-video video {
	width: 100%;
	object-fit: fill;
	mix-blend-mode: darken;
}

.syy-video video:focus {
	outline: none;
}

.syy-area-demo {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.syy-area-demo .syy-area-img {
	width: 100%;
	height: 100%;
	transform: scale(1);
	transition: all 1s;
}

.syy-area-txt {
	position: absolute;
	bottom: 0;
	padding: 30px 20px;
}

.syy-area-txt p {
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 500;
	font-size: 15px;
	color: #FFFFFF;
	text-align: left;
	font-style: normal;
	text-transform: none;
	height: 0px;
	overflow: hidden;
	transition: all 1s;
}

.syy-area-demo:hover .p-CH {
	height: 100px;
	transition: all 1s;
}

.syy-area-demo:hover .p-EN {
	height: 180px;
	transition: all 1s;
}

.syy-area-demo:hover img {
	transition: all 1s;
	transform: scale(1.2);
}

.syy-area-txt .syy-area-title {
	display: flex;
	align-items: center;
}

.syy-area-txt .syy-area-title h3 {
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 500;
	font-size: 23px;
	color: #FFFFFF;
	text-align: left;
	font-style: normal;
	text-transform: none;
}

.syy-area-txt .syy-area-title img {
	width: 34px;
	height: 34px;
	margin-left: 10px;
}

.syy-product-row{
	margin-left: 0;
	margin-right: 0;
}

.syy-product-demo {
	padding: 0;
	position: relative;
}

.syy-product-demo img {
	width: 100%;
	object-fit: cover;
    height: 100%;
}

.syy-product-demo:nth-child(2) {
	background-color: #2D75FF;
}

.syy-product-demo:nth-child(4) {
	background-color: #47ABFF;
}

.syy-product-demo:nth-child(5) {
	background-color: #215DFF;
}

.syy-product-demo:nth-child(7) {
	background-color: #3A8EFF;
}

.syy-product-demo .title {
	margin: 0 26px 16px;
	/* 	height: 46px;
	line-height: 46px; */
	color: #FFFFFF;
	font-style: italic;
	font-weight: 800;
	font-size: 28px;
}

.syy-product-demo .txt {
	margin: 0 26px;
	color: #FFFFFF;
	font-size: 16px;
	height: 0;
	overflow: hidden;
	transition: all 1s;
}

.syy-product-demo .txt-EN {
	font-size: 12px;
	margin: 0 26px;
	color: #FFFFFF;
	height: 0;
	overflow: hidden;
	transition: all 1s;
}

.syy-product-demo:hover .txt {
	height: 160px;
	transition: all 1s;
}

.syy-product-demo:hover .txt-EN {
	height: 180px;
	transition: all 1s;
}

.product-demo-center-EN {
	position: absolute;
	bottom: 30px;
}

.product-demo-center {
	position: absolute;
	bottom: 40px;
}

.about-demo {
	background: url('../images/about-bg.png') center no-repeat;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-size: 100% 100%;
	/* cursor: pointer; */
	margin-right: 2%;
}

.about-demo:last-child {
	margin-right: 0;
}

.about-demo img {
	width: 208px;
	height: 208px;
	margin: 27px auto 0;
	display: block;
}

.about-demo h3 {
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 500;
	font-size: 20px;
	color: #222222;
	text-align: left;
	font-style: normal;
	text-transform: none;
	text-align: center;
	margin-top: 6px;
	transition: all 1s;
}

.about-demo.col-lg-4 {
	max-width: 32%;
}

.about-demo p {
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #222222;
	text-align: left;
	font-style: normal;
	text-transform: none;
	/* padding: 0 46px; */
	padding: 0 16px;
	line-height: 24px;
	transition: all 1s;
}

.about-demo:hover {
	transition: all 1s;
	background: url('../images/about-bg-after.png') center no-repeat;
}

.about-demo:hover p {
	color: #fff;
	transition: all 1s;
}

.about-demo:hover h3 {
	color: #fff;
	transition: all 1s;
}

.primary_menu {
	margin-left: 110px;
}

.ch-en {
	margin-left: auto;
	display: flex;
	background: #F2F2F2;
	width: 80px;
	border-radius: 6px;
}

.ch-en-text {
	width: 40px;
	text-align: center;
	height: 30px;
	border-radius: 6px;
	line-height: 30px;
	font-size: 14px;
}

.ch-en-is-select {
	color: #FFFFFF;
	background: linear-gradient(90deg, #4D86FC 0%, #91D0FF 100%);
}

.gs-new {
	/* width: 410px; */
	/* height: 466px; */
	width: 100%;
	border-radius: 20px;
	transition: height 1s ease;
}

.gs-cover {
	/* width: 410px; */
	height: 200px;
	width: 100%;
	cursor: pointer;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.gs-info {
	/* width: 410px; */
	/* height: 266px; */
	width: 100%;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding: 22px;
	font-size: 16px;
	color: #FFFFFF;
	cursor: pointer;
}

.info-text h3{
	display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
	transition: all 1s ease;
}

.gs-new:hover .gs-info{
	/* height: 180px;
	transition: all 0.5s ease; */
}

.gs-new .gs-info:hover .info-text p{
	height: 114px;
	-webkit-line-clamp: 4;
}
.gs-cover:hover +.gs-info .info-text p{
	height: 114px;
	transition: all 1s ease;
}
#company-news .col-lg-4,#company-news-en .col-lg-4 {
	padding: 0 10px;
	position: relative;
}
#company-news .col-lg-4:nth-child(1) .gs-info,#company-news .col-lg-4:nth-child(3) .gs-info{
	background: #215DFF;
}
#company-news-en .col-lg-4:nth-child(1) .gs-info,#company-news-en .col-lg-4:nth-child(3) .gs-info{
	background: #215DFF;
}
#company-news .col-lg-4:nth-child(2) .gs-info,#company-news-en .col-lg-4:nth-child(2) .gs-info{
	background:#48ABFF;
}

.info-text h3{
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 500;
	font-size:22px;
	color: #FFFFFF;
	line-height: 30px;
	text-align: left;
	font-style: normal;
	text-transform: none;
	height: 64px;
}
.info-text p{
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 28px;
	text-align: left;
	font-style: normal;
	text-transform: none;
	overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4; /* 最多展示4行 */
/* 	margin-top: 10px;
	margin-bottom: 20px; */
	height: 0;
	transition: all 1s ease;
}
.info-text span{
	text-align: right;
	display: block;
	/* position: absolute; */
	bottom: 22px;
	right: 30px;
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	text-align: right;
	font-style: normal;
	text-transform: none;
}
.syy-more{
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 400;
	font-size: 18px;
	color: #999999;
	line-height: 35px;
	text-align: center;
	font-style: normal;
	text-transform: none;
	margin-top: 48px;
	margin-bottom: 181px;
	cursor: pointer;
}
.syy-new-h3{
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: bold;
	font-size: 26px;
	color: #222222;
	text-align: center;
	font-style: normal;
	text-transform: none;
}
.syy-new-p{
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 400;
	font-size: 18px;
	color: #999999;
	text-align: center;
	font-style: normal;
	text-transform: none;
}
.syy-section_padding{
	padding: 20px 0 120px;
}
.syy-section_title{
	margin-bottom: 70px;
	margin-top: 0;
}
.syy-section_padding2{
	padding: 65px 0 60px;
}
.syy-section_title2{
	margin-bottom: 50px;
	margin-top: 0;
}
.syy-section_padding3{
	padding: 100px 0 0;
}
.syy-section_title2{
	margin-bottom:45px;
	margin-top: 0;
}