/*
font-family: 'GFS Didot', serif;
font-family: 'Poppins', sans-serif;
*/
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}




/* new- header css start  */

.top-header {
	padding: 10px 0;
}

.top-logo-left img {
	width: 50%;
	padding-bottom: 20px;
}

.mail a {
	color: #1a365d;
	font-size: 16px;
	font-weight: 600;
}

.mail a i.fa-solid.fa-envelope {
	padding-right: 15px;
	font-size: 20px;
	align-items: center;
}

.number a {
	color: #1a365d;
	font-size: 16px;
	font-weight: 600;
}

.side-mail-number {
	display: flex;
}


.side-mail-number {
	display: flex;
	padding-top: 35px;
	justify-content: end;
}

.mail {
	padding-right: 40px;
}

.number {
	text-align: end;
}



.number a i.fa-solid.fa-mobile {
	padding-right: 15px;
	font-size: 20px;
	align-items: center;
}

header {
	z-index: 9999;
	padding: 0 0 8px 0;
	box-shadow: 0 0 12px 0px #1a365d;
	position: relative;
}

header nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: space-between;
	height: 90px;
	padding: 10px;
}

.logo {
	flex: 2;
	display: none;
	align-items: center;
}

.logo img {
	width: 100%;
}

/* img.logoo {
	width: 70%;
} */
a.logo-top-header {
	width: 17%;
}


.bartoggle,
#menubrop {
	display: none;
}

.NavMenu {
	flex: 10;
	list-style: none;
	align-items: center;
	position: relative;
	padding: 0;
	display: flex;
	margin: 0;
}

.NavMenu li {
	display: inline-block;
}

.NavMenu li input {
	display: none;
}

.NavMenu li a {
	display: block;
	padding: 16px 12px;
	font-size: 16.5px;
	font-weight: 400;
	text-decoration: none;
	/* text-transform: uppercase; */
	color: #1a365d;
	position: relative;
}

.NavMenu li a label {
	cursor: pointer;
	appearance: none;
	margin: 0;
	display: block;
	font-weight: 400;
	position: relative;
}

.NavMenu li a label::after {
	content: "+";
	position: absolute;
	right: -8px;
	top: 0;
	font-size: 20px;
}

.NavMenu>li>a label::after {
	right: -15px;
	top: 1px;
	font-size: 13px;
}



/* button css new start  */


/* button {
	--color: #0077ff;
	font-family: inherit;
	display: inline-block;
	width: 6em;
	height: 2.6em;
	line-height: 2.5em;
	overflow: hidden;
	cursor: pointer;
	margin: 20px;
	font-size: 17px;
	z-index: 1;
	color: var(--color);
	border: 2px solid var(--color);
	border-radius: 6px;
	position: relative;
}

button::before {
	position: absolute;
	content: "";
	background: var(--color);
	width: 150px;
	height: 200px;
	z-index: -1;
	border-radius: 50%;
}

button:hover {
	color: white;
}

button:before {
	top: 100%;
	left: 100%;
	transition: 0.3s all;
}

button:hover::before {
	top: -30px;
	left: -30px;
} */


/* button css new end  */








.NavMenu li ul {
	position: absolute;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	width: 265px;
	border-bottom: 2px solid #1a365d;
	top: 100%;
	margin: 0;
	padding: 0;
	box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	-o-transform: translateY(10px);
	visibility: hidden;
	opacity: 0;
}

.NavMenu li ul li {
	position: relative;
}

.NavMenu li ul li a {
	color: #1a365d;
	padding: 8px 10px;
	display: block;
	border-left: 2px solid transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.NavMenu li ul li ul {
	position: absolute;
	left: 100%;
	top: 0;
	width: 280px;
}

@media(min-width:992px) {
	.NavMenu li ul li a:hover {
		border-left: 2px solid #1a365d;
	}

	.NavMenu li:hover>ul,
	.NavMenu li ul li:hover>ul {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
	}
}

@media(max-width:991.98px) {
	header {
		padding: 6px 5%;
	}

	.logo {
		flex: 6;
	}

	.bartoggle {
		display: flex;
		justify-content: center;
		font-size: 40px;
		align-items: center;
		background-color: #fff;
		padding: 0 10px;
		margin: 0;
		cursor: pointer;
	}

	.NavMenu {
		width: 500px;
		flex: 12;
		position: fixed;
		flex-direction: column;
		background-color: #00979e;
		left: 0;
		top: 40px;
		height: 100vh;
		/* z-index: -1; */
		padding: 15px 0 50px 0;
		justify-content: start;
		overflow-y: scroll;
		transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-ms-transition: all 0.5s;
		-o-transition: all 0.5s;
		transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
	}

	.NavMenu li ul,
	.NavMenu li ul li ul {
		position: initial;
		left: 0;
		visibility: visible;
		opacity: 1;
		top: 0;
		display: none;
	}


	.NavMenu li a {
		padding: 8px 15px;
		border-bottom: 1px solid #fff;
	}

	.NavMenu li ul li ul {
		background: #1a365d;
		position: inherit;
		margin-top: -10px;
	}

	.NavMenu li ul li ul li a {
		font-size: 14px;
		color: #fff;
		font-weight: 400;
		text-transform: initial;
		padding: 7px 15px 7px 30px;
	}

	.NavMenu li a label::after {
		right: 10px;
	}

	.NavMenu li input:checked+ul,
	.NavMenu li ul li input:checked+ul {
		display: flex;
		flex-direction: column;
		margin-bottom: 15px;
	}

	input:checked+.NavMenu {
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
	}

}

@media(max-width:768px) {
	.NavMenu {
		width: 78%;
		align-items: unset;
	}

	.logo img {
		width: 60%;
	}

	ul.NavMenu {
		top: 0px;
	}

	.NavMenu li a {
		color: #000000 !important;
	}

}



/* new- header css start  */







section *:last-child {
	margin-bottom: 0;
}

.bord {
    border-bottom: 3px solid #00979e;
    padding: 20px !important;
    height: 165px;
    border-radius: 10px;
}

.dis {
	display: flex;
	justify-content: space-between;
}

.dis h3 {
	color: #e40000;
}

span.nccn {
	color: #d60000;
}

.shine {
	position: relative;
	overflow: hidden;
}

.shine:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: -80%;
	width: 50%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	opacity: 0.3;
	z-index: 1;
}

.shine:hover:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

/*==================================:: WOW CSS Start ::==================================*/
.animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@keyframes bounce {

	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .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;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom
}

@-webkit-keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}

	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}

	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {

	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(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 {

	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(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: rotate(15deg);
		transform: rotate(15deg)
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes jello {

	0%,
	11.1%,
	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(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg)
	}

	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

@keyframes jello {

	0%,
	11.1%,
	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(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg)
	}

	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center
}

@-webkit-keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .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(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .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(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .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 {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .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 {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .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 {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .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 {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .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 bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .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
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		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: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		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: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDownBig {
	0% {
		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 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeftBig {
	0% {
		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 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRightBig {
	0% {
		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 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUpBig {
	0% {
		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 fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(-1turn);
		transform: perspective(400px) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .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 {
	0% {
		-webkit-transform: perspective(400px) rotateY(-1turn);
		transform: perspective(400px) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .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 {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-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
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(10%, 0, 0) skewX(-30deg);
		transform: translate3d(10%, 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 {
	0% {
		-webkit-transform: translate3d(10%, 0, 0) skewX(-30deg);
		transform: translate3d(10%, 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 lightSpeedOut {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(10%, 0, 0) skewX(30deg);
		transform: translate3d(10%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(10%, 0, 0) skewX(30deg);
		transform: translate3d(10%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-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 {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-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 {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(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 {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(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 {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-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 rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}

	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}

	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

.jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-10%, 0, 0) rotate(-120deg);
		transform: translate3d(-10%, 0, 0) rotate(-120deg)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-10%, 0, 0) rotate(-120deg);
		transform: translate3d(-10%, 0, 0) rotate(-120deg)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(10%, 0, 0) rotate(120deg);
		transform: translate3d(10%, 0, 0) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(10%, 0, 0) rotate(120deg);
		transform: translate3d(10%, 0, 0) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0)
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

/*==================================:: WOW CSS End ::==================================*/
/*Slick Slider Css Start*/
.slick-slider {
	position: relative;
	display: block;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	min-width: 100%;
}

.slick-list.dragging {
	cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	min-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	min-height: 1px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex: inherit;
	flex: inherit;
}

.slick-initialized .slick-slide {
	display: block;
	list-style: none;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	z-index: 2;
	padding: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 0;
	background: #eee;
	border: 0;
	color: #00979e;
	cursor: pointer;
	opacity: 1;
	border-radius: 50%;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	-webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.slick-arrow:before {
	display: block;
	content: "\f104";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	font-size: 18px;
}

.slick-arrow.slick-next:before {
	content: "\f105";
}

.slick-arrow.slick-prev {
	left: 5px;
}

.slick-arrow.slick-next {
	right: 5px;
}

.slick-arrow:hover {
	background: #00979e;
	color: #fff;
}

.slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0;
	bottom: 20px;
	text-align: center;
}

.slick-dots li {
	margin: 0 4px;
	padding: 0;
	list-style: none;
	display: inline-block;
	vertical-align: top;
}

.slick-dots li button {
	display: block;
	width: 14px;
	height: 14px;
	font-size: 0;
	padding: 0;
	background: none;
	border: 1px solid #00979e;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.slick-dots li button:before {
	display: block;
	content: "";
	width: 6px;
	height: 6px;
	background: #00979e;
	border-radius: 50%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 0;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
}

/*Slick Slider Css End*/
/*Easy Responsive Tab Css*/
h4.resp-accordion {
	display: none;
	cursor: pointer;
	text-align: left;
	position: relative;
	background: #fff !important;
	padding: 10px 40px 10px 15px;
	margin: 0 0 10px;
}

h4.resp-accordion .resp-arrow {
	display: none;
}

h4.resp-accordion:after {
	display: block;
	content: "\f107";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	position: absolute;
	right: 0;
	top: 50%;
	width: 40px;
	line-height: normal;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
}

h4.resp-accordion.resp-tab-active:after {
	content: "\f106";
}

.resp-tab-content {
	display: none;
}

.resp-tab-content:after {
	clear: both;
	content: "";
	display: block;
}

.resp-content-active,
.resp-accordion-active {
	display: block
}

@media only screen and (max-width:767px) {
	ul.resp-tabs-list {
		display: none;
	}

	h4.resp-accordion {
		display: block;
	}
}

/*=========== Mobile Menu STYLE Start ========*/
/*body.mobile-menu-open{overflow:hidden;}*/
.menu-open-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background: #000;
	display: none;
	z-index: 12;
	opacity: 0.3;
}

.mobile-menu-open .menu-open-overlay {
	display: block;
}

.mobile-menu-block {
	background: #fff;
	bottom: 0;
	color: #16181C;
	position: fixed;
	top: 0;
	left: -400px;
	width: 380px;
	z-index: -4;
	font-size: 16px;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.mobile-menu-open .mobile-menu-block {
	left: 0;
	z-index: 20;
}

.mobile-menu-inner {
	height: calc(100% - 184px);
	overflow: auto;
	padding: 20px 20px;
	position: relative;
	z-index: 3;
}

.mobi-logo {
	padding: 20px 20px;
	border-bottom: 1px solid #ddd;
}

.mobi-logo a,
.mobi-logo img {
	display: block;
	max-width: 200px;
}

.mobile-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav li {
	margin: 0;
	padding: 10px 0;
	color: #040606;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	text-transform: none;
	position: relative;
}

.mobile-nav ul li a {
	display: block;
	color: #000;
	font-weight: 500;
	font-family: 'Poppins', Arial;
	font-size: 16px;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	padding: 0 40px 0 0;
}

.mobile-nav>ul>li.current-menu-item>a,
.mobile-nav>ul>li.current-menu-ancestor>a,
.mobile-nav>ul>li.current-page-ancestor>a {
	color: #00979e;
}

.mobile-nav li li {
	border: none;
	padding: 5px 0;
}

.mobile-nav li li a {
	font-size: 15px;
	text-transform: none;
	font-weight: 400;
	padding: 0 40px 0 0;
}

.mobile-nav li li.current-menu-item a {
	color: #00979e;
}

.mobile-nav li li li a {
	padding-left: 0;
}

.mobile-nav ul.sub-menu {
	margin: 0;
	padding: 10px 10px 0;
}

.hitarea {
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
}

.hitarea:before {
	display: block;
	content: "\f107";
	font-family: 'Line Awesome Free';
	font-size: 18px;
	font-weight: 900;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	right: 0;
	top: 10px;
	z-index: 3;
	margin: 0 auto;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.collapsable-hitarea.hitarea:before {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.mobile-nav .collapsable-hitarea+a {
	color: #00979e;
}

.mobile-menu-block .mobi-bottom-inner .btn {
	padding: 14px 10px;
	width: 100%;
	border-radius: 0;
}

.mobile-menu-block .social-icons {
	padding: 15px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.mobile-menu-block .social-icons a:hover {
	color: #fff;
}

.head-icon-link a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	background: #f7f7f7;
	border-radius: 50%;
	font-size: 30px;
	color: #00979e;
}

.head-icon-link a:hover {
	background: #00979e;
	color: #fff;
}

.head-icon-link a+a {
	margin-left: 10px;
}

/*========== Mobile Menu STYLE End==============*/
/*Mobile Menu Css Start*/
.mobi-iconbox {
	display: none;
	width: 40px;
	height: 40px;
	background: #f7f7f7;
	position: relative;
	margin-left: 10px;
	z-index: 40;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 50%;
}

.menuicon {
	display: block;
	width: 100%;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.icon-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 20px;
	height: 16px;
	position: relative;
	cursor: pointer;
}

.icon-bar:before,
.icon-bar:after {
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background: #00979e;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	border-radius: 5px;
}

.icon-bar:after {
	top: auto;
	bottom: 0;
}

.icon-bar .line {
	display: block;
	width: 100%;
	height: 2px;
	background: #00979e;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	border-radius: 5px;
}

.icon-bar.active .line {
	width: 1px;
	opacity: 0;
}

.icon-bar.active:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 7px;
	background: #00979e;
}

.icon-bar.active:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: 7px;
	background: #00979e;
}

.mobile-menu-open .mobilemenuicon .menuicon {
	margin-left: auto;
}

/*Mobile Menu Css End*/
/* ===== RESET ================================================== */
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
blockquote,
big,
body,
button,
center,
canvas,
caption,
cite,
code,
command,
datalist,
dd,
del,
details,
dfn,
dl,
div,
dt,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
keygen,
label,
legend,
li,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
s,
samp,
section,
source,
strike,
sub,
sup,
table,
tbody,
tfoot,
thead,
th,
tr,
tdvideo,
tt,
u,
ul,
var {
	background: transparent;
	border: 0 none;
	margin: 0;
	padding: 0;
	line-height: 16px;
	vertical-align: baseline;
	outline: none;
	font-size: 100%;
	font-family: inherit;
	font-weight: 400;
	font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
q:before {
	content: '';
	content: none;
}

blockquote:after,
q:after {
	content: '';
	content: none;
}

ins {
	text-decoration: none;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
	margin: 0;
}

ol,
ul,
li {
	list-style: none;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/* ===== GLOBAL ================================================== */
body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: 'Poppins', sans-serif, Arial;
	font-size: 16px;
	color: #040606;
	line-height: 24px;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

:focus,
button:focus {
	outline: none;
}

a {
	text-decoration: none;
	color: #040606;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

a:hover {
	text-decoration: none;
	color: #00979e;
}

::-webkit-input-placeholder {
	color: #000;
	opacity: 0.7;
}

:-moz-placeholder {
	color: #000;
	opacity: 0.7;
}

/* Firefox 18- */
::-moz-placeholder {
	color: #000;
	opacity: 0.7;
}

/* Firefox 19+ */
:-ms-input-placeholder {
	color: #000;
	opacity: 0.7;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	outline: none;
}

b,
strong {
	font-weight: 700;
}

/* Ul Li & Ol Li CSS */
ul,
ol {
	margin: 0 0 20px;
	padding: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
	margin-top: 15px;
}

ul li,
ol li {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 24px;
	color: #040606;
	font-weight: 400;
	letter-spacing: 0;
}

.entry-content ul {
	display: inline-block;
	padding: 0;
	margin: 0 0 20px;
}

.entry-content ol {
	display: inline-block;
	padding: 0;
	margin: 0 0 20px;
	list-style: none;
	counter-reset: my-awesome-counter;
}

.entry-content ul li {
	position: relative;
	padding: 0 0 0 24px;
	margin: 0 0 8px;
}

.entry-content ul li:before {
	content: "\f00c";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0;
	width: 10px;
}

.entry-content ul li li {
	list-style: disc;
}

.entry-content ol li {
	counter-increment: my-awesome-counter;
	margin: 0 0 8px;
}

.entry-content ol li::before {
	content: counter(my-awesome-counter) ". ";
	font-weight: 400;
}

/* Heading CSS */
h1,
.h1,
h2,
.h2,
h3,
h4,
h5,
h6 {
	color: #040606;
	line-height: 1.2;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	letter-spacing: -0.005em;
	margin: 0 0 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #040606;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
	color: #00979e;
}

h1,
.h1 {
	font-size: 66px;
	margin: 0 0 20px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}

h2,
.h2 {
	font-size: 32px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 17px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 16px;
}

/* Paragraph CSS */
p {
	font-size: 16px;
	line-height: 1.5;
	color: #040606;
	font-weight: 400;
	letter-spacing: 0;
	margin: 0 0 20px;
}

hr {
	border: none;
	margin: 30px 0;
	background: #040606;
	height: 1px;
	width: 100%;
	clear: both;
	opacity: 0.5;
}

blockquote {
	border-left: 5px solid #eee;
	font-size: 16px;
	margin: 0 0 20px;
	padding: 10px 20px;
}

/*table structure*/
table,
.entry-content table {
	border-right: 1px solid #eee;
	border-top: 1px solid #eee;
}

table th,
table td,
.entry-content th,
.entry-content table th,
.entry-content td,
.entry-content table td {
	background: #fff;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
	text-align: left;
	font-size: 16px;
	color: #333;
	font-weight: 400;
	padding: 12px 20px;
	vertical-align: middle;
}

table th {
	color: #040606;
	font-weight: 400;
	background: #d4d5d6;
}

.table-striped th,
.table-striped td {
	position: relative;
}

.table-striped tbody tr:nth-of-type(even) td {
	background: #d4d5d6;
}

/*Form Input Field*/
input,
textarea,
select {
	background: #fff;
	border: 1px solid #dbdbdb;
	width: 100%;
	padding: 10px 20px;
	margin: 0;
	font-size: 15px;
	color: #040606;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0;
	font-family: 'Poppins', sans-serif, Arial;
	height: 40px;
	outline: none;
	border-radius: 5px;
}

input[type="button"],
input[type="submit"] {
	cursor: pointer;
	width: auto;
	height: auto;
}

input[type="checkbox"],
input[type="radio"] {
	border: none;
	width: auto;
	height: auto;
}

textarea {
	height: auto;
	padding: 15px 20px;
	min-height: 100px;
	resize: none;
}

input[type="button"],
input[type="submit"],
input[type="image"],
input[type="file"],
input[type="search"] {
	-webkit-appearance: none;
}

input#addressSubmit {
	-webkit-appearance: none !important;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-appearance: normal;
}

.checkbox,
.radiobox {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	font-size: 15px;
	line-height: 20px;
	color: #333;
}

.checkbox input,
.radiobox input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.checkbox .checkmark {
	display: block;
	width: 20px;
	height: 20px;
	border: 1px solid #ccc;
	background: #ccc;
	position: absolute;
	left: 0;
	top: 0;
}

.checkmark:before {
	display: block;
	content: "\f00c";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	text-align: center;
	font-size: 16px;
	color: #fff;
	line-height: 17px;
	padding-left: 1px;
	opacity: 0;
}

.checkbox input:checked~.checkmark {
	background: #040606;
	border-color: #040606;
}

.checkbox input:checked~.checkmark:before {
	opacity: 1;
}

.radiobox .checkmark {
	display: block;
	width: 16px;
	height: 16px;
	background: #fff;
	border: 1px solid #040606;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 1px;
}

.radiobox .checkmark:before {
	display: none;
}

.radiobox .checkmark:after {
	display: block;
	content: "";
	background: #040606;
	border-radius: 50%;
	position: absolute;
	left: 2px;
	right: 2px;
	top: 2px;
	bottom: 2px;
	opacity: 0;
}

.radiobox input:checked~.checkmark:after {
	opacity: 1;
}

.selectbox {
	position: relative;
	background: #fff;
	border: 1px solid #040606;
	border-radius: 5px;
}

.selectbox select {
	background: none;
	border: 0;
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
	color: #040606;
	padding: 0 40px 0 15px;
	width: 100%;
	height: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	z-index: 1;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.selectbox:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "\f107";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	font-size: 20px;
	z-index: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	opacity: 0.8;
}

.selectbox.reversed:after {
	content: "\f0ec";
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	font-size: 14px;
}

/* Button styling */
.button,
.btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 15px 24px;
	background: none;
	border: 1px solid #00979e;
	color: #00979e;
	font-size: 16px;
	font-weight: 500;
	text-transform: none;
	cursor: pointer;
	letter-spacing: 0.02em;
	text-align: center;
	position: relative;
	min-width: 120px;
	line-height: 22px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 0;
	overflow: hidden;
}

.btn:before {
	display: block;
	content: "";
	background: #00979e;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	z-index: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.btn:hover:before,
.btn:focus:before {
	width: 100%;
}

.button:hover,
.btn:hover,
.button:focus,
.btn:focus {
	border-color: #00979e;
	color: #fff;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
}

.btn span {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 1;
}

.btn.primary {
	background: #00979e;
	border-color: #00979e;
	color: #fff;
}

.btn.primary:hover,
.btn.primary:focus {
	border-color: #000;
}

.btn.primary:hover:before,
.btn.primary:focus:before {
	background: #000;
}

.btn.secondary {
	background: #040606;
	border-color: #040606;
	color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus {
	border-color: #00979e;
}

.white-btn {
	background: #fff;
	border-color: #fff;
	color: #00979e;
}

.white-bdr {
	border-color: #fff;
	color: #fff;
}

.btn.white-hover:hover,
.btn.white-hover:focus {
	border-color: #fff;
	color: #00979e;
}

.btn.white-hover:hover:before,
.btn.white-hover:focus:before {
	background: #fff;
}

.btn i {
	font-size: 20px;
	margin-left: 5px;
}

.btn.small {
	padding: 8px 10px;
	font-size: 13px;
	line-height: 18px;
	min-width: 100px;
}

.btn.small i {
	font-size: 14px;
}

.main-wrapper {
	overflow: hidden;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1260px;
	padding: 0 20px;
}

.container.relative,
.max-container.relative {
	z-index: 2;
}

.max-container {
	margin: 0 auto;
	width: 100%;
	max-width: 1680px;
	padding: 0 20px;
}

section {
	position: relative;
}

section *:last-child {
	margin-bottom: 0;
}

.hidden {
	display: none !important;
	visibility: hidden !important;
}

.hide {
	display: none;
}

.v-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.j-center {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.ptb-100 {
	padding: 100px 0;
}

.ptb-80 {
	padding: 80px 0;
}

.ptb-60 {
	padding: 60px 0;
}

.ptb-40 {
	padding: 40px 0;
}

.ptb-30 {
	padding: 30px 0;
}

.ptb-20 {
	padding: 20px 0;
}

.bg1 {
	background: #00979e;
}

.bg2 {
	background: #282828;
}

.bg3 {
	background: #00979e;
	background: -o-linear-gradient(45deg, #000000 0%, #000000 50%, #494949 100%);
	background: linear-gradient(45deg, #000000 0%, #000000 50%, #494949 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#494949', GradientType=1);
}

.bg4 {
	background: #f7f7f7;
}

.relative {
	position: relative;
}

.trans {
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

/*============= GLOBAL CSS END ================*/
/*Header & Banner Section*/
.header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 10;
	padding: 0;
	background: #fff;
}

.header-inner {
	height: 100px;
}

.header-left {
	height: 100%;
	position: relative;
}

.site-logo {
	max-width: 240px;
	position: relative;
	z-index: 4;
	margin: 0;
}

.site-logo a,
.site-logo img {
	display: block;
	margin: 0;
}

.header-top-inner {
	height: 40px;
}

.head-link {
	font-size: 15px;
	line-height: 20px;
	color: #fff;
	font-weight: 600;
}

.head-link+.head-link {
	margin-left: 20px;
}

.head-link:hover {
	color: #040606;
}

.head-link i {
	color: #040606;
	font-size: 20px;
	margin-right: 5px;
}

.social-icons a {
	display: inline-block;
	min-width: 40px;
	max-width: 40px;
	height: 24px;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	text-align: center;
}

.social-icons a+a {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icons a:hover {
	color: #040606;
}

.header-right {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	margin-left: auto;
	position: relative;
	align-items: center;
}

.head-btnbox {
	margin-left: 20px;
}

.head-right-top {
	padding: 0;
}

.head-links {
	margin: 0;
	padding: 0;
}

.head-links li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	font-weight: 400;
}

.head-links li+li {
	margin-left: 5px;
}

.head-links li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	font-weight: 400;
}

.head-links li a i {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 5px;
	font-size: 20px;
	color: #00979e;
	min-width: 36px;
	height: 36px;
	background: #e5e3e3;
	border-radius: 50%;
}

.head-links li a:hover {
	color: #00979e;
}

.head-links .text {
	font-size: 14px;
	color: #555;
	font-weight: 300;
}

/*Nav Css*/
.nav-main {
	text-align: left;
	position: static;
	z-index: 4;
}

.nav-main ul {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.nav-main nav ul>li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}

.nav-main nav ul>li+li {
	margin-left: 30px;
}

.nav-main nav ul>li a {
	display: block;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Poppins', Arial;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	padding: 6px 0;
	position: relative;
	z-index: 2;
}

.nav-main nav ul>li.mega-current-menu-ancestor>a,
.nav-main nav ul>li.current-menu-item>a,
.nav-main nav ul>li:hover,
.nav-main nav ul>li:hover>a,
.nav-main nav ul>li a:hover,
.nav-main nav ul>li a:focus {
	color: #00979e;
}

.nav-main nav ul>li:before {
	display: block;
	content: "";
	height: 1px;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
	-webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
	-o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
	transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
	background: currentColor;
	opacity: 1;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.nav-main nav ul>li:hover:before,
.nav-main nav ul>li.active>a:before {
	opacity: 1;
	width: 100%;
}

.nav-main nav ul>li.menu-item-has-children>a {
	padding-right: 18px;
}

.nav-main nav ul>li.menu-item-has-children>a:after {
	display: block;
	content: "\f107";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	width: 16px;
	height: 16px;
	line-height: 16px;
	font-size: 12px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 10px;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.nav-main nav ul>li.menu-item-has-children:hover>a:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.nav-main .sub-menu {
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 1;
	background: #fff;
	min-width: 240px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-box-shadow: 0 5px 40px rgb(0 0 0 / 15%);
	box-shadow: 0 5px 40px rgb(0 0 0 / 15%);
	border-radius: 0;
}

.nav-main nav ul>li:hover>.sub-menu {
	display: block;
	opacity: 1;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.nav-main nav ul>li:last-child .sub-menu {
	left: auto;
	right: 0;
}

.nav-main .sub-menu li {
	display: block;
	text-align: left;
	position: relative;
	margin: 0 20px;
	padding: 0;
}

.nav-main .sub-menu li+li {
	border-top: 1px solid #dce0e0;
}

.nav-main .sub-menu li:before {
	display: none;
}

.nav-main .sub-menu li a {
	display: block;
	text-transform: none;
	color: #040606;
	font-size: 15px;
	line-height: normal;
	font-weight: 400;
	padding: 10px 0;
	height: auto;
}

.nav-main .sub-menu li a:hover,
.nav-main .sub-menu li a:focus,
.nav-main .sub-menu li.current-menu-item a {
	color: #00979e;
}

.nav-main .sub-menu .sub-menu {
	left: 100%;
	top: 0;
}

.nav-main .sub-menu li:hover .sub-menu {
	display: block;
}

/*Sticy header*/
.header.navbar_fixed {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.header.navbar_fixed .header-inner {
	height: 80px;
}

/*.header.navbar_fixed .head-right-top{
	margin-top: -38px; opacity: 0;
}*/

/*Home page Banner Css*/
.home-banner {
	/* padding: 50px 0; */
	background: url(../images/mainbanner.jpg);
	background-blend-mode: multiply;
	/* background-attachment: fixed; */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	/* top: 72px; */
	/* height: 690px; */
}

.home-banner .items {
	padding: 80px 0 0;
	height: 100vh;
	min-height: 640px;
	max-height: 740px;
	position: relative;
	overflow: hidden;
}

.hero-slider>.items {
	display: none;
}

.hero-slider>.items:nth-child(1) {
	display: block;
}

.hero-inner {
	margin: 0;
	position: relative;
	height: 100%;
}

.hero-caption {
	position: relative;
	z-index: 3;
	max-width: 520px;
}

.hero-caption .h1 {
	color: #ffffff;
	position: relative;
	text-shadow: 3px 2px 4px #1f1f1f;
	font-size: 41px;
	font-weight: 600;
}

.hero-caption .h1 strong {
	color: #00979e;
}

.hero-caption p {
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.005em;
}

.hero-caption .pre-title {
	padding: 8px 20px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: #00979e;
	margin: 0 0 10px;
	border-radius: 4px;
}

.hero-caption .pre-title strong {
	border-bottom: 1px solid #fff;
}

.hero-caption .btnbox .btn {
	min-width: 180px;
}

.home-banner .wst-grid-particles .wst-grid-line:after {
	background: #fff;
	opacity: 0.05;
}

.caption-imgbox {
	position: absolute;
	right: 50px;
	top: 0;
	bottom: 0;
	z-index: 4;
	max-width: 940px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.shape_star {
	position: absolute;
	left: 20px;
	bottom: 5%;
	height: 100px;
	width: 100px;
	background: url("../images/star.png") no-repeat center;
	background-size: 100% auto;
	z-index: 2;
}

.shape_only {
	position: absolute;
	right: 30%;
	top: 30%;
	height: 220px;
	width: 220px;
	background: url(../images/shape-white.png) no-repeat center;
	background-size: 100% auto;
}

.scroll-sign {
	position: absolute;
	width: 40px;
	height: 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 20px;
	z-index: 99999;
	text-align: center;
	font-size: 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	-o-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
	-webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
	transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
	cursor: pointer;
	z-index: 9999;
}

.scroll-sign:after {
	display: block;
	font-size: 18px;
	content: "";
	font-family: 'elegant-icons';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto 0;
	background: url(../images/mouse-icon1.png) no-repeat 0 0;
	width: 21px;
	height: 30px;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-fill-mode: both;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

@-webkit-keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-30px);
	}

	60% {
		-webkit-transform: translateY(-15px);
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

.hero-slider .slick-dots {
	left: auto;
	right: 20px;
	top: 0;
	bottom: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.hero-slider .slick-dots li {
	margin: 4px 0;
}

/*Form Style*/
.form-inner {
	margin: 0 -10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.input-field {
	padding: 0 10px;
	min-width: 50%;
	max-width: 50%;
	margin: 0 0 20px;
}

.input-field.full-width {
	min-width: 100%;
	max-width: 100%;
}

.input-field input,
.input-field textarea {
	padding: 4px 15px;
	height: 50px;
	border-radius: 6px;
}

.input-field textarea {
	padding: 15px 15px;
	min-height: 120px;
	height: 120px;
}




/* our branch css start   */

.card {
	overflow: hidden;
	position: relative;
	background-color: #ffffff;
	text-align: left;
	border-radius: 0.5rem;
	max-width: 530px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fortmaxlocation .header {
	padding: 10px;
	background-color: #ffffff;
}

.imagee img {
	width: 100%;
	height: auto;
	transition: 0.3s;
}

.imagee {
	width: 100%;
	border-radius: 12px;
	border: 2px solid #01969c;
	transition: 0.3s;
	overflow: hidden;
	height: 218px;
	display: inline-block;
	box-sizing: border-box;
}


.card-new {
	background: #e4feff;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.title {
	color: #01969c;
	font-size: 29px;
	font-weight: 700;
	/* line-height: 1.5rem; */
	/* position: relative; */
	/* top: 20px !important; */
	font-family: sans-serif;
}

.branchnew a i {
	font-size: 28px;
	color: #f90200;
}


.message {
	margin-top: 0.5rem;
	color: #6b7280;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

a.btnn {
	background: #01969c;
	padding: 10px 20px;
	margin-top: 10px !important;
	position: relative;
	color: white;
	border-radius: 22px 0px 0px;
}

a.btnn:hover {
	background: #01969c;
	padding: 10px 20px;
	margin-top: 10px !important;
	position: relative;
	color: white;
	border-radius: 0px 0px 22px;
}

/* our branch css end   */




/* salid fixed book in appointment css start  */

.fixed-contact-btnnew {
	position: fixed;
	right: 0;
	top: 42%;
	height: auto;
	z-index: 999;
}

.fixed-contact-btnnew .btnnew {
	text-align: center;
	font-weight: 500;
	border-radius: 20px 0 0 20px !important;
	font-size: 13px;
	text-transform: uppercase;
	line-height: 1.3;
	padding: 10px;
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.2);
	min-width: 130px;
}

.btnnew.primary {
	background: #f90200;
	border-color: #ffffff;
	color: #fff;
}

.btnnew:before {
	display: block;
	content: "";
	background: #00979e;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	z-index: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}





.fixed-contact-btnnew .btnnew i {
	font-size: 24px;
	margin: 0 0 5px;
}

.fixed-contact-btnnew .btnnew span {
	display: block;
}





.fixed-contact-btnnew.graft_btnbox {
	margin-top: 100px;
}

.btnnew.primary:hover,
.btnnew.primary:focus {
	border-color: #ffffff;
	background-color: #00979e
}




.fixed-contact-btnnew.Podcast_btnbox {
	margin-top: 100px;
}

.btnnew.primary:hover,
.btnnew.primary:focus {
	border-color: #ffffff;
	background-color: #00979e
}

.Podcastbtnbox {
    position: fixed;
    left:0;
    top: 42%;
    height: auto;
    z-index: 999;
}

.Podcastbtnbox .btnnew {
    text-align: center;
    font-weight: 500;
    border-radius: 0px 20px 20px 0px !important;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 10px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 160px;
    height: 80px;
}




/* salid fixed book in appointment css end */



/* why chose us css start  */


.box-icon-text {
	padding: 15px;
	width: 100%;
	height: 115px;
}

.side-text-heading {
	display: flex;
	align-items: center;
}

.side-text-heading img {
	width: 7%;
}

.side-text-heading h5 {
	font-size: 18px;
	color: #000;
	padding-left: 20px;
}

.box-icon-text p {
	font-size: 12px;
	color: #000;
	padding: 10px 30px 10px 0px;
	margin: 0;
}


/* why chose us css end  */



section.Associate {
	background: #a4a4a4;
}

section.Associate h4 {
	font-size: 23px;
	color: white;
	text-transform: uppercase;
}


/* provide-start */

.featured-title h5 {
	font-size: 19px;
	font-weight: 500;
}

.featured-item.text-center {
	padding-bottom: 30px;
}

.provide h2 {
	text-align: center;
	color: #00959b;
	font-size: 35px;
	padding: 40px 0 70px 0;
}

.featured-icon {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
	overflow: visible;
	z-index: 1;
}

.featured-icon i {
    font-size: 34px;
    color: #ee0000;
    transition: color 0.3s ease-in-out;
    z-index: 2;
    position: relative;
}

/* Plus sign ko bada aur background ke bahar dikhane ke liye */

.featured-icon::before, .featured-icon::after {
    content: "";
    position: absolute;
    background: #ee0000;
    border-radius: 10px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.featured-icon::before {
	width: 85px;
	height: 5px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.featured-icon::after {
	width: 5px;
	height: 85px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/* Hover Effect */

.featured-item:hover .featured-icon::before,
.featured-item:hover .featured-icon::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.2);
}

.featured-item:hover .featured-icon {
    background: #ee0000;
    transform: scale(0.9);
    transition-duration: 0.5s;
}

.featured-item:hover .featured-icon i {
	color: white;
	transition-duration: 0.5s;
	font-size: 40px;
}

/* provide-end */


/*===Footer Start===*/
.footer {
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	background: #00979e;
}

.footer-bottom {
	z-index: 2;
}

.footer-bottom a {
	color: #fff;
}

.footer-bottom a:hover {
	color: #fff;
}

.book-consult-btnbox {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.book-consult-btnbox .btn {
	width: 100%;
	padding: 15px 20px;
}

.scrollup {
	position: fixed;
	right: -20px;
	bottom: 10px;
	z-index: 4;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 18px;
	line-height: 34px;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	border: 1px solid #ccc;
	background: #fff;
	color: #7d003c;
}

.scrollup.active {
	right: 10px;
	opacity: 1;
}

/*Footer End*/

/*Midlle Section css*/
.middle-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

img.alignleft {
	float: left;
	margin: 0 20px 20px 0;
}

img.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

img.alignnone {
	margin: 0 0 20px;
}

iframe.alignleft {
	float: left;
	margin: 0 20px 20px 0;
}

iframe.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

iframe.iframe-embed.alignright {
	max-width: 500px;
	height: 315px !important;
}

.bg-img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
	background-size: cover !important;
}

.bg-img:before {
	display: block;
	content: "";
	/* background: #000; */
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
	opacity: 0.5;
}

.bg-img img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.bg-img.before-none:before {
	display: none;
}

.no-img.d-flex {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 24px;
	line-height: normal;
	color: #999;
	background: #ddd;
}

.btnbox {
	padding: 20px 0 0;
}

.mw_180 {
	min-width: 180px;
}

.block-title {
	position: relative;
	margin-bottom: 20px;
}

.block-title h2 strong {
	color: #00979e;
}

.block-title h2 {
	text-transform: uppercase;
}

.small-title {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	color: #00979e;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
}

.small-title:before {
	display: block;
	content: "";
	width: 160px;
	height: 2px;
	background: linear-gradient(270deg, #00979e, transparent);
	margin-right: 20px;
	/*	display: block; content: ""; width: 40px; height: 1px; background: #00979e; margin-right: 10px;*/
}

.text-center .small-title:after {
	display: block;
	content: "";
	width: 160px;
	height: 2px;
	background: linear-gradient(90deg, #00979e, transparent);
	margin-left: 16px;
	/*display: block; content: ""; width: 40px; height: 1px; background: #00979e; margin-left: 10px;*/
}

.text-white.small-title:before,
.text-white.small-title:after {
	background: #fff;
}

.read-more-btn {
	font-size: 16px;
	line-height: 20px;
	color: #040606;
	font-weight: 500;
}

.read-more-btn i {
	min-width: 34px;
	height: 34px;
	line-height: 34px;
	font-size: 18px;
	color: #00979e;
	background: #eee;
	text-align: center;
	margin-left: 10px;
	border-radius: 50%;
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.read-more-btn:hover i {
	background: #00979e;
	color: #fff;
}

.card-link {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 4;
}

.sigma_dots {
	width: 100px;
	height: 60px;
	content: "";
	background-position: 0 0, 5px 7px;
	background-size: 12px 12px;
	position: absolute;
	display: block;
	background-image: -o-radial-gradient(#d1d4d8 1px, transparent 0), -o-radial-gradient(#d1d4d8 1px, transparent 0);
	background-image: radial-gradient(#d1d4d8 1px, transparent 0), radial-gradient(#d1d4d8 1px, transparent 0);
	-webkit-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
	top: 20px;
	left: -20px;
	opacity: 1;
}

.three-line {
	border-top: 1px solid #00979e;
	border-bottom: 1px solid #00979e;
	height: 30px;
	width: 80px;
	position: absolute;
	left: 5%;
	bottom: -10px;
	opacity: 0.5;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.three-line:after {
	display: block;
	content: "";
	background: #00979e;
	height: 1px;
	width: 130px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.three-line.top {
	left: auto;
	right: 10%;
	bottom: auto;
	top: -10px;
	-webkit-transform: rotate(145deg);
	-ms-transform: rotate(145deg);
	transform: rotate(145deg);
}

/*Grid Style*/
.wst-grid-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.wst-grid-particles div {
	height: 100%;
}

.wst-grid-particles .wst-grid-line {
	height: 100%;
	padding: 0;
	position: relative;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.wst-grid-particles .wst-enlax {
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: inline-block;
	position: relative;
	z-index: 10;
}

.wst-grid-particles .wst-enlax:after {
	width: 12px;
	height: 12px;
	border-radius: 3px;
	left: -6px;
	position: absolute;
	background-color: #01ddff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
	display: inline-block;
}

.wst-grid-particles .wst-enlax.enl-sm:after {
	width: 8px;
	height: 8px;
	left: -4px;
}

.wst-grid-particles .wst-grid-line:after {
	background-color: rgba(0, 0, 0, 0.05);
	width: 1px;
	height: 100%;
	position: absolute;
	z-index: 9;
	display: inline-block;
	content: "";
}

.wst-grid-particles .wst-grid-line:last-child:before {
	width: 1px;
	height: 100%;
	position: absolute;
	z-index: 9;
	display: inline-block;
	content: "";
	right: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.03);
}

/*About Section*/
.bounce-y {
	-webkit-animation: bounce-y 10s infinite linear;
	animation: bounce-y 10s infinite linear;
}

@-webkit-keyframes float {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes float {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes bounce-y {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	50% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounce-y {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	50% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/*Media Section*/
.media-section .block-title .small-title {
	font-size: 26px;
	margin-bottom: 15px;
}

.endorsement-section .block-title .small-title {
	margin-bottom: 0px;
}

.media-list {
	padding: 0 20px;
}

.media-list .slick-track {
	margin: 0 auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.media-list .items {
	padding: 7px;
}

.card-media {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 80px;
	background: #fff;
	padding: 10px;
	text-align: center;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.card-media img {
	display: block;
	max-width: 160px;
	max-height: 80px;
	margin: 0 auto;
	mix-blend-mode: multiply;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.card-media:hover {
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.media-slider>.items {
	display: none;
}

.media-slider>.items:nth-child(1) .media-slider>.items:nth-child(2) .media-slider>.items:nth-child(3) .media-slider>.items:nth-child(4) .media-slider>.items:nth-child(5) {
	display: block;
}

.media-slider .slick-arrow {
	background: none;
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: 0 0 0 #000;
	box-shadow: 0 0 0 #000;
}

.media-slider .slick-arrow {
	left: -10px;
	color: #999;
}

.media-slider .slick-arrow.slick-next {
	left: auto;
	right: -10px;
}

.media-slider .slick-arrow:before {
	content: "\f104";
	font-size: 32px;
	line-height: 32px;
}

.media-slider .slick-arrow.slick-next:before {
	content: "\f105";
}

.media-slider .slick-arrow:hover {
	color: #00979e;
}

/*Clinic Video Section*/
.clinicvideo-inner .textarea {
	padding-left: 20px;
}

.videobox {
	width: 100%;
	background: #000;
	position: relative;
	overflow: hidden;
	padding: 0 0 56.66%;
}

.videobox img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	position: absolute;
}

.videobox .play-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	font-size: 80px;
	line-height: normal;
	color: #fff !important;
	cursor: pointer;
}

.videobox:hover .play-btn {
	background: rgba(0, 0, 0, 0.7);
}

.video-list {
	width: 100%;
	height: 100%;
}

.v-big-list {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	z-index: -9;
}

.v-big-list.active {
	opacity: 1;
	z-index: 2;
}

.v-big-list .items {
	width: 100%;
	height: 100%;
}

.v-big-list iframe {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
}

/*Real Results Section*/
.results-section {
	overflow: hidden;
}

.result-block {
	height: 100%;
	position: relative;
}

.results-inner .left-block {
	position: relative;
	z-index: 4;
}

.result-block .bg-img {
	width: 50vw;
	left: auto;
	right: 0;
}

.tl-box {
	padding: 40px 30px;
	background: #fff;
	position: relative;
	z-index: 2;
	width: 100%;
}

.tl-box h3 {
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.results-right-inn {
	padding: 60px 0 60px 20px;
}

.results-slider>.items {
	display: none;
}

.results-slider>.items:nth-child(1),
.results-slider>.items:nth-child(2) {
	display: block;
}

.results-slider .slick-list {
	overflow: visible;
}

.results-slider .slick-list:before {
	display: block;
	content: "";
	background: #f7f7f7;
	width: 100vw;
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	z-index: 2;
}

.results-slider .slick-list:after {
	display: block;
	content: "";
	width: 50vw;
	position: absolute;
	left: 100%;
	top: 0;
	bottom: 0;
	z-index: 2;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), color-stop(30%, rgba(255, 255, 255, 0.90)), color-stop(50%, rgba(255, 255, 255, 1)));
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.90) 30%, rgba(255, 255, 255, 1) 50%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.90) 30%, rgba(255, 255, 255, 1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}

.results-slider .slick-arrow {
	left: auto;
	right: 50px;
	top: -60px;
	margin: 0;
}

.results-slider .slick-arrow.slick-next {
	right: 0;
}

.card-result {
	text-align: center;
}

.card-result .imgbox {
	width: 100%;
	background: #000;
	overflow: hidden;
	position: relative;
}

.card-result .imgbox img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.card-result:hover .imgbox img {
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	filter: none;
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

.card-result h4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
	padding: 10px 10% 0;
}

.card-result h4 span {
	display: inline-block;
	width: 50%;
	opacity: 0.5;
}

.card-result h4 span+span {
	border-left: 1px solid #ddd;
}

/*hover-img*/
.hover-img .imgbox img {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	filter: gray;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.hover-img:hover .imgbox img {
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	filter: none;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.hover-img .imgbox:after {
	display: block;
	content: "";
	background: rgba(255, 255, 255, 0.1);
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.hover-img:hover .imgbox:after {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/*Hair Loss Solution*/
.hair-ls-section {
	overflow: hidden;
}

.hair-ls-section .container {
	z-index: 2;
}

.hair-ls-section .shape_star {
	left: 0;
	right: 0;
	top: 0;
	border: 0;
	margin: auto;
}

.hair-ls-section .wst-grid-particles .wst-grid-line:after {
	background: #fff;
	opacity: 0.1;
}

.hair-ls-section .bg-img:before {
	opacity: 1;
	width: 50%;
	background: -o-linear-gradient(45deg, rgba(128, 0, 64, 1) 0%, rgba(128, 0, 64, 0.7) 60%, rgba(128, 0, 64, 0.7) 61%, rgba(128, 0, 64, 0.5) 100%);
	background: linear-gradient(45deg, rgba(128, 0, 64, 1) 0%, rgba(128, 0, 64, 0.7) 60%, rgba(128, 0, 64, 0.7) 61%, rgba(128, 0, 64, 0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00979e', endColorstr='#8000979e', GradientType=1);
}

.hair-ls-section .textbox * {
	color: #fff;
}

.hair-ls-section .textbox p {
	color: rgba(255, 255, 255, 0.8);
}

.sol-items+.sol-items {
	margin-top: 30px;
}

.sol-items .iconbox {
	min-width: 80px;
	max-width: 80px;
	height: 80px;
	position: relative;
	border: 1px dashed #fff;
	margin-right: 20px;
	border-radius: 50%;
}

.sol-items .iconbox:before {
	display: block;
	content: "";
	background: #fff;
	position: absolute;
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px;
	border-radius: 50%;
}

.sol-items .iconbox img {
	max-width: 46px;
	position: relative;
	z-index: 2;
}

/*Service Section*/
.service-section {
	overflow: hidden;
}

.service-tab-block:before {
	display: block;
	content: "";
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 50%;
}

.service-list-tab {
	margin: 0;
	padding: 0;
	z-index: 3;
}

.service-list-tab .items {
	padding: 10px 10px 15px;
}

.card-serv-icon {
	padding: 10px 10px 15px;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
	position: relative;
	border-radius: 10px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	height: 100%;
	cursor: pointer;
}

.card-serv-icon:after {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	background: #00979e;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	margin: auto;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 1;
	opacity: 0;
}

.slick-current .card-serv-icon:after {
	opacity: 1;
}

.slick-current .card-serv-icon {
	color: #fff;
	border-color: #00979e;
	background: #00979e;
}

.service-list-tab .iconbox {
	padding: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 64px;
	max-width: 64px;
	height: 64px;
	margin-right: 20px;
	background: #fff;
	border-radius: 50%;
	margin: 0 auto 10px;
}

.service-list-tab .iconbox img {
	max-width: 50px;
}

.tab-tl {
	display: block;
	font-size: 15px;
	line-height: 18px;
	font-weight: 500;
}

.serv-slider-nav .slick-track {
	margin: 0 auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.serv-slider-nav .slick-arrow {
	background: none;
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: 0 0 0 #000;
	box-shadow: 0 0 0 #000;
}

.serv-slider-nav .slick-arrow {
	left: -20px;
	color: #999;
}

.serv-slider-nav .slick-arrow.slick-next {
	left: auto;
	right: -20px;
}

.serv-slider-nav .slick-arrow:before {
	font-size: 32px;
	line-height: 32px;
}

.serv-slider-nav .slick-arrow:hover {
	color: #00979e;
}

.serv-text-imgbox img {
	display: block;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-bottomright: 20px;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.serv-tab-content ul {
	padding: 15px 0 0;
	position: relative;
	-moz-column-count: 2;
	-moz-column-gap: 28px;
	-webkit-column-count: 2;
	-webkit-column-gap: 28px;
	column-count: 2;
	column-gap: 28px;
	counter-reset: li-counter;
	list-style-type: none;
}

.serv-tab-content ul li {
	display: inline-block;
	font-weight: 500;
	position: relative;
	padding: 5px 0 5px 44px;
	width: 100%;
}

.serv-tab-content.entry-content ul li:before {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	content: counter(li-counter, decimal);
	counter-increment: li-counter;
	width: 32px;
	height: 32px;
	margin-right: 10px;
	text-align: center;
	border: 2px solid #00979e;
	font-size: 15px;
	color: #00979e;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	border-radius: 50%;
}

.serv-tab-main .bg-img {
	opacity: 0.5;
	background-attachment: fixed !important;
}

.serv-slider-for .slick-track {
	display: block;
}

.serv-slider-for .slick-track .slick-slide {
	display: none;
	left: 0 !important;
}

.serv-slider-for .slick-track .slick-slide.slick-current {
	display: block;
}

/*counter-section*/
.counter-section {
	overflow: hidden;
}

.counter-section .bg-img {
	background-attachment: fixed !important;
}

/* .counter-section .bg-img:before {
    opacity: 0.7;
    background: #069293;
} */

.counter-list {
	margin: 0 -15px;
}

.counter-list .items {
	padding: 15px;
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	min-width: 20%;
	max-width: 20%;
}

.card-counter {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	text-align: center;
}

.card-counter .textbox {
	font-size: 40px;
	line-height: 40px;
	color: #fff;
}

.card-counter .textbox strong {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.count-symbol {
	font-size: 80%;
	font-weight: 400;
	margin-left: 5px;
}

.card-counter p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin: 10px 0 0;
}

.card-counter .iconbox {
	min-width: 80px;
	max-width: 80px;
	height: 80px;
	position: relative;
	margin: 0 auto 15px;
}

/*India Section*/
.pattern-bg.bg-img {
	background-size: auto !important;
	opacity: 0.2;
}

.cost-tab-nav {
	position: absolute;
	left: 0;
	top: 80px;
	z-index: 2;
	min-width: 320px;
	max-width: 320px;
}

.cost-tab-nav .items+.items {
	margin-top: 10px;
}

.cost-tab-text {
	padding: 20px 40px 20px 20px;
	display: block;
	background: #00979e;
	width: 100%;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	position: relative;
	cursor: pointer;
}

.cost-tab-text:after {
	display: block;
	content: "";
	opacity: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 16px solid #00979e;
	border-right: 0;
	position: absolute;
	left: 100%;
	top: 0;
	bottom: 0;
	margin: auto;
}

.slick-current .cost-tab-text:after {
	opacity: 1;
}

.cost-inner {
	padding-left: 100px;
}

.cost-slider>.items {
	display: none;
}

.cost-slider>.items:nth-child(1) {
	display: block;
}

.bene-imgbox {
	height: 540px;
	background: #000;
}

.bene-imgbox img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0.8;
}

.cost-text-block {
	padding: 40px;
	margin: -100px 0 0 20%;
	position: relative;
	z-index: 2;
}

.cost-tab-text>.items {
	display: none;
}

.cost-tab-text>.items:first-child {
	display: block;
}

.cost-tab-nav .slick-track {
	display: block;
}

.cost-tab-nav .slick-slide {
	width: 100% !important;
}

.cost-tab-nav .slick-slide {
	padding-right: 40px;
}

.cost-overlay {
	padding: 30px;
	min-width: 540px;
	max-width: 540px;
	position: absolute;
	right: 20px;
	bottom: 20px;
	background: rgba(255, 255, 255, 0.9);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.btns-detail {
	margin: 0 -5px;
}

.btns-detail .add-items {
	width: 50%;
	padding: 5px;
}

.btns-detail .btn {
	width: 100%;
	padding-left: 60px;
}

.btns-detail .btn .c_icon {
	position: absolute;
	left: 1px;
	top: 1px;
	bottom: 2px;
	font-size: 20px;
	margin: 0;
	width: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	z-index: 2;
}

/*Procedure Section*/
.procedure-section {
	overflow: hidden;
}

.procedure-section .shape_star {
	left: auto;
	right: 20px;
}

.procedure-list {
	counter-reset: li-counter;
}

.procedure-list .items {
	margin: 0 0 30px;
}

.card-procedure {
	padding: 20px 20px;
	position: relative;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #E8E8E8;
	/* box-shadow: 0 5px 10px rgba(0,0,0,0.2); */
	border-radius: 10px;
	height: 100%;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.card-procedure:after {
	display: block;
	content: "";
	width: 40px;
	height: 1px;
	/* background: #00979e; */
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	margin: auto;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	border-bottom: 1px solid #00979e;
}

.procedure-list .items:nth-child(2n) .card-procedure:after {
	border-color: #474AFF;
}

.card-procedure:hover:after {
	width: 80px;
}

.card-procedure h4 {
	font-size: 17px;
}

.teamdummy h6 {
	margin: 3px;
}

.card-procedure p {
	font-size: 14px;
	line-height: 22px;
	color: #555;
}

.card-procedure .iconbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	margin: 0 auto 20px;
	-ms-flex-preferred-size: 100px;
	flex-basis: 100px;
	min-width: 100px;
	max-width: 100px;
	height: 100px;
	border-radius: 50%;
	-webkit-box-shadow: 0px 5px 10px #00979e;
	box-shadow: 0px 5px 10px #00979e;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	background: -webkit-gradient(linear, left top, left bottom, from(#08bcc5), to(#08bcc5));
	background: -o-linear-gradient(top, #05afb8 0%, #08bcc5 100%);
	background: linear-gradient(to bottom, #05afb8 0%, #08bcc5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00979e', endColorstr='#ab00979e', GradientType=0);
}

.card-procedure .iconbox:before {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #00979e;
	border: 3px solid #fff;
	min-width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	right: -5px;
	top: -5px;
	font-size: 14px;
	line-height: 1.2;
	color: #fff;
	font-style: normal;
	font-weight: 600;
	content: counter(li-counter, decimal);
	counter-increment: li-counter;
}

.card-procedure .iconbox img {
	max-width: 60px;
}

.procedure-list .items:nth-child(2n) .card-procedure .iconbox {
	-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
	background: -o-linear-gradient(269.56deg, #00979e 0.36%, #00979e 99.6%);
	background: linear-gradient(180.44deg, #00979e 0.36%, #00979e 99.6%);
}

.procedure-list .items:nth-child(2n) .card-procedure .iconbox:before {
	background: #00979e;
}

.card-procedure:hover {
	background: rgba(128, 0, 64, 0.05);
	border-color: rgba(128, 0, 64, 0.05);
}

.card-procedure:hover .iconbox {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.procedure-list .items:nth-child(2n) .card-procedure:hover {
	background: #EAEAFF;
	border-color: #dedef3;
}

/*Ideal Section*/
.ideal-section {
	overflow: hidden;
}

.ideal-section .wst-grid-particles .wst-grid-line:after {
	background: #fff;
	opacity: 0.1;
}

.ideal-section .container {
	z-index: 3;
}

.ideal-section .textbox * {
	color: #fff;
}

/*Journey Section*/
.journey-slider>.items {
	display: none;
}

.journey-slider>.items:nth-child(1),
.journey-slider>.items:nth-child(2),
.journey-slider>.items:nth-child(3),
.journey-slider>.items:nth-child(4) {
	display: block;
}

.card-journey {
	padding: 0 0 10px;
	position: relative;
	text-align: center;
}

.card-journey .imgbox {
	width: 100%;
	height: 340px;
	background: #000;
	overflow: hidden;
}

.card-journey .imgbox img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0.8;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.card-journey:hover .imgbox img {
	opacity: 1;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.card-journey .text {
	padding: 20px;
	background: #fff;
	margin: -20px 20px 0;
	position: relative;
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

.journey-slider .slick-list {
	overflow: visible;
}

.journey-slider .slick-list:before {
	display: block;
	content: "";
	background: #f7f7f7;
	width: 100vw;
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	z-index: 2;
}

.journey-slider .slick-list:after {
	display: block;
	content: "";
	width: 50vw;
	position: absolute;
	left: 100%;
	top: 0;
	bottom: 0;
	z-index: 2;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), color-stop(30%, rgba(255, 255, 255, 0.90)), color-stop(50%, rgba(255, 255, 255, 1)));
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.90) 30%, rgba(255, 255, 255, 1) 50%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.90) 30%, rgba(255, 255, 255, 1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}

.journey-slider .slick-arrow {
	left: auto;
	right: 50px;
	top: -60px;
	margin: 0;
}

.journey-slider .slick-arrow.slick-next {
	right: 0;
}

/* background: #000; position: relative; overflow: hidden; padding: 0 0 56.66%;*/

/*Video Testimonial Section*/
.video-box {
	width: 100%;
	background: #000;
	position: relative;
	overflow: hidden;
	padding: 0 0 56.66%;

}

.video-box1 {
	width: 100%;

}

.video-box iframe,
.video-box video {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
}

/*Testimonials Section*/
.testimonial-section {
	overflow: hidden;
}

.testimonial-section .shape_only {
	left: -60px;
	right: auto;
}

.testimonial-section .sigma_dots {
	top: 0;
	bottom: 0;
	left: 70%;
	width: 100vw;
	margin: auto;
	height: 180px;
	opacity: 0.5;
}

.testimonial-slider>.items {
	display: none;
}

.testimonial-slider>.items:nth-child(1),
.testimonial-slider>.items:nth-child(2) {
	display: block;
}

.testimonial-slider .slick-list {
	padding: 20px 0;
}

.card-testi {
	padding: 40px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	background: #fff;
	position: relative;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.quote-icon {
	display: block;
	width: 50px;
	height: 40px;
	background: url('../images/quote-icon.png') no-repeat center;
	background-size: 100% auto;
	margin: 0 0 20px;
}

.client-info {
	font-size: 18px;
	color: #040606;
	position: relative;
	padding: 10px 0;
}

.client-info:after {
	display: block;
	content: "";
	background: #00979e;
	height: 1px;
	width: 60px;
	position: absolute;
	left: 0;
	bottom: -5px;
}

.client-info .client-post {
	display: block;
	font-size: 14px;
	color: #555;
	margin: 10px 0 0;
}

.star-box {
	font-size: 24px;
	color: #00979e;
	letter-spacing: 0.05em;
}

.testimonial-slider .slick-arrow {
	top: auto;
	top: -60px;
	margin: 0;
	left: auto;
	right: 15px;
}

.testimonial-slider .slick-arrow.slick-prev {
	right: 65px;
}

.testimonial-slider .slick-arrow:hover {
	background: #fff;
	border-color: #fff;
	color: #00979e;
}


/*Team Section*/
.team-section {
	overflow: hidden;
}

.team-list {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.card-team {
	position: relative;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}

.card-team .imgbox {
	display: block;
	width: 300px;
	height: 300px;
	margin: 0 auto 20px;
	overflow: hidden;
	border-radius: 50%;
	border: 10px solid #fff;
	-webkit-box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
}

.card-team .imgbox img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.card-team h4 {
	font-weight: 300;
	color: #00979e;
}

.card-team p {
	color: #333;
}

.appointment-button {
	padding-left: 70px;
}

.appointment-button i {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2);
	margin: 0;
	font-size: 28px;
}

.expert-block {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*Faq Section*/
.faq-section .container {
	max-width: 940px;
}

.faq-list {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-card {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.acc_trigger {
	padding: 15px 40px 15px 0;
	font-size: 20px;
	color: #000;
	font-weight: 500;
	margin: 0;
	cursor: pointer;
	position: relative;
}

.acc_trigger:after {
	display: block;
	content: "\f067";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 15px;
}

.acc_trigger[aria-expanded="true"] {
	color: #00979e;
}

.acc_trigger[aria-expanded="true"]:after {
	content: "\f068";
}

.faq-card .content-box {
	padding: 0 0 10px;
}

/*Contact Section*/
.address-block-inner {
	padding: 40px;
	background: #fff;
	width: 100%;
	max-width: 480px;
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.address-block-inner .shape_star {
	left: auto;
	right: 20px;
	bottom: auto;
	top: 20px;
	width: 50px;
	height: 50px;
}

.address-block-inner .three-line {
	left: -24px;
	bottom: -2px;
	opacity: 1;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mapbox {
	background: #000;
	position: relative;
	position: absolute;
	top: 100px;
	bottom: 0;
	left: 0;
	right: 0;
}

.mapbox iframe {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.address-block {
	position: relative;
	z-index: 2;
}

.cont-items+.cont-items {
	margin-top: 20px;
}

.cont-items .iconbox {
	font-size: 28px;
	color: #00979e;
	position: relative;
	top: 2px;
	margin-right: 15px;
	min-width: 28px;
	max-width: 28px;
}

.cont-items p {
	margin: 0;
}

.cont-items p strong {
	font-weight: 600;
	font-size: 16px;
}

.cont-items a {
	color: #00979e;
}

.cont-items a:hover {
	color: #00979e;
}

.address .iconbox {
	top: 0;
}

.cont-items.email p,
.cont-items.phone p {
	font-size: 18px;
}

.address-block .social-block {
	position: absolute;
	left: 20px;
	top: 0;
	z-index: 3;
}

.social-media a {
	display: inline-block;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	background: #00979e;
	color: #fff;
	text-align: center;
	border-radius: 50%;
}

.social-media a+a {
	margin-left: 10px;
}

.social-media a:hover {
	background: #00979e;
	color: #fff;
}

.map-bg {
	overflow: hidden;
	background: url('../images/mapbg.png') no-repeat right;
}

.contact-imgbox {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
}

.contact-imgbox img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center top;
	object-position: center top;
}

.contact-block {
	padding: 60px;
	margin-left: -60px;
	background: #fff;
	/*border: 5px solid #00979e;*/
	-webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
	border-radius: 15px;
}

.contact-block .sigma_dots {
	left: auto;
	right: -40px;
}

.contact-block .shape_star {
	width: 60px;
	height: 60px;
	display: none;
}

.form-block .b24-form-header-padding {
	padding: 0;
}

.form-block .b24-form-wrapper.b24-form-border-bottom {
	border: 0;
}

.form-block .b24-form-content {
	padding: 0;
}

.form-block .b24-form-field {
	margin-bottom: 20px;
}

.form-block .b24-form-btn-container {
	margin-top: 15px;
}

.form-block .b24-form-btn-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.form-block .b24-form-btn {
	width: auto;
	min-width: 180px;
	margin-right: auto !important;
	border-radius: 0;
}

.form-block .b24-form-btn:after {
	display: inline-block;
	content: "\f1d8";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	margin-left: 10px;
}

/*Endorsements Section*/
.endorsement-section {
	border-top: 1px solid #ddd;
}

.crad-endors {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.crad-endors:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.hair-ls-block .row {
	padding: 40px 30px;
	background: rgba(0, 0, 0, 0.2);
}

.hair-ls-block .row:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	margin-top: 30px;
}

.hair-ls-block * {
	color: #fff;
}

.form-block .b24-form-btn-block .b24-form-btn:after {
	display: none;
}

.header .head-phone {
	display: none;
}

.mobi-head-links {
	display: none;
}

/*.form-block .b24-form-field:nth-child(2) .b24-form-control-icon-after { position:relative; }
.form-block .b24-form-field:nth-child(2) .b24-form-control-icon-after:before { content: ""; position: absolute; bottom: 12px; width: 20px; height: 11px; background-image: url(../images/flags.png); -webkit-box-shadow: 0px 0px 1px 0px #888; box-shadow: 0px 0px 1px 0px #888; background-repeat: no-repeat; background-position: -5263px 0; background-color: #DBDBDB; left: 11px; }*/
/*.form-block .b24-form-field:nth-child(2) .b24-form-control-icon-after:after { content: ""; position: absolute;top: 0; bottom: 0;left: 0; width: 60px; height: 100%; background-color: rgba(0, 0, 0, 0.04) !important; }*/
/*.form-block .b24-form-field:nth-child(2) .b24-form-control-icon-after input.b24-form-control { padding-left:37px; }*/

/* Thank you page */
.thank-you-page {
	height: calc(100vh - 205px);
}

.thank-you-page .container {
	height: 100%;
}

.thank-you-page .step4 {
	padding: 0 60px 40px 60px;
	position: relative;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.thank-you-page .step4 {
	background: url(../images/bg-thankyou.jpg) left center no-repeat;
	background-size: cover;
}

.thank-you-page .location {
	width: 100%;
	margin-top: auto;
}

.thank-you-page .location ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.thank-you-page .location li {
	background: url(../images/icon-location.png) left top no-repeat;
	padding-left: 65px;
	width: 50%;
}

.thank-you-page .location li:before {
	display: none;
}

.thank-you-page .location li~li {
	margin-left: 100px;
}

.thank-you-page .location li h5 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.thank-you-page .location li p {
	font-size: 18px;
	line-height: 22px;
	color: #fff;
}

.thank-you-page .step4 .thank-you {
	text-align: center;
	max-width: 65%;
	margin: 30px auto 0;
}

.thank-you-page .step4 .thank-you img {
	max-width: 90px;
	margin-bottom: 10px;
}

.thank-you-page .step4 .thank-you h3 {
	font-size: 42px;
	color: #fff;
	line-height: 50px;
	letter-spacing: 5px;
	margin-bottom: 10px;
}

.thank-you-page .step4 .thank-you p {
	font-size: 18px;
	color: #fff;
	line-height: 24px;
}

.thank-you-page .box {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
	height: 100%;
}

.header-blank {
	height: 100px;
}

.joinchat--left .joinchat__button {
	left: 0 !important;
	bottom: 0 !important;
}

.results-section-video .video-test-list .items {
	padding-top: 15px;
	padding-bottom: 15px;
}

.google-review-section {
	background: #f7f7f7;
}

.parallelogram_shape {
	width: 70px;
	height: 140px;
	position: absolute;
	left: -5%;
	bottom: 20px;
	margin: auto;
	opacity: 0.5;
	filter: grayscale(1);
}

.parallelogram_shape .shape_1 {
	display: block;
	width: 100%;
	background: #d09824;
	transform: skew(15deg, 15deg);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.parallelogram_shape .shape_2 {
	display: block;
	content: "";
	width: 40%;
	background: #d09824;
	transform: skew(15deg, 15deg);
	position: absolute;
	right: 100%;
	top: 20%;
	bottom: 20%;
}

.parallelogram_shape .shape_3 {
	display: block;
	content: "";
	width: 40%;
	background: #d09824;
	transform: skew(15deg, 15deg);
	position: absolute;
	left: 100%;
	top: 20%;
	bottom: 20%;
}

.testimonial-section .parallelogram_shape {
	width: 100px;
	height: 100px;
	left: 15%;
	opacity: 0.1;
	top: 20px;
	bottom: auto;
}

.video-landing-page .video-box {
	border-radius: 15px;
}

.video-landing-page .slick-dots {
	bottom: -14px;
}




/*==========================================
===============:: MEDIA CSS ::==============
============================================*/
@media screen and (max-width:1679px) {
	.caption-imgbox {
		max-width: 740px;
	}
}

@media screen and (max-width:1365px) {
	.container {
		max-width: 1100px;
	}

	.caption-imgbox {
		max-width: 620px;
	}
}

/* iPad 1024px View */
@media screen and (max-width:1199px) {
	.container {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}

	.btnbox {
		padding: 15px 0 0;
	}

	.ptb-100 {
		padding: 80px 0;
	}

	.ptb-60,
	.ptb-80,
	.ptb-90 {
		padding: 40px 0;
	}

	h1,
	.h1 {
		font-size: 46px;
		line-height: 1.2;
	}

	h2,
	.h2 {
		font-size: 32px;
		margin: 0 0 15px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	p {
		font-size: 15px;
		line-height: 24px;
		margin-bottom: 15px;
	}

	ul li,
	ol li {
		font-size: 15px;
		line-height: 24px;
	}

	.block-title p br {
		display: none;
	}

	/*Header and banner*/
	.nav-main,
	.head-right-top,
	.head-btnbox {
		display: none !important;
	}

	.mobi-iconbox {
		display: block;
	}

	.header .head-phone {
		display: block;
		width: 40px;
		height: 40px;
		background: #f7f7f7;
		position: relative;
		z-index: 40;
		-webkit-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
		border-radius: 50%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		font-size: 22px;
		color: #00979e;
	}

	.header .head-phone i {
		position: relative;
		top: 1px;
	}

	.site-logo {
		max-width: 200px;
	}

	.mobi-head-links {
		display: block;
		margin-left: 12px;
	}

	.header-inner {
		height: 80px;
	}

	.header-right {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.home-banner .items {
		min-height: 560px;
		max-height: 560px;
	}

	.hero-caption {
		max-width: 380px;
	}

	.hero-caption p {
		font-size: 15px;
		line-height: 22px;
	}

	.caption-imgbox {
		max-width: 540px;
	}

	.clinicvideo-inner .textarea {
		padding-left: 0;
	}

	.card-counter .textbox {
		font-size: 32px;
		line-height: 32px;
	}

	.shape_only {
		height: 160px;
		width: 160px;
	}

	.shape_star {
		height: 50px;
		width: 50px;
	}

	.header-blank {
		height: 80px;
	}

	.thank-you-page {
		height: 100%;
	}

	.thank-you-page .location {
		margin-top: 40px;
	}

	.joinchat {
		--bottom: 10px !important;
		--sep: 10px !important;
	}


}

/* iPad 768px view*/
@media screen and (max-width:991px) {

	h1,
	.h1 {
		font-size: 32px;
		margin: 0 0 15px;
	}

	p {
		margin: 0 0 15px;
	}

	.ptb-120 {
		padding: 80px 0;
	}

	.ptb-100,
	.ptb-80 {
		padding: 40px 0;
	}

	.button,
	.btn {
		font-size: 15px;
		padding: 12px 20px;
	}

	/*Header and banner*/
	.caption-imgbox {
		max-width: 460px;
	}

	.hero-caption .btnbox .btn {
		margin-right: auto;
		margin-left: 0 !important;
	}

	.clinicvideo-inner .right-block {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.clinicvideo-inner .left-block {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin-top: 30px;
	}

	.results-inner .left-block {
		display: none;
	}

	.results-right-inn {
		padding: 40px 0 20px;
	}

	.hair-ls-section .right-block {
		display: block;
		margin-top: 30px;
	}

	.hair-ls-section .bg-img {
		background: none !important;
	}

	.hair-ls-section .bg-img:before {
		width: 100%;
	}

	.counter-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.counter-list .items {
		-ms-flex-preferred-size: 33.33%;
		flex-basis: 33.33%;
		min-width: 33.33%;
		max-width: 33.33%;
	}

	.cost-inner {
		padding-left: 40px;
	}

	.cost-tab-nav {
		top: 20px;
	}

	.testimonial-slider {
		margin: 0 -20px;
	}

	.testimonial-slider .slick-list {
		padding: 20px 60px;
	}

	.card-team .imgbox {
		width: 240px;
		height: 240px;
	}

	.address-block-inner {
		max-width: 380px;
	}

	.contact-block {
		padding: 40px 30px;
	}

	.team-list .left-block {
		margin-bottom: 30px;
	}

	.thank-you-page .step4 {
		padding: 0 30px 30px 30px;
	}

	.thank-you-page .location li~li {
		margin-left: 20px;
	}

	.thank-you-page .location li p {
		font-size: 16px;
	}

}

.results-section .small-title {
	font-size: 26px;
}

.hair-ls-section .small-title {
	font-size: 26px;
}

.service-section .small-title {
	font-size: 26px;
}

.procedure-section .small-title {
	font-size: 26px;
}

.journey-section .small-title {
	font-size: 26px;
}

.testimonial-section .small-title {
	font-size: 26px;
}

.faq-section .small-title {
	font-size: 26px;
}

/* @media screen and (max-width:1023px) {

	.header-right.ml-auto.d-flex.col-8 h4 {
		font-size: 12px;
	}
} */

/* iPhone-6 plus 736 (Landscape) view */
@media screen and (max-width:768px) {


	.home-banner {
		/* padding: 50px 0; */
		background: url(../images/mainbanner.jpg);
		background-blend-mode: multiply;
		/* background-attachment: fixed; */
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		position: relative;
		top: 72px;
		height: auto;
	}


	.header-right.ml-auto.d-flex.col-8 h4 {
		font-size: 12px;
	}


	body {
		padding-bottom: 20px;
		-webkit-text-size-adjust: none;
	}

	h1,
	.h1 {
		font-size: 30px;
	}

	h2,
	.h2 {
		font-size: 26px;
		line-height: 28px;
	}

	p {
		margin: 0 0 15px;
	}

	.ptb-120,
	.ptb-100,
	.ptb-80,
	.ptb-90,
	.ptb-60,
	.ptb-50 {
		padding: 40px 0;
	}

	img.alignleft,
	img.alignright,
	img.alignnone,
	iframe.alignleft,
	iframe.alignright {
		float: none;
		margin: 0 0 20px;
	}

	.small-title {
		margin-bottom: 4px;
	}

	.small-title:before,
	.small-title:after {
		width: 0px !important;
	}

	/*.book-consult-btnbox*/
	.book-consult-btnbox.darkHeader .btn {
		font-size: 18px;
	}

	.book-consult-btnbox.darkHeader {
		display: block;
	}

	.scrollup {
		right: 10px !important;
	}

	body.darkHeader-sticky .scrollup {
		bottom: 60px;
	}

	.joinchat--left .joinchat__button {
		transition: all 0.4s ease 0s !important;
	}

	body.darkHeader-sticky .joinchat--left .joinchat__button {
		bottom: 55px !important;
	}

	/*Header and banner*/
	.mobile-menu-block {
		width: 90%;
		right: auto;
		left: -100%;
	}

	.mobile-menu-open .mobile-menu-block {
		right: 0;
	}

	.header .container {
		padding: 0 10px;
	}

	.mobi-iconbox,
	.head-icon-link a+a {
		margin-left: 5px;
	}

	.site-logo {
		max-width: 180px;
	}

	.home-banner .items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-height: inherit;
		height: auto;
		padding: 80px 0;
	}

	.home-banner .items>.container {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		height: auto !important;
	}

	/*max-width: 360px;*/
	.caption-imgbox {
		padding: 20px 0 0;
		max-width: 350px;
		margin: 0 auto;
		position: relative;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.caption-imgbox {
		position: relative;
		right: 0px;
		top: 0px !important;
		bottom: 0;
		z-index: 4;
		max-width: 940px;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.btnbox.d-flex.wow.fadeInLeft {
		visibility: visible !important;
	}

	.shape_only {
		height: 80px;
		width: 80px;
		left: 20px;
		top: 160px;
	}

	.hero-inner {
		height: auto;
	}

	.hero-caption {
		padding: 30px 20px;
		max-width: 360px;
		text-align: center;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 10px;
		margin: 0 auto;
	}

	.hero-caption .btnbox .btn {
		margin-right: auto;
		margin-left: auto !important;
	}

	.hero-caption .pre-title {
		padding: 8px 15px;
		font-size: 14px;
	}

	.videobox .play-btn {
		font-size: 60px;
	}

	.results-inner .block-title,
	.procedure-section .block-title {
		text-align: center;
	}

	.results-inner .block-title .small-title:after,
	.procedure-section .block-title .small-title:after {
		display: block;
		content: "";
		height: 1px;
		background: #00979e;
		margin-left: 10px;
	}

	.results-list {
		padding: 0;
	}

	.results-slider .slick-arrow {
		left: -10px;
		right: auto;
		top: 50%;
		margin: -40px 0 0;
		background: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.results-slider .slick-arrow.slick-next {
		right: -10px;
		left: auto;
	}

	.results-slider .slick-arrow:before {
		font-size: 32px;
		color: #00979e;
	}

	.xs-hide {
		display: none;
	}

	.hair-ls-section .textbox {
		padding: 10px 0;
	}

	.sol-items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.sol-items .iconbox {
		margin: 0 0 10px;
	}

	.sol-items+.sol-items {
		margin-top: 20px;
	}

	.service-tab-block .container {
		padding: 0 10px;
	}

	.service-section .block-title {
		padding-bottom: 20px;
	}

	.serv-tab-main {
		padding: 20px 0;
	}

	.serv-text-inner .right-block {
		margin-top: 30px;
	}

	.serv-tab-content ul {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}

	.counter-list .items {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		min-width: 100%;
		max-width: 100%;
	}

	.card-counter p {
		font-size: 14px;
	}

	.card-counter {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		text-align: left;
	}

	.card-counter .iconbox {
		margin: 0 20px 0 0;
	}

	.cost-inner {
		padding-left: 0;
	}

	.bene-imgbox {
		height: auto;
		background: none;
	}

	.bene-imgbox img {
		height: auto;
		opacity: 1;
	}

	.cost-tab-text {
		padding: 20px;
		font-size: 16px;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.cost-overlay {
		padding: 30px 20px;
		position: relative;
		right: 0;
		bottom: 0;
		min-width: 100%;
		max-width: 100%;
		background: #eee;
	}

	.cost-tab-nav {
		position: relative;
		top: 0;
		min-width: 100%;
		max-width: 100%;
	}

	.cost-tab-nav .slick-track {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.cost-tab-nav .slick-slide {
		padding-right: 0;
		text-align: center;
	}

	.cost-tab-nav .items+.items {
		margin-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.05);
	}

	.cost-tab-nav .slick-list {
		overflow: visible;
	}

	.cost-tab-text:after {
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		left: 0;
		right: 0;
		top: auto;
		bottom: -18px;
	}

	.india-section .block-title {
		padding: 0;
	}

	.btns-detail {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.btns-detail .add-items {
		width: 100%;
	}

	.btns-detail .btn {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.procedure-list .items {
		margin: 0 0 20px;
	}

	.procedure-section .block-title .btnbox {
		margin: 0 auto;
	}

	.procedure-list {
		padding: 10px 0;
	}

	.ideal-inner .imgbox {
		display: block;
	}

	.ideal-inner .textbox {
		padding: 0;
	}

	.ideal-section .bg-img {
		display: none;
	}

	.journey-slider {
		padding: 0 0 40px;
	}

	.journey-slider .items {
		padding: 0 10px;
	}

	.journey-slider .slick-list {
		padding: 0 40px 0 5px;
	}

	.journey-slider .slick-arrow {
		left: auto;
		right: 50%;
		top: auto;
		bottom: 0;
		margin: 0 5px 0 0;
	}

	.journey-slider .slick-arrow.slick-next {
		right: auto;
		left: 50%;
		margin: 0 0 0 5px;
	}

	.video-test-list {
		padding: 0;
	}

	.video-test-list .items+.items {
		margin-top: 20px;
	}

	.video-landing-page .video-test-list .items+.items {
		margin-top: 0;
	}

	.testimonial-slider {
		padding: 0 0 40px;
	}

	.testimonial-slider .slick-arrow {
		left: auto;
		right: 50%;
		top: auto;
		bottom: -20px;
		margin: 0 5px 0 0;
	}

	.testimonial-slider .slick-arrow.slick-prev {
		left: auto;
		right: 50%;
	}

	.testimonial-slider .slick-arrow.slick-next {
		right: auto;
		left: 50%;
		margin: 0 0 0 5px;
	}

	.testimonial-slider .items {
		padding: 0 10px;
	}

	.testimonial-slider .slick-list {
		padding: 10px 40px 0 10px;
	}

	.card-testi {
		padding: 20px;
	}

	.star-box {
		font-size: 18px;
	}

	.appointment-button {
		padding-left: 50px;
	}

	.appointment-button i {
		width: 40px;
	}

	.team-list .items+.items {
		margin-top: 40px;
	}

	.acc_trigger {
		font-size: 16px;
	}

	/*Contact Section*/
	.mapbox {
		position: relative;
		top: 0;
		height: 280px;
		margin: 20px 0 0;
	}

	.address-block .container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 0;
	}

	.address-block .social-block {
		padding: 15px 0 0;
		position: relative;
		left: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0;
		border-top: 1px solid #ddd;
	}

	.address-block .social-block h6 {
		margin: 0 0 10px !important;
	}

	.contact-block {
		padding: 30px 20px;
		margin: 0;
	}

	.contact-imgbox {
		width: 100%;
	}

	.form-block {
		padding: 0;
	}

	.media-section .block-title .small-title {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 0;
		margin-bottom: 0px;
	}

	.address-block-inner {
		padding: 0 20px 40px;
		max-width: 100%;
		-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
	}

	.address-block {
		padding: 30px 0;
		background: #fff;
		-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
		overflow: hidden;
		margin: 0 20px;
	}

	.wst-grid-particles {
		display: none;
	}

	.hair-ls-block .row {
		padding: 30px 10px;
		margin: 0;
	}

	.hair-ls-section .block-title {
		padding: 0;
	}


	.expert-block {
		text-align: center;
	}

	.cost-tab-nav .items.slick-current .cost-tab-text {
		background: #55002a;
	}

	.cost-tab-text:after {
		border-left-color: #55002a;
	}

	.serv-tab-content .serv-text-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.serv-tab-content .serv-text-inner .right-block {
		margin-top: 0;
		margin-bottom: 30px;
	}

	.ideal-section .ideal-inner .btnbox {
		padding-top: 15px !important;
	}

	.ideal-section .ideal-inner .btnbox .btn {
		background: #fff;
		color: #00979e;
	}

	.ideal-section .ideal-inner .btnbox .btn:before {
		display: none;
	}

	.form-block .b24-form-btn {
		margin: 0 auto;
	}

	.card-counter .textbox strong {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.thank-you-page .container {
		padding: 0 15px;
	}

	.thank-you-page .box {
		padding: 0;
	}

	.thank-you-page .step4 {
		padding: 0 15px 30px;
	}

	.thank-you-page .step4 .thank-you {
		max-width: 100%;
	}

	.thank-you-page .step4 .thank-you p {
		font-size: 16px;
	}

	.thank-you-page .step4 .thank-you h3 {
		font-size: 30px;
		line-height: 42px;
	}

	.thank-you-page .step4 .thank-you img {
		max-width: 70px;
		margin-bottom: 5px;
	}

	.thank-you-page .location ul {
		display: block;
	}

	.thank-you-page .location li {
		width: 100%;
		background-size: 35px;
		padding-left: 50px;
	}

	.thank-you-page .location li~li {
		margin-left: 0;
		margin-top: 25px;
	}


	.video-landing-page {
		padding-bottom: 80px;
	}

	.video-test-list .slick-arrow {
		top: auto;
		bottom: -45px;
	}

	.video-landing-page .video-test-list .slick-dots {
		bottom: -32px;
	}

	.video-landing-page .video-test-list .slick-arrow.slick-next {
		right: 12px;
	}

	.video-landing-page .video-test-list .slick-arrow.slick-prev {
		left: 12px;
	}

	.results-section .small-title {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 0;
	}

	.hair-ls-section .small-title {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 0;
	}

	.service-section .small-title {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 0;
	}

	.procedure-section .small-title {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 0;
	}

	.journey-section .small-title {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 0;
	}

	.testimonial-section .small-title {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 0;
	}

	.faq-section .small-title {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 0;
	}

	.hero-caption .h1 {
		color: #ffffff;
		position: relative;
		text-shadow: 3px 2px 4px #676767;
		font-size: 22px;
		font-weight: 600;
	}


	div#hbspt-form-f1685baa-6ddc-412b9a62-564736c9f859 form#hsForm_b67380bc-8ad2-4e76-b2d4-14d64cefa150 {
		display: none !important;
	}


}


div#hbspt-form-f1685baa-6ddc-412b9a62-564736c9f859 form#hsForm_b67380bc-8ad2-4e76-b2d4-14d64cefa150 {
	display: none !important;
}

/*767 End*/


/* top form css start  */


/* .banner-upper-form {
	background: #ffffff8a;
	padding: 45px;
	border-radius: 20px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(199, 199, 199, 1);
	-moz-box-shadow: 0px 0px 5px 0px rgba(199, 199, 199, 1);
	box-shadow: 0px 0px 5px 0px rgba(199, 199, 199, 1);
} */

.banner-title {
	margin: 1.5rem 0rem;
}

.banner-upper-form {
	background: #ffffff8a;
	padding: 45px;
	border-radius: 20px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(199, 199, 199, 1);
	-moz-box-shadow: 0px 0px 5px 0px rgba(199, 199, 199, 1);
	box-shadow: 0px 0px 5px 0px rgba(199, 199, 199, 1);
	position: relative;
	top: 26px;
}

.banner-title h2 {
	color: var(--primary-color);
	font-size: 25px;
	line-height: 28px;
	text-transform: uppercase;
}

/* top form css start  */




/* google reviwe css start  */



.reviwe-procedure {
	width: 100%;
	height: 100%;
	background: white;
	border: 1px solid #d6d6d6;
	padding: 10px;
}

.pesentreviwe .revi {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	position: relative;
	/* top: -20px; */
}

img.star {
	width: 60%;
	position: relative;
	top: -12px;
}

.pesentreviwe p {
	font-size: 14px;
}



/* google reviwe css start  */


button.b24-form-btn {
	background: #00979e !important;
}

/* social icon bootm css start  */


.socialiconone {
	background: #548bb6;
	padding: 10px;
	transition: .7s;
}

.socialiconone i {
	font-size: 37px;
	color: white;
}

.socialiconfour {
	background: #ef4e41;
	padding: 10px;
	transition: .7s;
}

.socialicontow {
	background: #5d82d1;
	padding: 10px;
	transition: .7s;
}

.socialiconthree {
	background: #40bff5;
	padding: 10px;
	transition: .7s;
}

.socialiconfour i {
	font-size: 37px;
	color: white;
}

.socialicontow i {
	font-size: 37px;
	color: white;
}

.socialiconthree i {
	font-size: 37px;
	color: white;
}

/* social icon bootm css end  */

.bordbanner h3 {
	font-size: 40px;
	font-weight: 900;
	color: #ffffff;
	text-shadow: 3px 2px 4px #111111;
}

.bordbanner {
	border: 6px solid #ffffff;
	padding: 20px;
	width: 250px;
	box-shadow: 10px 0px 30px 0px #3a3a3a;
}

.bordbanner span {
	color: #ff0000;
}

.textbox.entry-content ul li {
	font-size: 14px;
	line-height: 17px;
}






.video-box1 img {
    width: 100%;
    height: 690px;
    /* object-fit: cover; */
    border: 4px solid #298183;
}

.video-box2 img {
	width: 100%;
	height: 880px;
	object-fit: cover;
}

.header-book-button {
	background: #009a9a;
	color: white;
	padding: 15px 15px;
	border-radius: 10px;
}

.header-book-button:hover {
	background: #f90200;
	color: white;
}

@media(max-width:768px) {
	.header-book-button {
		padding: 10px 10px;
		font-size: 14px;
		text-align: center;
	}

	a.logo-top-header {
		width: 100%;
	}
}