﻿.mouse {
	position: absolute;
	width: 22px;
	height: 40px;
	bottom: 20px;
	left: 50%;
	margin-left: -11px;
	border-radius: 10px;
	border: 2px solid #fff;
	-webkit-animation: intro 1s;
	animation: intro 1s;
	z-index: 1000;
	display: none;
}

.scroll {
	display: block;
	width: 6px;
	height: 6px;
	margin: 6px auto;
	border-radius: 4px;
	background: #fff;
	-webkit-animation: finger 1s infinite;
	animation: finger 1s infinite;
}

@-webkit-keyframes intro {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes intro {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes finger {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
}

@keyframes finger {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
}

#carousel {
	height: 500px;
	background-color: #e9f0f8;
}

#carousel-slider {
	visibility: hidden;
}

.zeus .tp-bullet:hover::after, .zeus .tp-bullet.selected::after {
	-webkit-transform: none !important;
	transform: none !important;
	background: #c41230 !important;
}

.tp-title {
	font-family: 'bliss-light';
	font-size: 45px;
	text-transform: uppercase;
	color: #ffffff;
	background-color: #005d81;
	padding: 30px;
}

@media only screen and (max-width : 480px) {
	.tp-title {
		font-size: 30px !important;
	}
}
