.description-contact{
	display: flex;
	flex-direction: column;
	gap: 2rem;
	
	margin: 1rem 1rem 0 1rem;
	border-radius: 2rem;
	background: var(--white);
	box-shadow: 0px 1px 8px rgb(68, 39, 121);
	padding: 1rem 1.5rem 1rem 1.5rem;

	opacity: 0;
	transform: translate(0, -1rem);

	animation: showElementAnimation .3s ease-in-out 1s forwards;
}

.description-contact span{
	font-size: 1.5rem;
	color: var(--black);

	opacity: 0;
	transform: translate(0, -1rem);
	animation: showElementAnimation .5s ease-in-out 1.8s forwards;
}

/* .description-contact-text{
	margin-top: 2rem;
} */

.contact{
	display: flex;
	align-items: center;
	gap: 2rem;

	opacity: 0;
	transform: translate(0, -1rem);
	animation: showElementAnimation .5s ease-in-out 2s forwards;
}
.contact span{
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--purple-02);
	text-shadow: 0px 4px 10px rgba(59, 35, 105, 0.25);

	margin-bottom: 0.5rem;
}

.contact p{
	font-size: 1rem;
	color: var(--green-02);
}

.contact img{
	width: 6rem;
	border-radius: 4rem;
}

.contact .contact-box{
	display: flex;
	flex-direction: column;
}

@media(max-width: 767px){
	.contact{
  		flex-direction: column;
		text-align: center;
	}
}

@media(max-width: 480px){
	.contact{
		flex-direction: column;
	  	text-align: center;
  	}

	.contact span{
		font-size: 1rem;
	}

	.description-contact span{
		font-size: 1rem;
	}

}
