@charset "utf-8";
/* CSS Document */

/******************************

COLOR PALETTE




[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Logo
	3.2 Main Nav
	3.3 Header Side
	3.4 Hamburger
4. Menu
	4.1 Menu Social
	4.2 Menu copyright
5. Home
	5.1 Hero Slider
	5.2 Hero Slider Navigation
6. Hero Boxes
7. Page Section
8. Buttons
9. Popular
10. Register
11. Search
	11.1 Search Form
12. Services
13. Testimonials
14. Events
15. Footer
	15.1 Newsletter
	15.2 Footer Content
	15.3 Footer Copyright


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800|Roboto:400,500,700');

/*********************************
2. Body and some general stuff
*********************************/

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}

div {
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	list-style: none;
	margin-bottom: 0px;
}

p {
	font-family: 'Microsoft YaHei', sans-serif;
	font-size: 14px;
	line-height: 2.29;
	font-weight: 400;
	color: #a5a5a5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a {
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

a,
a:hover,
a:visited,
a:active,
a:link {
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.tlinks {
	text-indent: -9999px;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
}

p a:active {
	position: relative;
	color: #FF6347;
}

p a:hover {
	color: #FFFFFF;
	background: #ffa07f;
}

p a:hover::after {
	opacity: 0.2;
}

::selection {
	background: #FFD266;
	color: #C88E00;
}

p::selection {
	background: #FFD266;
	color: #C88E00;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 22px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 14px;
}

h5 {
	font-size: 11px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

/* h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
} */
::-webkit-input-placeholder {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}

:-moz-placeholder

/* older Firefox*/
	{
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}

::-moz-placeholder

/* Firefox 19+ */
	{
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}

:-ms-input-placeholder {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}

::input-placeholder {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}

.form-control {
	color: #db5246;
}

section {
	display: block;
	position: relative;
	box-sizing: border-box;
}

.clear {
	clear: both;
}

.clearfix::before,
.clearfix::after {
	content: "";
	display: table;
}

.clearfix::after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

.trans_200 {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.trans_300 {
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.trans_400 {
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.trans_500 {
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.fill_height {
	height: 100%;
}

.super_container {
	width: 100%;
	overflow: hidden;
}

.prlx_parent {
	overflow: hidden;
}

.prlx {
	height: 130% !important;
}

.nopadding {
	padding: 0px !important;
}

/*********************************
5. Home
*********************************/

.home {
	width: 100%;
	height: 60vh;
}

/*********************************
5.a companeyInfo
*********************************/
.companeyInfo {
	width: 100%;
}

/*********************************
5.1 Hero Slider
*********************************/

.hero_slider_container {
	width: 100%;
	height: 100%;
}

.hero_slide {
	width: 100%;
	height: 100%;
}

.hero_slide_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.hero_slide_container {
	width: 100%;
	height: 60vh;
}

.hero_slide_content {
	max-width: 80%;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
}

.hero_slide_content h1 {
	font-size: 50px;
	font-weight: 400;
	color: #d2262d;

	padding-left: 13px;
	padding-right: 13px;
	margin-left: -12px;
	margin-right: -12px;
}

.animated {
	-webkit-animation-duration: 1s !important;
	animation-duration: 1s !important;
	-webkit-animation-delay: 500ms;
	animation-delay: 500ms;
}

.animate-out {
	-webkit-animation-delay: 0ms;
	animation-delay: 0ms;
}

#logoPic {
	height: 40px;
}

@media only screen and (max-width: 767px) {
	.hero_slider_container {
		height: 170px !important;
	}
}

@media only screen and (max-width: 991px) {
	#showcase {
		height: 180px;
	}

	/* video{
		display:none;
	} */
	#logoPic {
		height: 33px;
	}

	.hero_slide_content h1 {
		font-size: 25px !important;
	}

	.hero_slider_container {
		height: 250px !important;
	}

	.home {
		width: 100%;
		height: 100%;
		padding-top: 5rem;
	}

	.hero_slide_container {
		height: 55%;
	}

	.row {
		justify-content: center;
	}



	.event_name a {
		width: 100%;
	}

	.trans_200 {
		text-align: center;
	}

	.service_item p {
		max-width: 55%;
	}

	.testimonial_image {
		width: 110px;
		background-color: #ffffffd4;
	}

	.testimonial_user {
		background-color: #ffffff00;
	}

}

/*********************************
5.2 Hero Slider Navigation
*********************************/

.hero_slider_nav {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(calc(-50% + 30px));
	width: 58px;
	height: 58px;
	background: rgba(0, 0, 0, 0);
	z-index: 9;
	cursor: pointer;
}

.hero_slider_nav:hover {
	background: #d2262d;
}

.hero_slider_nav:hover span {
	color: #FFFFFF;
}

.hero_slider_nav span {
	display: block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	color: #121212;
	line-height: 1;
}

.hero_slider_left {
	left: 4.32%;
}

.hero_slider_right {
	right: 4.32%;
}

/*********************************
6. Hero Boxes
*********************************/

.hero_boxes {
	width: 100%;
	height: 0px;
	z-index: 9;
	padding-top: 0px;
}

.hero_boxes_inner {
	position: absolute;
	top: -212px;
	left: 0;
	width: 100%;
}

.hero_box {
	width: 100%;
	height: 161px;
	background: #1a1a1a;
	padding-left: 50px;
	cursor: pointer;
}

.hero_box:hover {
	background: #d2262d;
}

.hero_box img {
	width: 62px;
	height: auto;
	margin-top: -6px;
}

.svg path {
	fill: #d2262d;
}

.hero_box svg {
	width: 62px;
	height: auto;
}

.hero_box:hover svg path {
	fill: #FFFFFF;
}

.hero_box_content {
	padding-left: 13px;
	padding-top: 11px;
	margin-top: -6px;
}

.hero_box_title {
	font-size: 24px;
	font-weight: 500;
	color: #FFFFFF;
	margin-bottom: 7px;
}

.hero_box_link {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	color: #FFFFFF;
	padding-left: 3px;
}

.hero_box_link:hover {
	color: #1a1a1a;
}

/*********************************
7. Page Section
*********************************/

.page_section {
	padding-top: 50px;

}

.section_title {
	color: #1a1a1a;
}

.section_title h1 {
	display: block;
	color: #1a1a1a;
	font-weight: 500;
	padding-top: 24px;
}

.section_title h1::before {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 55px;
	height: 4px;
	content: '';
	background: #d2262d;
}

/*********************************
8. Buttons
*********************************/

.button {
	cursor: pointer;
}

.button:hover {
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.button a {
	font-size: 14px;
	line-height: 48px;
	font-weight: 700;
	text-transform: uppercase;
}

.button_1 {
	width: 202px;
	height: 48px;
}

/*********************************
9. Popular
*********************************/

.popular {
	padding-bottom: 50px
}

.course_boxes {
	margin-top: 68px;
}

.card {
	display: block;
	background: #f8f9fb;
	border: none;
}

.card-img-top {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

.card-body {
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	padding-right: 15px;
}

.card-title {
	margin-top: 55px;
}

.card-title a {
	font-size: 22px;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.2;
}

.card-title a:hover {
	color: #a5a5a5;
}

.card-text {
	font-size: 14px;
	font-weight: 500;
	color: #a5a5a5;
	margin-top: -12px;
}

.price_box {
	width: 100%;
	height: 67px;
	background: #eaebec;
	margin-top: 41px;
	padding-left: 35px;
}

.course_author_image {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	overflow: hidden;
}

.course_author_name {
	font-size: 14px;
	font-weight: 500;
	color: #1a1a1a;
	padding-left: 20px;
	margin-top: 7px;
}

.course_author_name span {
	color: #a5a5a5;
}

.course_price {
	width: 67px;
	height: 67px;
	background: #d2262d;
	margin-left: auto;
}

.course_price span {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 500;
	margin-top: 7px;
}

/*********************************
10. Register
*********************************/

.register {
	width: 100%;
}

.register_section {
	width: 100%;
	background: #d2262d;
	padding-top: 30px;
	padding-bottom: 30px;
}

.register_content {
	width: 522px;
}


.register_title {
	color: #FFFFFF;
	margin-bottom: 16px;
	line-height: 1.63;
}

.register_title:last-child {
	margin-bottom: 0px;
}

.register_title span {
	color: #1a1a1a;
}

.register_text {
	color: #FFFFFF;
	font-weight: 800;
	margin-top: 17px;
	padding-left: 25px;
	padding-right: 25px;
	margin-bottom: 0px;
	text-align: left !important;
}

.register_button {
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
	background: #d2262d;
	margin-top: 20px;
}

.register_button a {
	color: #FFFFFF;
}

/*********************************
11. Search
*********************************/

.search_section {
	width: 100%;
	height: 100%;
	background: #ececec;
}

/* .search_content
{
	width: 522px;
} */
.search_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	/* opacity: 0.7; */
}

.search_title {
	color: #ffffff;

	padding-top: 3rem;
}

/*********************************
11.1 Search Form
*********************************/

.search_form {
	margin-top: 57px;
}

.input_field {
	width: 100%;
	height: 42px;
	background: #FFFFFF;
	box-sizing: border-box;
	border: solid 2px #FFFFFF;
	padding-left: 25px;
	margin-bottom: 24px;
}

input:last-of-type {
	margin-bottom: 0px;
}

.input_field:focus {
	outline: none !important;
	border: solid 2px #d2262d;
}

.search_submit_button {
	width: 200px;
	height: 48px;
	background: #d2262d;
	color: #FFFFFF;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 28px;
	border: none;
	cursor: pointer;
	margin-bottom: 3rem
}

.search_submit_button:hover {
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.search_submit_button:focus {
	outline: solid 2px #FFFFFF;
}

/*********************************
12. Services
*********************************/

.services {
	padding-bottom: 76px;
	background: url(../images/banner/shenzhen.jpg);
	background-size: cover;
}

.services_title h1 {
	color: white;
}

.services_row {
	margin-top: 23px;
}

.service_item {
	cursor: pointer;
	padding-top: 12px;
	padding-bottom: 12px;

}

.service_item button {
	display: none;
}

.service_item:hover {
	transition: all .5s linear;
	background: rgb(232, 9, 25);
	box-shadow: 2px 2px 10px black;

	transform: translateY(-30px)
}

.service_item h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 13px;
}

.service_item p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;

	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	max-width: 100%;
	margin-bottom: 0px;
}

.service_item:hover p {
	color: white;
}

.service_item:hover button {
	display: inline-block;
}

.icon_container {
	height: 41px;
	width: auto;
	margin-bottom: 30px;
}

.icon_container img {
	height: 41px;
	width: 41px;

}

/*********************************
13. Testimonials
*********************************/

.testimonials {
	width: 100%;

}

.testimonials_background_container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.testimonials_background {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0.27;
}

.testimonials .section_title h1 {}

.testimonials_slider_container {
	padding-left: 30px;
	padding-right: 30px;
}

.testimonials_item {
	width: 100%;
	padding-bottom: 75px;
}

.quote {
	font-size: 36px;
	color: #d2262d;
}

.testimonials_text {
	color: #FFFFFF;
	margin-bottom: 0px;
}

.testimonial_user {
	background-color: #ffffffd4;
	margin-top: 30px;
}

.testimonial_image {

	height: 50px;

	/* overflow: hidden; */
}

.testimonial_image img {
	width: 100%;
	height: auto;
}

.testimonial_name {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #f6af03;
	margin-top: 21px;
}

.testimonial_title {
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
	margin-top: 6px;
}

.testimonials_slider .owl-dots {
	display: -webkit-box !important;
	display: -moz-box !important;
	display: -ms-flexbox !important;
	display: -webkit-flex !important;
	display: flex !important;
	flex-direction: row !important;
	justify-content: center;
	align-items: center;
}

.testimonials_slider .owl-dot span {
	width: 8px !important;
	height: 8px !important;
	border: solid 2px #FFFFFF;
	background: transparent !important;
}

.testimonials_slider .owl-dot.active span {
	width: 16px !important;
	height: 16px !important;
	border: none;
	background: #d2262d !important;
}

/*********************************
14. Events
*********************************/

.event_items {
	margin-top: 40px;
	margin-bottom: 40px;
}

.event_item {
	margin-bottom: 56px;
}

.event_card:hover {
	transition: all .25s linear;

	box-shadow: 2px 2px 10px rgba(105, 105, 105, 0.53);

	transform: translateY(10px);

}

.event_item:last-child {
	margin-bottom: 0px;
}

.event_date {

	width: 131px;
	height: 100px;
	/* border: solid 2px #ffffff; */
}

.event_day {
	border-width: thin;
	border-style: none none solid none;
	font-size: 31px;
	font-weight: 700;
	color: #a5a5a5;
	margin-bottom: 1px;
	line-height: 1;
}

.event_month {
	font-size: 9px;
	font-weight: 700;
	color: #a5a5a5;
}

.event_name a {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	color: #1a1a1a;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.event_name a:hover {
	color: #d2262d;
}

.event_location {
	font-size: 14px;
	font-weight: 500;
	color: #1a1a1a;
	margin-top: 2px;
}

.event_content p {
	font-weight: lighter;
	color: #656565;
	margin-top: 5px;
	margin-bottom: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 0px;
}

/* .event_image
{

} */
.event_image img {
	width: 100%;
}


.nav-link {
	font-size: 25px;
	color: #a5a5a591;
	border-width: 2px !important;

}

.nav-tabs {
	border: 0px;
}

.nav-link.active {
	border-color: #d2262d #ffffff #fff !important;
}

.nav-tabs .nav-link:hover {
	background: #d2262d;
	color: #fffbfc;
	/* padding: 10px; */
	transition: all .25s linear;
	border-radius: 0px;
	box-shadow: 2px 2px 10px rgba(105, 105, 105, 0.53);
	border: 0px;
	/* transform: translateY(10px); */
}

