.cresce {
	-webkit-transition: all 0.3s;
}
.cresce:hover {
	cursor: pointer;
	-webkit-transform: scale(1.1);
}
.showmobile  { display: none !important; }
.showtablet  { display: none !important; }

/* Mobile: ≤ 767px */
@media screen and (max-width: 767px) {
	.hidemobile  { display: none    !important; }
	.showmobile  { display: inherit !important; }
}

/* Tablet: 768px – 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.hidetablet  { display: none    !important; }
	.showtablet  { display: inherit !important; }
}

/* ANIMAÇÃO PADRÃO */
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
.animacao-padrao {
    transform: translatey(0px);
	animation: float 3s ease-in-out infinite;
	transition:all 0.3s ease;
}

/* EFEITO SCROLL */
.efeito-scroll {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.efeito-scroll.visible {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.efeito-scroll:nth-child(2) {
}
.efeito-scroll:nth-child(3) {
}
.efeito-scroll:nth-child(4) {
}
.efeito-scroll:nth-child(5) {
    /* margin-top: 0px; */
}






/* Owl Carousel v2.3.4 */
.owl-theme .owl-controls .owl-page {
    display: inline-block;
}
.owl-theme .owl-controls .owl-page span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 12px;
}
.owl-dots .active span {
	background: var(--primary-color) !important;
}




/* PARALLAX */
/* PARALLAX ******************
******************************/
.parallax {
	background-color: var(--primary-color);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.fundo-imagem {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-position: center;
}

.sem-fundo {
	background-color: transparent !important;
	border: none;
	border-radius: 0;
}


b {
	display: inline-block !important;
}

.text-justify {
	text-align: justify !important;
}



.text-light-muted {
	color: var(--light) !important;
	opacity: .5 !important;
}