body {	
	min-height: 100vh;
}

.floating {
	animation: float 3s ease-in-out infinite;
}
main{
	background-color: #ffffff !important;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}


.logo-img {
	max-width: 70%;
	height: auto;
}

.full-height {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.footer {
	text-align: center;
	padding: 10px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

@media (max-width: 767px) {
	.footer {
		position: relative;
	}

	.logo-footer {
		flex: 0 0 100%;
		text-align: center;
	}

	.logo-img {
		margin-top: 100px;
	}

	.pt-mobile {
		padding-top: 0px !important;
	}
	.pb-mobile {
		padding-bottom: 0px !important;
	}
}

.logo-footer img {
	max-width: 100px;
	height: auto;
	margin: 10px 0;
}
