@font-face {
	font-family: 'MerriweatherSans';
	src: url('../fonts/MerriweatherSans-VariableFont_wght.ttf') format('truetype');
  }

body {
	font-family: "MerriweatherSans";
}

.underlineEffects a {
	display: inline-block;
	position: relative;
}

.underlineEffects a:after {
	background: none repeat scroll 0 0 transparent;
	bottom: 0;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	background: #991b1b;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}

.underlineEffects a:hover:after {
	width: 100%;
	left: 0;
}

.neon-text {
	animation: glow 10s infinite;
}

@keyframes glow {
	0% {
		color: #991b1b;
	}

	20% {
		color: #b91c1c;
	}

	40% {
		color: #dc2626;
	}

	50% {
		color: #ef4444;
	}

	60% {
		color: #dc2626;
	}

	80% {
		color: #b91c1c;
	}

	100% {
		color: #991b1b;
	}
}

.image_box {
	position: relative;
}

.image_box img {
	width: 100%;
	height: auto;
}

.image_box:after {
	content: "";
	width: 66%;
	height: 2px;
	background: #b91c1c;
	/* bg-red-700 */
	position: absolute;
	top: -15px;
	right: -15px;
}

.image_box:before {
	content: "";
	width: 2px;
	height: 40%;
	background: #b91c1c;
	position: absolute;
	top: -15px;
	right: -15px;
}

.hvr-shutter-in-horizontal {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	/* background: #b91c1c; */
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	border-radius: 0.25rem;
}

.hvr-shutter-in-horizontal:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* background: #ef4444; */
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	border-radius: 0.25rem;
}

.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}

.limarker li::marker {
	color: #b91c1c;
}

.cookie-container {
	font-family: Arial, Helvetica, sans-serif;
	bottom: -100%;
	box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
	transition: 400ms;
}

.cookie-container.active {
	bottom: 0;
}

.cookie-btn {
	cursor: pointer;
}