/* :root {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none; 
	user-select: none; 
} */
/********** Template CSS **********/
:root {
	--primary: #004aad;
	--secondary: #34ad54;
	--light: #eef9ff;
	--dark: #091e3e;
	--accent-color: #ee7b16;
}

/*** Spinner ***/
.spinner {
	width: 40px;
	height: 40px;
	background: var(--primary);
	margin: 100px auto;
	-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
	animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
	0% {
		-webkit-transform: perspective(120px);
	}
	50% {
		-webkit-transform: perspective(120px) rotateY(180deg);
	}
	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
	}
}

@keyframes sk-rotateplane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	}
	50% {
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	}
	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity 0.5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
	font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
	font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
	font-weight: 600 !important;
}

ul li {
	margin-left: 4px;
}

/*** Button ***/
.btn {
	font-family: "Nunito", sans-serif;
	font-weight: 600;
	transition: 0.5s;
}

.btn-primary,
.btn-secondary {
	color: #ffffff;
	box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
	box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
	box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
	width: 36px;
	height: 36px;
}

.btn-sm-square {
	width: 30px;
	height: 30px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	position: relative;
	margin-left: 25px;
	padding: 35px 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	outline: none;
	transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
	padding: 20px 0;
	color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: #ff8200;
}

.navbar-dark .navbar-brand h1 {
	color: #ffffff;
}

.navbar-dark .navbar-toggler {
	color: var(--primary) !important;
	border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
	.sticky-top.navbar-dark {
		position: relative;
		background: #172453;
	}

	.navbar-dark .navbar-nav .nav-link,
	.navbar-dark .navbar-nav .nav-link.show,
	.sticky-top.navbar-dark .navbar-nav .nav-link {
		padding: 10px 0;
		color: #ffffff;
	}

	.navbar-dark .navbar-brand h1 {
		color: var(--primary);
	}
}

@media (min-width: 992px) {
	.navbar-dark {
		position: absolute;
		width: 100%;
		top: 0;
		left: 0;
		border-bottom: 1px solid rgba(256, 256, 256, 0.1);
		z-index: 999;
	}

	.sticky-top.navbar-dark {
		position: fixed;
		background: #172453;
	}

	.navbar-dark .navbar-nav .nav-link::before {
		position: absolute;
		content: "";
		width: 0;
		height: 2px;
		bottom: -1px;
		left: 50%;
		background: #ff8200;
		transition: 0.5s;
	}

	.navbar-dark .navbar-nav .nav-link:hover::before,
	.navbar-dark .navbar-nav .nav-link.active::before {
		width: 100%;
		left: 0;
	}

	.navbar-dark .navbar-nav .nav-link.nav-contact::before {
		display: none;
	}

	.sticky-top.navbar-dark .navbar-brand h1 {
		color: var(--primary);
	}
}

/*** Carousel ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(255 255 255 / 0%);
	z-index: 1;
}
@media (max-width: 576px) {
	.carousel-caption h5 {
		font-size: 14px;
		font-weight: 500 !important;
	}

	.carousel-caption h1 {
		font-size: 30px;
		font-weight: 600 !important;
	}
	.logo {
		margin-left: 0px !important;
	}
}
@media (max-width: 768px) {
	.intro-text {
		font-size: 12px;
	}
}

.carousel-control-prev,
.carousel-control-next {
	width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
}

/*** Section Title ***/
.section-title::before {
	position: absolute;
	content: "";
	width: 150px;
	height: 5px;
	left: 0;
	bottom: 0;
	background: var(--primary);
	border-radius: 2px;
}

.section-title.text-center::before {
	left: 50%;
	margin-left: -75px;
}

.section-title.section-title-sm::before {
	width: 90px;
	height: 3px;
}

.section-title::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 5px;
	bottom: 0px;
	background: #ffffff;
	-webkit-animation: section-title-run 5s infinite linear;
	animation: section-title-run 5s infinite linear;
}

.section-title h1 {
	color: #ff8200;
}

.section-title.section-title-sm::after {
	width: 4px;
	height: 3px;
}

.section-title.text-center::after {
	-webkit-animation: section-title-run-center 5s infinite linear;
	animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
	-webkit-animation: section-title-run-sm 5s infinite linear;
	animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
	0% {
		left: 0;
	}
	50% {
		left: 145px;
	}
	100% {
		left: 0;
	}
}

@-webkit-keyframes section-title-run-center {
	0% {
		left: 50%;
		margin-left: -75px;
	}
	50% {
		left: 50%;
		margin-left: 45px;
	}
	100% {
		left: 50%;
		margin-left: -75px;
	}
}

@-webkit-keyframes section-title-run-sm {
	0% {
		left: 0;
	}
	50% {
		left: 85px;
	}
	100% {
		left: 0;
	}
}

/*** Service ***/
.service-item {
	position: relative;
	height: 150px;
	padding: 0 30px;
	transition: 0.5s;
}

.service-item .service-icon {
	margin-bottom: 30px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	border-radius: 2px;
	transform: rotate(-45deg);
}

.service-item .service-icon i {
	transform: rotate(45deg);
}

.service-item a.btn {
	position: absolute;
	width: 60px;
	bottom: -48px;
	left: 50%;
	margin-left: -30px;
	opacity: 0;
}

.service-item:hover a.btn {
	bottom: -24px;
	opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
	margin-top: 15px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.testimonial-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 15px;
	height: 15px;
	background: #dddddd;
	border-radius: 2px;
	transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
	width: 30px;
	background: #ff8200;
}

.testimonial-carousel .owl-item.center {
	position: relative;
	z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
	transition: 0.5s;
	box-shadow: 0 0 5px #9e9e9e;
	margin-inline: 20px;
}

.testimonial-carousel .owl-item.center .testimonial-item {
	background: #ffffff !important;
}

/*** Team ***/
.team-item {
	transition: 0.5s;
}

.team-social {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}

.team-social a.btn {
	position: relative;
	margin: 0 3px;
	margin-top: 100px;
	opacity: 0;
}

.team-item:hover {
	box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
	background: rgb(255 255 255 / 0%);
}

.team-item:hover .team-social a.btn:first-child {
	opacity: 1;
	margin-top: 0;
	transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
	opacity: 1;
	margin-top: 0;
	transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
	opacity: 1;
	margin-top: 0;
	transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
	opacity: 1;
	margin-top: 0;
	transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
	transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
	transform: scale(1.05);
}
.blog-item:hover {
	background-color: #bae2f8 !important;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
	.facts {
		position: relative;
		margin-top: -75px;
		z-index: 1;
	}
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

.bg-header {
	background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
		url(../img/carousel-1.jpg) center center no-repeat;
	background-size: cover;
}

.link-animated a {
	transition: 0.5s;
}

.link-animated a:hover {
	padding-left: 10px;
}

@media (min-width: 767.98px) {
	.footer-about {
	}
}

.sidebar-wrapper .widget-title,
.sidebar-wrapper .widgettitle,
#secondary .widget-title {
	padding: 9px 5px 9px 11px;
	background: #253a87;
	display: block;
	clear: both;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 0;
	text-transform: uppercase;
}

.div-widget-dich-vu ul.menu li {
	width: 50%;
	float: left;
}

.div-widget .sidebar-wrapper ul.menu {
	border: 1px solid #ddd;

	background: #f9f5f5;
}

.sidebar-wrapper ul.menu li a,
#secondary ul.menu li a {
	font-size: 14px;
	padding-left: 10px;
}

.sidebar-wrapper .widget_nav_menu {
	margin-bottom: 10px;
}

.sidebar-wrapper ul li,
#secondary ul.menu li {
	background: #f9f5f5 url(images/ic-arrow.png) no-repeat scroll 6px center;
	line-height: 15px;
	padding: 4px 4px 0px 22px;
}

ul.menu > li,
.widget > ul > li {
	list-style: none;
	margin-bottom: 0.3em;
	text-align: left;
	margin: 0;
}

ul.menu > li + li,
.widget > ul > li + li {
	border-top: 1px solid #dcdcdd;
}

ol,
ul {
	padding-left: 0rem;
}

.sidebar-wrapper ul.menu li a,
#secondary ul.menu li a {
	font-size: 14px;
	padding-left: 10px;
}

ul.menu > li > a {
	font-family: "Poppins", sans-serif;
	color: #000000b7;
	display: inline-block;
	padding: 6px 0;
	-webkit-box-flex: 1;
}

ul.menu > li > a:hover {
	color: #ff8200;
	text-decoration: none;
}

html,
body {
	overflow-x: hidden;
}
@media (max-width: 855px) {
	.div-widget-dich-vu ul.menu li {
		min-height: 50px;
	}
	.div-ke-toan .img {
		width: 25% !important;
	}
	.dich-dich-vu i {
		margin-bottom: 19px;
		background: #245fad;
		font-size: 56px;
		color: white;
		width: 80px;
		height: 80px;
		line-height: 81px;
		border-radius: 50%;
	}
	.sidebar-wrapper li {
		margin-left: 0px !important;
	}
	#dang-ky .form-giai-dap h3 {
		text-align: center;
	}
	#dang-ky {
		padding: 0px !important;
		border-radius: 10px;
	}
	.header-main ul.nav-right li a {
		color: white;
	}
	.header-main ul.nav-right {
		min-width: 167px;
	}
	.box-vertical .box-text {
		padding-top: 27px;
		margin-right: 0px;
		/* width: 66%; */
		padding-bottom: 0px;
		padding-left: 124px;
		padding-right: 2px;
	}
	.box-vertical .box-image {
		margin-right: 9px;
		width: 33% !important;
		float: left;
	}
}

@media only screen and (max-width: 550px) {
	.widget.widget_nav_menu {
		display: none;
	}
}

.taxboxheader {
	background-color: #e0fffb;
	line-height: 1.6;
	padding: 5px;
	border-radius: 4px;
	overflow: hidden;
}

.taxbox h4 {
	color: #004aad;
	text-align: center;
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	letter-spacing: 0.05em;
	padding-top: 10px;
}

.taxbox {
	box-shadow: 0px 0px 30px -10px rgb(0 0 0 / 20%);
}

.businessbox a {
	color: #004aadd6;
	font-weight: 700;
	font-size: 1.5rem;
	font-family: "Nunito", sans-serif;
}

.businessbox a:hover {
	color: #00285d;
}

@keyframes fade-right {
	from {
		opacity: 0;
		transform: translateX(70px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-left {
	from {
		opacity: 0;
		transform: translateX(-70px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.rightfade {
	animation: fade-right 1.5s;
}

.leftfade {
	animation: fade-left 1.5s;
}

@media (max-width: 420px) {
	.logo img {
		height: 24px !important;
		width: auto !important;
	}
	.navbar-toggler {
		padding: 0.1rem 0.5rem;
		font-size: 1.25rem;
	}
	.mobile-div {
		width: 39vh !important;
		margin-left: 30px !important;
	}
	.mobile-div-2 {
		width: 47vh !important;
		margin-left: 30px !important;
	}	
	.kc_col-sm-9 {
		width: 95% !important;
		margin-left: 10px !important;
		margin-right: 10px !important;
	}
	.faq .faq-container .faq-item h3 {
		margin-left: 0 !important;
	}
}
.logo img {
	height: 35px;
	width: auto;
}

.logo {
	margin-left: 70px;
}

.wp-caption .wp-caption-text {
	padding: 0.4em;
	font-size: 0.9em;
	background: rgba(0, 0, 0, 0.05);
	font-style: "Open Sans", sans-serif;
}

#ez-toc-container {
	background: #f9f9f9;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	display: table;
	margin-bottom: 1em;
	padding: 10px 20px 10px 10px;
	position: relative;
	width: auto;
}

div.ez-toc-widget-container {
	padding: 0;
	position: relative;
}

#ez-toc-container.ez-toc-light-blue {
	background: #edf6ff;
}

#ez-toc-container.ez-toc-white {
	background: #fff;
}

#ez-toc-container.ez-toc-black {
	background: #000;
}

#ez-toc-container.ez-toc-transparent {
	background: none;
}

div.ez-toc-widget-container ul {
	display: block;
}

div.ez-toc-widget-container li {
	border: none;
	padding: 0;
}

div.ez-toc-widget-container ul.ez-toc-list {
	padding: 10px;
}

#ez-toc-container ul ul,
.ez-toc div.ez-toc-widget-container ul ul {
	margin-left: 1.5em;
}

#ez-toc-container li,
#ez-toc-container ul {
	padding: 0;
}

#ez-toc-container li,
#ez-toc-container ul,
#ez-toc-container ul li,
div.ez-toc-widget-container,
div.ez-toc-widget-container li {
	background: 0 0;
	list-style: none;
	line-height: 1.6;
	margin: 0;
	overflow: hidden;
	z-index: 1;
}

#ez-toc-container .ez-toc-title {
	text-align: left;
	line-height: 1.45;
	margin: 0;
	padding: 0;
}

.ez-toc-title-container {
	display: table;
	width: 100%;
}

.ez-toc-title,
.ez-toc-title-toggle {
	display: inline;
	text-align: left;
	vertical-align: middle;
}

.ez-toc-btn,
.ez-toc-glyphicon {
	display: inline-block;
	font-weight: 400;
}

#ez-toc-container.ez-toc-black a,
#ez-toc-container.ez-toc-black a:visited,
#ez-toc-container.ez-toc-black p.ez-toc-title {
	color: #fff;
}

#ez-toc-container div.ez-toc-title-container + ul.ez-toc-list {
	margin-top: 1em;
}

.ez-toc-wrap-left {
	margin: 0 auto 1em 0 !important;
}

.ez-toc-wrap-left-text {
	float: left;
}

.ez-toc-wrap-right {
	margin: 0 0 1em auto !important;
}

.ez-toc-wrap-right-text {
	float: right;
}

#ez-toc-container a {
	color: #444;
	box-shadow: none;
	text-decoration: none;
	text-shadow: none;
	display: inline-flex;
	align-items: stretch;
	flex-wrap: nowrap;
}

#ez-toc-container a:hover {
	color: #ff8200;
}

#ez-toc-container a:visited {
	color: #9f9f9f;
}

#ez-toc-container a:hover {
	text-decoration: underline;
}

#ez-toc-container a.ez-toc-toggle {
	display: flex;
	align-items: center;
}

.ez-toc-widget-container ul.ez-toc-list li::before {
	content: " ";
	position: absolute;
	left: 0;
	right: 0;
	height: 30px;
	line-height: 30px;
	z-index: -1;
}

.ez-toc-widget-container ul.ez-toc-list li.active {
	background-color: #ededed;
}

.ez-toc-widget-container li.active > a {
	font-weight: 900;
}

.ez-toc-btn {
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.428571429;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.ez-toc-btn:focus {
	outline: #333 dotted thin;
	outline: -webkit-focus-ring-color auto 5px;
	outline-offset: -2px;
}

.ez-toc-btn:focus,
.ez-toc-btn:hover {
	color: #333;
	text-decoration: none;
}

.ez-toc-btn.active,
.ez-toc-btn:active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.ez-toc-btn-default {
	color: #333;
	background-color: #fff;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
	text-shadow: 0 1px 0 #fff;
	background-image: -webkit-gradient(
		linear,
		left 0,
		left 100%,
		from(#fff),
		to(#e0e0e0)
	);
	background-image: -webkit-linear-gradient(top, #fff 0, #e0e0e0 100%);
	background-image: -moz-linear-gradient(top, #fff 0, #e0e0e0 100%);
	background-image: linear-gradient(to bottom, #fff 0, #e0e0e0 100%);
	background-repeat: repeat-x;
	border-color: #ccc;
}

.ez-toc-btn-default.active,
.ez-toc-btn-default:active,
.ez-toc-btn-default:focus,
.ez-toc-btn-default:hover {
	color: #333;
	background-color: #ebebeb;
	border-color: #adadad;
}

.ez-toc-btn-default.active,
.ez-toc-btn-default:active {
	background-image: none;
	background-color: #e0e0e0;
	border-color: #dbdbdb;
}

.ez-toc-btn-sm,
.ez-toc-btn-xs {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}

.ez-toc-btn-xs {
	padding: 1px 5px;
}

.ez-toc-btn-default:active {
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.active,
.ez-toc-btn:active {
	background-image: none;
}

.ez-toc-btn-default:focus,
.ez-toc-btn-default:hover {
	background-color: #e0e0e0;
	background-position: 0 -15px;
}

.ez-toc-pull-right {
	float: right !important;
	margin-left: 10px;
}

#ez-toc-container label.cssicon,
#ez-toc-widget-container label.cssicon {
	height: 30px;
}

.ez-toc-glyphicon {
	position: relative;
	top: 1px;
	font-family: "Glyphicons Halflings";
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	line-height: 1;
	-moz-osx-font-smoothing: grayscale;
}

.ez-toc-glyphicon:empty {
	width: 1em;
}

.ez-toc-toggle i.ez-toc-glyphicon,
label.cssicon .ez-toc-glyphicon:empty {
	font-size: 16px;
	margin-left: 2px;
}

#ez-toc-container input,
.ez-toc-toggle #item {
	position: absolute;
	left: -999em;
}

#ez-toc-container input[type="checkbox"]:checked + nav,
#ez-toc-widget-container input[type="checkbox"]:checked + nav {
	opacity: 0;
	max-height: 0;
	border: none;
	display: none;
}

#ez-toc-container .ez-toc-js-icon-con,
#ez-toc-container label {
	position: relative;
	cursor: pointer;
	display: initial;
}

#ez-toc-container .ez-toc-js-icon-con,
#ez-toc-container .ez-toc-toggle label,
.ez-toc-cssicon {
	float: right;
	position: relative;
	font-size: 16px;
	padding: 0;
	border: 1px solid #999191;
	border-radius: 5px;
	cursor: pointer;
	left: 10px;
	width: 35px;
}

div#ez-toc-container .ez-toc-title {
	display: initial;
}

.ez-toc-wrap-center {
	margin: 0 auto 1em !important;
}

#ez-toc-container a.ez-toc-toggle {
	color: #444;
	background: inherit;
	border: inherit;
}

#ez-toc-container .eztoc-toggle-hide-by-default,
label.cssiconcheckbox {
	display: none;
}

.ez-toc-widget-container ul li a {
	padding-left: 10px;
	display: inline-flex;
	align-items: stretch;
	flex-wrap: nowrap;
}

.ez-toc-widget-container ul.ez-toc-list li {
	height: auto !important;
}

.ez-toc-icon-toggle-span {
	display: flex;
	align-items: center;
	width: 35px;
	height: 30px;
	justify-content: center;
	direction: ltr;
}

.eztoc_no_heading_found {
	background-color: #ff0;
	padding-left: 10px;
}

.title-h3-section {
	font-family: "helveticaneue", sans-serif;
}

.single-page ul {
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
	padding: 13px 15px;
	border: 1px solid #e1e1e1;
	background: #fff;
	margin: 10px 0;
	list-style: none;
}

.justify {
	max-width: 1200px; /* Chiều rộng tối đa của nội dung */
	margin: 0 auto; /* Căn giữa nội dung */
	padding: 0 20px; /* Thêm padding hai bên */
	text-align: justify; /* Căn lề chữ hai bên */
}

.h2_primary,
.h2_secondary,
.h2_tertiray,
.h2_secondary,
.h3_secondary,
.h4_secondary,
.h2_tertiray,
.h3_tertiray,
.h4_tertiray {
	position: relative;
	font-weight: 600;
}

.h2_primary::after,
.h2_secondary::after,
.h2_tertiray::after {
	content: "";
	width: 100%;
	max-width: 320px;
	height: 2px;
	background: linear-gradient(90deg, #bf5b00, rgba(255, 255, 255, 0));
	display: block;
	clear: both;
	margin-top: 5px;
}

.h2_secondary::after,
.h3_secondary::after,
.h4_secondary::after {
	content: "";
	width: 100%;
	max-width: 320px;
	height: 2px;
	background: linear-gradient(90deg, #bf5b00, rgba(255, 255, 255, 0));
	display: block;
	clear: both;
	margin-top: 5px;
}

.h2_tertiray::after,
.h3_tertiray::after,
.h4_tertiray::after {
	content: "";
	width: 100%;
	max-width: 320px;
	height: 2px;
	background: linear-gradient(90deg, #f58634, rgba(255, 255, 255, 0));
	display: block;
	clear: both;
	margin-top: 5px;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.ead-loading-wrap {
	position: relative;
	height: 100%;
}

.ead-loading-main {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: #e4eaf1;
	height: 100%;
	opacity: 0.5;
}

.ead-loading {
	text-align: center;
	width: 100%;
}

.ead-loading span {
	display: block;
	font-size: 14px;
	color: #74787d;
}

.ead-loading img {
	margin: 0 auto;
}

.ead-loading-foot {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 10px 20px 53px;
	font-size: 14px;
	text-align: center;
}

.ead-loading-foot .ead-loading-foot-title {
	margin: 0 0 20px !important;
	color: #404347;
	font-size: 14px;
	font-weight: 700;
}

.ead-loading-foot .ead-loading-foot-title span {
	display: block;
	margin-top: 15px;
	font-size: 14px;
	letter-spacing: 0;
}

.ead-loading-foot p {
	margin-bottom: 0;
	color: #1a1f2a;
}

.ead-loading-foot span {
	margin: 0 10px;
}

.ead-loading-foot .ead-document-btn {
	color: #1a1f2a;
	cursor: pointer;
	display: inline-block;
	text-decoration: underline;
}

.ead-loading-foot .ead-document-btn:active {
	opacity: 0.5;
}

.ead-loading-foot .ead-loading-foot-title img {
	margin: 0 auto;
}

.ead-loading-foot .ead-document-btn img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 2px;
}

.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900;
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 1em;
	font-weight: 400;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: 0.2em 0.8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d;
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: "";
	position: absolute;
	background-color: #fbfbfc;
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}

.kk-star-ratings {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.kk-star-ratings.kksr-shortcode {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.kk-star-ratings.kksr-valign-top {
	margin-bottom: 2rem;
}

.kk-star-ratings.kksr-valign-bottom {
	margin-top: 2rem;
}

.kk-star-ratings.kksr-align-left {
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
}

.kk-star-ratings.kksr-align-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.kk-star-ratings.kksr-align-right {
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: flex-end;
	justify-content: flex-end;
}

.kk-star-ratings .kksr-muted {
	opacity: 0.5;
}

.kk-star-ratings .kksr-stars {
	position: relative;
}

.kk-star-ratings .kksr-stars .kksr-stars-active,
.kk-star-ratings .kksr-stars .kksr-stars-inactive {
	display: flex;
}

.kk-star-ratings .kksr-stars .kksr-stars-active {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.kk-star-ratings .kksr-stars .kksr-star {
	cursor: pointer;
	padding-right: 0;
}

.kk-star-ratings.kksr-disabled .kksr-stars .kksr-star {
	cursor: default;
}

.kk-star-ratings .kksr-stars .kksr-star .kksr-icon {
	transition: 0.3s all;
}

.kk-star-ratings:not(.kksr-disabled) .kksr-stars:hover .kksr-stars-active {
	width: 0 !important;
}

.kk-star-ratings .kksr-stars .kksr-star .kksr-icon,
.kk-star-ratings:not(.kksr-disabled)
	.kksr-stars
	.kksr-star:hover
	~ .kksr-star
	.kksr-icon {
	background-image: url(../../../plugins/kk-star-ratings/src/core/public/svg/inactive.svg);
}

.kk-star-ratings .kksr-stars .kksr-stars-active .kksr-star .kksr-icon {
	background-image: url(../../../plugins/kk-star-ratings/src/core/public/svg/active.svg);
}

.kk-star-ratings.kksr-disabled
	.kksr-stars
	.kksr-stars-active
	.kksr-star
	.kksr-icon,
.kk-star-ratings:not(.kksr-disabled) .kksr-stars:hover .kksr-star .kksr-icon {
	background-image: url(../../../plugins/kk-star-ratings/src/core/public/svg/selected.svg);
}

.kk-star-ratings .kksr-legend {
	margin-left: 0.75rem;
	margin-right: 0.75rem;
}

[dir="rtl"] .kk-star-ratings .kksr-stars .kksr-stars-active {
	left: auto;
	right: 0;
}

*,
.kc-col-container,
.kc-container,
.kc-elm {
	box-sizing: border-box;
}

.kc-off-notice a,
.kc_twitter_feed a:hover {
	text-decoration: underline;
}

.kc_google_maps[data-wheel="disable"] iframe,
.kc_wrap-video-bg {
	pointer-events: none;
}

.fb-line-1 .likes,
.fb-line-1 .username,
.kc-owl-post-carousel .owl-item .title {
	text-overflow: ellipsis;
	white-space: nowrap;
}

.back i,
.front i {
	display: inline-block;
}

div {
	display: block;
}

.kc-elm {
	float: left;
	width: 100%;
}

.kc_col-sm-1 {
	width: 8.33333%;
}

.kc_col-sm-2 {
	width: 16.6667%;
}

div.kc_col-of-5 {
	width: 20%;
	float: left;
}

.kc_col-sm-3 {
	width: 25%;
}

.kc_col-sm-4 {
	width: 33.3333%;
}

.kc_col-sm-5 {
	width: 41.6667%;
}

.kc_col-sm-6 {
	width: 50%;
}

.kc_col-sm-7 {
	width: 58.3333%;
}

.kc_col-sm-8 {
	width: 66.6667%;
}

.kc_col-sm-9 {
	width: 75%;
}

.kc_col-sm-10 {
	width: 83.3333%;
}

.kc_col-sm-11 {
	width: 91.6667%;
}

.kc_col-sm-12 {
	width: 100%;
}

.kc-container {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.kc-row-container:not(.kc-container) {
	padding-left: 0;
	padding-right: 0;
	width: 100%;
	max-width: 100%;
}

.kc_wrap-video-bg {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.kc_single_image img {
	max-width: 100%;
	display: inline-block;
}

.kc-video-bg .kc_column {
	position: relative;
}

.kc-infinite-loop {
	text-align: center;
	padding: 50px;
	font-size: 18px;
	color: red;
	width: 100%;
	display: inline-block;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.kc_row:not(.kc_row_inner) {
	clear: both;
	float: left;
	width: 100%;
}

.kc-row-container.kc-container .kc-wrap-columns,
.kc_row_inner {
	margin-left: -15px;
	margin-right: -15px;
	clear: both;
}

.kc_row.kc_row_inner {
	width: calc(100% + 30px);
}

.kc_tab_content > .kc_row_inner {
	width: 100%;
	margin: 0;
}

.kc_column,
.kc_column_inner {
	min-height: 1px;
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
	float: left;
}

.kc_column > .kc-col-container,
.kc_column_inner > .kc-col-inner-container {
	height: 100%;
}

.kingcomposer div.kc_column,
.kingcomposer div.kc_column_inner {
	clear: none;
}

.kc_row_inner > div.kc_column_inner:only-child {
	width: 100%;
}

.kc_clfw {
	width: 100% !important;
	clear: both !important;
	display: block !important;
	height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

.kc-col-container {
	clear: both;
	display: block;
	width: 100%;
}

section[data-kc-fullheight] {
	min-height: 100vh;
}

html body section[data-kc-parallax="true"] {
	background-position: 50% 0;
	background-repeat: no-repeat !important;
	background-attachment: fixed !important;
}

section[data-kc-fullwidth] {
	margin-left: 0 !important;
	margin-right: 0 !important;
	position: relative;
	box-sizing: content-box;
}

.kc_text_block {
	display: inline-block;
	clear: both;
	width: 100%;
}

body section[data-kc-equalheight="true"],
body section[data-kc-equalheight="true"] > .kc-container,
body section[data-kc-equalheight="true"] > .kc-container .kc-wrap-columns {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	width: 100%;
}

body div.kc_row_inner[data-kc-equalheight="true"] {
	width: calc(100% + 30px);
	flex-wrap: wrap;
}

body div[data-kc-equalheight-align="middle"] > .kc_column_inner > .kc_wrapper,
body div[data-kc-equalheight-align="bottom"] > .kc_column_inner > .kc_wrapper,
body
	section[data-kc-equalheight-align="middle"]
	> .kc-container
	> .kc-wrap-columns
	> .kc_column
	> .kc-col-container,
body
	section[data-kc-equalheight-align="middle"]
	> .kc-row-container
	> .kc-wrap-columns
	> .kc_column
	> .kc-col-container,
body
	section[data-kc-equalheight-align="bottom"]
	> .kc-container
	> .kc-wrap-columns
	> .kc_column
	> .kc-col-container {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	flex-wrap: wrap;
	height: 100%;
	width: 100%;
}

body
	div.kc_row_inner[data-kc-equalheight="true"]
	> .kc_column_inner
	> .kc_wrapper.kc_row_inner {
	height: 100%;
}

body div[data-kc-equalheight-align="middle"] > .kc_column_inner > .kc_wrapper,
body
	section[data-kc-equalheight-align="middle"]
	> .kc-container
	> .kc-wrap-columns
	> .kc_column
	> .kc-col-container,
body
	section[data-kc-equalheight-align="middle"]
	> .kc-row-container
	> .kc-wrap-columns
	> .kc_column
	> .kc-col-container {
	align-content: center;
	justify-content: center;
	align-items: center;
}

body div[data-kc-equalheight-align="bottom"] > .kc_column_inner > .kc_wrapper,
body
	section[data-kc-equalheight-align="bottom"]
	> .kc-container
	> .kc-wrap-columns
	> .kc_column
	> .kc-col-container,
body
	section[data-kc-equalheight-align="bottom"]
	> .kc-row-container
	> .kc-wrap-columns
	> .kc_column
	> .kc-col-container {
	align-content: flex-end;
	align-items: flex-end;
}

body section[data-kc-fullheight="middle-content"],
body section[data-kc-fullheight="middle-content"] > .kc-container,
body section[data-kc-fullheight="middle-content"] > .kc-row-container {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	align-content: center;
}

body section[data-kc-equalheight="true"] > .kc-container .kc-wrap-columns {
	flex-wrap: wrap;
	margin-left: initial;
	margin-right: initial;
}

.kc-off-notice {
	width: 100%;
	padding: 10px;
	text-align: left;
	background-color: #e9e385;
	color: #333;
	font-size: 14px;
}

.kc-off-notice a {
	text-transform: capitalize;
}

@media screen and (min-width: 999px) {
	.kc-row-container .kc-wrap-columns,
	.kc_row_inner {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		flex-wrap: wrap;
	}

	.kc-row-container.kc-container .kc-wrap-columns,
	.kc_row_inner {
		width: calc(100% + 30px);
	}
}

@media screen and (max-width: 767px) {
	body.kc-css-system .kc_column,
	body.kc-css-system .kc_column_inner {
		width: 100%;
	}

	div.kc_row {
		display: block;
	}
}

.kc_shortcode .kc-widget-title,
.kc_shortcode .kc_title {
	margin-bottom: 20px;
}

.kc_shortcode ul {
	margin: 0;
	padding: 0;
}

.kc_shortcode ul li {
	list-style: none;
}

.kc_shortcode h3,
.kc_shortcode h4,
.kc_shortcode h5 {
	font-size: 18px;
	margin: 0;
	padding: 0;
	font-weight: 600;
}

.kc_shortcode h4 {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 15px;
}

.kc_shortcode h5 {
	font-size: 16px;
}

.kc_accordion_wrapper,
.kc_tabs {
	margin-bottom: 24px;
}

.kc_tabs .kc_tabs {
	margin-bottom: 0;
}

.kc_tabs {
	display: inline-block;
	width: 100%;
}

.kc_wrapper.ui-tabs {
	width: 100%;
	display: inline-block;
}

.kc_vertical_tabs > .kc_wrapper.ui-tabs {
	border: none;
}

.kc_tabs.kc-tabs-slider ul.kc-tabs-slider-nav {
	margin: 0;
}

ul.kc-tabs-slider-nav li {
	display: inline-block;
	cursor: pointer;
	padding: 8px 15px;
}

ul.kc-tabs-slider-nav li.kc-title-active {
	background: #ddd;
}

.kc_tabs_nav,
.nav-pills {
	line-height: 45px;
	margin: 0;
	padding: 0;
}

.kc_tabs_nav:after,
.kc_tabs_nav:before,
.nav-pills:after,
.nav-pills:before {
	display: table;
	line-height: 0;
	content: "";
}

.kc_tabs_nav:after,
.nav-pills:after {
	clear: both;
}

.kc_tabs_nav ~ .kc_tab {
	overflow: hidden;
	float: left;
	width: 100%;
	height: 0;
}

html body.kc-css-system .kc_tabs_nav ~ .kc_tab:not(.ui-tabs-body-active) {
	margin: 0 !important;
	padding: 0 !important;
}

.kc_tabs_nav ~ .kc_tab.ui-tabs-body-active {
	height: inherit !important;
	background: #ddd;
}

.kc_tabs_nav ~ .kc_tab .kc_tab_content {
	padding: 30px 30px 15px;
}

.kc_tabs_nav > li,
.nav-pills > li {
	float: left;
}

.kc_tabs_nav > li > a,
.nav-pills > li > a {
	padding: 0 30px;
	text-decoration: none;
	outline: 0;
	display: block;
	line-height: 50px;
	color: #6b6b6b;
}

.kc_tabs > .kc_wrapper > .kc_tabs_nav {
	background: #eee;
	float: left;
	min-height: 50px;
	margin: 0;
	width: 100%;
}

.kc_tabs_nav {
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-top: 0 !important;
}

.kc_tabs_nav > li {
	list-style: none;
	border-right: 1px solid #fff;
	border-left: none !important;
	border-bottom: none !important;
	margin: 0;
	float: left;
	color: #333;
	box-shadow: none;
	cursor: pointer;
}

.kc_tabs_nav > .ui-tabs-active > a,
.kc_tabs_nav > li:hover,
.kc_tabs_nav > li > a:hover {
	background-color: #ddd;
	color: #333;
}

.kc_tabs_nav > .ui-tabs-active,
.kc_tabs_nav > .ui-tabs-active:hover,
.kc_tabs_nav > .ui-tabs-active > a,
.kc_tabs_nav > .ui-tabs-active > a:hover {
	color: #555;
	display: block;
}

.kc_vertical_tabs > .kc_wrapper > ul.ui-tabs-nav {
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
	width: 25%;
	z-index: 10;
	right: 0;
}

.kc_vertical_tabs.tabs_right > .kc_wrapper > ul.ui-tabs-nav {
	border-right: none;
	right: 0;
	left: 0;
}

.kc_vertical_tabs > .kc_wrapper > ul.ui-tabs-nav ~ div.kc_tab {
	float: left;
	width: 75%;
	height: 0;
	overflow: hidden;
}

.kc_vertical_tabs
	> .kc_wrapper
	> ul.ui-tabs-nav
	~ div.kc_tab.ui-tabs-body-active {
	height: inherit;
	border: 1px solid #ddd;
}

.kc_vertical_tabs.tabs_right > .kc_wrapper > ul.ui-tabs-nav ~ div.kc_tab {
	list-style: none;
}

.kc_vertical_tabs > .kc_wrapper > ul.ui-tabs-nav > li {
	list-style: none;
	border: 1px solid #ddd;
}

.kc_wrapper > ul.ui-tabs-nav > li {
	overflow: hidden;
}

.kc_vertical_tabs:not(.tabs_right) > .kc_wrapper > ul.ui-tabs-nav > li {
	border-right: 0 !important;
}

.kc_vertical_tabs.tabs_right > .kc_wrapper > ul.ui-tabs-nav > li {
	border-left: 0 !important;
}

.kc_vertical_tabs > .kc_wrapper > ul.ui-tabs-nav > li:not(:last-child) {
	border-bottom: 0 !important;
}

.kc_vertical_tabs > .kc_wrapper > ul.ui-tabs-nav > li.ui-tabs-active > a,
.kc_vertical_tabs > .kc_wrapper > ul.ui-tabs-nav > li.ui-tabs-active > a:hover,
.kc_vertical_tabs > .kc_wrapper > ul.ui-tabs-nav > li > a:hover {
	border: none;
	background: #f7f7f7;
	margin-left: 0;
	color: #333;
}

.kc_vertical_tabs > .kc_wrapper > ul.ui-tabs-nav > li > a {
	display: block;
	padding: 12px 0 12px 20px;
	outline: 0;
	text-decoration: none;
}

.kc_vertical_tabs.tabs_right > .kc_wrapper > ul.ui-tabs-nav {
	float: right;
}

.kc-video-inner iframe {
	margin-bottom: 0;
}

.kc_accordion_content {
	padding-bottom: 0;
	border-left: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	color: #727272;
	display: none;
}

.kc_accordion_content.ui-state-body-active {
	height: inherit !important;
}

.kc_accordion_section > .kc_accordion_header {
	position: relative;
	cursor: pointer;
	min-height: 30px;
	line-height: 30px;
	font-weight: 700;
	font-size: inherit;
	margin-top: 0;
	margin-bottom: -1px;
	float: left;
	width: 100%;
	border: 1px solid #e0e0e0;
}

.kc_accordion_section > .ui-state-active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	margin: 0;
}

.kc_accordion_header > span.ui-accordion-header-icon {
	float: right;
	font-family: simple-line-icons;
	margin: 17px;
	color: #aaa;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.kc_accordion_header > span.ui-accordion-header-icon:before {
	content: "\e604";
}

.kc-section-active
	.kc_accordion_header.ui-state-active
	> span.ui-accordion-header-icon:before {
	content: "\e607";
}

.kc_accordion_header > a {
	display: block;
	font-size: 15px;
	padding: 10px 15px;
	text-decoration: none;
	outline: 0;
	font-weight: 400;
	border: none;
	cursor: pointer;
}

.kc_accordion_content .kc-panel-body {
	padding: 15px;
	float: left;
	width: 100%;
}

body div.dark_rounded .pp_loaderIcon {
	animation: 2s cubic-bezier(0.63, 0.045, 0.34, 1) 0s normal none infinite
		kc-spinner;
	display: block;
	height: 50px;
	left: 50%;
	margin: -25px 0 0 -25px;
	position: absolute;
	top: 50%;
	width: 50px;
	background: url(../../../plugins/kingcomposer/assets/frontend/images/loader.png)
		center center no-repeat;
	background-size: 50px 50px;
}

body div.dark_rounded .pp_content,
body div.dark_rounded .pp_content_container .pp_left,
body div.dark_rounded .pp_content_container .pp_right {
	background: 0 0;
}

body div.dark_rounded .pp_close {
	background: 0 0;
	text-indent: 0;
	text-align: right;
	color: #fff;
	font-size: 24px;
}

body div.dark_rounded .pp_close:hover {
	color: #aaa;
}

body div.dark_rounded a.pp_next,
body div.dark_rounded a.pp_previous {
	position: fixed;
	-webkit-transform: translateZ(0);
	text-indent: 0 !important;
	top: 50%;
	margin-top: -20px;
	font-size: 25px;
	z-index: 1000001;
	color: #fff;
	width: 50px;
	height: 50px;
	-webkit-backface-visibility: hidden;
	cursor: pointer;
}

body div.dark_rounded a.pp_next {
	right: 0;
	background: 0 0;
}

body div.dark_rounded a.pp_previous {
	left: 25px;
}

body div.dark_rounded a.pp_next:hover,
body div.dark_rounded a.pp_previous:hover {
	background: 0 0;
	color: #aaa;
}

body .div.dark_rounded .pp_details {
	position: relative;
	text-align: center;
}

body .div.dark_rounded .pp_content_container .pp_details {
	float: left;
	margin: 10px 0 2px;
}

body div.dark_rounded .pp_nav {
	font-size: 14px;
	margin: 0 10px 0 0;
	clear: right;
	float: left;
}

body .pp_nav p {
	float: left;
	margin: 0 4px;
}

body div.dark_rounded .pp_nav .pp_play,
body div.ppt {
	display: none !important;
}

.kc_google_maps {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 100px;
}

.kc_google_maps img {
	max-width: inherit;
	max-height: inherit;
}

.kc_google_maps .map_popup_contact_form {
	position: absolute;
	z-index: 999;
	top: 0;
	overflow-y: auto;
	padding: 50px 60px 0;
	height: 100%;
	transform: translate(0, 0);
	transition: transform 0.4s ease;
	-webkit-transition-property: -webkit-transform, left, right;
	-webkit-backface-visibility: hidden;
}

.map_popup_contact_form input[type="text"],
.map_popup_contact_form input[type="email"],
.map_popup_contact_form textarea {
	width: 100%;
	border: 1px solid #999;
	background: 0 0;
	color: #fff;
}

.map_popup_contact_form textarea {
	height: 100px;
}

.map_popup_contact_form p {
	margin-bottom: 10px;
}

.map_popup_contact_form .close {
	position: absolute;
	top: 10px;
	right: 10px;
}

.map_popup_contact_form .wpcf7-submit {
	text-transform: uppercase;
	width: 100%;
	padding: 15px 0;
	box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 1);
}

.kc_google_maps .show_contact_form {
	position: absolute;
	left: 10px;
	top: 110px;
	z-index: 99;
	font-size: 20px;
	height: 33px;
	line-height: 20px;
	color: #f75850;
	display: none;
	background: #fff;
	padding: 0 10px;
	border-radius: 3px;
	box-shadow: 0 1px 1px #bebebe;
	transition: all 0.2s ease;
}

.kc_google_maps .show_contact_form i {
	margin-top: 7px;
}

.kc_google_maps .show_contact_form:hover {
	background: #ebebeb;
	color: #000;
}

.map_popup_contact_form.left.hidden {
	transform: translate(-100%, 0) !important;
}

.map_popup_contact_form.right.hidden {
	transform: translate(100%, 0) !important;
}

.map_popup_contact_form.right {
	float: right;
	right: 0;
}

.map_popup_contact_form.right + a {
	right: 10px;
	float: right;
	left: auto;
	top: 50px;
}

.map_popup_contact_form .close {
	text-decoration: none;
	box-shadow: none;
	color: #fff;
}

.kc-fb-layout-2,
.kc-pricing-layout-1,
.kc-pricing-layout-2,
.kc-pricing-layout-4,
.kc-testi-layout-3 {
	box-shadow: 0 1px 21px rgba(0, 0, 0, 0.21);
}

.map_popup_contact_form .close i {
	font-weight: 100;
	font-size: 25px;
}

.kc_image_gallery.kc-grid {
	width: 100%;
}

.kc_image_gallery.kc-grid .item-grid {
	float: left;
	position: relative;
	width: 25%;
}

.kc_image_gallery.kc-grid .item-grid .kc-image-overlay {
	background: rgba(0, 0, 0, 0.2);
}

.kc_image_gallery.kc-grid .item-grid:hover .kc-image-overlay {
	opacity: 1;
}

.kc_image_gallery.kc-grid .item-grid img {
	display: block;
	max-width: 100%;
	border-image-width: 0;
}

.kc-countdown-timer span.group,
.kc_button {
	padding: 10px 20px;
	color: #fff;
	display: inline-block;
}

.kc_image_gallery.kc-grid .item-grid.grid-2 {
	width: 50%;
}

.kc_image_gallery.kc-grid .item-grid.grid-3 {
	width: 32.7%;
}

.kc_image_gallery.kc-grid .item-grid.grid-4 {
	width: 25%;
}

.kc_image_gallery.kc-grid.masonry .item-grid.grid-4 {
	width: 24.8%;
}

.kc_image_gallery.kc-grid .item-grid.grid-5 {
	width: 20%;
}

.kc_image_gallery.kc-grid .item-grid.grid-6 {
	width: 16.66666666666666%;
}

.kc-countdown-timer .countdown-style2 .timer,
.kc-countdown-timer .countdown-style2 .unit,
.kc-ui-progress-bar {
	width: 100%;
	float: left;
}

.kc_image_gallery {
	clear: both;
}

.kc_button {
	transition: background-color 0.3s ease 0s, color 0.3s ease 0s,
		border-radius 0.3s ease 0s;
	white-space: nowrap;
	text-decoration: none;
	font-size: 14px;
	background-color: #1e73be;
}

.kc-countdown-timer {
	text-align: left;
}

.kc-countdown-timer span.group {
	background: #42bce2;
	border-radius: 5px;
	margin-right: 10px;
	text-align: center;
}

.kc-countdown-timer .group .timer {
	font-size: 20px;
	font-weight: 700;
}

.kc-countdown-timer .countdown-style2 .group {
	padding: 10px;
}

@-webkit-keyframes animate-stripes {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 44px 0;
	}
}

.kc_progress_bars .progress-item {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.kc_progress_bars div.progress-item:first-child {
	margin-top: 0 !important;
}

.kc_progress_bars div.progress-item:last-child {
	margin-bottom: 0 !important;
}

.kc-ui-progress-bar {
	position: relative;
	background: #e4e4e4;
}

.kc-ui-progress {
	position: relative;
	display: block;
	height: 10px;
	z-index: 2;
	background: #42bce2;
	overflow: initial !important;
}

.kc-ui-progress-bar:after {
	background: #e4e4e4;
}

.kc-ui-progress-bar2 .kc-ui-progress div.ui-label {
	margin-bottom: 10px;
}

.kc-ui-progress div.ui-label {
	text-transform: uppercase;
	color: #272727;
	position: absolute;
	right: 0;
	margin-right: 12px;
	white-space: nowrap;
	bottom: 100%;
}

.kc-ui-progress div.ui-label .value {
	display: block;
	color: #333;
}

.kc_progress_bars .progress-item span.label {
	margin-bottom: 6px;
	font-size: 14px;
	padding: 0;
	color: #333;
	float: left;
	font-weight: 500;
	position: relative;
}

.kc-ui-progress2 span.value {
	float: left;
	width: 45px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: rgba(0, 0, 0, 0.4);
	background-size: 90%;
	border-radius: 3px;
	color: #fff;
	font-size: 12px;
}

.kc-ui-progress2 span.value:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	border: 4px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.4);
	transform: translateX(-50%);
}

.kc-ui-progress3 div.ui-label {
	bottom: 0;
	font-size: 1em;
	height: 100%;
	display: flex;
	align-items: center;
}

.pie-chart-wrapper {
	text-align: center;
}

.kc_piechart {
	display: inline-block;
	position: relative;
	text-align: center;
	width: 100px;
}

.kc_piechart .percent:after {
	content: "%";
	font-size: 0.8em;
	margin-left: 0.1em;
}

.kc_piechart .percent {
	z-index: 2;
	text-align: center;
	font-size: 14px;
	display: block;
	color: #42bce2;
}

.kc_piechart .pie_chart_percent i {
	width: 100%;
	font-size: 14px;
}

.kc_piechart .pie_chart_percent {
	z-index: 2;
	top: 50%;
	position: absolute;
	left: 50%;
	text-align: center;
	font-size: 14px;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
}

.kc_piechart canvas {
	left: 0;
	position: absolute;
	top: 0;
}

.pie_chart_text {
	margin: 20px 0;
}

.kc-flip-container {
	perspective: 1000;
	-webkit-perspective: 1000;
	min-height: 50px;
	float: left;
	width: 100%;
}

.kc-flip-container.flip .flipper,
.kc-flip-container.hover .flipper,
.kc-flip-container:hover .flipper {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
}

.kc-flip-container.flip-vertical.flip .flipper,
.kc-flip-container.flip-vertical.hover .flipper,
.kc-flip-container.flip-vertical:hover .flipper {
	transform: rotateX(180deg) rotateY(0);
	-webkit-transform: rotateX(180deg) rotateY(0);
}

.kc-flip-container .wrap-icon {
	float: left;
	width: 100%;
}

.kc-flip-container .front {
	background: #f7f7f7;
	border: 1px solid #ebebeb;
}

.kc-flip-container .front .front-content {
	float: left;
	width: 100%;
	padding: 30px 15px;
	text-align: center;
}

.kc-flip-container .front .front-content i {
	font-size: 40px;
	color: #42bce2;
}

.kc-flip-container .front .front-content h3 {
	margin: 0 0 20px;
	font-size: 18px;
	float: left;
	width: 100%;
	color: #444;
	text-transform: uppercase;
}

.kc-flip-container .front .front-content p {
	color: #666;
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.kc-flip-container .front .front-content .button {
	background: #42bce2;
	display: inline-block;
	color: #fff;
	border-radius: 2px;
	text-transform: uppercase;
	padding: 10px 16px;
	font-size: 12px;
}

.kc-flip-container .back {
	background: #fff;
	border: 4px solid #ddd;
}

.kc-flip-container .back .des {
	float: left;
	width: 100%;
	padding: 30px 15px;
	text-align: center;
	overflow-y: auto;
}

.kc-flip-container .back .des i {
	font-size: 40px;
	color: #c13740;
}

.kc-flip-container .back .des h3 {
	margin: 0 0 20px;
	float: left;
	width: 100%;
	font-size: 18px;
	color: #444;
	text-transform: uppercase;
}

.kc-flip-container .back .des p {
	color: #666;
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.kc-flip-container .back .des .button {
	background: #c13740;
	display: inline-block;
	color: #fff;
	border-radius: 2px;
	text-transform: uppercase;
	padding: 10px 16px;
	font-size: 12px;
}

.kc-flip-container .flipper {
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	position: relative;
	height: 100%;
	float: left;
	width: 100%;
}

.content-icon i,
.kc-feature-boxes,
.kc-feature-boxes a,
.kc-pricing-tables {
	transition: all 0.3s ease 0s;
}

.kc-flip-container .back,
.kc-flip-container .front {
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.kc-flip-container .front {
	z-index: 2;
	transform: rotateY(0);
	-webkit-transform: rotateY(0);
	float: left;
	width: 100%;
	position: relative;
}

.kc-flip-container .front img {
	width: 100%;
	float: left;
	max-width: 100%;
}

.kc-flip-container .back {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
}

.kc-flip-container.flip-vertical .back {
	transform: rotateX(180deg) rotateY(0);
	-webkit-transform: rotateX(180deg) rotateY(0);
}

.kc_wrap_instagram {
	overflow: hidden;
	clear: both;
}

.kc_wrap_instagram ul {
	margin: 0;
	padding-left: 0;
}

.kc_wrap_instagram ul li.el-end {
	margin-right: 0;
}

.kc_wrap_instagram ul li.el-start {
	clear: left;
}

.kc-blog-posts-3,
.kc_box_wrap,
.kc_video_wrapper {
	clear: both;
}

.ins_mark_low_resolution,
.ins_mark_standard_resolution,
.ins_mark_thumbnail {
	padding: 25px 10px;
}

.kc_wrap_instagram ul li {
	background: url(../../../plugins/kingcomposer/assets/frontend/images/loading.gif)
		center center no-repeat;
	float: left;
	list-style: none;
	width: 100%;
	margin: 0 0 10px;
	padding: 0 5px;
}

.kc_wrap_instagram {
	width: calc(100% + 10px);
	margin-left: -5px;
	margin-right: -5px;
}

.kc_wrap_instagram ul li.loaded a {
	float: left;
	width: 100%;
}

.kc_wrap_instagram ul li.loaded img {
	width: 100%;
	float: left;
}

.kc_wrap_instagram ul li.loaded {
	background-image: none;
}

.kc_ins_col_1 ul li {
	width: 100%;
}

.kc_ins_col_2 ul li {
	width: 50%;
}

.kc_ins_col_3 ul li {
	width: 33.3333333333%;
}

.kc_ins_col_4 ul li {
	width: 25%;
}

.kc_ins_col_5 ul li {
	width: 20%;
}

.kc_ins_col_6 ul li {
	width: 16.6666666666666%;
}

.kc-fb-layout-1,
.kc-fb-layout-1 .content-button,
.kc-fb-layout-1 .content-desc,
.kc-fb-layout-1 .content-icon,
.kc-fb-layout-1 .content-title,
.kc-fb-layout-2 .content-image,
.kc-fb-layout-3,
.kc-fb-layout-3 .content-desc,
.kc-fb-layout-3 .content-title,
.kc-fb-layout-4,
.kc-feature-boxes {
	width: 100%;
	float: left;
}

.content-icon i {
	display: inline-block;
}

.kc-fb-layout-1 {
	text-align: center;
}

.kc-fb-layout-1 .content-icon i {
	font-size: 55px;
	color: #42bce2;
	text-align: center;
}

.kc-fb-layout-1 .content-title {
	margin: 25px 0;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: #444;
}

.kc-fb-layout-1 .content-desc {
	font-weight: 400;
	margin-bottom: 25px;
}

.kc-fb-layout-1 .content-desc p {
	margin: 0;
	color: rgba(86, 86, 86, 0.8);
}

.kc-fb-layout-1 .content-button a {
	display: inline-block;
	padding: 7px 20px;
	text-transform: uppercase;
	background: #eee;
	color: #666;
	font-size: 12px;
}

.kc-fb-layout-1 .content-button a:hover {
	background: #42bce2;
	color: #fff;
}

.kc-fb-layout-2 {
	overflow: hidden;
	text-align: center;
}

.kc-fb-layout-2 .content-button,
.kc-fb-layout-2 .content-desc,
.kc-fb-layout-2 .content-title {
	float: left;
	width: 100%;
	padding: 0 10px;
}

.content-title {
	margin: 25px 0 20px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: #444;
}

.content-desc {
	font-weight: 400;
	margin-bottom: 25px;
	color: rgba(86, 86, 86, 0.8);
	padding: 0;
}

.content-desc p {
	margin: 0;
	color: rgba(86, 86, 86, 0.8);
}

.content-button a {
	display: inline-block;
	padding: 7px 20px;
	text-transform: uppercase;
	background: #eee;
	color: #666;
	font-size: 12px;
}

.kc-fb-layout-2 .content-button {
	margin-bottom: 30px;
}

.kc-fb-layout-2 .content-button a:hover {
	background: #42bce2;
	color: #fff;
}

.kc-fb-layout-3 {
	display: -webkit-flex;
	display: flex;
}

.kc-fb-layout-3 .content-icon {
	float: left;
}

.kc-fb-layout-3 .content-icon i {
	font-size: 29px;
	text-align: center;
}

.kc-fb-layout-4 .content-position,
.kc-fb-layout-5 .content-position {
	font-size: 11px;
	color: #42bce2;
	text-transform: uppercase;
}

.kc-fb-layout-3 .box-right {
	padding-left: 25px;
}

.kc-fb-layout-3 .content-title {
	margin: 0 0 15px;
}

.kc-fb-layout-4 .content-image {
	float: left;
	width: 50%;
}

.kc-fb-layout-4 .box-right .content-button,
.kc-fb-layout-5,
.kc-testi-layout-1,
.kc-testi-layout-2,
.kc-testi-layout-3,
.kc-testi-layout-4,
.kc-testimo .content-desc,
.kc-testimo .content-image,
.kc-testimo .content-position,
.kc-testimo .content-title {
	width: 100%;
	float: left;
}

.kc-fb-layout-4 .content-image img {
	float: left;
}

.kc-fb-layout-4 .box-right {
	overflow: hidden;
	padding: 0 0 0 20px;
}

.kc-fb-layout-4 .content-title {
	margin: 0 0 20px;
}

.kc-fb-layout-4 .box-right .content-button a {
	float: left;
}

.kc-fb-layout-5 .content-title {
	margin: 0 0 15px;
}

.kc-testi-layout-1 {
	text-align: center;
}

.kc-testi-layout-1 .content-image img {
	border-radius: 50%;
}

.kc-testi-layout-1 .content-desc {
	margin: 30px 0 27px;
}

.kc-testi-layout-1 .content-title {
	margin: 0;
	font-size: 18px;
}

.kc-testi-layout-1 .content-position {
	color: #999;
	font-size: 11px;
}

.kc-testi-layout-2 {
	background: #eee;
	padding: 25px 20px 30px;
	border-radius: 4px;
}

.kc-testi-layout-2 .content-title {
	margin: 0;
	color: #42bce2;
	font-size: 18px;
}

.kc-testi-layout-2 .content-position {
	color: #999;
	font-size: 11px;
}

.kc-testi-layout-2 .content-desc {
	margin: 15px 0 0;
}

.kc-testi-layout-3 {
	text-align: center;
	padding: 0 0 30px;
}

.kc-testi-layout-3 .content-title {
	margin: 20px 0 0;
	color: #42bce2;
	font-size: 18px;
	padding: 0 15px;
}

.kc-testi-layout-3 .content-position {
	color: #999;
	font-size: 11px;
	padding: 0 15px;
}

.kc-testi-layout-3 .content-desc {
	margin: 15px 0 0;
	padding: 0 15px;
}

.kc-testi-layout-4 .content-image {
	padding-right: 20px;
	float: left;
	width: 40%;
}

.kc-testi-layout-4 .content-image img {
	border-radius: 50%;
	float: left;
}

.kc-testi-layout-4 .box-right {
	overflow: hidden;
}

.kc-testi-layout-4 .content-title {
	margin: 0;
	font-size: 18px;
}

.kc-testi-layout-4 .content-desc {
	margin-bottom: 20px;
}

.kc-testi-layout-4 .content-position {
	color: #42bce2;
	font-size: 11px;
}

.kc-testi-layout-5 {
	float: left;
	width: 100%;
}

.kc-testi-layout-5 .content-image {
	padding-right: 20px;
	float: left;
	width: auto;
	max-width: 40%;
}

.kc-testi-layout-5 .content-image img {
	border-radius: 50%;
}

.kc-testi-layout-5 .box-right {
	float: left;
}

.kc-testi-layout-5 .content-title {
	margin: 0;
	font-size: 18px;
}

.kc-pricing-tables {
	float: left;
	width: 100%;
	overflow: hidden;
}

.kc-pricing-layout-1 {
	border-radius: 10px;
	overflow: hidden;
	background: #42bce2;
}

.kc-pricing-layout-1 .header-pricing {
	float: left;
	width: 100%;
	line-height: 1.4;
}

.kc-pricing-layout-1 .header-pricing .kc-pricing-price {
	float: left;
	width: 100%;
	text-align: center;
}

.kc-pricing-layout-1 .kc-pricing-price .content-price {
	padding-bottom: 30px;
}

.kc-pricing-layout-1 .header-pricing .kc-pricing-price span {
	font-weight: 400;
	color: #fff;
	font-size: 28px;
}

.kc-pricing-layout-1 .header-pricing .kc-pricing-price span.content-duration {
	font-size: 16px;
	color: #fff;
}

.kc-pricing-layout-1 .header-pricing .content-title {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 20px;
	margin: 0;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0, 0, 0, 0.1);
	padding: 15px 0;
}

.kc-pricing-layout-1 .content-icon-header i {
	font-size: 80px;
	color: #fff;
	margin-top: 30px;
}

.kc-pricing-layout-1 .content-desc {
	float: left;
	width: 100%;
	list-style: none;
	margin: 0;
	text-align: center;
	padding: 0;
}

.kc-pricing-tables .content-desc li:last-child {
	margin-left: 0 !important;
	margin-top: 0 !important;
	margin-right: 0 !important;
}

.kc-pricing-tables .content-desc li:first-child {
	margin-left: 0 !important;
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}

.kc-pricing-layout-1 .content-desc li {
	float: left;
	width: 100%;
	padding: 8px 0;
	font-size: 14px;
	color: #173d50;
}

.kc-pricing-tables .content-desc li {
	border-left: 0 !important;
	border-right: 0 !important;
	list-style: none;
}

.kc-pricing-tables .content-desc li:not(:last-child) {
	border-bottom: 0 !important;
}

.kc-pricing-layout-1 .content-desc li:nth-of-type(2n + 1) {
	background: #f1f3f5;
}

.kc-pricing-layout-1 .content-button {
	float: left;
	width: 100%;
	text-align: center;
	background: #42bce2;
}

.kc-pricing-layout-1 .content-button a {
	display: inline-block;
	margin-top: 25px;
	margin-bottom: 25px;
	background: rgba(0, 0, 0, 0.1);
	color: #fff;
}

.kc-pricing-layout-1 .content-button a:hover {
	background: #fff;
	color: #42bce2;
}

.kc-pricing-layout-2 .header-pricing {
	float: left;
	width: 100%;
	line-height: 1.4;
}

.kc-pricing-layout-2 .header-pricing .kc-pricing-price {
	float: left;
	width: 100%;
	text-align: center;
	border-left: 0 !important;
	border-right: 0 !important;
}

.kc-pricing-layout-2 .kc-pricing-price .content-price {
	padding-bottom: 30px;
}

.kc-pricing-layout-2 .header-pricing .kc-pricing-price span {
	color: #42bce2;
	font-weight: 300;
	font-size: 60px;
}

.kc-pricing-layout-2 .header-pricing .kc-pricing-price span.content-duration {
	font-size: 16px;
	color: rgba(23, 61, 80, 0.4);
}

.kc-pricing-layout-2 .header-pricing .content-title {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 18px;
	margin: 0 0 3px;
	font-weight: 700;
	text-transform: uppercase;
	color: #173d50;
	padding: 30px 0 0;
}

.kc-pricing-layout-2 .content-desc {
	float: left;
	width: 100%;
	list-style: none;
	text-align: center;
	margin: 0;
}

.kc-pricing-layout-2 .content-desc li {
	float: left;
	width: 100%;
	padding: 8px 0;
	font-size: 14px;
	color: #173d50;
}

.kc-pricing-layout-2 .content-desc li:nth-of-type(2n + 1) {
	background: rgba(23, 61, 80, 0.06);
}

.kc-pricing-layout-2 .content-button {
	float: left;
	width: 100%;
	text-align: center;
}

.kc-pricing-layout-2 .content-button a {
	display: inline-block;
	margin-bottom: 25px;
	margin-top: 25px;
	background: #42bce2;
	color: #fff;
	border: 2px solid #42bce2;
}

.kc-pricing-layout-2 .content-button a:hover {
	background: #fff;
	color: #42bce2;
}

.kc-pricing-layout-3 {
	float: left;
	width: 100%;
	line-height: 1.4;
	background: #42bce2;
}

.kc-pricing-layout-3 .kc-pricing-price {
	float: left;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	background: rgba(255, 255, 255, 0.15);
}

.kc-pricing-layout-3 .kc-pricing-price span {
	font-weight: 300;
	color: #fff;
	font-size: 60px;
}

.kc-pricing-layout-3 .kc-pricing-price span.content-duration {
	font-size: 14px;
}

.kc-pricing-layout-3 .content-title {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 30px;
	font-weight: 300;
	color: #fff;
	margin: 0 0 15px;
	padding: 30px 0;
	background: rgba(255, 255, 255, 0.15);
	text-transform: uppercase;
}

.kc-pricing-layout-3 .content-desc {
	float: left;
	width: 100%;
	list-style: none;
	margin: 0;
	text-align: center;
}

.kc-pricing-layout-3 .content-desc li {
	float: left;
	width: 100%;
	padding: 8px 0;
	font-size: 14px;
	color: #fff;
}

.kc-pricing-layout-3 .content-button {
	float: left;
	width: 100%;
	text-align: center;
}

.kc-pricing-layout-3 .content-button a {
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 300;
	margin-top: 25px;
	margin-bottom: 25px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.kc-pricing-layout-3 .content-button a:hover {
	background: #fff;
	color: #42bce2;
}

.kc-pricing-layout-4 {
	border-radius: 10px;
	overflow: hidden;
	background: #42bce2;
}

.kc-pricing-layout-4 .header-pricing {
	float: left;
	width: 100%;
	line-height: 1.4;
}

.kc-pricing-layout-4 .header-pricing .kc-pricing-price {
	float: left;
	width: 100%;
	text-align: center;
	padding-bottom: 30px;
}

.kc-pricing-price span {
	display: inline-block;
}

.kc-pricing-layout-4 .kc-pricing-price span {
	font-weight: 300;
	color: #fff;
	font-size: 60px;
	display: inline-block;
}

.kc-pricing-layout-4 .kc-pricing-price .content-price {
	line-height: 60px;
	margin: 0 5px;
}

.kc-pricing-layout-4 .kc-pricing-price .content-duration {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	text-transform: uppercase;
	vertical-align: bottom;
}

.kc-pricing-layout-4 .kc-pricing-price .content-currency {
	font-size: 16px;
	vertical-align: top;
	color: rgba(255, 255, 255, 0.75);
}

.kc-pricing-layout-4 .content-title {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 22px;
	margin: 0;
	font-weight: 300;
	text-transform: uppercase;
	color: #fff;
	padding: 0 0 10px;
}

.content-icon-header {
	float: left;
	width: 100%;
	text-align: center;
}

.content-icon-header i {
	display: inline-block;
}

.kc-pricing-layout-4 .content-icon-header i {
	margin: 30px 0;
	font-size: 90px;
	text-align: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	width: 160px;
	height: 160px;
	line-height: 160px;
}

.kc-pricing-layout-4 .content-desc {
	float: left;
	width: 100%;
	list-style: none;
	margin: 0;
	background: #fff;
	text-align: center;
}

.kc-pricing-layout-4 .content-desc li {
	float: left;
	width: 100%;
	padding: 8px 0;
	font-size: 14px;
	color: #173d50;
}

.kc-pricing-layout-4 .content-desc li:nth-of-type(2n + 1) {
	background: #f1f3f5;
}

.kc-pricing-layout-4 .content-button {
	float: left;
	width: 100%;
	background: #fff;
	text-align: center;
}

.kc-pricing-layout-4 .content-button a {
	display: inline-block;
	background: #42bce2;
	margin-top: 25px;
	margin-bottom: 25px;
	color: #fff;
}

.kc_facebook_recent_post .list-posts {
	background: #e9ebee;
}

.kc_facebook_recent_post .list-posts li {
	border: 1px solid;
	border-color: #e5e6e9 #dfe0e4 #d0d1d5;
	background: #fff;
	border-radius: 3px;
}

.kc_facebook_recent_post .list-posts li:last-child {
	margin-bottom: 0;
}

.kc_facebook_recent_post ul li.fb_mark_cls {
	background: url(../../../plugins/kingcomposer/assets/frontend/images/fb_loading.gif)
		left 20px center no-repeat;
	height: 60px;
	border: 1px dashed #e6e6e6;
	margin-bottom: 15px;
	z-index: 2;
	background-size: 16px;
}

.fb-header .fb-line-1,
.fb-header .fb-line-2 {
	z-index: 11;
	position: relative;
	width: 100%;
	float: left;
}

.kc_facebook_recent_post ul {
	max-height: 300px;
	overflow-y: auto;
}

.kc_facebook_recent_post ul li {
	border-bottom: 1px solid #e6e6e6;
}

.kc_facebook_recent_post .fb-post-info span {
	margin-right: 15px;
}

.kc_facebook_recent_post .fb-post-info a {
	font-size: 12px;
	box-shadow: none;
	border-bottom: 0;
	color: #7f7f7f;
}

.kc_facebook_recent_post img {
	margin-bottom: 10px;
	max-width: 100%;
}

.kc_facebook_recent_post .fb-message {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.38;
	overflow: hidden;
}

.kc_shortcode .fb-button-profile {
	background-color: #4e69a2;
	border-radius: 2px;
	border: 1px solid;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	margin-top: 15px;
	display: inline-block;
	text-align: center;
	color: #fff;
	padding: 5px 20px;
	text-decoration: none;
}

.kc_shortcode .fb-button-profile:active,
.kc_shortcode .fb-button-profile:hover {
	background-color: #4e69a2;
	color: #fff;
	box-shadow: 0 0 1px 2px rgba(88, 144, 255, 0.75),
		0 1px 1px rgba(0, 0, 0, 0.15);
	outline: 0;
}

.kc_shortcode .fb-button-profile:visited {
	color: #fff;
}

.kc_facebook_recent_post ul {
	border-top: 0;
	padding: 10px;
}

.kc_facebook_recent_post ul li {
	padding: 10px;
	margin-bottom: 20px;
}

.kc_facebook_recent_post .fb-post-info {
	margin-top: 10px;
	padding-top: 6px;
	border-top: 1px solid #e5e5e5;
	line-height: 1;
}

.kc_facebook_recent_post .fb-post-infoa span {
	color: #7f7f7f;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	text-transform: capitalize;
}

.kc_facebook_recent_post .fb-post-infoa span:hover {
	color: #333;
}

.fb-header {
	width: 100%;
	height: 130px;
	background-size: cover;
	position: relative;
}

.fb-header .fb-line-1 {
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.fb-header .fb-line-2 {
	display: block;
}

.fb-line-1 .img-profile {
	width: 54px;
	height: auto;
	margin: 7px 10px 0 7px;
	border: 2px solid #fff;
	float: left;
}

.fb-line-1 .username {
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	line-height: 35px;
	overflow: hidden;
}

.fb-line-1 .likes {
	font-size: 12px;
	line-height: 1.358;
	overflow: hidden;
	display: block;
	margin-left: 65px;
}

.fb-line-2 .like_page,
.fb-line-2 .share_page {
	background: #f6f7f8;
	padding: 0 10px;
	margin-left: 10px;
	margin-top: 30px;
	display: inline-block;
	font-size: 12px;
	line-height: 22px;
	color: #4e5665;
	border-radius: 1px;
	text-shadow: 0 1px 0 #fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	font-weight: 700;
	box-sizing: content-box;
	text-align: center;
	font-family: helvetica, arial, sans-serif;
}

.fb-line-2 .share_page {
	margin-right: 10px;
	margin-left: inherit;
	float: right;
}

.fb-line-2 .share_page i {
	font-size: 13px;
}

.fb-line-2 .like_page i {
	font-size: 13px;
	color: #3a5897;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
}

.kc_wrap_twitter .button_follow_wrap {
	padding: 10px 15px;
	background: #e1e8ed;
}

.kc_twitter_feed .owl-item {
	text-align: center;
}

.kc_twitter_feed ul li {
	margin-bottom: 20px;
	padding: 10px;
	border: 1px solid #e6e6e6;
	border-radius: 2px;
	background: #fff;
}

.kc_twitter_feed ul li:last-child {
	margin-bottom: 0;
}

.kc_twitter_feed .kc_tweet_icon i {
	display: block;
	margin-bottom: 10px;
}

.kc_twitter_feed .twitter-footer {
	font-size: 12px;
	font-style: italic;
	margin-top: 15px;
}

.kc_twitter_style-1 .twitter-footer.show_avatar {
	margin-left: 58px;
	border-top: 1px solid #e5e5e5;
	padding-top: 10px;
	line-height: 1;
	padding-bottom: 6px;
}

.kc_twitter_feed .twitter-footer > span {
	margin-right: 25px;
}

.kc_twitter_feed .twitter-footer > span a {
	color: #aab8c2;
}

.kc_twitter_feed .twitter-footer > span a:hover {
	color: #1da1f2;
}

.kc_twitter_feed .twitter-footer > span:last-child {
	margin-right: 0;
}

.kc_twitter_feed a {
	color: #02a4bc;
}

.kc_twitter_feed .tweet_user a {
	position: relative;
	line-height: 21px;
	color: #333;
	cursor: pointer;
	background-color: #eee;
	border-radius: 3px;
	box-sizing: border-box;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	display: inline-block;
	border: 1px solid #ccc;
	background-image: linear-gradient(#fff, #dedede);
}

.kc-blog-posts-2 .kc-list-item-2 .post-title-alt a:hover,
.kc-blog-posts-3 .kc-list-item-3 .entry-meta a:hover,
.kc-blog-posts-4 .kc-list-item-4 .post-meta a:hover {
	text-decoration: underline;
}

.kc_twitter_feed .tweet_user a:hover {
	color: #333;
	background-color: #d9d9d9;
	background-image: linear-gradient(#f8f8f8, #d9d9d9);
	border-color: #bbb;
}

.kc_twitter_feed .kc_tweet_icon {
	font-size: 40px;
	display: block;
}

.kc_twitter_feed .tweet_desc .user_twitter {
	width: 48px;
	height: 48px;
	display: inline-block;
	float: left;
}

.kc_twitter_feed .description,
.kc_twitter_feed .user_twitter span {
	display: block;
}

.kc_twitter_follow i {
	margin-right: 5px;
	color: #1b95e0;
	font-size: 20px;
}

.kc_twitter_feed .kc_twitter_follow {
	line-height: 25px;
	float: right;
	padding: 2px 5px;
}

.tweet_reply a i,
.tweet_retweet a i {
	font-size: 17px;
}

.kc_twitter_feed.kc_twitter_style-1 .kc_tweet_icon {
	float: left;
}

.kc_twitter_feed.kc_twitter_style-1 .tweet_desc.show_avatar {
	margin-left: 58px;
}

.kc_twitter_feed.kc_twitter_style-1 .tweet_desc .user_twitter {
	margin-left: -58px;
}

.kc_twitter_feed .user_twitter {
	text-align: left;
}

.kc_twitter_feed .user_twitter img {
	float: left;
	margin-right: 10px;
	border-radius: 5px;
}

.kc_twitter_feed .tweet_desc .name {
	font-weight: 800;
}

.kc_twitter_feed .tweet_desc .screen_name {
	color: #8899a6;
}

.kc_twitter_feed .tweet_user {
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
	padding-bottom: 20px;
}

.kc_counter_box h4,
.kc_counter_box i {
	margin-bottom: 15px;
}

.kc_wrap_twitter .result_twitter_feed {
	overflow-y: auto;
	padding: 20px 15px;
	border: 1px solid #e9eaed;
	height: 350px;
	background: #f5f8fa;
}

.kc_twitter_style-2 .button_follow_wrap {
	display: none;
}

.kc_twitter_feed.kc_twitter_style-2 .tweet_desc .user_twitter {
	float: none;
	display: block;
	margin-right: 0;
	text-align: center;
	width: 100%;
}

.kc_twitter_feed.kc_twitter_style-2 .tweet_desc .user_twitter img {
	margin-right: 0;
	float: none;
}

.kc_twitter_feed.kc_twitter_style-2.tweet_desc span {
	display: block;
}

.kc_twitter_feed.kc_twitter_style-2 .tweet_desc {
	text-align: center;
}

.kc_twitter_feed.kc_twitter_style-2 .tweet_user {
	text-align: center;
	margin-top: 20px;
	border: none;
}

.kc_twitter_feed.kc_twitter_style-2 .kc_twitter_follow {
	float: none;
}

.kc-pie-chart-wrapper,
.kc_counter_box {
	text-align: center;
}

.kc_counter_box .counterup {
	display: block;
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
}

.kc_counter_box i {
	display: inline-block;
	font-size: 45px;
}

.kc_box_wrap .one-second,
.kc_box_wrap .one-third,
.kc_box_wrap .two-third {
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.kc_box_wrap .one-third {
	width: 33.3%;
}

.kc_box_wrap .one-second {
	width: 50%;
}

.kc_box_wrap .two-third {
	width: 66.7%;
}

.kc-owl-post-carousel .owl-item {
	padding-right: 20px;
}

.kc-owl-post-carousel .owl-item .kc-read-more {
	font-size: 13px;
	padding: 9px 30px;
	border-radius: 25px;
	white-space: nowrap;
	border: 1px solid #e3e3e3;
	transition: all 0.3s ease;
}

.kc-owl-post-carousel .owl-item .kc-read-more:hover {
	background: #ccc;
	border: 0;
}

.kc-owl-post-carousel .owl-item .footer-button {
	padding: 15px 0;
	text-align: center;
}

.kc-owl-post-carousel .owl-item .list-item {
	box-shadow: 0 0 0 1px rgba(224, 224, 224, 0.5) inset;
	text-align: center;
	padding-bottom: 25px;
}

.kc-owl-post-carousel .in-post-content {
	text-align: justify;
}

.kc-owl-post-carousel .owl-item .image {
	margin-bottom: 20px;
	position: relative;
}

.kc-owl-post-carousel .owl-item .image .caption {
	background: rgba(0, 0, 0, 0.5);
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 5px 10px;
	margin: 0;
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.kc_single_image,
.kc_single_image figure {
	position: relative;
}

.kc-owl-post-carousel .owl-item .image .caption a {
	color: #fff;
	font-size: 16px;
}

.kc-owl-post-carousel .owl-item .title {
	overflow: hidden;
	padding: 20px 12px 0;
}

.kc-owl-post-carousel .owl-item .in-post-content {
	padding: 0 15px;
}

.kc-owl-post-carousel .owl-item .kc-entry_meta {
	margin-bottom: 10px;
	font-size: 80%;
}

.list-post-type .list-item {
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid #dbdbdb;
	float: left;
	width: 100%;
}

.list-post-type .list-item figure {
	float: left;
	width: 100%;
	margin-bottom: 25px;
}

.list-post-type .list-item img {
	display: block;
	max-width: 100%;
}

.list-post-type .list-item h3 {
	float: left;
	width: 100%;
	margin-bottom: 6px;
}

.list-post-type .list-item h3 a {
	display: block;
	color: #272727;
	font-size: 24px;
	transition: all 0.3s ease 0s;
}

.list-post-type .list-item h3 a:hover {
	color: #42bce2;
}

.kc-read-more {
	float: left;
	padding: 7px 30px;
	border: 1px solid #e4e4e4;
	border-radius: 30px;
	font-weight: 600;
	color: #505050;
	transition: all 0.3s ease 0s;
}

.kc-read-more:hover {
	background: #42bce2;
	border-color: #42bce2;
	color: #fff;
}

.kc-entry_meta > span {
	margin-right: 13px;
	font-size: 12px;
	font-weight: 500;
}

.kc-entry_meta > span i {
	color: #42bce2;
}

.kc-entry_meta > span a {
	color: #7a7a7a;
	transition: all 0.3s ease 0s;
}

.kc-entry_meta > span a:hover {
	color: #42bce2;
}

.kc-carousel-images .progressBar {
	width: 100%;
	background: #ededed;
}

.kc-carousel-images .progressBar .bar {
	width: 0;
	max-width: 100%;
	height: 4px;
	background: #7fc242;
}

.kc_accordion_section.group {
	padding-bottom: 8px;
}

.entry-content a {
	box-shadow: none;
}

.kc_accordion_content {
	border-bottom: 1px solid #eaeaea;
	border-top: none !important;
	float: left;
	width: 100%;
}

.kc_single_image {
	max-width: 100%;
	width: 100%;
	line-height: 0;
}

.kc_single_image > a {
	width: 100%;
	float: left;
	position: relative;
}

.kc_single_image p {
	margin: 10px 0;
	float: left;
	width: 100%;
}

.kc_image_empty {
	max-width: 100%;
}

.kc-image-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.6s ease;
	opacity: 0;
}

.kc-image-overlay i {
	font-size: 25px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	transition: all 0.3s ease;
	border: 2px solid #fff;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
}

.kc-image-overlay:hover i {
	border-radius: 10px;
}

.kc_single_image:hover .kc-image-overlay {
	background: rgba(58, 52, 42, 0.7);
	opacity: 1;
}

.list-post-type .kc-entry_meta span.tags-links {
	display: inline !important;
}

.kc-icon-wrapper i,
.list-post-type .kc-read-more {
	display: inline-block;
}

.kc-entry_meta {
	float: left;
	width: 100%;
	padding-bottom: 15px;
}

.list-post-type .text {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.kc-entry_meta i {
	margin-right: 5px;
}

.kc-sync2.owl-carousel.owl-theme {
	margin-top: 10px;
}

.kc-sync2 .owl-item.synced .item img {
	border: 1px solid #869791;
}

.kc-carousel-no-images {
	padding: 20px 0;
}

.kc-icon-wrapper i {
	color: #42bce2;
	font-size: 16px;
	text-align: center;
	line-height: 1em;
	transition: background-color 0.3s ease 0s, color 0.3s ease 0s,
		border-radius 0.3s ease 0s;
}

.kc-multi-icons-wrapper i {
	width: 1em;
	height: 1em;
	text-align: center;
	color: #fff;
	font-size: 20px;
}

.kc-multi-icons-wrapper a {
	padding: 10px;
	margin: 3px;
	background: #1e73be;
	line-height: 1;
	display: inline-block;
	border-radius: 3px;
}

.kc-multi-icons-wrapper a:last-child {
	margin-right: 0 !important;
}

.owl-nav-arrow.owl-theme .owl-controls .owl-buttons div {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 50px;
	margin-top: -25px;
	background: 0 0;
	opacity: 0;
	left: 50px;
	color: transparent;
	transition: all 0.3s ease;
	padding: 0;
	z-index: 9;
}

.owl-nav-arrow.owl-theme .owl-controls .owl-buttons .owl-next {
	right: 50px;
	left: initial;
}

.owl-nav-arrow.owl-theme .owl-controls .owl-buttons div:before {
	content: "\e605";
	color: #999;
	transition: all 0.6s ease;
	font-family: simple-line-icons;
	font-size: 50px;
	line-height: 50px;
	font-weight: 100;
}

.owl-nav-arrow.owl-theme .owl-controls .owl-buttons .owl-next:before {
	content: "\e606";
}

.owl-nav-arrow.owl-theme:hover .owl-controls .owl-buttons div {
	opacity: 1;
	left: 15px;
}

.owl-nav-arrow.owl-theme .owl-controls .owl-buttons div:hover:before {
	color: #666;
}

.owl-nav-arrow.owl-theme:hover .owl-controls .owl-buttons div.owl-next {
	right: 15px;
	left: initial;
}

.owl-nav-round.owl-theme .owl-controls .owl-buttons div {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	margin-top: -25px;
	background: #fafafa;
	opacity: 0;
	left: 50px;
	color: transparent;
	transition: all 0.3s ease;
	padding: 0;
	border: 1px solid #aaa;
	border-radius: 100%;
}

.owl-nav-round.owl-theme .owl-controls .owl-buttons .owl-next {
	right: 50px;
	left: initial;
}

.owl-nav-round.owl-theme .owl-controls .owl-buttons div:before {
	content: "\e605";
	color: #999;
	transition: all 0.6s ease;
	font-family: simple-line-icons;
	font-size: 20px;
	line-height: 40px;
	font-weight: 100;
	width: 40px;
	height: 40px;
	text-align: left;
	display: block;
	padding-left: 8px;
	margin-top: -1px;
}

.owl-nav-round.owl-theme .owl-controls .owl-buttons .owl-next:before {
	content: "\e606";
	padding-right: 8px;
	text-align: right;
}

.owl-nav-round.owl-theme:hover .owl-controls .owl-buttons div {
	opacity: 1;
	left: 15px;
}

.owl-nav-round.owl-theme .owl-controls .owl-buttons div:hover {
	background: #fff;
}

.owl-nav-round.owl-theme .owl-controls .owl-buttons div:hover:before {
	color: #666;
}

.owl-nav-round.owl-theme:hover .owl-controls .owl-buttons div.owl-next {
	right: 15px;
	left: initial;
}

@keyframes kc-spinner {
	0% {
		transform: scale(1) rotate(0);
	}

	100% {
		transform: scale(1) rotate(720deg);
	}
}

.kc-title-wrap {
	width: 100%;
}

.image_fadein_slider {
	display: inline-block;
	width: 100%;
}

.image_fadein_slider .image_fadein {
	display: inline-block;
	width: 100%;
	position: relative;
}

.image_fadein_slider img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	opacity: 0;
	transition: all ease 650ms;
}

.image_fadein_slider img.active {
	position: relative;
	opacity: 1;
	transition: all ease 850ms;
}

.image_fadein_slider .image_fadein.fast img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	opacity: 0;
	transition: all ease 350ms;
}

.image_fadein_slider .image_fadein.fast img.active {
	position: relative;
	opacity: 1;
	transition: all ease 550ms;
}

.image_fadein_slider .image_fadein.slow img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	opacity: 0;
	transition: all ease 950ms;
}

.image_fadein_slider .image_fadein.slow img.active {
	position: relative;
	opacity: 1;
	transition: all ease 1.15s;
}

.kc-blog-posts-4 {
	width: calc(100% + 30px) !important;
	margin-left: -15px;
	margin-right: -15px;
}

.kc-blog-posts-4 .kc-list-item-4 {
	float: left;
	width: 100%;
	position: relative;
}

.kc-blog-posts-4 .item {
	padding: 0 15px;
}

.meta-title {
	position: absolute;
	left: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(101, 100, 96, 0) 0,
		rgba(0, 0, 0, 0.35) 50%,
		rgba(0, 0, 0, 0.35) 100%
	);
	padding: 20px;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header {
	float: left;
	width: 100%;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header > a {
	float: left;
	width: 100%;
	overflow: hidden;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header > a img {
	display: block;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header .post-meta a.date-link {
	margin-left: 7px;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header .post-meta a.date-link:before {
	content: "|";
	margin-right: 7px;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header a img {
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header a:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.divider_line2 i,
.divider_line3 .line_text {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.kc-blog-posts-4 .kc-list-item-4 .post-meta {
	text-transform: uppercase;
	font-size: 12px;
	color: #fff;
	float: left;
	width: 100%;
}

.kc-blog-posts-4 .kc-list-item-4 .post-meta a {
	text-transform: capitalize;
	font-size: 12px;
	color: #fff;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header .post-title-alt {
	float: left;
	width: 100%;
	line-height: 1.4;
	margin: 4px 0 10px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header .post-title-alt a {
	color: #fff;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header .post-title-alt a:hover {
	color: #42bce2;
}

.kc-blog-posts-1 .kc-list-item-1 {
	position: relative;
	min-height: 200px;
}

.kc-blog-posts-1 .kc-list-item-1 figure {
	width: 100%;
	display: inline-block;
}

.kc-blog-posts-1 .kc-list-item-1 .post-details {
	position: absolute;
	padding: 40px 20px 30px;
	width: 100%;
	bottom: 0;
	text-align: left;
	background: rgba(255, 255, 255, 0.7);
}

.kc-blog-posts-1 .kc-list-item-1 .post-title-alt {
	margin: 0 0 15px;
}

.kc-blog-posts-1 .kc-list-item-1 .post-title-alt a {
	color: #000;
	display: block;
	font-size: 22px;
	text-transform: uppercase;
}

.kc-blog-posts-1 .kc-list-item-1 .post-title-alt a:hover {
	color: #555;
}

.kc-blog-posts-1 .kc-list-item-1 .post-date {
	margin-bottom: 10px;
	color: #999;
	font-size: 12px;
	font-style: italic;
}

.kc-blog-posts-1 .kc-list-item-1 .post-date .kc-post-author {
	margin-right: 8px;
	padding-right: 8px;
	border-right: 1px solid #ddd;
}

.kc-blog-posts-1 .kc-list-item-1 .post-date .post-cats {
	margin-left: 8px;
	padding-left: 8px;
	border-left: 1px solid #ddd;
}

.kc-blog-posts-1 .kc-list-item-1 .post-date .kc-post-author a,
.kc-blog-posts-1 .kc-list-item-1 .post-date .post-cats a {
	color: #333;
}

.kc-blog-posts-1 .kc-list-item-1 .post-date .kc-post-author a:hover,
.kc-blog-posts-1 .kc-list-item-1 .post-date .post-cats a:hover {
	color: #000;
}

.kc-blog-posts-1 .kc-list-item-1 .post-details .btn {
	display: inline-block;
	font-size: 12px;
	padding: 10px 20px;
	line-height: 1;
	color: #272727;
	text-transform: uppercase;
	border: 2px solid #42bce2;
}

.kc-blog-posts-1 .kc-list-item-1 .post-details .btn:hover {
	background: #42bce2;
	color: #fff;
}

.kc-blog-posts-2 .kc-list-item-2 {
	float: left;
	width: 100%;
	border: 1px solid #ddd;
	padding: 20px;
	margin-bottom: 30px;
}

.kc-blog-posts-2 .kc-list-item-2 .post-item-left {
	float: left;
	width: 50%;
	padding-right: 30px;
}

.kc-blog-posts-2 .kc-list-item-2 .post-item-left > p,
.kc-blog-posts-2 .kc-list-item-2 .post-item-right > p {
	font-size: 14px;
	color: #666;
	float: left;
	width: 100%;
	margin-bottom: 15px;
}

.kc-blog-posts-2 .kc-list-item-2 .post-item-right {
	float: left;
	width: 50%;
}

.kc-blog-posts-2 .kc-list-item-2 .post-title-alt {
	margin: 0 0 20px;
	float: left;
	width: 100%;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 20px;
}

.kc-blog-posts-2 .kc-list-item-2 .post-title-alt a {
	display: block;
	color: #333;
}

.kc-blog-posts-2 .kc-list-item-2 .post-meta {
	float: left;
	width: 100%;
	margin-bottom: 20px;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	line-height: 38px;
}

.kc-blog-posts-2 .kc-list-item-2 .post-meta span {
	float: left;
	margin-right: 15px;
	font-size: 12px;
}

.kc-blog-posts-2 .kc-list-item-2 .post-meta span i {
	margin-right: 5px;
	color: #42bce2;
	font-size: 12px;
}

.kc-blog-posts-2 .kc-list-item-2 .post-meta span a {
	color: #999;
}

.kc-blog-posts-2 .kc-list-item-2 .post-meta span a:hover {
	color: #000;
}

.kc-blog-posts .kc-post-2-button {
	float: left;
	padding: 10px 20px;
	border: 1px solid #ddd;
	border-radius: 2px;
	color: #000;
	font-size: 12px;
	line-height: 1;
}

.kc-blog-posts .kc-post-2-button:hover {
	border-color: #42bce2;
	background: #42bce2;
	color: #fff;
}

.kc-blog-posts-3.kc-blog-grid {
	width: calc(100% + 30px);
	margin-left: -15px;
	margin-right: -15px;
}

.kc-blog-posts-3.kc-blog-grid .post-grid.grid-1 {
	width: 100%;
	float: left;
	padding: 0 15px;
}

.kc-blog-posts-3.kc-blog-grid .post-grid.grid-2 {
	width: 50%;
	float: left;
	padding: 0 15px;
}

.kc-blog-posts-3.kc-blog-grid .post-grid.grid-3 {
	width: 33.33333333333%;
	padding: 0 15px;
	float: left;
}

.kc-blog-posts-3.kc-blog-grid .post-grid.grid-4 {
	width: 25%;
	float: left;
	padding: 0 15px;
}

.kc-blog-posts-3.kc-blog-grid .post-grid.grid-5 {
	width: 20%;
	float: left;
	padding: 0 15px;
}

.kc-blog-posts-3.kc-blog-grid .post-grid.grid-6 {
	width: 16.5%;
	float: left;
	padding: 0 15px;
}

.kc-blog-posts-3.kc-blog-grid .post-grid img {
	max-width: 100%;
	transition: all 0.3s ease 0;
}

.kc-blog-posts-3 .kc-list-item-3 {
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

.kc-blog-posts-3 .kc-list-item-3 > a {
	float: left;
	width: 100%;
}

.kc-blog-posts-3 .kc-list-item-3 > a img {
	display: block;
}

.kc-blog-posts-3 .kc-list-item-3 .content {
	float: left;
	width: 100%;
	padding: 26px;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.kc-button-7 a:hover,
.kc-button-9 a:hover {
	box-shadow: 0 11px 3px -7px #ccc !important;
}

.kc-blog-posts-3 .kc-list-item-3 .entry-thumb-link:hover img {
	opacity: 0.4;
}

.kc-blog-posts-3 .kc-list-item-3 .entry-meta {
	text-transform: uppercase;
	font-size: 12px;
	color: #b4b4b4;
	float: left;
	width: 100%;
	margin: 5px 0 10px;
}

.kc-blog-posts-3 .kc-list-item-3 .entry-meta .entry-date,
.kc-blog-posts-3 .kc-list-item-3 .entry-meta .kc-post-author {
	padding-right: 7px;
	margin-right: 7px;
	border-right: 1px solid #e4e4e4;
}

.kc-blog-posts-3 .kc-list-item-3 .entry-meta a {
	text-transform: capitalize;
	font-size: 12px;
	color: #42bce2;
}

.kc-blog-posts-3 .kc-list-item-3 .post-title-alt {
	float: left;
	width: 100%;
	line-height: 1.4;
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
}

.kc-blog-posts-3 .kc-list-item-3 .post-content p {
	color: #7a7a7a;
	line-height: 26px;
	font-size: 14px;
}

.kc-blog-posts-3 .kc-list-item-3 .post-title-alt a {
	color: #272727;
}

.kc-blog-posts-3 .kc-list-item-3 .post-title-alt a:hover {
	color: #42bce2;
}

.kc-blog-posts-3 .kc-list-item-3 .entry-excerpt p {
	font-size: 14px;
	color: #888;
}

.divider_line {
	float: left;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
}

.divider_line .divider_inner {
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #ccc;
	border-top: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
}

.divider_line2 {
	height: 1px;
	position: relative;
}

.divider_line2 i {
	color: #fff;
	width: 27px;
	height: 27px;
	border-radius: 100%;
	background-color: #d3d3d3;
	text-align: center;
	vertical-align: middle;
	line-height: 27px;
	position: absolute;
}

.divider_line3 {
	position: relative;
}

.divider_line3 .line_text {
	text-transform: uppercase;
	background: #fff;
	padding: 0 10px;
	position: absolute;
}

.message-boxes i {
	margin-right: 7px;
	float: left;
}

.message-box-wrap {
	padding: 20px;
	border-radius: 0;
	border: 2px solid #eee;
	font-size: 14px;
}

.kc-close-but {
	width: 10px;
	height: 10px;
	float: right;
	border: none;
	margin: 8px;
	cursor: pointer;
	font-size: 0;
	background: url(../../../plugins/kingcomposer/assets/frontend/images/icon-remove.png)
		center top no-repeat;
	text-indent: -9999px;
}

button.kc-close-but:hover {
	background-color: rgba(51, 51, 51, 0);
}

.kc-filters-alignCenter {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	line-height: 21px;
	color: #dadada;
}

.kc-filter-item {
	color: #949494;
	cursor: pointer;
	font: 400 13px/21px "Open Sans", sans-serif;
	padding: 0 12px;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: visible;
	margin: 0 0 10px;
	display: inline-block;
}

.kc-filter-item-active.kc-filter-item {
	color: #4183d7;
}

.kc-caption-zoom {
	float: left;
	position: relative;
	width: 640px;
	height: 360px;
	margin: 0 auto;
	overflow: hidden;
}

.kc-caption-defaultWrap {
	position: absolute;
	top: 0;
	left: 0;
}

.kc-caption-defaultWrap img {
	transition: 0.4s ease;
}

.kc-caption-zoom .kc-caption:hover .kc-caption-defaultWrap img {
	transform: scale(1.08);
}

.kc-caption-activeWrap {
	width: 100%;
	z-index: 2;
	height: 100%;
}

.kc-caption-zoom .kc-caption:hover .kc-caption-activeWrap {
	position: absolute;
	opacity: 1;
}

.kc-caption-activeWrap .kc-caption-body {
	padding: 12px 30px;
	text-align: center;
}

.kc-caption-zoom .kc-caption-activeWrap .kc-caption-body {
	padding-top: 120px;
}

.kc-caption-body .kc-caption-title {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 21px;
}

.kc-caption-body .kc-caption-desc {
	color: #aaa;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}

.kc-caption-zoom .kc-caption-activeWrap {
	opacity: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.9);
	transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.cbp-l-filters-button .cbp-filter-item:hover .cbp-filter-counter {
	bottom: 125%;
}

.kc_tooltip {
	position: relative;
	display: inline-block;
	border-bottom: initial;
}

.kc_tooltip span {
	background: #454545;
	border-radius: 3px;
	bottom: 117%;
	color: #fff;
	font-size: 14px;
	left: 50%;
	position: absolute;
	width: 200px;
	z-index: 9999;
	margin: 0 !important;
	padding: 10px;
	text-align: center;
	transform: translateX(-50%);
	transition: all 0.3s ease-in-out 0s;
	opacity: 0;
	visibility: hidden;
}

.kc_tooltip .fati17 {
	width: 50px;
	height: 50px;
	color: #fff;
	font-size: 27px;
	display: inline-block;
	vertical-align: middle;
	line-height: 50px;
	border-radius: 100%;
	text-align: center;
	background-color: #181818;
	transition: all 0.3s ease 0s;
}

.kc_tooltip[data-position="top"] span:before {
	background: #454545;
	z-index: -1;
	bottom: -9px;
	content: "";
	left: 50%;
	display: block;
	height: 10px;
	width: 10px;
	position: absolute;
	border-width: 10px;
	margin-left: -9px;
	transform: rotate(45deg) translateY(-50%);
}

.kc_tooltip[data-position="right"] span:before {
	background: #454545;
	z-index: -1;
	top: 50%;
	margin: 0 !important;
	content: "";
	left: -8px;
	display: block;
	height: 10px;
	width: 10px;
	position: absolute;
	border-width: 10px;
	transform: rotate(45deg) translateY(-50%);
}

.kc_tooltip[data-position="right"] span,
.kc_tooltip[data-position="left"] span {
	bottom: initial !important;
	top: 50%;
	transform: translateY(-50%);
}

.kc_tooltip[data-position="bottom"] span:before {
	background: #454545;
	z-index: -1;
	content: "";
	left: 50%;
	margin-left: -10px;
	top: 0;
	display: block;
	height: 10px;
	width: 10px;
	position: absolute;
	border-width: 10px;
	transform: rotate(45deg) translateY(-50%);
}

.kc_tooltip[data-position="bottom"] span {
	transform: translateX(-50%);
}

.kc_tooltip[data-position="left"] span:before {
	background: #454545;
	top: 50%;
	margin: 0;
	content: " ";
	right: 0;
	display: block;
	height: 10px;
	width: 10px;
	position: absolute;
	border-width: 10px;
	transform: rotate(45deg) translateY(-50%);
}

.but_large1 {
	color: #fff;
	padding: 18px 50px;
	background-color: ". $bg_color .";
	border-radius: 3px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.but_large1:hover {
	color: #fff;
	background-color: #2a363f;
}

.kc_tooltip:hover span {
	opacity: 1;
	visibility: visible;
}

.content-button a {
	transition: all 0.3s ease 0s;
}

.kc_tooltip.style2 img {
	display: block;
}

.kc-image-hover-effects {
	position: relative;
	overflow: hidden;
}

.kc-image-hover-effects > a {
	float: left;
	width: 100%;
}

.kc-image-hover-effects .overlay-effects {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	text-align: center;
}

.kc-image-hover-effects .overlay-effects,
.kc-image-hover-effects .overlay-effects .content-button a,
.kc-image-hover-effects .overlay-effects .content-desc,
.kc-image-hover-effects .overlay-effects .content-title,
.kc-image-hover-effects a img {
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}

.kc-image-hover-effects img {
	float: left;
	max-width: 100%;
	transition: all 0.3s ease 0s;
}

.kc-image-hover-effects .overlay-effects .content-title {
	color: #fff;
	text-transform: uppercase;
	font-size: 25px;
	font-weight: 600;
	margin: 20px 0 15px;
}

.kc-image-hover-effects .overlay-effects .content-desc {
	color: rgba(255, 255, 255, 0.7);
}

.kc-img-effects-1:hover .overlay-effects {
	opacity: 1;
}

.kc-img-effects-1 .overlay-effects {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kc-img-effects-1 .overlay-effects .content-title {
	margin: 0;
}

.kc-img-effects-2 .overlay-effects .content-title {
	margin: 0 0 4px;
	font-size: 20px;
}

.kc-img-effects-2 .overlay-effects .content-desc {
	margin: 0;
}

.kc-img-effects-2:hover .overlay-effects {
	opacity: 1;
	transform: scale(1);
}

.kc-img-effects-2:hover a img {
	transform: scale(1.2);
}

.kc-img-effects-3 .overlay-effects {
	padding: 20px;
	text-align: left;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
}

.kc-img-effects-3 .overlay-effects .content-title {
	margin: 0 0 7px;
	opacity: 0;
	transform: translate(-40px, 0);
}

.kc-img-effects-3 .overlay-effects .content-desc {
	margin: 0;
	opacity: 0;
	transform: translate(-40px, 0);
	transition-delay: 0.15s;
}

.kc-img-effects-3:hover .overlay-effects {
	opacity: 1;
	transform: scale(1);
}

.kc-img-effects-3:hover .overlay-effects .content-desc,
.kc-img-effects-3:hover .overlay-effects .content-title {
	opacity: 1;
	transform: translate(0, 0);
}

.kc-img-effects-4 .overlay-effects .content-desc,
.kc-img-effects-4 .overlay-effects .content-title {
	opacity: 0;
	transform: translate(0, -40px);
}

.kc-img-effects-4 .overlay-effects .content-button a {
	opacity: 0;
}

.kc-img-effects-4 .overlay-effects .content-desc {
	transition-delay: 0.2s;
}

.kc-img-effects-4:hover .overlay-effects .content-desc,
.kc-img-effects-4:hover .overlay-effects .content-title {
	opacity: 1;
	transform: translate(0, 0);
}

.kc-img-effects-4:hover a img {
	transform: scale(1.1);
}

.kc-img-effects-4:hover .overlay-effects,
.kc-img-effects-4:hover .overlay-effects .content-button a {
	opacity: 1;
}

.kc-img-effects-5 .overlay-effects {
	padding: 20px;
	text-align: left;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kc-button-7 a,
.kc-button-8 a {
	line-height: 40px;
	text-align: center;
}

.kc-img-effects-5 .overlay-effects i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: rgba(255, 255, 255, 0.8);
	color: #333;
	text-align: center;
	font-size: 14px;
	border-radius: 50%;
}

.kc-button-1 a,
.kc-button-main a {
	border: 2px solid #42bce2;
	padding: 10px 30px;
}

.kc-img-effects-5:hover .overlay-effects {
	opacity: 1;
}

.kc-image-hover-effects.slide_bottom:hover img,
.kc-image-hover-effects.slide_left:hover img,
.kc-image-hover-effects.slide_right:hover img,
.kc-image-hover-effects.slide_top:hover img {
	transform: none;
}

.kc-image-hover-effects.slide_left .overlay-effects {
	opacity: 1;
	background: #333;
	transform: translateX(-100%);
}

.kc-image-hover-effects.slide_right .overlay-effects {
	opacity: 1;
	background: #333;
	transform: translateX(100%);
}

.kc-image-hover-effects.slide_top .overlay-effects {
	opacity: 1;
	background: #333;
	transform: translateY(-100%);
}

.kc-image-hover-effects.slide_bottom .overlay-effects {
	opacity: 1;
	background: #333;
	transform: translateY(100%);
}

.kc-image-hover-effects.slide_bottom:hover .overlay-effects,
.kc-image-hover-effects.slide_left:hover .overlay-effects,
.kc-image-hover-effects.slide_right:hover .overlay-effects,
.kc-image-hover-effects.slide_top:hover .overlay-effects {
	transform: translate(0, 0);
}

.kc-image-hover-effects.push_bottom .overlay-effects,
.kc-image-hover-effects.push_left .overlay-effects,
.kc-image-hover-effects.push_right .overlay-effects,
.kc-image-hover-effects.push_top .overlay-effects {
	background: #333;
	opacity: 1;
}

.kc-image-hover-effects.push_bottom img,
.kc-image-hover-effects.push_left img,
.kc-image-hover-effects.push_right img,
.kc-image-hover-effects.push_top img {
	z-index: 2;
	position: relative;
}

.kc-image-hover-effects.push_left:hover img {
	transform: translateX(100%);
}

.kc-image-hover-effects.push_right:hover img {
	transform: translateX(-100%);
}

.kc-image-hover-effects.push_top:hover img {
	transform: translateY(100%);
}

.kc-image-hover-effects.push_bottom:hover img {
	transform: translateY(-100%);
}

.kc-image-hover-effects.zoom_in img {
	transform: scale(1);
}

.kc-image-hover-effects.zoom_in:hover img,
.kc-image-hover-effects.zoom_out img {
	transform: scale(1.2);
}

.kc-image-hover-effects.zoom_out:hover img {
	transform: scale(1);
}

.kc-image-hover-effects.tranlate {
	overflow: inherit;
}

.kc-image-hover-effects.tranlate .overlay-effects {
	background: #333;
	transition: all 0.3s ease 0s;
}

.kc-image-hover-effects.tranlate:hover .overlay-effects {
	top: 15px;
	left: 15px;
}

.kc-image-hover-effects.overlay_scale_in .overlay-effects {
	transition: all 0.3s ease 0s;
	background: #333;
	transform: scale(0.75);
}

.kc-image-hover-effects.overlay_scale_in:hover .overlay-effects {
	transform: scale(1);
}

.kc-image-hover-effects.overlay_scale_out .overlay-effects {
	transition: all 0.3s ease 0s;
	background: #333;
	transform: scale(1);
}

.kc-image-hover-effects.overlay_scale_out:hover .overlay-effects {
	transform: scale(0.9);
}

.kc-pro-button a {
	display: inline-block;
	transition: all 0.3s;
	text-transform: uppercase;
}

.kc-button-2 a:after,
.kc-button-3 a:after {
	content: "";
	top: 0;
	left: 0;
	transition: all 0.3s ease 0s;
}

.kc-button-main a {
	color: #fff;
	background: #42bce2;
}

.kc-button-1 a,
.kc-button-main a:active,
.kc-button-main a:hover {
	background: #fff;
	color: #42bce2;
}

.kc-button-1 a {
	z-index: 1;
}

.kc-button-1 a:hover {
	border-radius: 10px;
	border-style: dotted;
	color: #42bce2;
}

.kc-button-2 a,
.kc-button-3 a {
	border: 2px solid #42bce2;
	padding: 10px 30px;
}

.kc-button-2 a {
	color: #fff;
	background: #42bce2;
	position: relative;
	z-index: 1;
}

.kc-button-2 a:after {
	position: absolute;
	width: 0;
	height: 100%;
	background: #fff;
	z-index: -1;
}

.kc-button-2 a:hover {
	color: #42bce2;
}

.kc-button-2 a:active:after,
.kc-button-2 a:hover:after {
	width: 100%;
}

.kc-button-3 a {
	color: #fff;
	background: #42bce2;
	z-index: 1;
	overflow: hidden;
	position: relative;
}

.kc-button-3 a:after {
	position: absolute;
	width: 100%;
	height: 0;
	background: #fff;
	z-index: -1;
}

.kc-button-3 a:hover {
	color: #42bce2;
}

.kc-button-3 a:hover:after {
	height: 100%;
}

.kc-button-4 a {
	border: 3px solid #42bce2;
	color: #fff;
	background: #42bce2;
	z-index: 1;
	overflow: hidden;
	position: relative;
	padding: 10px 30px;
}

.kc-button-4 a:after,
.kc-button-4 a:before {
	width: 0;
	position: absolute;
	content: "";
	height: 100%;
	top: 0;
	background: #fff;
	transition: all 0.3s ease 0s;
	z-index: -1;
}

.kc-button-4 a:after {
	left: 50%;
}

.kc-button-4 a:before {
	right: 50%;
}

.kc-button-5 a,
.kc-button-6 a {
	background: #42bce2;
	padding: 10px 30px;
}

.kc-button-4 a:hover {
	color: #42bce2;
}

.kc-button-4 a:hover:after,
.kc-button-4 a:hover:before {
	width: 100%;
}

.kc-button-5 a {
	color: #fff;
}

.kc-button-5 a:hover {
	color: #fff;
	animation-name: pulse;
	animation-duration: 0.5s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
}

.creative_icon_right {
	margin: 0 0 0 4px;
}

.creative_icon_left,
.kc-button-6 a .creative_icon_left i {
	margin: 0 4px 0 0;
}

.kc-button-6 a,
.kc-button-6 a:hover {
	color: #fff;
}

.kc-button-6 a .creative_icon_right i {
	margin: 0 0 0 4px;
}

.kc-button-6 a:hover span i {
	color: #fff;
	animation-name: bounce;
	animation-duration: 0.6s;
	animation-timing-function: linear;
}

.kc-button-7 a {
	color: #fff;
	position: relative;
	background-color: #3fa962;
	border: 1px solid rgba(255, 255, 255, 0.15);
	letter-spacing: 0.2px;
	min-height: 40px;
	overflow: visible;
	display: inline-block;
	transition: all 0.25s ease-in-out;
	padding: 3px 25px;
}

.kc-button-10 a,
.kc-team,
.kc-team-2 .box-right,
.kc-team-3 {
	overflow: hidden;
}

.kc-button-7 a:after,
.kc-button-7 a:before {
	content: "";
	display: block;
	position: absolute;
	width: 20%;
	height: 30%;
	transition: all 0.3s ease 0s;
}

.kc-button-7 a:before {
	border-top: 2px solid rgba(255, 255, 255, 0.8);
	border-left: 2px solid rgba(255, 255, 255, 0.8);
	left: 5px;
	top: 5px;
}

.kc-button-7 a:after {
	border-bottom: 2px solid rgba(255, 255, 255, 0.8);
	border-right: 2px solid rgba(255, 255, 255, 0.8);
	bottom: 5px;
	right: 5px;
}

.kc-button-7 a i {
	margin-left: 6px;
}

.kc-button-7 a .creative_icon_left i {
	margin: 0 6px 0 0;
}

.kc-button-7 a:hover {
	color: #fff;
}

.kc-button-7 a:hover:after,
.kc-button-7 a:hover:before {
	width: calc(100% - 10px);
	height: calc(100% - 10px);
}

.kc-button-8 a {
	color: #fff;
	position: relative;
	background-color: #42bce2;
	letter-spacing: 0.2px;
	min-height: 40px;
	display: inline-block;
	transition: all 0.25s ease-in-out;
	padding: 8px 34px;
	border-radius: 30px;
	text-transform: capitalize;
}

.kc-button-8 a .creative_title,
.kc-button-8 a i,
.kc-button-9 a {
	transition: all 0.3s ease 0s;
}

.kc-button-8 a .creative_icon_right i {
	margin: 0 0 0 4px;
}

.kc-button-8 a:hover .creative_icon_right i {
	margin: 0 0 0 15px;
}

.kc-button-8 a .creative_icon_left i {
	margin: 0 4px 0 0;
}

.kc-button-8 a:hover .creative_icon_left i {
	margin: 0 15px 0 0;
}

.kc-button-8 a:hover .creative_title,
.kc-button-8 a:hover i {
	color: #fff;
}

.kc-button-9 a {
	padding: 10px 30px;
	color: #fff;
	position: relative;
	background: #42bce2;
	transform-style: preserve-3d;
}

.kc-button-9 a:hover,
.kc-button-9 a:hover:before {
	transform: translateY(-5px);
}

.kc-button-9 a:before {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: "";
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 0, 0, 0.35) 0,
		rgba(0, 0, 0, 0) 80%
	);
	transition-property: transform, opacity;
}

.kc-button-9 a:hover {
	color: #fff;
}

.kc-button-10 a {
	padding: 10px 30px;
	color: #fff;
	position: relative;
	background: #42bce2;
	transition: all 0.3s ease 0s;
}

.kc-button-10 a:after {
	background: #fff;
	content: "";
	height: 155px;
	left: -75px;
	opacity: 0.2;
	position: absolute;
	top: -50px;
	transform: rotate(35deg);
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
}

.kc-team-3,
.kc-video-bg {
	position: relative;
}

.kc-button-10 a:hover {
	color: #fff;
}

.kc-button-10 a:hover:after {
	left: 120%;
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.kc-infobox-default {
	float: left;
	padding: 60px 60px 80px;
	text-align: left;
	background-color: #fff;
	border: 1px solid #eee;
	transition: all 0.3s ease;
	width: 100%;
}

.kc-infobox-default i {
	font-size: 30px;
	color: #272727;
	padding-bottom: 32px;
}

.kc-infobox-1 h3,
.kc-infobox-default h3 {
	font-size: 16px;
	font-style: normal;
	line-height: 23px;
}

.kc-infobox-default h3 {
	margin-bottom: 20px;
	font-weight: 600;
}

.kc-infobox-default.active,
.kc-infobox-default:hover {
	background-color: #42bce2;
	transition: all 0.3s ease;
}

.kc-infobox-default.active,
.kc-infobox-default.active h5,
.kc-infobox-default.active i,
.kc-infobox-default:hover,
.kc-infobox-default:hover h5,
.kc-infobox-default:hover i {
	color: #fff;
}

.kc-infobox-1 h3 {
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: inline-block;
}

.kc-infobox-1 i {
	color: #42bce2;
	font-size: 22px;
	padding-right: 16px;
	padding-top: 2px;
	float: left;
}

.kc-infobox-1 p {
	float: left;
	margin: 8px 0 16px;
	width: 100%;
}

.kc-infobox-1 .kc-infobox-button1 {
	color: #272727;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	transition: all 0.3s ease;
	float: left;
}

.kc-infobox-1 .kc-infobox-button1:hover {
	color: #727272;
}

.kc-dropcaps .dropcaps-text {
	position: relative;
	display: inline-block;
	float: left;
	height: 45px;
	width: 45px;
	line-height: 45px;
	font-size: 40px;
	background: #42bce2;
	color: #fff;
	font-weight: 700;
	text-align: center;
	margin: 5px 18px 0 0;
}

.kc-call-to-action {
	background: #fafafa;
	padding: 30px 50px;
	display: table;
	width: 100%;
}

.kc-call-to-action .kc-cta-desc h2,
.kc-call-to-action .kc-cta-text {
	margin: 0 0 20px;
}

.kc-call-to-action .kc-cta-button a {
	background: #34495e;
	text-transform: uppercase;
	color: #fff;
	float: right;
	padding: 10px 25px;
	transition: all 0.3s ease 0s;
}

.kc-call-to-action .kc-cta-button a:hover {
	background-color: #ff2a40;
}

.kc-call-to-action.kc-cta-2 .kc-cta-button a {
	float: none;
	display: inline-block;
}

.kc-cta-3.kc-is-button .kc-cta-desc {
	width: 75%;
	display: table-cell;
	vertical-align: middle;
}

.kc-cta-3 .kc-cta-text p {
	margin: 0;
}

.kc-cta-3 .kc-cta-button {
	width: 25%;
	display: table-cell;
	vertical-align: middle;
}

.kc-cta-1,
.kc-cta-2,
.kc-image-hover-effects,
.kc-team {
	width: 100%;
	float: left;
}

.kc-cta-3 .kc-cta-button a {
	display: inline-block;
}

.kc-cta-1 .kc-cta-button {
	float: left;
}

.kc-cta-1 .kc-cta-button a {
	display: block;
}

.kc-cta-2 {
	text-align: center;
}

.kc-team {
	text-align: center;
	transition: all 0.3s ease 0s;
}

.kc-team .content-socials a {
	text-align: center;
	display: inline-block;
	margin: 0 5px 25px;
	width: 35px;
	height: 35px;
	font-size: 18px;
	color: #fff;
	border: 1px solid #42bce2;
	background-color: #42bce2;
	border-radius: 2px;
	line-height: 35px;
}

.kc-team .content-socials {
	float: left;
	width: 100%;
}

.kc-team.kc-team-3 .content-socials {
	margin-top: 25px;
}

.content-subtitle {
	float: left;
	width: 100%;
}

.kc-team .content-desc {
	margin: 0 0 20px;
	float: left;
	width: 100%;
}

.kc-team-2 {
	text-align: left;
}

.kc-team-2 .content-title {
	margin: 0;
	float: left;
	width: 100%;
}

.kc-team-2 .content-image {
	float: left;
	max-width: 35%;
	padding-right: 20px;
}

.kc-team-3 .content-image img {
	float: left;
}

.kc-team-2 .content-desc {
	margin: 13px 0 20px;
}

.kc-team-3:hover .overlay {
	transform: translateY(0);
	opacity: 1;
}

.kc-team-3 .overlay {
	width: 100%;
	height: 100%;
	padding-top: 30px;
	opacity: 0;
	transition: all 0.3s ease 0s;
	transform: translateY(100%);
	background: rgba(0, 0, 0, 0.4);
}

.kc-team-3 .content-subtitle,
.kc-team-3 .content-title {
	color: #fff;
}

.kc-team-3 .content-desc {
	margin: 0 0 25px;
	color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 479px) {
	.kc-blog-posts-2 .kc-list-item-2 .post-item-left,
	.kc-blog-posts-2 .kc-list-item-2 .post-item-right,
	.kc-blog-posts-3.kc-blog-grid .post-grid.grid-2,
	.kc-blog-posts-3.kc-blog-grid .post-grid.grid-3,
	.kc-blog-posts-3.kc-blog-grid .post-grid.grid-4 {
		width: 100%;
	}

	div.dark_rounded .pp_content_container .pp_left,
	div.dark_rounded .pp_content_container .pp_right {
		padding: 0;
	}

	div.pp_pic_holder {
		width: 85% !important;
		left: 7.5% !important;
	}

	div.dark_rounded .pp_content,
	div.pp_pic_holder img {
		width: 100% !important;
		height: auto !important;
	}
}

@media only screen and (min-width: 480px) and (max-width: 999px) {
	.kc-blog-posts-2 .kc-list-item-2 .post-item-left,
	.kc-blog-posts-2 .kc-list-item-2 .post-item-right,
	.kc-blog-posts-3.kc-blog-grid .post-grid.grid-2,
	.kc-blog-posts-3.kc-blog-grid .post-grid.grid-3,
	.kc-blog-posts-3.kc-blog-grid .post-grid.grid-4 {
		width: 50%;
	}
}

@media screen and (min-width: 768px) {
	.kc-animated {
		opacity: 0;
	}

	.animated {
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
	}

	.animated.infinite {
		-webkit-animation-iteration-count: infinite;
		animation-iteration-count: infinite;
	}

	.animated.bounceIn {
		-webkit-animation-duration: 0.75s;
		animation-duration: 0.75s;
	}

	@-webkit-keyframes bounce {
		20%,
		53%,
		80%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}

		40%,
		43% {
			-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
			animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
			-webkit-transform: translate3d(0, -30px, 0);
			transform: translate3d(0, -30px, 0);
		}

		70% {
			-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
			animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
			-webkit-transform: translate3d(0, -15px, 0);
			transform: translate3d(0, -15px, 0);
		}

		90% {
			-webkit-transform: translate3d(0, -4px, 0);
			transform: translate3d(0, -4px, 0);
		}
	}

	@keyframes bounce {
		20%,
		53%,
		80%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}

		40%,
		43% {
			-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
			animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
			-webkit-transform: translate3d(0, -30px, 0);
			transform: translate3d(0, -30px, 0);
		}

		70% {
			-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
			animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
			-webkit-transform: translate3d(0, -15px, 0);
			transform: translate3d(0, -15px, 0);
		}

		90% {
			-webkit-transform: translate3d(0, -4px, 0);
			transform: translate3d(0, -4px, 0);
		}
	}

	.bounce {
		-webkit-animation-name: bounce;
		animation-name: bounce;
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}

	@-webkit-keyframes flash {
		50%,
		from,
		to {
			opacity: 1;
		}

		25%,
		75% {
			opacity: 0;
		}
	}

	@keyframes flash {
		50%,
		from,
		to {
			opacity: 1;
		}

		25%,
		75% {
			opacity: 0;
		}
	}

	.flash {
		-webkit-animation-name: flash;
		animation-name: flash;
	}

	@-webkit-keyframes pulse {
		from,
		to {
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}

		50% {
			-webkit-transform: scale3d(1.05, 1.05, 1.05);
			transform: scale3d(1.05, 1.05, 1.05);
		}
	}

	@keyframes pulse {
		from,
		to {
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}

		50% {
			-webkit-transform: scale3d(1.05, 1.05, 1.05);
			transform: scale3d(1.05, 1.05, 1.05);
		}
	}

	.pulse {
		-webkit-animation-name: pulse;
		animation-name: pulse;
	}

	@-webkit-keyframes rubberBand {
		from,
		to {
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}

		30% {
			-webkit-transform: scale3d(1.25, 0.75, 1);
			transform: scale3d(1.25, 0.75, 1);
		}

		40% {
			-webkit-transform: scale3d(0.75, 1.25, 1);
			transform: scale3d(0.75, 1.25, 1);
		}

		50% {
			-webkit-transform: scale3d(1.15, 0.85, 1);
			transform: scale3d(1.15, 0.85, 1);
		}

		65% {
			-webkit-transform: scale3d(0.95, 1.05, 1);
			transform: scale3d(0.95, 1.05, 1);
		}

		75% {
			-webkit-transform: scale3d(1.05, 0.95, 1);
			transform: scale3d(1.05, 0.95, 1);
		}
	}

	@keyframes rubberBand {
		from,
		to {
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}

		30% {
			-webkit-transform: scale3d(1.25, 0.75, 1);
			transform: scale3d(1.25, 0.75, 1);
		}

		40% {
			-webkit-transform: scale3d(0.75, 1.25, 1);
			transform: scale3d(0.75, 1.25, 1);
		}

		50% {
			-webkit-transform: scale3d(1.15, 0.85, 1);
			transform: scale3d(1.15, 0.85, 1);
		}

		65% {
			-webkit-transform: scale3d(0.95, 1.05, 1);
			transform: scale3d(0.95, 1.05, 1);
		}

		75% {
			-webkit-transform: scale3d(1.05, 0.95, 1);
			transform: scale3d(1.05, 0.95, 1);
		}
	}

	.rubberBand {
		-webkit-animation-name: rubberBand;
		animation-name: rubberBand;
	}

	@-webkit-keyframes shake {
		from,
		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}

		10%,
		30%,
		50%,
		70%,
		90% {
			-webkit-transform: translate3d(-10px, 0, 0);
			transform: translate3d(-10px, 0, 0);
		}

		20%,
		40%,
		60%,
		80% {
			-webkit-transform: translate3d(10px, 0, 0);
			transform: translate3d(10px, 0, 0);
		}
	}

	@keyframes shake {
		from,
		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}

		10%,
		30%,
		50%,
		70%,
		90% {
			-webkit-transform: translate3d(-10px, 0, 0);
			transform: translate3d(-10px, 0, 0);
		}

		20%,
		40%,
		60%,
		80% {
			-webkit-transform: translate3d(10px, 0, 0);
			transform: translate3d(10px, 0, 0);
		}
	}

	.shake {
		-webkit-animation-name: shake;
		animation-name: shake;
	}

	@-webkit-keyframes headShake {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}

		6.5% {
			-webkit-transform: translateX(-6px) rotateY(-9deg);
			transform: translateX(-6px) rotateY(-9deg);
		}

		18.5% {
			-webkit-transform: translateX(5px) rotateY(7deg);
			transform: translateX(5px) rotateY(7deg);
		}

		31.5% {
			-webkit-transform: translateX(-3px) rotateY(-5deg);
			transform: translateX(-3px) rotateY(-5deg);
		}

		43.5% {
			-webkit-transform: translateX(2px) rotateY(3deg);
			transform: translateX(2px) rotateY(3deg);
		}

		50% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}

	@keyframes headShake {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}

		6.5% {
			-webkit-transform: translateX(-6px) rotateY(-9deg);
			transform: translateX(-6px) rotateY(-9deg);
		}

		18.5% {
			-webkit-transform: translateX(5px) rotateY(7deg);
			transform: translateX(5px) rotateY(7deg);
		}

		31.5% {
			-webkit-transform: translateX(-3px) rotateY(-5deg);
			transform: translateX(-3px) rotateY(-5deg);
		}

		43.5% {
			-webkit-transform: translateX(2px) rotateY(3deg);
			transform: translateX(2px) rotateY(3deg);
		}

		50% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}

	.headShake {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		-webkit-animation-name: headShake;
		animation-name: headShake;
	}

	@-webkit-keyframes swing {
		20% {
			-webkit-transform: rotate3d(0, 0, 1, 15deg);
			transform: rotate3d(0, 0, 1, 15deg);
		}

		40% {
			-webkit-transform: rotate3d(0, 0, 1, -10deg);
			transform: rotate3d(0, 0, 1, -10deg);
		}

		60% {
			-webkit-transform: rotate3d(0, 0, 1, 5deg);
			transform: rotate3d(0, 0, 1, 5deg);
		}

		80% {
			-webkit-transform: rotate3d(0, 0, 1, -5deg);
			transform: rotate3d(0, 0, 1, -5deg);
		}

		to {
			-webkit-transform: rotate3d(0, 0, 1, 0deg);
			transform: rotate3d(0, 0, 1, 0deg);
		}
	}

	@keyframes swing {
		20% {
			-webkit-transform: rotate3d(0, 0, 1, 15deg);
			transform: rotate3d(0, 0, 1, 15deg);
		}

		40% {
			-webkit-transform: rotate3d(0, 0, 1, -10deg);
			transform: rotate3d(0, 0, 1, -10deg);
		}

		60% {
			-webkit-transform: rotate3d(0, 0, 1, 5deg);
			transform: rotate3d(0, 0, 1, 5deg);
		}

		80% {
			-webkit-transform: rotate3d(0, 0, 1, -5deg);
			transform: rotate3d(0, 0, 1, -5deg);
		}

		to {
			-webkit-transform: rotate3d(0, 0, 1, 0deg);
			transform: rotate3d(0, 0, 1, 0deg);
		}
	}

	.swing {
		-webkit-transform-origin: top center;
		transform-origin: top center;
		-webkit-animation-name: swing;
		animation-name: swing;
	}

	@-webkit-keyframes tada {
		from,
		to {
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}

		10%,
		20% {
			-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
			transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		}

		30%,
		50%,
		70%,
		90% {
			-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
			transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		}

		40%,
		60%,
		80% {
			-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
			transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		}
	}

	@keyframes tada {
		from,
		to {
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}

		10%,
		20% {
			-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
			transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		}

		30%,
		50%,
		70%,
		90% {
			-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
			transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		}

		40%,
		60%,
		80% {
			-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
			transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		}
	}

	.tada {
		-webkit-animation-name: tada;
		animation-name: tada;
	}

	@-webkit-keyframes wobble {
		from,
		to {
			-webkit-transform: none;
			transform: none;
		}

		15% {
			-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
			transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		}

		30% {
			-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
			transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		}

		45% {
			-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
			transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		}

		60% {
			-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
			transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		}

		75% {
			-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
			transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		}
	}

	@keyframes wobble {
		from,
		to {
			-webkit-transform: none;
			transform: none;
		}

		15% {
			-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
			transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		}

		30% {
			-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
			transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		}

		45% {
			-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
			transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		}

		60% {
			-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
			transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		}

		75% {
			-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
			transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		}
	}

	.wobble {
		-webkit-animation-name: wobble;
		animation-name: wobble;
	}

	@-webkit-keyframes jello {
		11.1%,
		from,
		to {
			-webkit-transform: none;
			transform: none;
		}

		22.2% {
			-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
			transform: skewX(-12.5deg) skewY(-12.5deg);
		}

		33.3% {
			-webkit-transform: skewX(6.25deg) skewY(6.25deg);
			transform: skewX(6.25deg) skewY(6.25deg);
		}

		44.4% {
			-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
			transform: skewX(-3.125deg) skewY(-3.125deg);
		}

		55.5% {
			-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
			transform: skewX(1.5625deg) skewY(1.5625deg);
		}

		66.6% {
			-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
			transform: skewX(-0.78125deg) skewY(-0.78125deg);
		}

		77.7% {
			-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
			transform: skewX(0.390625deg) skewY(0.390625deg);
		}

		88.8% {
			-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
			transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		}
	}

	@keyframes jello {
		11.1%,
		from,
		to {
			-webkit-transform: none;
			transform: none;
		}

		22.2% {
			-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
			transform: skewX(-12.5deg) skewY(-12.5deg);
		}

		33.3% {
			-webkit-transform: skewX(6.25deg) skewY(6.25deg);
			transform: skewX(6.25deg) skewY(6.25deg);
		}

		44.4% {
			-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
			transform: skewX(-3.125deg) skewY(-3.125deg);
		}

		55.5% {
			-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
			transform: skewX(1.5625deg) skewY(1.5625deg);
		}

		66.6% {
			-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
			transform: skewX(-0.78125deg) skewY(-0.78125deg);
		}

		77.7% {
			-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
			transform: skewX(0.390625deg) skewY(0.390625deg);
		}

		88.8% {
			-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
			transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		}
	}

	.jello {
		-webkit-animation-name: jello;
		animation-name: jello;
		-webkit-transform-origin: center;
		transform-origin: center;
	}

	@-webkit-keyframes bounceIn {
		20%,
		40%,
		60%,
		80%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		0% {
			opacity: 0;
			-webkit-transform: scale3d(0.3, 0.3, 0.3);
			transform: scale3d(0.3, 0.3, 0.3);
		}

		20% {
			-webkit-transform: scale3d(1.1, 1.1, 1.1);
			transform: scale3d(1.1, 1.1, 1.1);
		}

		40% {
			-webkit-transform: scale3d(0.9, 0.9, 0.9);
			transform: scale3d(0.9, 0.9, 0.9);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(1.03, 1.03, 1.03);
			transform: scale3d(1.03, 1.03, 1.03);
		}

		80% {
			-webkit-transform: scale3d(0.97, 0.97, 0.97);
			transform: scale3d(0.97, 0.97, 0.97);
		}

		to {
			opacity: 1;
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}
	}

	@keyframes bounceIn {
		20%,
		40%,
		60%,
		80%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		0% {
			opacity: 0;
			-webkit-transform: scale3d(0.3, 0.3, 0.3);
			transform: scale3d(0.3, 0.3, 0.3);
		}

		20% {
			-webkit-transform: scale3d(1.1, 1.1, 1.1);
			transform: scale3d(1.1, 1.1, 1.1);
		}

		40% {
			-webkit-transform: scale3d(0.9, 0.9, 0.9);
			transform: scale3d(0.9, 0.9, 0.9);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(1.03, 1.03, 1.03);
			transform: scale3d(1.03, 1.03, 1.03);
		}

		80% {
			-webkit-transform: scale3d(0.97, 0.97, 0.97);
			transform: scale3d(0.97, 0.97, 0.97);
		}

		to {
			opacity: 1;
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}
	}

	.bounceIn {
		-webkit-animation-name: bounceIn;
		animation-name: bounceIn;
	}

	@-webkit-keyframes bounceInDown {
		60%,
		75%,
		90%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		0% {
			opacity: 0;
			-webkit-transform: translate3d(0, -3000px, 0);
			transform: translate3d(0, -3000px, 0);
		}

		60% {
			opacity: 1;
			-webkit-transform: translate3d(0, 25px, 0);
			transform: translate3d(0, 25px, 0);
		}

		75% {
			-webkit-transform: translate3d(0, -10px, 0);
			transform: translate3d(0, -10px, 0);
		}

		90% {
			-webkit-transform: translate3d(0, 5px, 0);
			transform: translate3d(0, 5px, 0);
		}

		to {
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes bounceInDown {
		60%,
		75%,
		90%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		0% {
			opacity: 0;
			-webkit-transform: translate3d(0, -3000px, 0);
			transform: translate3d(0, -3000px, 0);
		}

		60% {
			opacity: 1;
			-webkit-transform: translate3d(0, 25px, 0);
			transform: translate3d(0, 25px, 0);
		}

		75% {
			-webkit-transform: translate3d(0, -10px, 0);
			transform: translate3d(0, -10px, 0);
		}

		90% {
			-webkit-transform: translate3d(0, 5px, 0);
			transform: translate3d(0, 5px, 0);
		}

		to {
			-webkit-transform: none;
			transform: none;
		}
	}

	.bounceInDown {
		-webkit-animation-name: bounceInDown;
		animation-name: bounceInDown;
	}

	@-webkit-keyframes bounceInLeft {
		60%,
		75%,
		90%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		0% {
			opacity: 0;
			-webkit-transform: translate3d(-3000px, 0, 0);
			transform: translate3d(-3000px, 0, 0);
		}

		60% {
			opacity: 1;
			-webkit-transform: translate3d(25px, 0, 0);
			transform: translate3d(25px, 0, 0);
		}

		75% {
			-webkit-transform: translate3d(-10px, 0, 0);
			transform: translate3d(-10px, 0, 0);
		}

		90% {
			-webkit-transform: translate3d(5px, 0, 0);
			transform: translate3d(5px, 0, 0);
		}

		to {
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes bounceInLeft {
		60%,
		75%,
		90%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		0% {
			opacity: 0;
			-webkit-transform: translate3d(-3000px, 0, 0);
			transform: translate3d(-3000px, 0, 0);
		}

		60% {
			opacity: 1;
			-webkit-transform: translate3d(25px, 0, 0);
			transform: translate3d(25px, 0, 0);
		}

		75% {
			-webkit-transform: translate3d(-10px, 0, 0);
			transform: translate3d(-10px, 0, 0);
		}

		90% {
			-webkit-transform: translate3d(5px, 0, 0);
			transform: translate3d(5px, 0, 0);
		}

		to {
			-webkit-transform: none;
			transform: none;
		}
	}

	.bounceInLeft {
		-webkit-animation-name: bounceInLeft;
		animation-name: bounceInLeft;
	}

	@-webkit-keyframes bounceInRight {
		60%,
		75%,
		90%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		from {
			opacity: 0;
			-webkit-transform: translate3d(3000px, 0, 0);
			transform: translate3d(3000px, 0, 0);
		}

		60% {
			opacity: 1;
			-webkit-transform: translate3d(-25px, 0, 0);
			transform: translate3d(-25px, 0, 0);
		}

		75% {
			-webkit-transform: translate3d(10px, 0, 0);
			transform: translate3d(10px, 0, 0);
		}

		90% {
			-webkit-transform: translate3d(-5px, 0, 0);
			transform: translate3d(-5px, 0, 0);
		}

		to {
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes bounceInRight {
		60%,
		75%,
		90%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		from {
			opacity: 0;
			-webkit-transform: translate3d(3000px, 0, 0);
			transform: translate3d(3000px, 0, 0);
		}

		60% {
			opacity: 1;
			-webkit-transform: translate3d(-25px, 0, 0);
			transform: translate3d(-25px, 0, 0);
		}

		75% {
			-webkit-transform: translate3d(10px, 0, 0);
			transform: translate3d(10px, 0, 0);
		}

		90% {
			-webkit-transform: translate3d(-5px, 0, 0);
			transform: translate3d(-5px, 0, 0);
		}

		to {
			-webkit-transform: none;
			transform: none;
		}
	}

	.bounceInRight {
		-webkit-animation-name: bounceInRight;
		animation-name: bounceInRight;
	}

	@-webkit-keyframes bounceInUp {
		60%,
		75%,
		90%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		from {
			opacity: 0;
			-webkit-transform: translate3d(0, 3000px, 0);
			transform: translate3d(0, 3000px, 0);
		}

		60% {
			opacity: 1;
			-webkit-transform: translate3d(0, -20px, 0);
			transform: translate3d(0, -20px, 0);
		}

		75% {
			-webkit-transform: translate3d(0, 10px, 0);
			transform: translate3d(0, 10px, 0);
		}

		90% {
			-webkit-transform: translate3d(0, -5px, 0);
			transform: translate3d(0, -5px, 0);
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	@keyframes bounceInUp {
		60%,
		75%,
		90%,
		from,
		to {
			-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
			animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		}

		from {
			opacity: 0;
			-webkit-transform: translate3d(0, 3000px, 0);
			transform: translate3d(0, 3000px, 0);
		}

		60% {
			opacity: 1;
			-webkit-transform: translate3d(0, -20px, 0);
			transform: translate3d(0, -20px, 0);
		}

		75% {
			-webkit-transform: translate3d(0, 10px, 0);
			transform: translate3d(0, 10px, 0);
		}

		90% {
			-webkit-transform: translate3d(0, -5px, 0);
			transform: translate3d(0, -5px, 0);
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	.bounceInUp {
		-webkit-animation-name: bounceInUp;
		animation-name: bounceInUp;
	}

	@-webkit-keyframes fadeIn {
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}

	@keyframes fadeIn {
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}

	.fadeIn {
		-webkit-animation-name: fadeIn;
		animation-name: fadeIn;
	}

	@-webkit-keyframes fadeInDown {
		from {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes fadeInDown {
		from {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.fadeInDown {
		-webkit-animation-name: fadeInDown;
		animation-name: fadeInDown;
	}

	@-webkit-keyframes fadeInDownBig {
		from {
			opacity: 0;
			-webkit-transform: translate3d(0, -2000px, 0);
			transform: translate3d(0, -2000px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes fadeInDownBig {
		from {
			opacity: 0;
			-webkit-transform: translate3d(0, -2000px, 0);
			transform: translate3d(0, -2000px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.fadeInDownBig {
		-webkit-animation-name: fadeInDownBig;
		animation-name: fadeInDownBig;
	}

	@-webkit-keyframes fadeInLeft {
		from {
			opacity: 0;
			-webkit-transform: translate3d(-100%, 0, 0);
			transform: translate3d(-100%, 0, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes fadeInLeft {
		from {
			opacity: 0;
			-webkit-transform: translate3d(-100%, 0, 0);
			transform: translate3d(-100%, 0, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.fadeInLeft {
		-webkit-animation-name: fadeInLeft;
		animation-name: fadeInLeft;
	}

	@-webkit-keyframes fadeInLeftBig {
		from {
			opacity: 0;
			-webkit-transform: translate3d(-2000px, 0, 0);
			transform: translate3d(-2000px, 0, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes fadeInLeftBig {
		from {
			opacity: 0;
			-webkit-transform: translate3d(-2000px, 0, 0);
			transform: translate3d(-2000px, 0, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.fadeInLeftBig {
		-webkit-animation-name: fadeInLeftBig;
		animation-name: fadeInLeftBig;
	}

	@-webkit-keyframes fadeInRight {
		from {
			opacity: 0;
			-webkit-transform: translate3d(100%, 0, 0);
			transform: translate3d(100%, 0, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes fadeInRight {
		from {
			opacity: 0;
			-webkit-transform: translate3d(100%, 0, 0);
			transform: translate3d(100%, 0, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.fadeInRight {
		-webkit-animation-name: fadeInRight;
		animation-name: fadeInRight;
	}

	@-webkit-keyframes fadeInRightBig {
		from {
			opacity: 0;
			-webkit-transform: translate3d(2000px, 0, 0);
			transform: translate3d(2000px, 0, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes fadeInRightBig {
		from {
			opacity: 0;
			-webkit-transform: translate3d(2000px, 0, 0);
			transform: translate3d(2000px, 0, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.fadeInRightBig {
		-webkit-animation-name: fadeInRightBig;
		animation-name: fadeInRightBig;
	}

	@-webkit-keyframes fadeInUp {
		from {
			opacity: 0;
			-webkit-transform: translate3d(0, 100%, 0);
			transform: translate3d(0, 100%, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			-webkit-transform: translate3d(0, 100%, 0);
			transform: translate3d(0, 100%, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.fadeInUp {
		-webkit-animation-name: fadeInUp;
		animation-name: fadeInUp;
	}

	@-webkit-keyframes fadeInUpBig {
		from {
			opacity: 0;
			-webkit-transform: translate3d(0, 2000px, 0);
			transform: translate3d(0, 2000px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes fadeInUpBig {
		from {
			opacity: 0;
			-webkit-transform: translate3d(0, 2000px, 0);
			transform: translate3d(0, 2000px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.fadeInUpBig {
		-webkit-animation-name: fadeInUpBig;
		animation-name: fadeInUpBig;
	}

	@-webkit-keyframes flip {
		from {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
			transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
			-webkit-animation-timing-function: ease-out;
			animation-timing-function: ease-out;
		}

		40% {
			-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
				rotate3d(0, 1, 0, -190deg);
			transform: perspective(400px) translate3d(0, 0, 150px)
				rotate3d(0, 1, 0, -190deg);
			-webkit-animation-timing-function: ease-out;
			animation-timing-function: ease-out;
		}

		50% {
			-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
				rotate3d(0, 1, 0, -170deg);
			transform: perspective(400px) translate3d(0, 0, 150px)
				rotate3d(0, 1, 0, -170deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}

		80% {
			-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
			transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}

		to {
			-webkit-transform: perspective(400px);
			transform: perspective(400px);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}
	}

	@keyframes flip {
		from {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
			transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
			-webkit-animation-timing-function: ease-out;
			animation-timing-function: ease-out;
		}

		40% {
			-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
				rotate3d(0, 1, 0, -190deg);
			transform: perspective(400px) translate3d(0, 0, 150px)
				rotate3d(0, 1, 0, -190deg);
			-webkit-animation-timing-function: ease-out;
			animation-timing-function: ease-out;
		}

		50% {
			-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
				rotate3d(0, 1, 0, -170deg);
			transform: perspective(400px) translate3d(0, 0, 150px)
				rotate3d(0, 1, 0, -170deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}

		80% {
			-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
			transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}

		to {
			-webkit-transform: perspective(400px);
			transform: perspective(400px);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}
	}

	.animated.flip {
		-webkit-backface-visibility: visible;
		backface-visibility: visible;
		-webkit-animation-name: flip;
		animation-name: flip;
	}

	@-webkit-keyframes flipInX {
		from {
			-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
			transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
			opacity: 0;
		}

		40% {
			-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
			transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}

		60% {
			-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
			transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
			opacity: 1;
		}

		80% {
			-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
			transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		}

		to {
			-webkit-transform: perspective(400px);
			transform: perspective(400px);
		}
	}

	@keyframes flipInX {
		from {
			-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
			transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
			opacity: 0;
		}

		40% {
			-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
			transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}

		60% {
			-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
			transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
			opacity: 1;
		}

		80% {
			-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
			transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		}

		to {
			-webkit-transform: perspective(400px);
			transform: perspective(400px);
		}
	}

	.flipInX {
		-webkit-backface-visibility: visible !important;
		backface-visibility: visible !important;
		-webkit-animation-name: flipInX;
		animation-name: flipInX;
	}

	.flipInY {
		-webkit-backface-visibility: visible !important;
	}

	@-webkit-keyframes flipInY {
		from {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
			transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
			opacity: 0;
		}

		40% {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
			transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}

		60% {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
			transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
			opacity: 1;
		}

		80% {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
			transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		}

		to {
			-webkit-transform: perspective(400px);
			transform: perspective(400px);
		}
	}

	@keyframes flipInY {
		from {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
			transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
			opacity: 0;
		}

		40% {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
			transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}

		60% {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
			transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
			opacity: 1;
		}

		80% {
			-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
			transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		}

		to {
			-webkit-transform: perspective(400px);
			transform: perspective(400px);
		}
	}

	.flipInY {
		backface-visibility: visible !important;
		-webkit-animation-name: flipInY;
		animation-name: flipInY;
	}

	@-webkit-keyframes lightSpeedIn {
		from {
			-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
			transform: translate3d(100%, 0, 0) skewX(-30deg);
			opacity: 0;
		}

		60% {
			-webkit-transform: skewX(20deg);
			transform: skewX(20deg);
			opacity: 1;
		}

		80% {
			-webkit-transform: skewX(-5deg);
			transform: skewX(-5deg);
			opacity: 1;
		}

		to {
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	@keyframes lightSpeedIn {
		from {
			-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
			transform: translate3d(100%, 0, 0) skewX(-30deg);
			opacity: 0;
		}

		60% {
			-webkit-transform: skewX(20deg);
			transform: skewX(20deg);
			opacity: 1;
		}

		80% {
			-webkit-transform: skewX(-5deg);
			transform: skewX(-5deg);
			opacity: 1;
		}

		to {
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	.lightSpeedIn {
		-webkit-animation-name: lightSpeedIn;
		animation-name: lightSpeedIn;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	@-webkit-keyframes rotateIn {
		from {
			-webkit-transform-origin: center;
			transform-origin: center;
			-webkit-transform: rotate3d(0, 0, 1, -200deg);
			transform: rotate3d(0, 0, 1, -200deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: center;
			transform-origin: center;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	@keyframes rotateIn {
		from {
			-webkit-transform-origin: center;
			transform-origin: center;
			-webkit-transform: rotate3d(0, 0, 1, -200deg);
			transform: rotate3d(0, 0, 1, -200deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: center;
			transform-origin: center;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	.rotateIn {
		-webkit-animation-name: rotateIn;
		animation-name: rotateIn;
	}

	@-webkit-keyframes rotateInDownLeft {
		from {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
			-webkit-transform: rotate3d(0, 0, 1, -45deg);
			transform: rotate3d(0, 0, 1, -45deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	@keyframes rotateInDownLeft {
		from {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
			-webkit-transform: rotate3d(0, 0, 1, -45deg);
			transform: rotate3d(0, 0, 1, -45deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	.rotateInDownLeft {
		-webkit-animation-name: rotateInDownLeft;
		animation-name: rotateInDownLeft;
	}

	@-webkit-keyframes rotateInDownRight {
		from {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
			-webkit-transform: rotate3d(0, 0, 1, 45deg);
			transform: rotate3d(0, 0, 1, 45deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	@keyframes rotateInDownRight {
		from {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
			-webkit-transform: rotate3d(0, 0, 1, 45deg);
			transform: rotate3d(0, 0, 1, 45deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	.rotateInDownRight {
		-webkit-animation-name: rotateInDownRight;
		animation-name: rotateInDownRight;
	}

	@-webkit-keyframes rotateInUpLeft {
		from {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
			-webkit-transform: rotate3d(0, 0, 1, 45deg);
			transform: rotate3d(0, 0, 1, 45deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	@keyframes rotateInUpLeft {
		from {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
			-webkit-transform: rotate3d(0, 0, 1, 45deg);
			transform: rotate3d(0, 0, 1, 45deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	.rotateInUpLeft {
		-webkit-animation-name: rotateInUpLeft;
		animation-name: rotateInUpLeft;
	}

	@-webkit-keyframes rotateInUpRight {
		from {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
			-webkit-transform: rotate3d(0, 0, 1, -90deg);
			transform: rotate3d(0, 0, 1, -90deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	@keyframes rotateInUpRight {
		from {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
			-webkit-transform: rotate3d(0, 0, 1, -90deg);
			transform: rotate3d(0, 0, 1, -90deg);
			opacity: 0;
		}

		to {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
			-webkit-transform: none;
			transform: none;
			opacity: 1;
		}
	}

	.rotateInUpRight {
		-webkit-animation-name: rotateInUpRight;
		animation-name: rotateInUpRight;
	}

	@-webkit-keyframes rollIn {
		from {
			opacity: 0;
			-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
			transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	@keyframes rollIn {
		from {
			opacity: 0;
			-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
			transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none;
		}
	}

	.rollIn {
		-webkit-animation-name: rollIn;
		animation-name: rollIn;
	}

	@-webkit-keyframes zoomIn {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.3, 0.3, 0.3);
			transform: scale3d(0.3, 0.3, 0.3);
		}

		50% {
			opacity: 1;
		}
	}

	@keyframes zoomIn {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.3, 0.3, 0.3);
			transform: scale3d(0.3, 0.3, 0.3);
		}

		50% {
			opacity: 1;
		}
	}

	.zoomIn {
		-webkit-animation-name: zoomIn;
		animation-name: zoomIn;
	}

	@-webkit-keyframes zoomInDown {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
			transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
			-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
			animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
			transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
			-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		}
	}

	@keyframes zoomInDown {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
			transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
			-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
			animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
			transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
			-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		}
	}

	.zoomInDown {
		-webkit-animation-name: zoomInDown;
		animation-name: zoomInDown;
	}

	@-webkit-keyframes zoomInLeft {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
			transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
			-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
			animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
			transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
			-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		}
	}

	@keyframes zoomInLeft {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
			transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
			-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
			animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
			transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
			-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		}
	}

	.zoomInLeft {
		-webkit-animation-name: zoomInLeft;
		animation-name: zoomInLeft;
	}

	@-webkit-keyframes zoomInRight {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
			transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
			-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
			animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
			transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
			-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		}
	}

	@keyframes zoomInRight {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
			transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
			-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
			animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
			transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
			-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		}
	}

	.zoomInRight {
		-webkit-animation-name: zoomInRight;
		animation-name: zoomInRight;
	}

	@-webkit-keyframes zoomInUp {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
			transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
			-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
			animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
			transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
			-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		}
	}

	@keyframes zoomInUp {
		from {
			opacity: 0;
			-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
			transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
			-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
			animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		60% {
			opacity: 1;
			-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
			transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
			-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		}
	}

	.zoomInUp {
		-webkit-animation-name: zoomInUp;
		animation-name: zoomInUp;
	}

	@-webkit-keyframes slideInDown {
		from {
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
			visibility: visible;
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	@keyframes slideInDown {
		from {
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
			visibility: visible;
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	.slideInDown {
		-webkit-animation-name: slideInDown;
		animation-name: slideInDown;
	}

	@-webkit-keyframes slideInLeft {
		from {
			-webkit-transform: translate3d(-100%, 0, 0);
			transform: translate3d(-100%, 0, 0);
			visibility: visible;
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	@keyframes slideInLeft {
		from {
			-webkit-transform: translate3d(-100%, 0, 0);
			transform: translate3d(-100%, 0, 0);
			visibility: visible;
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	.slideInLeft {
		-webkit-animation-name: slideInLeft;
		animation-name: slideInLeft;
	}

	@-webkit-keyframes slideInRight {
		from {
			-webkit-transform: translate3d(100%, 0, 0);
			transform: translate3d(100%, 0, 0);
			visibility: visible;
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	@keyframes slideInRight {
		from {
			-webkit-transform: translate3d(100%, 0, 0);
			transform: translate3d(100%, 0, 0);
			visibility: visible;
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	.slideInRight {
		-webkit-animation-name: slideInRight;
		animation-name: slideInRight;
	}

	@-webkit-keyframes slideInUp {
		from {
			-webkit-transform: translate3d(0, 100%, 0);
			transform: translate3d(0, 100%, 0);
			visibility: visible;
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	@keyframes slideInUp {
		from {
			-webkit-transform: translate3d(0, 100%, 0);
			transform: translate3d(0, 100%, 0);
			visibility: visible;
		}

		to {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

	.slideInUp {
		-webkit-animation-name: slideInUp;
		animation-name: slideInUp;
	}
}

.table-of-contents {
	background: #f8f8f8;
	border-radius: 5px 5px 5px 5px;
	padding: 20px 20px 5px 20px;
	margin-bottom: 20px;
}

.table-of-contents_style ul {
	margin-left: 49px;
}

.h2_table {
	border-bottom-width: 1px;
	border-color: #040d1d24;
	border-style: none none solid;
}

.faq .content h3 {
	font-weight: 400;
	font-size: 34px;
}

.faq .content p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
	margin-top: 15px;
}

.faq .faq-container .faq-item {
	position: relative;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0px 5px 25px 0px color-mix(in srgb, #1a1f24, transparent 90%);
	overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
	margin-bottom: 20px;
}

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 17px;
	line-height: 24px;
	margin: 0 30px 0 32px;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
	color: var(--accent-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
	position: absolute;
	top: 22px;
	left: 20px;
	font-size: 22px;
	line-height: 0;
	transition: 0.3s;
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
	color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
	color: var(--accent-color);
}

.button-with-icon {
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #253a87;
	font-family: "Istok Web", sans-serif;
	letter-spacing: 1px;
	padding: 0 12px;
	text-align: center;
	width: 50px;
	height: 30px;
	font-size: 14px;
	margin-bottom: 15px;
	text-transform: uppercase;
	font-weight: normal;
	border-radius: 3px;
	outline: none;
	user-select: none;
	cursor: pointer;
	transform: translateY(0px);
	position: relative;
	box-shadow: inset 0 30px 30px -15px rgba(255, 255, 255, 0.1),
		inset 0 0 0 1px rgba(255, 255, 255, 0.3), inset 0 1px 20px rgba(0, 0, 0, 0),
		0 3px 0 #253a87;
	background: #ffffff;
	color: white;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
	transition: 150ms all ease-in-out;
}

.button-with-icon .icon {
	margin-right: 8px;
	width: 24px;
	height: 24px;
	transition: all 0.5s ease-in-out;
}

.button-with-icon:active {
	transform: translateY(3px);
	box-shadow: inset 0 16px 2px -15px rgba(0, 0, 0, 0),
		inset 0 0 0 1px rgba(255, 255, 255, 0.15),
		inset 0 1px 20px rgba(0, 0, 0, 0.1), 0 0 0 #0f988e,
		0 0 0 2px rgba(255, 255, 255, 0.5), 0 0 0 rgba(0, 0, 0, 0),
		0 0 0 rgba(0, 0, 0, 0);
}

.button-with-icon:hover .text {
	transform: translateX(80px);
}
.button-with-icon:hover .icon {
	transform: translate(23px);
}

.text {
	transition: all 0.5s ease-in-out;
}

.full-screen-background {
	background: url("path/to/") no-repeat center center fixed;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.intro {
	background-image: url("../img/intro/5.jpeg");
	background-size: cover;
	padding-top: 15px;
	padding-bottom: 15px;
	color: white;
	display: flex;
	padding-left: 50px;
	padding-right: 50px;
	align-items: center;
	font-size: 21px;
	position: relative;
	z-index: 2; /* Ensure content is above the overlay */
}

.intro::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #172453cc; /* Adjust the color and opacity as needed */
	z-index: 1;
}

.intro-text {
	text-align: center;
	position: relative;
	z-index: 1;
	color: white; /* Adjust text color if needed */
}
.introBackground {
	background-position: 0px -215px;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.intro2 {
	background-color: #091e3e;
	height: 100px;
	color: white;
	display: flex;
	padding-left: 50px;
	align-items: center;
	font-size: 21px;
}

.mainc {
	color: #091e3e !important;
}

.column-custom {
	text-align: left;
}
.row-custom {
	text-align: left;
	vertical-align: middle;
}
.row-colorpick {
	background-color: #a6e8ff;
}
.row-colorpick2 {
	background-color: #95ffd8b0;
}
.row-colorpick3 {
	background-color: #ffd8ac;
}
.vertical-allign-mid {
	vertical-align: middle;
}
.table-so-sach {
	width: 100%;
	border-collapse: collapse;
}
th,
.table-so-sach td {
	border: 1px solid black;
	text-align: center;
	position: relative;
}
.table-so-sach th {
	border: 1px solid black;
	background-color: #70baff;
}

.business-card {
	min-height: 90px;
	vertical-align: middle;
	align-items: center;
	padding-left: 20px;
}

.table-css-blue th {
	background-color: #004ea4;
	color: #fff;
}
.table-css-blue td {
	background-color: #e5f0ff;
	color: #212529;
}
@media (max-width: 576px) {
	.fancybox-thumbs {
		width: 110px;
	}

	.fancybox-show-thumbs .fancybox-inner {
		right: 110px;
	}

	.fancybox-thumbs__list a {
		max-width: calc(100% - 10px);
	}
}

.table-style th {
	color: #fff;
	background-color: #004ea4;
	text-align: center;
}
.table-style td {
	background-color: #f0f8ff;
	text-align: center;
}

.dropdown-submenu {
	background-color: white;
	border: 1px solid rgba(0, 0, 0, 0.15);
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	margin-top: -1px;
}

.dropdown-item.dropdown-toggle:hover .dropdown-submenu {
	display: block;
}

.dropdown-item.dropdown-toggle {
	position: relative;
}

.is-divider {
	height: 3px;
	display: block;
	background-color: #fd7712;
	margin: 1em 0 1em;
	width: 100%;
	max-width: 30px;
}
.show-for-small {
	display: none !important;
}
.hide-for-small {
	display: block !important;
}
@media (max-width: 991.98px) {
	.show-for-small {
		display: block !important;
	}
	.hide-for-small {
		display: none !important;
	}
}
