*{
  scroll-behavior: smooth;
  transition: all;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

/* Menu mobile */
.oculto {
	display:none;
	height: 0;
}

.open {
	height: initial;
	animation-duration: 1s;
	animation-name: menuin;
	animation-timing-function: ease;
}

.dropdown:hover .dropdown-menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
  
  @keyframes menuin {
	from {
		transform: translate(100%, 0);
	}
	to {
		transform: translate(0, 0);
	}
  }
  .wrapper-post p a {
    color: rgb(24, 218, 174);
    font-weight: bold;
}
.wrapper-post p a:hover {
    text-decoration: underline;
}

.mobile-menu .social-icons img {
    width: 50px;
	height: 50px;
}

.logo-wrapper img, footer .logo-wrapper img {
    width: 100px;
}
@media screen and (min-width: 992px) {
	.logo-wrapper img, footer .logo-wrapper img {
		width: 150px;
	}
}