@font-face {
	font-family: ionicons;
	src: url(../fonts/ionicons28b528b5.eot?v=2.0.0);
	src: url(../fonts/ionicons28b528b5.eot?v=2.0.0#iefix) format("embedded-opentype"),
		url(../fonts/ionicons28b528b5.ttf?v=2.0.0) format("truetype"),
		url(../fonts/ionicons28b528b5.woff?v=2.0.0) format("woff"),
		url(../fonts/ionicons28b528b5.svg?v=2.0.0#Ionicons) format("svg");
	font-weight: 400;
	font-style: normal;
}
.animated.infinite {
	animation-iteration-count: infinite;
}
.animated.hinge {
	animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
	animation-duration: .75s;
}
@keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	animation-name: bounce;
	transform-origin: center bottom;
}
@keyframes flash {
	from,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
.flash {
	animation-name: flash;
}
@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scale3d(1, 1, 1);
	}
}
.pulse {
	animation-name: pulse;
}
@keyframes rubberBand {
	from {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(1.25, .75, 1);
	}
	40% {
		transform: scale3d(.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, .85, 1);
	}
	65% {
		transform: scale3d(.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, .95, 1);
	}
	to {
		transform: scale3d(1, 1, 1);
	}
}
.rubberBand {
	animation-name: rubberBand;
}
@keyframes shake {
	from,
	to {
		transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	animation-name: shake;
}
@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}
.headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake;
}
@keyframes swing {
	20% {
		transform: rotate3d(0, 0, 1, 15deg);
	}
	40% {
		transform: rotate3d(0, 0, 1, -10deg);
	}
	60% {
		transform: rotate3d(0, 0, 1, 5deg);
	}
	80% {
		transform: rotate3d(0, 0, 1, -5deg);
	}
	to {
		transform: rotate3d(0, 0, 1, 0deg);
	}
}
.swing {
	transform-origin: top center;
	animation-name: swing;
}
@keyframes tada {
	from {
		transform: scale3d(1, 1, 1);
	}
	10%,
	20% {
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		transform: scale3d(1, 1, 1);
	}
}
.tada {
	animation-name: tada;
}
@keyframes wobble {
	from {
		transform: none;
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	to {
		transform: none;
	}
}
.wobble {
	animation-name: wobble;
}
@keyframes jello {
	from,
	11.1%,
	to {
		transform: none;
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.jello {
	animation-name: jello;
	transform-origin: center;
}
@keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(.9, .9, .9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(.97, .97, .97);
	}
	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}
.bounceIn {
	animation-name: bounceIn;
}
@keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: none;
	}
}
.bounceInDown {
	animation-name: bounceInDown;
}
@keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: none;
	}
}
.bounceInLeft {
	animation-name: bounceInLeft;
}
@keyframes bounceInRight {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	from {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: none;
	}
}
.bounceInRight {
	animation-name: bounceInRight;
}
@keyframes bounceInUp {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	from {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
.bounceInUp {
	animation-name: bounceInUp;
}
@keyframes bounceOut {
	20% {
		transform: scale3d(.9, .9, .9);
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
}
.bounceOut {
	animation-name: bounceOut;
}
@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	animation-name: bounceOutUp;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	animation-name: fadeIn;
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDown {
	animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
	from {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDownBig {
	animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeft {
	animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRight {
	animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
	from {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRightBig {
	animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUp {
	animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
	from {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUpBig {
	animation-name: fadeInUpBig;
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	animation-name: fadeOut;
}
@keyframes fadeOutDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown {
	animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft {
	animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}
@keyframes flip {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) scale3d(.95, .95, .95);
		animation-timing-function: ease-in;
	}
	to {
		transform: perspective(400px);
		animation-timing-function: ease-in;
	}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flip;
}
@keyframes flipInX {
	from {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInX;
}
@keyframes flipInY {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInY;
}
@keyframes flipOutX {
	from {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}
.flipOutX {
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}
@keyframes flipOutY {
	from {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}
.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}
@keyframes lightSpeedIn {
	from {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		transform: none;
		opacity: 1;
	}
}
.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}
	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}
@keyframes rotateIn {
	from {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	to {
		transform-origin: center;
		transform: none;
		opacity: 1;
	}
}
.rotateIn {
	animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownRight {
	animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpRight {
	animation-name: rotateInUpRight;
}
@keyframes rotateOut {
	from {
		transform-origin: center;
		opacity: 1;
	}
	to {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}
.rotateOut {
	animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
	from {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}
.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
	from {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
	from {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
	from {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}
.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}
@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		transform: rotate3d(0, 0, 1, 80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		transform: rotate3d(0, 0, 1, 60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
.hinge {
	animation-name: hinge;
}
@keyframes jackInTheBox {
	from {
		opacity: 0;
		transform: scale(.1) rotate(30deg);
		transform-origin: center bottom;
	}
	50% {
		transform: rotate(-10deg);
	}
	70% {
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.jackInTheBox {
	animation-name: jackInTheBox;
}
@keyframes rollIn {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.rollIn {
	animation-name: rollIn;
}
@keyframes rollOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}
.rollOut {
	animation-name: rollOut;
}
@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	animation-name: zoomIn;
}
@keyframes zoomInDown {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}
.zoomInDown {
	animation-name: zoomInDown;
}
@keyframes zoomInLeft {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}
.zoomInLeft {
	animation-name: zoomInLeft;
}
@keyframes zoomInRight {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}
.zoomInRight {
	animation-name: zoomInRight;
}
@keyframes zoomInUp {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}
.zoomInUp {
	animation-name: zoomInUp;
}
@keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	animation-name: zoomOut;
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	to {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}
.zoomOutDown {
	animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}
.zoomOutLeft {
	animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}
.zoomOutRight {
	animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	to {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}
.zoomOutUp {
	animation-name: zoomOutUp;
}
@keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
.slideInDown {
	animation-name: slideInDown;
}
@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
.slideInLeft {
	animation-name: slideInLeft;
}
@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
.slideInRight {
	animation-name: slideInRight;
}
@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
.slideInUp {
	animation-name: slideInUp;
}
@keyframes slideOutDown {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}
.slideOutDown {
	animation-name: slideOutDown;
}
@keyframes slideOutLeft {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
}
.slideOutLeft {
	animation-name: slideOutLeft;
}
@keyframes slideOutRight {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
	}
}
.slideOutRight {
	animation-name: slideOutRight;
}
@keyframes slideOutUp {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}
.slideOutUp {
	animation-name: slideOutUp;
} /*!* Bootstrap-select v1.13.10 (https://developer.snapappointments.com/bootstrap-select)
*
* Copyright 2012-2019 SnapAppointments, LLC
* Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)*/
.bootstrap-select > select.bs-select-hidden,
select.bs-select-hidden,
select.selectpicker {
	display: none !important;
}
.bootstrap-select {
	width: 220px\0;
	vertical-align: middle;
}
.bootstrap-select > .dropdown-toggle {
	position: relative;
	width: 100%;
	text-align: right;
	white-space: nowrap;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.bootstrap-select > .dropdown-toggle:after {
	margin-top: -1px;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
	color: #999;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover {
	color: rgba(255, 255, 255, .5);
}
.bootstrap-select > select {
	position: absolute !important;
	bottom: 0;
	left: 50%;
	display: block !important;
	width: .5px !important;
	height: 100% !important;
	padding: 0 !important;
	opacity: 0 !important;
	border: none;
	z-index: 0 !important;
}
.bootstrap-select > select.mobile-device {
	top: 0;
	left: 0;
	display: block !important;
	width: 100% !important;
	z-index: 2 !important;
}
.bootstrap-select.is-invalid .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle,
.was-validated .bootstrap-select .selectpicker:invalid + .dropdown-toggle {
	border-color: #b94a48;
}
.bootstrap-select.is-valid .dropdown-toggle,
.was-validated .bootstrap-select .selectpicker:valid + .dropdown-toggle {
	border-color: #28a745;
}
.bootstrap-select.fit-width {
	width: auto !important;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: 220px;
}
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
	outline: thin dotted #333 !important;
	outline: 5px auto -webkit-focus-ring-color !important;
	outline-offset: -2px;
}
.bootstrap-select.form-control {
	margin-bottom: 0;
	padding: 0;
	border: none;
	height: auto;
}
:not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
	width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
	float: none;
	z-index: auto;
}
.form-inline .bootstrap-select,
.form-inline .bootstrap-select.form-control:not([class*=col-]) {
	width: auto;
}
.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*=col-] {
	float: none;
	display: inline-block;
	margin-left: 0;
}
.bootstrap-select.dropdown-menu-right,
.bootstrap-select[class*=col-].dropdown-menu-right,
.row .bootstrap-select[class*=col-].dropdown-menu-right {
	float: right;
}
.form-group .bootstrap-select,
.form-horizontal .bootstrap-select,
.form-inline .bootstrap-select {
	margin-bottom: 0;
}
.form-group-lg .bootstrap-select.form-control,
.form-group-sm .bootstrap-select.form-control {
	padding: 0;
}
.form-group-lg .bootstrap-select.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.form-control .dropdown-toggle {
	height: 100%;
	font-size: inherit;
	line-height: inherit;
	border-radius: inherit;
}
.bootstrap-select.form-control-lg .dropdown-toggle,
.bootstrap-select.form-control-sm .dropdown-toggle {
	font-size: inherit;
	line-height: inherit;
	border-radius: inherit;
}
.bootstrap-select.form-control-sm .dropdown-toggle {
	padding: .25rem .5rem;
}
.bootstrap-select.form-control-lg .dropdown-toggle {
	padding: .5rem 1rem;
}
.form-inline .bootstrap-select .form-control {
	width: 100%;
}
.bootstrap-select.disabled,
.bootstrap-select > .disabled {
	cursor: not-allowed;
}
.bootstrap-select.disabled:focus,
.bootstrap-select > .disabled:focus {
	outline: 0 !important;
}
.bootstrap-select.bs-container {
	position: absolute;
	top: 0;
	left: 0;
	height: 0 !important;
	padding: 0 !important;
}
.bootstrap-select.bs-container .dropdown-menu {
	z-index: 1060;
}
.bootstrap-select .dropdown-toggle .filter-option {
	position: static;
	top: 0;
	left: 0;
	float: left;
	height: 100%;
	width: 100%;
	text-align: left;
	overflow: hidden;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}
.bs3.bootstrap-select .dropdown-toggle .filter-option {
	padding-right: inherit;
}
.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
	position: absolute;
	padding-top: inherit;
	padding-bottom: inherit;
	padding-left: inherit;
	float: none;
}
.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
	padding-right: inherit;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
	overflow: hidden;
}
.bootstrap-select .dropdown-toggle .filter-expand {
	width: 0 !important;
	float: left;
	opacity: 0 !important;
	overflow: hidden;
}
.bootstrap-select .dropdown-toggle .caret {
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -2px;
	vertical-align: middle;
}
.input-group .bootstrap-select.form-control .dropdown-toggle {
	border-radius: inherit;
}
.bootstrap-select[class*=col-] .dropdown-toggle {
	width: 100%;
}
.bootstrap-select .dropdown-menu {
	min-width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bootstrap-select .dropdown-menu > .inner:focus {
	outline: 0 !important;
}
.bootstrap-select .dropdown-menu.inner {
	position: static;
	float: none;
	border: 0;
	padding: 0;
	margin: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.bootstrap-select .dropdown-menu li {
	position: relative;
}
.bootstrap-select .dropdown-menu li.active small {
	color: rgba(255, 255, 255, .5) !important;
}
.bootstrap-select .dropdown-menu li.disabled a {
	cursor: not-allowed;
}
.bootstrap-select .dropdown-menu li a {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.bootstrap-select .dropdown-menu li a.opt {
	position: relative;
	padding-left: 2.25em;
}
.bootstrap-select .dropdown-menu li a span.check-mark {
	display: none;
}
.bootstrap-select .dropdown-menu li a span.text {
	display: inline-block;
}
.bootstrap-select .dropdown-menu li small {
	padding-left: .5em;
}
.bootstrap-select .dropdown-menu .notify {
	position: absolute;
	bottom: 5px;
	width: 96%;
	margin: 0 2%;
	min-height: 26px;
	padding: 3px 5px;
	background: #f5f5f5;
	border: 1px solid #e3e3e3;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	pointer-events: none;
	opacity: .9;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bootstrap-select .no-results {
	padding: 3px;
	background: #f5f5f5;
	margin: 0 5px;
	white-space: nowrap;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option {
	position: static;
	display: inline;
	padding: 0;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
	display: inline;
}
.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
	content: '\00a0';
}
.bootstrap-select.fit-width .dropdown-toggle .caret {
	position: static;
	top: auto;
	margin-top: -1px;
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
	position: absolute;
	display: inline-block;
	right: 15px;
	top: 5px;
}
.bootstrap-select.show-tick .dropdown-menu li a span.text {
	margin-right: 34px;
}
.bootstrap-select .bs-ok-default:after {
	content: '';
	display: block;
	width: .5em;
	height: 1em;
	border-style: solid;
	border-width: 0 .26em .26em 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
	z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
	content: '';
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid rgba(204, 204, 204, .2);
	position: absolute;
	bottom: -4px;
	left: 9px;
	display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	position: absolute;
	bottom: -4px;
	left: 10px;
	display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
	bottom: auto;
	top: -4px;
	border-top: 7px solid rgba(204, 204, 204, .2);
	border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
	bottom: auto;
	top: -4px;
	border-top: 6px solid #fff;
	border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
	right: 12px;
	left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
	right: 13px;
	left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before {
	display: block;
}
.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
	padding: 4px 8px;
}
.bs-actionsbox {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
	width: 50%;
}
.bs-donebutton {
	float: left;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bs-donebutton .btn-group button {
	width: 100%;
}
.bs-searchbox + .bs-actionsbox {
	padding: 0 8px 4px;
}
.bs-searchbox .form-control {
	margin-bottom: 0;
	width: 100%;
	float: none;
}
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
	float: left;
}
.swiper-container-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
	visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	-o-transition-property: transform, height;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNyA0NCc+PHBhdGggZD0nTTAsMjJMMjIsMGwyLjEsMi4xTDQuMiwyMmwxOS45LDE5LjlMMjIsNDRMMCwyMkwwLDIyTDAsMjJ6JyBmaWxsPScjMDA3YWZmJy8+PC9zdmc+);
	left: 10px;
	right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNyA0NCc+PHBhdGggZD0nTTI3LDIyTDI3LDIyTDUsNDRsLTIuMS0yLjFMMjIuOCwyMkwyLjksMi4xTDUsMEwyNywyMkwyNywyMnonIGZpbGw9JyMwMDdhZmYnLz48L3N2Zz4=);
	right: 10px;
	left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNyA0NCc+PHBhdGggZD0nTTAsMjJMMjIsMGwyLjEsMi4xTDQuMiwyMmwxOS45LDE5LjlMMjIsNDRMMCwyMkwwLDIyTDAsMjJ6JyBmaWxsPScjZmZmZmZmJy8+PC9zdmc+);
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNyA0NCc+PHBhdGggZD0nTTI3LDIyTDI3LDIyTDUsNDRsLTIuMS0yLjFMMjIuOCwyMkwyLjksMi4xTDUsMEwyNywyMkwyNywyMnonIGZpbGw9JyNmZmZmZmYnLz48L3N2Zz4=);
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNyA0NCc+PHBhdGggZD0nTTAsMjJMMjIsMGwyLjEsMi4xTDQuMiwyMmwxOS45LDE5LjlMMjIsNDRMMCwyMkwwLDIyTDAsMjJ6JyBmaWxsPScjMDAwMDAwJy8+PC9zdmc+);
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNyA0NCc+PHBhdGggZD0nTTI3LDIyTDI3LDIyTDUsNDRsLTIuMS0yLjFMMjIuOCwyMkwyLjksMi4xTDUsMEwyNywyMkwyNywyMnonIGZpbGw9JyMwMDAwMDAnLz48L3N2Zz4=);
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: .3s opacity;
	-o-transition: .3s opacity;
	transition: .3s opacity;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
	position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
}
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2;
}
button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: .2s top, .2s -webkit-transform;
	transition: .2s top, .2s -webkit-transform;
	-o-transition: .2s transform, .2s top;
	transition: .2s transform, .2s top;
	transition: .2s transform, .2s top, .2s -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s left, .2s -webkit-transform;
	transition: .2s left, .2s -webkit-transform;
	-o-transition: .2s transform, .2s left;
	transition: .2s transform, .2s left;
	transition: .2s transform, .2s left, .2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s right, .2s -webkit-transform;
	transition: .2s right, .2s -webkit-transform;
	-o-transition: .2s transform, .2s right;
	transition: .2s transform, .2s right;
	transition: .2s transform, .2s right, .2s -webkit-transform;
}
.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, .25);
	position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255, 255, 255, .25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0, 0, 0, .25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000;
}
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, .1);
}
.swiper-container-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}
.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, .5);
	border-radius: 10px;
	left: 0;
	top: 0;
}
.swiper-scrollbar-cursor-drag {
	cursor: move;
}
.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.swiper-slide-zoomed {
	cursor: move;
}
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB2aWV3Qm94PScwIDAgMTIwIDEyMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB4bWxuczp4bGluaz0naHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayc+PGRlZnM+PGxpbmUgaWQ9J2wnIHgxPSc2MCcgeDI9JzYwJyB5MT0nNycgeTI9JzI3JyBzdHJva2U9JyM2YzZjNmMnIHN0cm9rZS13aWR0aD0nMTEnIHN0cm9rZS1saW5lY2FwPSdyb3VuZCcvPjwvZGVmcz48Zz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMjcnLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMjcnIHRyYW5zZm9ybT0ncm90YXRlKDMwIDYwLDYwKScvPjx1c2UgeGxpbms6aHJlZj0nI2wnIG9wYWNpdHk9Jy4yNycgdHJhbnNmb3JtPSdyb3RhdGUoNjAgNjAsNjApJy8+PHVzZSB4bGluazpocmVmPScjbCcgb3BhY2l0eT0nLjI3JyB0cmFuc2Zvcm09J3JvdGF0ZSg5MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMjcnIHRyYW5zZm9ybT0ncm90YXRlKDEyMCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMjcnIHRyYW5zZm9ybT0ncm90YXRlKDE1MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMzcnIHRyYW5zZm9ybT0ncm90YXRlKDE4MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuNDYnIHRyYW5zZm9ybT0ncm90YXRlKDIxMCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuNTYnIHRyYW5zZm9ybT0ncm90YXRlKDI0MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuNjYnIHRyYW5zZm9ybT0ncm90YXRlKDI3MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuNzUnIHRyYW5zZm9ybT0ncm90YXRlKDMwMCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuODUnIHRyYW5zZm9ybT0ncm90YXRlKDMzMCA2MCw2MCknLz48L2c+PC9zdmc+);
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB2aWV3Qm94PScwIDAgMTIwIDEyMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB4bWxuczp4bGluaz0naHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayc+PGRlZnM+PGxpbmUgaWQ9J2wnIHgxPSc2MCcgeDI9JzYwJyB5MT0nNycgeTI9JzI3JyBzdHJva2U9JyNmZmYnIHN0cm9rZS13aWR0aD0nMTEnIHN0cm9rZS1saW5lY2FwPSdyb3VuZCcvPjwvZGVmcz48Zz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMjcnLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMjcnIHRyYW5zZm9ybT0ncm90YXRlKDMwIDYwLDYwKScvPjx1c2UgeGxpbms6aHJlZj0nI2wnIG9wYWNpdHk9Jy4yNycgdHJhbnNmb3JtPSdyb3RhdGUoNjAgNjAsNjApJy8+PHVzZSB4bGluazpocmVmPScjbCcgb3BhY2l0eT0nLjI3JyB0cmFuc2Zvcm09J3JvdGF0ZSg5MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMjcnIHRyYW5zZm9ybT0ncm90YXRlKDEyMCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMjcnIHRyYW5zZm9ybT0ncm90YXRlKDE1MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuMzcnIHRyYW5zZm9ybT0ncm90YXRlKDE4MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuNDYnIHRyYW5zZm9ybT0ncm90YXRlKDIxMCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuNTYnIHRyYW5zZm9ybT0ncm90YXRlKDI0MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuNjYnIHRyYW5zZm9ybT0ncm90YXRlKDI3MCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuNzUnIHRyYW5zZm9ybT0ncm90YXRlKDMwMCA2MCw2MCknLz48dXNlIHhsaW5rOmhyZWY9JyNsJyBvcGFjaXR5PScuODUnIHRyYW5zZm9ybT0ncm90YXRlKDMzMCA2MCw2MCknLz48L2c+PC9zdmc+);
}
@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-container-cube {
	overflow: visible;
}
.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0;
}
.swiper-container-flip {
	overflow: visible;
}
.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
	-ms-perspective: 1200px;
}
.slick-slider {
	position: relative;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-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;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir=rtl] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: #000;
	line-height: 40px;
	z-index: 1;
	transition: all ease-in-out .3s;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	outline: none;
	background: #333;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 0;
}
.slick-prev:before,
.slick-next:before {
	font-family: fontawesome;
	font-size: 20px;
	line-height: 2.1;
	opacity: 1;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slider-section .slick-prev,
.slider-section .slick-next {
	left: 44%;
	background: #fff;
	height: 50px;
	width: 50px;
	z-index: 10;
	top: 15%;
	padding: 5px 5px 5px 0;
	box-shadow: 0 0 10px #ccc;
	z-index: 1;
}
.slider-section .slick-next {
	right: 44%;
	left: inherit;
	padding: 5px 0 5px 5px;
}
.slider-section .slick-prev:before,
.slider-section .slick-next:before {
	font-size: 36px;
}
.slick-prev {
	left: 15px;
}
[dir=rtl] .slick-prev {
	right: 15px;
	left: auto;
}
.slick-prev:before {
	content: '\f177';
}
[dir=rtl] .slick-prev:before {
	content: '\f105';
}
.slick-next {
	right: -30px;
}
[dir=rtl] .slick-next {
	right: auto;
	left: 15px;
}
.slick-next:before {
	content: '\f178';
}
[dir=rtl] .slick-next:before {
	content: '\f104';
}
@media (max-width: 1100px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
}
.slick-slider {
	margin: 0;
}
.slick-dots {
	position: absolute;
	bottom: -50px;
	display: block;
	width: 100%;
	padding: 0;
	list-style: none;
	text-align: center;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 16px;
	height: 16px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: 0 0;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}
.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	content: '';
	opacity: .25;
	background: #337ab7;
	border-radius: 50%;
}
.slick-dots li.slick-active button:before {
	opacity: .9;
	background: #337ab7;
}
.slick-slide .image {
	padding: 2px;
}
.slick-slide img {
	display: block;
	width: 100%;
}
.slick-slide img.slick-loading {
	border: 0;
}
.slider h3 {
	color: #000;
	font-size: 36px;
	line-height: 100px;
	margin: 10px;
	padding: 2%;
	position: relative;
	text-align: center;
}
.variable-width .slick-slide p {
	height: 100px;
	color: #fff;
	margin: 5px;
	line-height: 100px;
}
.variable-width .image {
	height: 100%;
}
.variable-width .image img {
	display: block;
	height: 100%;
	width: 100%;
}
.slick-center-mode .slick-center h3 {
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	-webkit-transform: scale(1.08);
	color: #e67e22;
	opacity: 1;
	transform: scale(1.08);
}
.slick-center h3 {
	opacity: .8;
	transition: all 300ms ease;
}
.slick-content {
	margin: auto;
	padding: 20px;
	width: 600px;
}
.slick-content:after,
.buttons::after {
	clear: both;
	content: "";
	display: table;
}
.slick-center-mode .slick-center .image {
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	-webkit-transform: scale(1.08);
	color: #e67e22;
	opacity: 1;
	transform: scale(1.08);
}
.slick-center-mode .image {
	opacity: .3;
	transition: all 300ms ease;
	padding: 10px;
}
.slick-center-mode .image:hover {
	cursor: pointer;
}
.slick-content {
	margin: auto;
	padding: 20px;
	width: 600px;
}
.slick-content:after,
.buttons::after {
	clear: both;
	content: "";
	display: table;
}
.slick-center-mode img {
	border: 2px solid #fff;
	display: block;
	width: 100%;
}
.slick-slide .image {
	padding: 0;
}
.slick-carousel.gap-2 {
	margin-left: -1px;
	margin-right: -1px;
}
.slick-carousel.gap-2 .slick-carousel-inner {
	padding-left: 1px;
	padding-right: 1px;
}
.slick-carousel.gap-5 {
	margin-left: -2px;
	margin-right: -3px;
}
.slick-carousel.gap-5 .slick-carousel-inner {
	padding-left: 2px;
	padding-right: 3px;
}
.slick-carousel.gap-10 {
	margin-left: -5px;
	margin-right: -5px;
}
.slick-carousel.gap-10 .slick-carousel-inner {
	padding-left: 5px;
	padding-right: 5px;
}
.slick-carousel.gap-15 {
	margin-left: -7px;
	margin-right: -8px;
}
.slick-carousel.gap-15 .slick-carousel-inner {
	padding-left: 7px;
	padding-right: 8px;
}
.slick-carousel.gap-20 {
	margin-left: -10px;
	margin-right: -10px;
}
.slick-carousel.gap-20 .slick-carousel-inner {
	padding-left: 10px;
	padding-right: 10px;
}
.slick-carousel.gap-25 {
	margin-left: -12px;
	margin-right: -13px;
}
.slick-carousel.gap-25 .slick-carousel-inner {
	padding-left: 12px;
	padding-right: 13px;
}
.slick-carousel.gap-30 {
	margin-left: -15px;
	margin-right: -15px;
}
.slick-carousel.gap-30 .slick-carousel-inner {
	padding-left: 15px;
	padding-right: 15px;
}
.slick-carousel.gap-40 {
	margin-left: -20px;
	margin-right: -20px;
}
.slick-carousel.gap-40 .slick-carousel-inner {
	padding-left: 20px;
	padding-right: 20px;
}
.slick-carousel.gap-50 {
	margin-left: -25px;
	margin-right: -25px;
}
.slick-carousel.gap-50 .slick-carousel-inner {
	padding-left: 25px;
	padding-right: 25px;
}
.slick-carousel-center-mode {
	margin-left: -40px;
	margin-right: -40px;
}
.slick-carousel-center-mode .slick-carousel-inner {
	margin: 40px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
.slick-carousel-center-mode .slick-center .slick-carousel-inner {
	margin: 0;
	margin-left: -10px;
	margin-right: -10px;
}
.slick-carousel-center-mode .slick-dots {
	bottom: -50px;
}
.slick-gallery-slideshow .slick-prev {
	left: 0;
}
.slick-gallery-slideshow .slick-next {
	right: 0;
}
.slick-gallery-slideshow .slick-prev:before,
.slick-gallery-slideshow .slick-next:before {
	color: #fff;
	opacity: .7;
}
.slick-gallery-slideshow .slick-prev:hover:before,
.slick-gallery-slideshow .slick-prev:focus:before,
.slick-gallery-slideshow .slick-next:hover:before,
.slick-gallery-slideshow .slick-next:focus:before {
	opacity: 1;
}
.gallery-slideshow {
	margin-bottom: 1px;
}
.gallery-slideshow .image {
	padding: 0;
}
.gallery-nav .image {
	padding: 0;
	border: 1px solid transparent;
	opacity: 1;
	transition: all 300ms ease;
	position: relative;
}
.gallery-nav .image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
.gallery-nav .slick-center .image {
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	-webkit-transform: none;
}
.gallery-nav .slick-center .image:after {
	background: transparent;
}
.gallery-nav .image:hover {
	cursor: pointer;
}
.slick-slider-center-mode .slick-item {
	position: relative;
}
.slick-slider-center-mode .slick-item .image {
	position: relative;
	padding: 0;
}
.slick-slider-center-mode .slick-item .image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
.slick-slider-center-mode .slick-center.slick-item .image:after {
	background: transparent;
}
.slick-slider-center-mode .slick-item .image:hover {
	cursor: pointer;
}
.slick-slider-center-mode.slick-slider-full .slick-item .image:after {
	display: none;
}
.slick-slider-center-mode.gap-2 .slick-item {
	padding: 0 1px;
}
.slick-slider-center-mode .slick-prev {
	left: 30px;
}
.slick-slider-center-mode .slick-next {
	right: 30px;
}
.slick-slider-center-mode .slick-prev:before,
.slick-slider-center-mode .slick-next:before {
	color: #fff;
	opacity: .7;
}
.slick-slider-center-mode .slick-prev:hover:before,
.slick-slider-center-mode .slick-prev:focus:before,
.slick-slider-center-mode .slick-next:hover:before,
.slick-slider-center-mode .slick-next:focus:before {
	opacity: 1;
}
.slick-slider-center-mode.slick-slider-full .slick-prev {
	left: 15px;
}
.slick-slider-center-mode.slick-slider-full .slick-next {
	right: 15px;
}
.slick-slider-center-mode.slick-slider-full .image.image-bg {
	height: 660px;
	background-size: cover !important;
	background-position: center center;
}
.slick-slider-center-mode .slick-caption {
	position: absolute;
	top: 20px;
	left: 20px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
}
.slick-slider-center-mode .slick-center .slick-caption {
	color: #fff;
}
.variable-width .image {
	padding: 0;
	border: 1px solid transparent;
	opacity: .5;
	transition: all 300ms ease;
}
.variable-width .slick-center .image {
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	-webkit-transform: none;
	opacity: 1;
	border-color: red;
}
.variable-width .image:hover {
	cursor: pointer;
}
.slick-animation .animation {
	display: inline-block;
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.slick-animation .animation {
	display: inline-block;
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.slick-animation .transitionDelay1 {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}
.slick-animation .transitionDelay2 {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
.slick-animation .transitionDelay3 {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}
.slick-animation .transitionDelay4 {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}
.slick-animation .transitionDelay5 {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}
.slick-animation .transitionDelay6 {
	-webkit-transition-delay: .6s;
	transition-delay: .6s;
}
.slick-animation .transitionDelay7 {
	-webkit-transition-delay: .7s;
	transition-delay: .7s;
}
.slick-animation .transitionDelay8 {
	-webkit-transition-delay: .8s;
	transition-delay: .8s;
}
.slick-animation .transitionDelay9 {
	-webkit-transition-delay: .9s;
	transition-delay: .9s;
}
.slick-animation .transitionDelay10 {
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}
.slick-animation .transitionDelay12 {
	-webkit-transition-delay: 1.2s;
	transition-delay: 1.2s;
}
.slick-animation .transitionDelay14 {
	-webkit-transition-delay: 1.4s;
	transition-delay: 1.4s;
}
.slick-animation .transitionDuration2 {
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
}
.slick-animation .transitionDuration4 {
	-webkit-transition-duration: .4s;
	transition-duration: .4s;
}
.slick-animation .transitionDuration6 {
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
}
.slick-animation .transitionDuration8 {
	-webkit-transition-duration: .8s;
	transition-duration: .8s;
}
.slick-animation .transitionDuration10 {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
}
.slick-animation .transitionDuration12 {
	-webkit-transition-duration: 1.2s;
	transition-duration: 1.2s;
}
.slick-animation .transitionDuration14 {
	-webkit-transition-duration: 1.4s;
	transition-duration: 1.4s;
}
.slick-animation .transitionDuration16 {
	-webkit-transition-duration: 1.6s;
	transition-duration: 1.6s;
}
.slick-animation .transitionDuration18 {
	-webkit-transition-duration: 1.8s;
	transition-duration: 1.8s;
}
.slick-animation .transitionDuration20 {
	-webkit-transition-duration: 2s;
	transition-duration: 2s;
}
.slick-animation .transitionDuration22 {
	-webkit-transition-duration: 2.2s;
	transition-duration: 2.2s;
}
.slick-animation .transitionDuration24 {
	-webkit-transition-duration: 2.4s;
	transition-duration: 2.4s;
}
.slick-animation .transitionDuration26 {
	-webkit-transition-duration: 2.6s;
	transition-duration: 2.6s;
}
.slick-animation .fromTop {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}
.slick-animation .fromBottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
}
.slick-animation .fromLeft {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}
.slick-animation .fromRight {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}
.slick-animation .slick-center .animation {
	opacity: 1;
}
.slick-animation .slick-center .fromTop {
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
}
.slick-animation .slick-center .fromBottom {
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
}
.slick-animation .slick-center .fromLeft {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
}
.slick-animation .slick-center .fromRight {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
}
.slicknav_menu {
	display: none;
}
.slicknav_btn {
	position: relative;
	display: block;
	vertical-align: middle;
	float: right;
	padding: .438em .625em;
	line-height: 1.125em;
	cursor: pointer;
}
.slicknav_menu .slicknav_menutxt {
	display: block;
	line-height: 1.188em;
	float: left;
}
.slicknav_menu .slicknav_icon {
	float: left;
	margin: .188em 0 0 .438em;
}
.slicknav_menu .slicknav_no-text {
	margin: 0;
}
.slicknav_menu .slicknav_icon-bar {
	display: block;
	width: 1.125em;
	height: .125em;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
}
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
	margin-top: .188em;
}
.slicknav_nav {
	clear: both;
}
.slicknav_nav ul,
.slicknav_nav li {
	display: block;
	margin-bottom: 0;
}
.slicknav_nav li a i.fa-angle-down {
	display: none;
}
.slicknav_nav .slicknav_arrow {
	font-size: .8em;
	margin: 0 0 0 .4em;
}
.slicknav_nav .slicknav_item {
	cursor: pointer;
}
.slicknav_nav .slicknav_row {
	display: block;
}
.slicknav_nav a {
	display: block;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
	display: inline;
}
.slicknav_menu:before,
.slicknav_menu:after {
	content: " ";
	display: table;
}
.slicknav_menu:after {
	clear: both;
}
.slicknav_menu {
	*zoom: 1;
}
.slicknav_menu {
	font-size: 16px;
}
.slicknav_btn {
	margin: 0;
	text-decoration: none;
	background-color: transparent;
	padding: 0;
	position: absolute;
	top: 20px;
	right: 20px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
.slicknav_btn.slicknav_open,
.slicknav_btn.slicknav_collapsed,
.slicknav_btn.slicknav_open:before,
.slicknav_btn.slicknav_collapsed:before,
.head-style-1 .navbar-sticky .slicknav_btn.slicknav_open,
.head-style-1 .navbar-sticky .slicknav_btn.slicknav_collapsed,
.head-style-1 .navbar-sticky .slicknav_btn.slicknav_open:before,
.head-style-1 .navbar-sticky .slicknav_btn.slicknav_collapsed:before {
	text-decoration: none !important;
	color: #005294 !important;
	border: none;
}
#dark .slicknav_btn.slicknav_open,
#dark .slicknav_btn.slicknav_collapsed,
#dark .slicknav_btn.slicknav_open:before,
#dark .slicknav_btn.slicknav_collapsed:before {
	color: #fff !important;
}
.head-style-1 .slicknav_btn.slicknav_open,
.head-style-1 .slicknav_btn.slicknav_collapsed,
.head-style-1 .slicknav_btn.slicknav_open:before,
.head-style-1 .slicknav_btn.slicknav_collapsed:before {
	color: #fff !important;
}
.slicknav_btn.slicknav_open:before,
.slicknav_btn.slicknav_collapsed:before {
	font-size: 21px;
	color: #fff;
}
.slicknav_menutxt {
	line-height: 22px !important;
}
.slicknav_btn:focus {
}
.slicknav_menu .slicknav_menutxt {
	color: #dff2f2;
	font-weight: 400;
	font-size: 14px;
}
.slicknav_menu .slicknav_icon-bar {
	background-color: #f5f5f5;
}
.slicknav_menu {
	background: #383546;
	padding: 0;
	margin-top: 0;
}
.slicknav_nav {
	color: #b6b3c4;
	margin: 0;
	padding: 0;
	font-size: .875em;
}
.slicknav_nav,
.slicknav_nav ul {
	list-style: none;
	overflow: hidden;
}
.slicknav_nav ul {
	padding: 0;
	margin: 0;
}
.slicknav_nav ul li {
	border-bottom: 0;
}
.slicknav_nav .slicknav_row {
	padding: 0;
	margin: 0;
}
.slicknav_nav a {
	padding: 10px 15px;
	margin: 0;
	text-decoration: none;
	color: #b6b3c4;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
	-o-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 13px;
	text-align: left;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
	padding: 10px 15px;
	margin: 0;
}
.slicknav_nav .slicknav_item {
	position: relative;
}
.slicknav_nav .slicknav_item a {
	border-bottom: none;
	display: block;
}
.slicknav_nav {
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	background: #1f1d26;
}
.slicknav_nav ul li {
	padding-left: 0;
	background: #1f1d26;
}
.slicknav_nav ul li li {
	padding-left: 0;
}
.slicknav_nav ul li ul {
	padding-left: 15px;
	padding-right: 15px;
}
.slicknav_nav ul li ul a {
	padding: 10px;
}
.slicknav_nav .slicknav_row:hover {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: #443e56;
	color: #fff;
}
.slicknav_nav a:hover {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: #443e56;
}
.slicknav_nav .slicknav_txtnode {
	margin-left: 15px;
}
.slicknav_nav .slicknav_arrow {
	font-size: 14px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-top: 13px;
	width: 50px;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, .05);
}
.slicknav_nav .slicknav_arrow:hover {
	background: rgba(255, 255, 255, .05);
}
.slicknav_menu .slicknav_icon {
	display: none;
}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 991px) and (max-width: 768px) {
	.slicknav_btn {
		top: 16px;
	}
}
@media (max-width: 767px) {
	#responsive-menu {
		display: none;
	}
	.slicknav_menu {
		display: block;
	}
	nav.navbar.navbar-default.navbar-fixed-top.with-slicknav {
		background: rgba(0, 0, 0, .5);
	}
}
@media (max-width: 479px) {
	.slicknav_btn {
		top: 4px;
		right: 0;
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: right;
	}
	.slicknav_btn.slicknav_open:before,
	.slicknav_btn.slicknav_collapsed:before {
		color: #fff;
	}
	.slicknav_nav {
		top: 50px;
	}
}
.slicknav_menu {
	display: none;
}
.slicknav_btn {
	position: relative;
	display: block;
	vertical-align: middle;
	float: right;
	padding: .438em .625em;
	line-height: 1.125em;
	cursor: pointer;
}
.slicknav_menu .slicknav_menutxt {
	display: block;
	line-height: 1.188em;
	float: left;
}
.slicknav_menu .slicknav_icon {
	float: left;
	margin: .188em 0 0 .438em;
}
.slicknav_menu .slicknav_no-text {
	margin: 0;
}
.slicknav_menu .slicknav_icon-bar {
	display: block;
	width: 1.125em;
	height: .125em;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
}
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
	margin-top: .188em;
}
.slicknav_nav {
	clear: both;
}
.slicknav_nav ul,
.slicknav_nav li {
	display: block;
}
.slicknav_nav .slicknav_arrow {
	font-size: .8em;
	margin: 0 0 0 .4em;
}
.slicknav_nav .slicknav_item {
	cursor: pointer;
}
.slicknav_nav .slicknav_row {
	display: block;
}
.slicknav_nav a {
	display: block;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
	display: inline;
}
.slicknav_menu:before,
.slicknav_menu:after {
	content: " ";
	display: table;
}
.slicknav_menu:after {
	clear: both;
}
.slicknav_menu {
	*zoom: 1;
}
.slicknav_menu {
	font-size: 16px;
}
.slicknav_btn {
	margin: 0;
	text-decoration: none;
	background-color: transparent;
	padding: 0;
	position: absolute;
	top: 28px;
	right: 0;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	z-index: 9;
}
.slicknav_btn.slicknav_open:before {
	font-family: fontawesome;
	content: "\f00d";
}
.slicknav_btn.slicknav_collapsed:before {
	font-family: fontawesome;
	content: "\f0c9";
}
.slicknav_btn.slicknav_open,
.slicknav_btn.slicknav_collapsed,
.slicknav_btn.slicknav_open:before,
.slicknav_btn.slicknav_collapsed:before {
	text-decoration: none !important;
	color: #fff;
	border: none;
}
.slicknav_btn.slicknav_open:before,
.slicknav_btn.slicknav_collapsed:before {
	font-size: 17px;
	color: #fff;
}
.slicknav_menutxt {
	line-height: 22px !important;
}
.slicknav_btn:focus {
}
.slicknav_menu .slicknav_menutxt {
	color: #dff2f2;
	font-weight: 400;
	font-size: 14px;
}
.slicknav_menu .slicknav_icon-bar {
	background-color: #f5f5f5;
}
.slicknav_menu {
	background: #fff;
	padding: 0;
	margin-top: 0;
}
.slicknav_nav {
	color: #b6b3c4;
	margin: 0;
	padding: 0;
	font-size: .875em;
}
.slicknav_nav,
.slicknav_nav ul {
	list-style: none;
	overflow: hidden;
}
.slicknav_nav ul {
	padding: 0;
	margin: 0;
}
.slicknav_nav ul li {
	border-bottom: 0;
}
.slicknav_nav .slicknav_row {
	padding: 0;
	margin: 0;
}
.slicknav_nav a {
	padding: 12px 20px;
	margin: 0;
	text-decoration: none;
	color: #b6b3c4;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
	-o-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 13px;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
	padding: 12px 20px;
	margin: 0;
}
.slicknav_nav .slicknav_item {
	position: relative;
}
.slicknav_nav .slicknav_item a {
	border-bottom: none;
	display: block;
}
.slicknav_nav {
	position: absolute;
	top: 96px;
	left: 0;
	right: 0;
	background: #1f1d26;
	z-index: 99999;
}
.slicknav_nav ul li {
	padding-left: 0;
	background: #1f1d26;
}
.slicknav_nav ul li li {
	padding-left: 0;
}
.slicknav_nav ul li ul {
	padding-left: 15px;
	padding-right: 15px;
}
.slicknav_nav ul li ul a {
	padding: 12px 15px;
}
.slicknav_nav .slicknav_row:hover {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: #443e56;
	color: #fff;
}
.slicknav_nav a:hover {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: #443e56;
}
.slicknav_nav .slicknav_txtnode {
	margin-left: 15px;
}
.slicknav_nav .slicknav_arrow {
	font-size: 14px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-top: 13px;
	width: 50px;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, .05);
}
.slicknav_nav .slicknav_arrow:hover {
	background: rgba(255, 255, 255, .05);
}
.slicknav_menu .slicknav_icon {
	display: none;
}
@media only screen and (max-width: 1199px) {
}
@media only screen and (max-width: 991px) {
	.slicknav_nav {
		height: 240px;
		overflow-y: scroll;
	}
	#responsive-menu {
		display: none;
	}
	.slicknav_menu {
		display: block;
	}
	.slicknav_nav {
		top: 76px;
	}
	.home-style-1 .slick_nav {
		top: 80px;
	}
	.navigation-1 .slicknav_nav {
		top: 36px;
	}
	.nav-content-style-1 .slicknav_btn {
		top: 23px;
	}
	.navigation-1 .slicknav_btn {
		top: 6px;
	}
}
@media (max-width: 767px) {
	.slicknav_nav {
	}
	.home-one .slicknav_nav {
		top: 76px;
	}
	.slicknav_btn {
		top: 30px;
		right: 0;
	}
	.nav-content-style-1 .slicknav_btn {
		top: 6px;
	}
	.nav-content-style-2 .slicknav_nav {
		top: 38px;
	}
	.nav-content-style-1 .slicknav_nav {
		top: 36px;
	}
	a.searchtoggle {
		display: none;
	}
}
#testimonial_094 {
	overflow: hidden;
	min-height: 400px;
	position: relative;
	z-index: 1;
}
#testimonial_094 > .carousel-inner:hover {
	cursor: -moz-grab;
	cursor: -webkit-grab;
}
#testimonial_094 > .carousel-inner:active {
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}
#testimonial_094 > .carousel-inner > .item {
	overflow: hidden;
}
.testimonial_094_indicators > .carousel-indicators {
	left: 0;
	bottom: 0;
	margin: 0;
	width: 100%;
	font-size: 0;
	padding: 2px 0;
	cursor: e-resize;
	overflow-x: auto;
	line-height: 90px;
	overflow-y: hidden;
	position: absolute;
	text-align: center;
	white-space: nowrap;
}
.testimonial_094_indicators > .carousel-indicators li {
	padding: 0;
	width: 90px;
	height: 90px;
	border: none;
	text-indent: 0;
	margin: 0 6px;
	cursor: pointer;
	display: inline-block;
	background-color: transparent;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 1px 1px 15px #cccccc57;
	transition: all ease-in-out 1s;
	position: relative;
}
.testimonial_094_indicators > .carousel-indicators li:after {
	position: absolute;
	content: '';
	background-image: linear-gradient(to right, rgba(87, 87, 87, 0.46), rgba(84, 99, 103, 0.73));
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.testimonial_094_indicators > .carousel-indicators li.active:after {
	opacity: 0;
}
.testimonial_094_indicators > .carousel-indicators .active {
	padding: 0;
	width: 130px;
	height: 130px;
	border: none;
	margin: 0 6px;
	border-radius: 50%;
	overflow: hidden;
}
.testimonial_094_indicators > .carousel-indicators li img {
	width: 100%;
	display: block;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .7s cubic-bezier(.39, .575, .565, 1);
	-moz-transition: all .7s cubic-bezier(.39, .575, .565, 1);
	transition: all .7s cubic-bezier(.39, .575, .565, 1);
}
.testimonial_094_indicators > .carousel-indicators::-webkit-scrollbar {
	height: 3px;
}
.testimonial_094_indicators > .carousel-indicators::-webkit-scrollbar-thumb {
	background: #eee;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.testimonial_094_header > h5,
.testimonial_094_slide > p,
.testimonial_094_slide > h5 > a,
.testimonial_094_slide > h6 > a {
	text-shadow: none;
	font-family: raleway, sans-serif;
	-webkit-font-smoothing: antialiased;
}
.testimonial_094_header {
	top: 0;
	left: 0;
	bottom: 0;
	width: 550px;
	display: block;
	margin: 30px auto;
	text-align: center;
	position: relative;
}
.testimonial_094_header > h5 {
	color: #1e1e25;
	font-size: 35px;
	font-weight: 900;
	position: relative;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.testimonial_094_header > h5 > span {
	color: #c32026;
	margin: 0 10px;
	position: relative;
}
.testimonial_094_header > h5 > span:after {
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	height: 2px;
	content: "";
	width: 100%;
	margin: auto;
	position: absolute;
	background: #c32026;
}
.testimonial_094_slide {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	margin: auto;
	padding: 25px 10px 10px;
	position: relative;
	text-align: center;
}
.testimonial_094_slide:before {
	position: absolute;
	height: 100px;
	width: 100px;
	top: -20px;
	left: -100px;
	background: url(../images/quote.png) no-repeat;
	content: '';
	background-size: cover;
	transform: rotate(180deg);
}
.testimonial_094_slide > p {
}
.testimonial_094_slide > h5 > a {
	color: #005294;
	font-weight: 600;
	letter-spacing: 1px;
	text-decoration: none;
	-webkit-transition: opacity .7s cubic-bezier(.39, .575, .565, 1);
	transition: opacity .7s cubic-bezier(.39, .575, .565, 1);
}
.testimonial_094_slide > h5 > a:hover {
	opacity: .6;
}
.testimonial_094_slide > h6 > a {
	color: #1e1e25;
	font-size: 14px;
	font-weight: 300;
	text-decoration: none;
	text-transform: lowercase;
	-webkit-transition: color .7s cubic-bezier(.39, .575, .565, 1);
	transition: color .7s cubic-bezier(.39, .575, .565, 1);
}
.testimonial_094_slide > h6 > a:hover {
	color: #c32026;
}
@media only screen and (max-width: 480px) {
	.testimonial_094_header {
		width: 95%;
		margin: 20px auto;
	}
	.testimonial_094_header > h5 {
		font-size: 20px;
	}
	.testimonial_094_slide {
		width: 98%;
		padding: 5px;
	}
	.testimonial_094_slide > p {
		font-size: 12px;
	}
	.testimonial_094_slide > h5 > a {
		font-size: 16px;
	}
	.testimonial_094_slide > h6 > a {
		font-size: 14px;
	}
}
@media (min-width: 481px) and (max-width: 767px) {
	.testimonial_094_header {
		width: 95%;
		margin: 15px auto;
	}
	.testimonial_094_slide {
		width: 98%;
		padding: 5px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.testimonial_094_slide {
		width: 98%;
		padding: 5px;
	}
}
@media (min-width: 992px) and (max-width: 1225px) {
	.testimonial_094_slide {
		padding: 5px;
	}
}
#js_frm_040 {
	overflow: hidden;
	max-height: 658px;
	position: relative;
	background: #000;
}
#js_frm_040:hover {
	cursor: -moz-grab;
	cursor: -webkit-grab;
}
#js_frm_040:active {
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}
#js_frm_040 > .carousel-inner > .item > img,
#js_frm_040 > .carousel-inner > .item > a > img {
	width: 100%;
	margin: auto;
	opacity: .5;
}
.ps_control_hrbrarrow .carousel-control {
	top: 45%;
	opacity: 0;
	width: 50px;
	height: 50px;
	z-index: 100;
	color: #fff;
	display: block;
	font-size: 18px;
	cursor: pointer;
	overflow: hidden;
	line-height: 50px;
	text-shadow: none;
	position: absolute;
	font-weight: 400;
	background: #0080bd;
}
.ps_control_hrbrarrow:hover .carousel-control {
	opacity: 1;
}
.ps_control_hrbrarrow .carousel-control.left {
	left: 0;
	-webkit-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
}
.ps_control_hrbrarrow .carousel-control.right {
	right: 0;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
}
.ps_control_hrbrarrow .carousel-control.left:hover,
.ps_control_hrbrarrow .carousel-control.right:hover {
	opacity: 1;
	background: #136f9c;
}
.ps_control_hrbrarrow .carousel-control.left > span:nth-child(1) {
	left: 45%;
}
.ps_control_hrbrarrow .carousel-control.right > span:nth-child(1) {
	right: 45%;
}
.js_frm_subscribe form {
	background: 0 0;
}
.js_frm_subscribe > form > div input::-webkit-input-placeholder {
	color: #000;
	font-weight: 400;
	letter-spacing: 1px;
	-webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
}
.js_frm_subscribe > form > div input::-moz-placeholder {
	color: #000;
	font-weight: 400;
	letter-spacing: 1px;
	-webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
}
.js_frm_subscribe > form > div input:-ms-input-placeholder {
	color: #000;
	font-weight: 400;
	letter-spacing: 1px;
	-webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
}
.js_frm_subscribe > form > div input:-moz-placeholder {
	color: #000;
	font-weight: 400;
	letter-spacing: 1px;
	-webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
}
.js_frm_subscribe > form > div input:focus::-webkit-input-placeholder {
	color: #000;
}
.js_frm_subscribe > form > div input:focus::-moz-placeholder {
	color: #000;
}
.js_frm_subscribe > form > div input:focus:-ms-input-placeholder {
	color: #000;
}
.js_frm_subscribe > form > div input:focus:-moz-placeholder {
	color: #000;
}
.js_frm_subscribe {
	left: 0;
	top: 15%;
	right: 0;
	width: 75%;
	margin: auto;
	overflow: hidden;
	text-align: center;
	position: absolute;
}
.js_frm_subscribe > h3 {
	padding: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 40px;
	font-weight: 700;
	text-shadow: none;
	margin-bottom: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	font-family: open sans, sans-serif;
}
.js_frm_subscribe > p {
	color: rgba(255, 255, 255, .8);
	width: 65%;
	margin: auto;
	font-size: 14px;
	text-shadow: none;
	letter-spacing: 1px;
	margin-bottom: 20px;
	text-transform: capitalize;
	-webkit-font-smoothing: antialiased;
	font-family: open sans, sans-serif;
}
.js_frm_subscribe > form > div > div > button,
.js_frm_subscribe > form > div > div > button:focus {
	width: 100%;
	height: 50px;
	border: none;
	outline: none;
	color: #fff;
	box-shadow: none;
	letter-spacing: 1px;
	background: #e6ae48;
	display: inline-block;
	text-transform: uppercase;
	font-family: open sans, sans-serif;
	-webkit-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
}
.js_frm_subscribe > form > div > div > button:hover,
.js_frm_subscribe > form > div > div > button:active {
	outline: none !important;
	color: rgba(255, 255, 255, .7) !important;
	background: #e6ae48 !important;
	border: none !important;
}
@media only screen and (max-width: 480px) {
	.js_frm_subscribe > form > div input {
		font-size: 10px;
	}
	.js_frm_subscribe > form > div select {
		font-size: 10px;
	}
	.js_frm_subscribe > form > div > div > button,
	.js_frm_subscribe > form > div > div > button:focus {
		font-size: 10px;
	}
	.ps_control_hrbrarrow .carousel-control {
		display: none;
	}
	.js_frm_subscribe {
		top: 10%;
		width: 90%;
	}
	.js_frm_subscribe > h3 {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.js_frm_subscribe > p {
		width: 100%;
		font-size: 12px;
		margin-bottom: 5px;
	}
	.banner-style-1 .js_frm_subscribe {
		top: 28%;
	}
	#js_frm_040 > .carousel-inner > .item > img,
	#js_frm_040 > .carousel-inner > .item > a > img {
		width: auto;
		max-width: unset;
	}
}
@media (min-width: 481px) and (max-width: 600px) {
	.js_frm_subscribe {
		top: 15%;
		width: 90%;
	}
	.js_frm_subscribe > h3 {
		font-size: 25px;
	}
}
@media (min-width: 601px) and (max-width: 767px) {
	.js_frm_subscribe {
		top: 15%;
		width: 90%;
	}
	.style-2 .banner-style-1 .js_frm_subscribe {
		top: 30%;
	}
}
@media (min-width: 768px) and (max-width: 1000px) {
	.js_frm_subscribe {
		top: 25%;
		width: 90%;
	}
}
#testimonial_095 {
	overflow: hidden;
	min-height: 330px;
	position: relative;
}
#testimonial_095 > .carousel-inner {
	width: 75%;
	margin: auto;
}
#testimonial_095 > .carousel-inner:hover {
	cursor: -moz-grab;
	cursor: -webkit-grab;
}
#testimonial_095 > .carousel-inner:active {
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}
#testimonial_095 > .carousel-inner > .item {
	overflow: hidden;
}
.testimonial_095_indicators > .carousel-indicators {
	left: 0;
	margin: 0;
	width: 100%;
	font-size: 0;
	height: 20px;
	bottom: 15px;
	padding: 0 5px;
	cursor: e-resize;
	overflow-x: auto;
	overflow-y: hidden;
	position: absolute;
	text-align: center;
	white-space: nowrap;
}
.testimonial_095_indicators > .carousel-indicators li {
	padding: 0;
	width: 10px;
	height: 10px;
	border: none;
	text-indent: 0;
	margin: 2px 3px;
	cursor: pointer;
	display: inline-block;
	background: #fff;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.testimonial_095_indicators > .carousel-indicators .active {
	padding: 0;
	width: 10px;
	height: 10px;
	border: none;
	margin: 2px 3px;
	background: #aa914f;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.testimonial_095_indicators > .carousel-indicators::-webkit-scrollbar {
	height: 3px;
}
.testimonial_095_indicators > .carousel-indicators::-webkit-scrollbar-thumb {
	background: #eee;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.testimonial_095_control_button .carousel-control {
	top: 120px;
	opacity: 1;
	width: 40px;
	bottom: auto;
	height: 40px;
	font-size: 10px;
	cursor: pointer;
	font-weight: 700;
	overflow: hidden;
	line-height: 38px;
	text-shadow: none;
	text-align: center;
	position: absolute;
	background: 0 0;
	border: 2px solid #fff;
	text-transform: uppercase;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all .6s cubic-bezier(.3, 1, 0, 1);
	transition: all .6s cubic-bezier(.3, 1, 0, 1);
}
.testimonial_095_control_button .carousel-control.left {
	left: 7%;
	right: auto;
}
.testimonial_095_control_button .carousel-control.right {
	right: 7%;
	left: auto;
}
.testimonial_095_control_button .carousel-control.left:hover,
.testimonial_095_control_button .carousel-control.right:hover {
	color: #fff;
	background: #aa914f;
	border: 2px solid #aa914f;
}
.testimonial_095_header > h5,
.testimonial_095_slide > p,
.testimonial_095_slide > h5 > a {
	text-shadow: none;
	font-family: raleway, sans-serif;
	-webkit-font-smoothing: antialiased;
}
.testimonial_095_header {
	top: 0;
	left: 0;
	bottom: 0;
	width: 550px;
	display: block;
	margin: 30px auto;
	text-align: center;
	position: relative;
}
.testimonial_095_header > h5 {
	color: #f2f2f2;
	font-size: 30px;
	font-weight: 600;
	position: relative;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.testimonial_095_header > h5 > span {
	color: #aa914f;
	margin: 0 10px;
	position: relative;
}
.testimonial_095_header > h5 > span:after {
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	height: 1px;
	content: "";
	width: 100%;
	margin: auto;
	position: absolute;
	background: #aa914f;
}
.testimonial_095_slide {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 70%;
	margin: auto;
	padding: 20px;
	position: relative;
	text-align: center;
}
.testimonial_095_slide > a {
	top: 0;
	left: 0;
	right: 0;
	width: 50px;
	height: 50px;
	margin: auto;
	display: block;
	color: #f2f2f2;
	font-size: 18px;
	line-height: 46px;
	text-align: center;
	position: relative;
	border: 3px solid #f2f2f2;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.testimonial_095_slide > a:after {
	top: 0;
	left: 0;
	padding: 0;
	opacity: 0;
	width: 100%;
	content: '';
	height: 100%;
	position: absolute;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	-webkit-transform: scale(.9);
	-ms-transform: scale(.9);
	transform: scale(.9);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, .1);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, .1);
}
.testimonial_095_slide > a:hover:after {
	-webkit-animation: psBoxShadowEffect_2 2s ease-out;
	animation: psBoxShadowEffect_2 2s ease-out;
}
.testimonial_095_slide > p {
	color: #f2f2f2;
	font-size: 14px;
	margin: 15px 0;
}
.testimonial_095_slide > p > a {
	color: #aa914f;
	padding: 2px 5px;
	text-decoration: none;
	-webkit-transition: all .3s cubic-bezier(.39, .575, .565, 1);
	transition: all .3s cubic-bezier(.39, .575, .565, 1);
}
.testimonial_095_slide > p > a:hover {
	color: #fff;
	background: #aa914f;
}
.testimonial_095_slide > h5 > a {
	padding: 3px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid transparent;
	-webkit-transition: border .5s cubic-bezier(.39, .575, .565, 1);
	transition: border .5s cubic-bezier(.39, .575, .565, 1);
}
@media (max-width: 359px) {
	.testimonial_095_indicators > .carousel-indicators {
		bottom: 10px;
	}
}
@media only screen and (max-width: 480px) {
	.testimonial_095_control_button .carousel-control {
		display: none;
	}
	.testimonial_095_header {
		width: 95%;
	}
	.testimonial_095_header > h5 {
		font-size: 20px;
	}
	.testimonial_095_slide {
		width: 98%;
		padding: 5px;
	}
	#testimonial_095 > .carousel-inner {
		width: 100%;
	}
}
@media (min-width: 481px) and (max-width: 767px) {
	.testimonial_095_control_button .carousel-control.left {
		left: 2%;
	}
	.testimonial_095_control_button .carousel-control.right {
		right: 2%;
	}
	.testimonial_095_header {
		width: 95%;
	}
	.testimonial_095_slide {
		width: 98%;
		padding: 5px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.testimonial_095_control_button .carousel-control.left {
		left: 5%;
	}
	.testimonial_095_control_button .carousel-control.right {
		right: 5%;
	}
}
@media (min-width: 992px) and (max-width: 1225px) {
}
@-webkit-keyframes psBoxShadowEffect_2 {
	0% {
		opacity: .3;
	}
	40% {
		opacity: .5;
		-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, .1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, .5);
	}
	100% {
		-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, .1), 0 0 5px 5px #fff, 0 0 0 5px rgba(255, 255, 255, .5);
		-webkit-transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes psBoxShadowEffect_2 {
	0% {
		opacity: .3;
	}
	40% {
		opacity: .5;
		box-shadow: 0 0 0 2px rgba(255, 255, 255, .1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, .5);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(255, 255, 255, .1), 0 0 5px 5px #fff, 0 0 0 5px rgba(255, 255, 255, .5);
		transform: scale(1.5);
		opacity: 0;
	}
}
.ps_ease .carousel-inner > .item {
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_ease .carousel-inner > .item {
		-webkit-transition-timing-function: ease;
		-moz-transition-timing-function: ease;
		-ms-transition-timing-function: ease;
		-o-transition-timing-function: ease;
		transition-timing-function: ease;
	}
}
.ps_easeInOut .carousel-inner > .item {
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOut .carousel-inner > .item {
		-webkit-transition-timing-function: ease-in-out;
		-moz-transition-timing-function: ease-in-out;
		-ms-transition-timing-function: ease-in-out;
		-o-transition-timing-function: ease-in-out;
		transition-timing-function: ease-in-out;
	}
}
.ps_speedy .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
	-moz-transition-timing-function: cubic-bezier(0, 1, 0, 1);
	-ms-transition-timing-function: cubic-bezier(0, 1, 0, 1);
	-o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
	transition-timing-function: cubic-bezier(0, 1, 0, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_speedy .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
		-moz-transition-timing-function: cubic-bezier(0, 1, 0, 1);
		-ms-transition-timing-function: cubic-bezier(0, 1, 0, 1);
		-o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
		transition-timing-function: cubic-bezier(0, 1, 0, 1);
	}
}
.ps_slowSpeedy .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	-moz-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	-ms-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	-o-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	transition-timing-function: cubic-bezier(.3, 1, 0, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_slowSpeedy .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
		-moz-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
		-ms-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
		-o-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
		transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	}
}
.ps_easeOutInCubic .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	-moz-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	-ms-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	-o-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	transition-timing-function: cubic-bezier(.22, .81, .01, .99);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutInCubic .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
		-moz-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
		-ms-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
		-o-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
		transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	}
}
.ps_swing .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	-moz-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	-ms-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	-o-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	transition-timing-function: cubic-bezier(.02, .01, .47, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_swing .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
		-moz-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
		-ms-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
		-o-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
		transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	}
}
.ps_easeOutCubic .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-moz-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-ms-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutCubic .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-moz-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-ms-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
}
.ps_easeInOutCubic .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	-moz-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	-ms-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	-o-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	transition-timing-function: cubic-bezier(.645, .045, .355, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOutCubic .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
		-moz-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
		-ms-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
		-o-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
		transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	}
}
.ps_easeOutCirc .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	-moz-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	-ms-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	-o-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	transition-timing-function: cubic-bezier(.075, .82, .165, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutCirc .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
		-moz-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
		-ms-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
		-o-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
		transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	}
}
.ps_easeOutExpo .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	-moz-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	-ms-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	-o-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutExpo .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
		-moz-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
		-ms-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
		-o-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
		transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	}
}
.ps_easeInQuad .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	-moz-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	-ms-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	-o-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	transition-timing-function: cubic-bezier(.55, .085, .68, .53);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInQuad .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
		-moz-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
		-ms-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
		-o-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
		transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	}
}
.ps_easeOutQuad .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	-moz-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	-ms-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	-o-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutQuad .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		-moz-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		-ms-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		-o-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	}
}
.ps_easeInOutQuad .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	-moz-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	-ms-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	-o-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOutQuad .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
		-moz-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
		-ms-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
		-o-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
		transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	}
}
.ps_easeOutQuart .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	-moz-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	-ms-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	-o-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutQuart .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		-moz-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		-ms-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		-o-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	}
}
.ps_easeInOutQuart .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	-moz-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	-ms-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	-o-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOutQuart .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
		-moz-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
		-ms-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
		-o-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
		transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	}
}
.ps_easeOutQuint .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	-moz-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	-ms-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	-o-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	transition-timing-function: cubic-bezier(.23, 1, .32, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutQuint .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
		-moz-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
		-ms-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
		-o-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
		transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	}
}
.ps_easeInSine .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	-moz-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	-ms-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	-o-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	transition-timing-function: cubic-bezier(.47, 0, .745, .715);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInSine .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
		-moz-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
		-ms-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
		-o-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
		transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	}
}
.ps_easeOutSine .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	-moz-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	-ms-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	-o-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	transition-timing-function: cubic-bezier(.39, .575, .565, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutSine .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
		-moz-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
		-ms-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
		-o-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
		transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	}
}
.ps_easeInOutSine .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	-moz-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	-ms-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	-o-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	transition-timing-function: cubic-bezier(.445, .05, .55, .95);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOutSine .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
		-moz-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
		-ms-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
		-o-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
		transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	}
}
.ps_ease .carousel-inner > .item {
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_ease .carousel-inner > .item {
		-webkit-transition-timing-function: ease;
		-moz-transition-timing-function: ease;
		-ms-transition-timing-function: ease;
		-o-transition-timing-function: ease;
		transition-timing-function: ease;
	}
}
.ps_easeInOut .carousel-inner > .item {
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOut .carousel-inner > .item {
		-webkit-transition-timing-function: ease-in-out;
		-moz-transition-timing-function: ease-in-out;
		-ms-transition-timing-function: ease-in-out;
		-o-transition-timing-function: ease-in-out;
		transition-timing-function: ease-in-out;
	}
}
.ps_speedy .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
	-moz-transition-timing-function: cubic-bezier(0, 1, 0, 1);
	-ms-transition-timing-function: cubic-bezier(0, 1, 0, 1);
	-o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
	transition-timing-function: cubic-bezier(0, 1, 0, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_speedy .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
		-moz-transition-timing-function: cubic-bezier(0, 1, 0, 1);
		-ms-transition-timing-function: cubic-bezier(0, 1, 0, 1);
		-o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
		transition-timing-function: cubic-bezier(0, 1, 0, 1);
	}
}
.ps_slowSpeedy .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	-moz-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	-ms-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	-o-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	transition-timing-function: cubic-bezier(.3, 1, 0, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_slowSpeedy .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
		-moz-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
		-ms-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
		-o-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
		transition-timing-function: cubic-bezier(.3, 1, 0, 1);
	}
}
.ps_easeOutInCubic .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	-moz-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	-ms-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	-o-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	transition-timing-function: cubic-bezier(.22, .81, .01, .99);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutInCubic .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
		-moz-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
		-ms-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
		-o-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
		transition-timing-function: cubic-bezier(.22, .81, .01, .99);
	}
}
.ps_swing .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	-moz-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	-ms-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	-o-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	transition-timing-function: cubic-bezier(.02, .01, .47, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_swing .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
		-moz-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
		-ms-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
		-o-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
		transition-timing-function: cubic-bezier(.02, .01, .47, 1);
	}
}
.ps_easeOutCubic .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-moz-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-ms-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutCubic .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-moz-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-ms-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
}
.ps_easeInOutCubic .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	-moz-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	-ms-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	-o-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	transition-timing-function: cubic-bezier(.645, .045, .355, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOutCubic .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
		-moz-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
		-ms-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
		-o-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
		transition-timing-function: cubic-bezier(.645, .045, .355, 1);
	}
}
.ps_easeOutCirc .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	-moz-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	-ms-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	-o-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	transition-timing-function: cubic-bezier(.075, .82, .165, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutCirc .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
		-moz-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
		-ms-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
		-o-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
		transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	}
}
.ps_easeOutExpo .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	-moz-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	-ms-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	-o-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutExpo .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
		-moz-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
		-ms-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
		-o-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
		transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	}
}
.ps_easeInQuad .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	-moz-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	-ms-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	-o-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	transition-timing-function: cubic-bezier(.55, .085, .68, .53);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInQuad .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
		-moz-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
		-ms-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
		-o-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
		transition-timing-function: cubic-bezier(.55, .085, .68, .53);
	}
}
.ps_easeOutQuad .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	-moz-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	-ms-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	-o-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutQuad .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		-moz-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		-ms-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		-o-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	}
}
.ps_easeInOutQuad .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	-moz-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	-ms-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	-o-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOutQuad .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
		-moz-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
		-ms-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
		-o-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
		transition-timing-function: cubic-bezier(.455, .03, .515, .955);
	}
}
.ps_easeOutQuart .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	-moz-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	-ms-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	-o-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutQuart .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		-moz-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		-ms-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		-o-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	}
}
.ps_easeInOutQuart .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	-moz-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	-ms-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	-o-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOutQuart .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
		-moz-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
		-ms-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
		-o-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
		transition-timing-function: cubic-bezier(.77, 0, .175, 1);
	}
}
.ps_easeOutQuint .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	-moz-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	-ms-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	-o-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	transition-timing-function: cubic-bezier(.23, 1, .32, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutQuint .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
		-moz-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
		-ms-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
		-o-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
		transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	}
}
.ps_easeInSine .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	-moz-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	-ms-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	-o-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	transition-timing-function: cubic-bezier(.47, 0, .745, .715);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInSine .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
		-moz-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
		-ms-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
		-o-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
		transition-timing-function: cubic-bezier(.47, 0, .745, .715);
	}
}
.ps_easeOutSine .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	-moz-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	-ms-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	-o-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	transition-timing-function: cubic-bezier(.39, .575, .565, 1);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeOutSine .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
		-moz-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
		-ms-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
		-o-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
		transition-timing-function: cubic-bezier(.39, .575, .565, 1);
	}
}
.ps_easeInOutSine .carousel-inner > .item {
	-webkit-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	-moz-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	-ms-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	-o-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	transition-timing-function: cubic-bezier(.445, .05, .55, .95);
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.ps_easeInOutSine .carousel-inner > .item {
		-webkit-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
		-moz-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
		-ms-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
		-o-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
		transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	}
}
#kenburns_061 {
	overflow: hidden;
	max-height: 600px;
	position: relative;
	background: #000;
}
#kenburns_061:hover {
	cursor: -moz-grab;
	cursor: -webkit-grab;
}
#kenburns_061:active {
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}
#kenburns_061 > .carousel-inner > .item {
	overflow: hidden;
}
#kenburns_061 > .carousel-inner > .item > img,
#kenburns_061 > .carousel-inner > .item > a > img {
	width: 100%;
	margin: auto;
	opacity: .5;
}
.ps_indicators_txt_icon > .carousel-indicators {
	top: 1%;
	right: 9%;
	left: auto;
	width: 80%;
	height: 35px;
	font-size: 0;
	cursor: e-resize;
	overflow-x: auto;
	text-align: center;
	overflow-y: hidden;
	padding-left: 10px;
	padding-right: 10px;
	white-space: nowrap;
}
.ps_indicators_txt_icon > .carousel-indicators li {
	width: 50px;
	height: 30px;
	border: none;
	color: #fff;
	text-indent: 0;
	padding: 0 10px;
	font-size: 12px;
	overflow: hidden;
	text-align: left;
	line-height: 30px;
	position: relative;
	letter-spacing: 1px;
	background: 0 0;
	text-transform: uppercase;
	font-family: poppins, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-transition: all cubic-bezier(.165, .84, .44, 1) .5s;
	transition: all cubic-bezier(.165, .84, .44, 1) .5s;
}
.ps_indicators_txt_icon > .carousel-indicators li:after {
	top: 0;
	right: 15%;
	content: "\f178";
	font-style: normal;
	position: absolute;
	font-weight: 400;
	font-family: FontAwesome;
	text-decoration: inherit;
}
.ps_indicators_txt_icon > .carousel-indicators .active {
	width: 75px;
	margin: 1px;
	height: 30px;
	border: none;
	text-indent: 0;
	color: #fff;
	background: 0 0;
	border-bottom: 1px solid #fff;
}
.ps_indicators_txt_icon > .carousel-indicators::-webkit-scrollbar {
	height: 5px;
}
.ps_indicators_txt_icon > .carousel-indicators::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, .8);
	-webkit-border-radius: 0;
	border-radius: 0;
}
.ps_control_txt_icon .carousel-control {
	top: 10%;
	opacity: 1;
	width: 128px;
	padding: 14px 25px;
	height: 40px;
	z-index: 100;
	bottom: auto;
	border: none;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	line-height: 15px;
	font-weight: 400;
	overflow: visible;
	text-shadow: none;
	position: absolute;
	background: 0 0;
	font-family: poppins, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-box-shadow: none;
	background:   var(--MainGreenColor);
	border-radius: 30px;
}
.ps_control_txt_icon:hover .carousel-control {
	opacity: 1;
}
.ps_control_txt_icon .carousel-control.left {
	left: -2%;
	right: auto;
}
.ps_control_txt_icon .carousel-control.right {
	right: -2%;
	left: auto;
}
.ps_control_txt_icon .carousel-control > span {
	text-transform: uppercase;
	font-family: poppins, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all cubic-bezier(.165, .84, .44, 1) .5s;
	transition: all cubic-bezier(.165, .84, .44, 1) .5s;
}
.ps_control_txt_icon .carousel-control.left span:after {
	top: 2px;
	left: 90px;
	opacity: 1;
	visibility: visible;
	content: "\f104";
	font-style: normal;
	position: absolute;
	font-weight: 400;
	font-family: FontAwesome;
	text-decoration: inherit;
	-webkit-transition: all cubic-bezier(.165, .84, .44, 1) .5s;
	transition: all cubic-bezier(.165, .84, .44, 1) .5s;
	height: 37px;
	width: 37px;
	border-radius: 50%;
	line-height: 2.1;
	font-size: 18px;
	font-weight: 600;
}
.ps_control_txt_icon .carousel-control.right span:before {
	top: 2px;
	right: 90px;
	opacity: 1;
	visibility: visible;
	content: "\f105";
	font-style: normal;
	position: absolute;
	font-weight: 400;
	font-family: FontAwesome;
	text-decoration: inherit;
	-webkit-transition: all cubic-bezier(.165, .84, .44, 1) .5s;
	transition: all cubic-bezier(.165, .84, .44, 1) .5s;
	height: 37px;
	width: 37px;
	border-radius: 50%;
	line-height: 2.1;
	font-size: 18px;
	font-weight: 500;
}
.ps_control_txt_icon .carousel-control.left:hover span:after,
.ps_control_txt_icon .carousel-control.right:hover span:before {
	background:  #7fbe41;
	box-shadow: 0 0 5px #cccccc80;
}
.kenburns_061_slide {
	top: 30%;
	left: 8%;
	width: 80%;
	right: auto;
	text-align: left;
	position: absolute;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: cubic-bezier(.165, .84, .44, 1);
	animation-timing-function: cubic-bezier(.165, .84, .44, 1);
}
@media (max-width: 500px){
	.kenburns_061_slide {
		top: 10%;
	}
	.kenburns_061_slide img {
		width: 50px;
	}
}
@media (min-width: 501px) and (max-width: 1110px){
	.kenburns_061_slide {
		top: 20%;
	}
	.kenburns_061_slide img {
		width: 100px;
	}
}
.kenburns_061_slide_right {
	right: 8%;
	left: auto;
	text-align: right;
}
.kenburns_061_slide_center {
	left: 0 !important;
	right: 0;
	margin: auto;
	text-align: center;
}
.kenburns_061_slide > h1 {
	color: #fff;
	margin: 10px 0;
	font-size: 48px;
	font-weight: 700;
	text-shadow: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
}
.kenburns_061_slide > h2 {
	margin: 0;
	color: #a3d8f1;
	font-size: 28px;
	font-weight: 400;
	text-shadow: none;
	letter-spacing: 1px;
	text-transform: capitalize;
	-webkit-font-smoothing: antialiased;
	position: relative;
}
.kenburns_061_slide > h3 {
	margin: 0;
	color: #fff;
	font-size: 30px;
	font-weight: 400;
	text-shadow: none;
	letter-spacing: 1px;
	text-transform: capitalize;
	font-family: poppins, sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.3;
}
.kenburns_061_slide > h3 span {
	font-size: 16px;
	display: block;
}
.kenburns_061_slide > a,
.kenburns_061_slide > a:visited {
	color: #fff;
	font-size: 12px;
	text-align: left;
	font-weight: 400;
	margin-top: 0;
	text-shadow: none;
	position: relative;
	letter-spacing: 2px;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	font-family: poppins, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: width cubic-bezier(.165, .84, .44, 1) .5s;
	transition: all ease-in-out .3s;
}
.kenburns_061_slide a.btn-blue {
	padding: 10px 25px;
	background: 0 0;
	border-width: 2px;
	border-color: #fff;
}
.kenburns_061_slide a.btn-blue:hover {
	background: #d60d45;
	border-color: #d60d45;
	color: #fff;
}
.kenburns_061_slide > a:hover,
.kenburns_061_slide > a:active {
}
.kenburns_061_slide_right > a {
	text-align: right;
}
.kenburns_061_slide_center > a {
	text-align: center;
}
.kenburns_061_slide > a:after {
	top: 0;
	right: 0;
	content: "\f178";
	font-style: normal;
	position: absolute;
	font-weight: 400;
	font-family: FontAwesome;
	text-decoration: inherit;
	display: none;
}
.kenburns_061_slide_right > a:after {
	left: 0;
	right: auto;
	content: "\f177";
}
@media only screen and (max-width: 480px) {
	.ps_indicators_txt_icon > .carousel-indicators {
		display: none;
	}
	.ps_control_txt_icon .carousel-control {
		display: none;
	}
	.kenburns_061_slide {
		left: 5%;
		width: 100%;
	}
	.kenburns_061_slide_right {
		right: 5%;
		left: auto;
		padding-left: 30px;
	}
	.kenburns_061_slide_center {
		left: 0;
		right: 0;
	}
	.kenburns_061_slide > h1 {
		font-size: 20px;
		margin: 10px 0;
	}
	.kenburns_061_slide > h2 {
		font-size: 16px;
	}
	.kenburns_061_slide > h3 {
		font-size: 14px;
	}
	.kenburns_061_slide > h3 span {
		font-size: 20px;
	}
	#kenburns_061 {
		height: 400px;
	}
	#kenburns_061 > .carousel-inner > .item > img,
	#kenburns_061 > .carousel-inner > .item > a > img {
		width: auto;
		max-width: unset;
	}
	.video-banner-content {
		display: none;
	}
}
@media (min-width: 481px) and (max-width: 600px) {
	.ps_indicators_txt_icon > .carousel-indicators {
		display: none;
	}
	.kenburns_061_slide > h1 {
		margin: 5px 0;
		font-size: 15px;
	}
	.kenburns_061_slide > h2 {
		margin: 5px 0;
		font-size: 15px;
	}
	.kenburns_061_slide > h3 {
		margin: 5px 0;
		font-size: 18px;
	}
}
@media (min-width: 601px) and (max-width: 767px) {
	.ps_indicators_txt_icon > .carousel-indicators {
		right: 15%;
		width: 70%;
	}
	.kenburns_061_slide > h1 {
		font-size: 30px;
	}
	.kenburns_061_slide > h2 {
		font-size: 20px;
	}
	.kenburns_061_slide > h3 {
		font-size: 24px;
	}
	.kenburns_061_slide > h3 span {
		font-size: 13px;
	}
	.ps_control_txt_icon .carousel-control {
		top: 3%;
	}
	.ps_control_txt_icon .carousel-control.left {
		left: -4%;
	}
	.ps_control_txt_icon .carousel-control.right {
		right: -4%;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.kenburns_061_slide > h1 {
		font-size: 36px;
	}
	.kenburns_061_slide > h2 {
		font-size: 24px;
	}
	.kenburns_061_slide {
		top: 27%;
		left: 5.5%;
	}
}
@media (min-width: 1100px) {
	.kenburns_061_slide {
		top: 10%;
	}
}
.kbrns_zoomInOut > .carousel-inner > .item > img,
.kbrns_zoomInOut > .carousel-inner > .item > a > img {
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
	-webkit-animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
	-moz-animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
	-o-animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
	-ms-animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
	animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
}
@-webkit-keyframes kbrns_zoomInOut {
	0% {
		-webkit-transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.2);
	}
}
@-moz-keyframes kbrns_zoomInOut {
	0% {
		-moz-transform: scale(1);
	}
	100% {
		-moz-transform: scale(1.2);
	}
}
@-ms-keyframes kbrns_zoomInOut {
	0% {
		-ms-transform: scale(1);
	}
	100% {
		-ms-transform: scale(1.2);
	}
}
@-o-keyframes kbrns_zoomInOut {
	0% {
		-o-transform: scale(1);
	}
	100% {
		-o-transform: scale(1.2);
	}
}
@keyframes kbrns_zoomInOut {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}
#in_th_030 {
	overflow: hidden;
	max-height: 643px;
	position: relative;
	background: #000;
}
#in_th_030:hover {
	cursor: -moz-grab;
	cursor: -webkit-grab;
}
#in_th_030:active {
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}
#in_th_030 > .carousel-inner > .item > img,
#in_th_030 > .carousel-inner > .item > a > img {
	width: 100%;
	opacity: .9;
	margin: auto;
}
.in_th_brdr_img_030 > .carousel-indicators {
	left: 0;
	bottom: 0;
	margin: 0;
	width: 100%;
	font-size: 0;
	cursor: e-resize;
	overflow-x: auto;
	position: absolute;
	text-align: center;
	white-space: nowrap;
	background: #0000007d;
	padding: 10px 0;
}
.in_th_brdr_img_030 > .carousel-indicators li {
	width: 100px;
	border: 0;
	padding: 0;
	height: 100px;
	text-indent: 0;
	cursor: pointer;
	display: inline-block;
	background-color: transparent;
	background-color: transparent;
	-webkit-border-radius: 0;
	border-radius: 0;
	margin: 0;
	margin: 0 2px;
	border: 2px solid #fff;
	opacity: .8;
}
.in_th_brdr_img_030 > .carousel-indicators .active {
	width: 100px;
	height: 100px;
	background-color: transparent;
	opacity: 1;
	border: 2px solid #fff;
}
.in_th_brdr_img_030 > .carousel-indicators li img {
	width: 100%;
}
.in_th_brdr_img_030 > .carousel-indicators .active img {
	opacity: .9;
}
.in_th_brdr_img_030 > .carousel-indicators > li > h5 {
	opacity: 0;
	left: -50px;
	color: #000;
	padding: 7px 0;
	font-size: 12px;
	font-weight: 400;
	margin: 0 0 3px;
	letter-spacing: 1px;
	white-space: normal;
	visibility: hidden;
	position: relative;
	text-transform: uppercase;
	font-family: montserrat, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all cubic-bezier(.23, 1, .32, 1) .5s;
	transition: all cubic-bezier(.23, 1, .32, 1) .5s;
}
.in_th_brdr_img_030 > .carousel-indicators > li > h5:before,
.in_th_brdr_img_030 > .carousel-indicators > li > h5:after,
.in_th_brdr_img_030 > .carousel-indicators > li > h5 > :first-child:before,
.in_th_brdr_img_030 > .carousel-indicators > li > h5 > :first-child:after {
	width: 15px;
	height: 15px;
	content: '';
	position: absolute;
	border-style: solid;
	border-color: #000;
}
.in_th_brdr_img_030 > .carousel-indicators > li > h5:before {
	top: 0;
	left: 0;
	border-width: 1px 0 0 1px;
}
.in_th_brdr_img_030 > .carousel-indicators > li > h5:after {
	top: 0;
	right: 0;
	border-width: 1px 1px 0 0;
}
.in_th_brdr_img_030 > .carousel-indicators > li > h5 > :first-child:before {
	right: 0;
	bottom: 0;
	border-width: 0;
}
.in_th_brdr_img_030 > .carousel-indicators > li > h5 > :first-child:after {
	left: 0;
	bottom: 0;
	border-width: 0;
}
.in_th_brdr_img_030 > .carousel-indicators .active h5 {
	left: 0;
	opacity: 1;
	visibility: visible;
}
.in_th_brdr_img_030 > .carousel-indicators::-webkit-scrollbar {
	margin: 0;
	padding: 0;
	width: 5px;
	height: 5px;
	background: rgba(0, 0, 0, .3);
}
.in_th_brdr_img_030 > .carousel-indicators::-webkit-scrollbar-thumb {
	-webkit-border-radius: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, .7);
}
@media screen and (min-width: 768px) {
	.in_th_brdr_img_030 > .carousel-indicators {
		bottom: 0;
	}
}
@media (max-width: 639px) {
	.in_th_brdr_img_030 > .carousel-indicators {
		display: none;
	}
}
.in_th_030_slide {
	top: 25%;
	left: 10%;
	right: auto;
	width: 250px;
	height: auto;
	margin: auto;
	padding: 25px;
	text-align: center;
	position: absolute;
	-webkit-animation-delay: .7s;
	animation-delay: .7s;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: cubic-bezier(.23, 1, .32, 1);
	animation-timing-function: cubic-bezier(.23, 1, .32, 1);
}
.in_th_030_slide_right {
	right: 10%;
	left: auto;
	text-align: center;
}
.in_th_030_slide_center {
	left: 0;
	right: 0;
	text-align: center;
}
.in_th_030_slide:before,
.in_th_030_slide:after,
.in_th_030_slide > :first-child:before,
.in_th_030_slide > :first-child:after {
	width: 50px;
	height: 50px;
	content: '';
	position: absolute;
	border-style: solid;
	border-color: #000;
}
.in_th_030_slide:before {
	top: 0;
	left: 0;
	border-width: 2px 0 0 2px;
}
.in_th_030_slide:after {
	top: 0;
	right: 0;
	border-width: 2px 2px 0 0;
}
.in_th_030_slide > :first-child:before {
	right: 0;
	bottom: 0;
	border-width: 0;
}
.in_th_030_slide > :first-child:after {
	left: 0;
	bottom: 0;
	border-width: 0;
}
.in_th_030_slide > h1 {
	color: #000;
	font-size: 25px;
	margin: 0;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: montserrat, sans-serif;
}
.in_th_030_slide > h2 {
	color: #000;
	font-size: 50px;
	margin: 0;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: montserrat, sans-serif;
}
.in_th_030_slide > a,
.in_th_030_slide > a:visited {
	color: #000;
	cursor: pointer;
	font-size: 14px;
	text-align: center;
	letter-spacing: 2px;
	white-space: nowrap;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	font-family: montserrat, sans-serif;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-transition: all cubic-bezier(.23, 1, .32, 1) .7s;
	transition: all cubic-bezier(.23, 1, .32, 1) .7s;
}
.in_th_030_slide > a:hover,
.in_th_030_slide > a:active {
	color: #ff4343;
}
@media only screen and (max-width: 480px) {
	.in_th_brdr_img_030 > .carousel-indicators > li > h5 {
		display: none;
	}
	.in_th_030_slide {
		top: 7%;
	}
	.in_th_030_slide > h1 {
		font-size: 25px;
	}
	.in_th_030_slide > h2 {
		font-size: 20px;
	}
}
@media (min-width: 481px) and (max-width: 600px) {
	.in_th_brdr_img_030 > .carousel-indicators > li > h5 {
		display: none;
	}
}
@media (min-width: 601px) and (max-width: 767px) {
	.in_th_brdr_img_030 > .carousel-indicators > li > h5 {
		font-size: 7px;
	}
}
.range-slider {
	margin: 13px 0;
}
.range-slider .ui-slider {
	position: relative;
	text-align: left;
}
.range-slider label {
	font-size: 13px;
	color: #4a4747;
	font-weight: 600;
	margin-bottom: 12px;
}
.range-slider .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	cursor: w-resize;
	outline: none;
	top: -5px;
	margin-left: -8px;
	box-shadow: none !important;
	background: #fff;
	border: 1px solid #ccc;
	transition: inherit;
}
.range-slider .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	border: 0;
	background-position: 0 0;
	background: #005294;
}
.range-slider .ui-slider .ui-slider-handle {
}
.range-slider .ui-widget-content {
	background-color: #ccc;
}
.range-slider .ui-widget-header {
}
.range-slider .ui-slider.ui-state-disabled .ui-slider-handle,
.range-slider .ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}
.range-slider .ui-slider-horizontal {
	height: 4px;
	border-radius: 10px;
	width: calc(100% - 16px);
	margin-left: 8px;
}
.range-slider .ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.range-slider .ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.range-slider .ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}
.min-value:focus,
.max-value:focus,
.min-value,
.max-value {
	width: 40%;
	display: inline-block;
	border: 0;
	background-color: transparent;
	padding: 0;
	margin: 12px 0 0;
	cursor: default;
}
.min-value {
	float: left;
	margin-left: -8px;
	width: 50%;
	margin-right: -8px;
	font-size: 11px;
	font-weight: 700;
	margin-top: 15px;
}
.max-value {
	float: right;
	width: 50%;
	text-align: right;
	margin-right: -8px;
	font-size: 11px;
	font-weight: 700;
	margin-top: 15px;
}
