#flex-content .flex_module.socials #socialBlokken {
	display: flex; align-items: center; gap: 20px; margin-top: 40px;
}
#socialBlokken .social-blok {
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	border-radius: 10px; border: 1px solid rgba(0, 0, 0, 0.13);
	background-color: #ffffff; width: 100%; box-shadow: 2px 2px 14px rgba(44, 2, 2, 0.10);
	padding: 20px 40px; text-decoration: none;
	transition: all 0.3s ease-in-out;
}
#socialBlokken .social-blok .social-subtitle {
	color: #BB1932;
}
#socialBlokken .social-blok:hover {
	translate: 0 -5px; box-shadow: 2px 7px 14px rgba(44, 2, 2, 0.20);
}

@media screen and (max-width: 767px) {
	#flex-content .flex_module.socials {
		padding-block: 20px;
	}
	#flex-content .flex_module.socials #socialBlokken {
		flex-direction: column; gap: 10px; margin-top: 20px;
	}
	#socialBlokken .social-blok {
		padding: 10px 20px;
	}
	#socialBlokken .social-blok > svg {
		width: 30px; height: auto; max-height: 30px;
	}
}