/* FONTS */

* {
	font-family: "Montserrat", sans-serif;
}

/* COLORS */

.text-primary {
	color: #8b1216;
}

.bg-primary {
	background-color: #8b1216;
}

.text-secondary {
	color: #3a3a3a;
}

.bg-secondary {
	background-color: #3a3a3a;
}

/* BUTTONS */

.ff-default .ff_btn_style {
	background-color: #8b1216 !important;
	color: #ffffff !important;
	padding: 5px 30px !important;
	border-radius: 25px !important;
	transition: 0.3s ease-in-out !important;
	border: 1px solid #8b1216 !important;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.ff-default .ff_btn_style:hover {
	background-color: #ffffff;
	color: #8b1216;
	transition: 0.3s ease-in-out;
}

.btn-primary {
	background-color: #8b1216;
	color: #ffffff;
	padding: 5px 30px;
	border-radius: 25px;
	transition: 0.3s ease-in-out;
	border: 1px solid #8b1216;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-primary:hover {
	background-color: #ffffff;
	color: #8b1216;
	transition: 0.3s ease-in-out;
}

.btn-secondary {
	background-color: #3a3a3a;
	color: #ffffff;
	padding: 5px 30px;
	border-radius: 25px;
	transition: 0.3s ease-in-out;
	border: 1px solid #3a3a3a;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-secondary:hover {
	background-color: #ffffff;
	color: #3a3a3a;
	transition: 0.3s ease-in-out;
}

.btn-white {
	background-color: #ffffff;
	color: #8b1216;
	padding: 7px 35px;
	border-radius: 25px;
	transition: 0.3s ease-in-out;
	border: 1px solid #ffffff;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-white:hover {
	background-color: #8b1216;
	color: #ffffff;
	transition: 0.3s ease-in-out;
}

/* LINKS */

.link-header {
	color: #ffffff;
	text-decoration: none;
	background-image: linear-gradient(#ffffff, #ffffff);
	background-size: 0% 0.1em;
	background-position-y: 100%;
	background-position-x: 100%;
	background-repeat: no-repeat;
	transition: background-size 0.2s ease-in-out;
}

.link-header:hover,
.link-header:focus,
.link-header:active {
	background-size: 100% 0.1em;
	background-position-x: 0%;
}

.link-header-dark {
	color: #3a3a3a;
	text-decoration: none;
	background-image: linear-gradient(#3a3a3a, #3a3a3a);
	background-size: 0% 0.1em;
	background-position-y: 100%;
	background-position-x: 100%;
	background-repeat: no-repeat;
	transition: background-size 0.2s ease-in-out;
}

.link-header-dark:hover,
.link-header-dark:focus,
.link-header-dark:active {
	background-size: 100% 0.1em;
	background-position-x: 0%;
}

/* PLUGINS */

.choices__item--choice::after {
	display: none !important;
}