.home-btn {
	padding: 7px 37px;
	background-color: transparent;
	border: 2px solid;
	border-color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 36px;
	font-size: 16px;
	transition: background-color 0.3s ease, color 0.3s ease;
	border-radius: 20px;
	transition: background-color 0.3s ease;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.home-btn:hover {
	background-color: #FF6331;
	color: #fff;
}

.open-popup-btn {
	padding: 7px 37px;
	background-color: transparent;
	border: 2px solid;
	border-color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 36px;
	font-size: 16px;
	transition: background-color 0.3s ease, color 0.3s ease;
	border-radius: 20px;
	transition: background-color 0.3s ease;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.open-popup-btn:hover {
	background-color: #FF6331;
	color: #fff;
}

.about-btn,
a.btn {
	margin-top: 10px;
	display: inline-block;

	min-height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;

	padding-left: 50px;
	padding-right: 50px;
	background-color: #FF6331;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	border-radius: 20px;
	transition: opacity 0.2s ease;
}

.about-btn:hover,
a.btn:hover {
	background-color: #3131CE;
	color: #fff;
}

.btn,
a.btn {
	display: inline-block;

	min-height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;

	padding-left: 50px;
	padding-right: 50px;
	background-color: #FF6331;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	border-radius: 20px;
	transition: opacity 0.2s ease;
}

.btn:hover,
a.btn:hover {
	opacity: 0.8;
	color: #fff;
}

@media (max-width: 991px) {

	.btn,
	.about-btn,
	.home-btn,
	a.btn {
		min-height: 41px;
		padding-left: 30px;
		padding-right: 30px;
	}

	.btn-big,
	a.btn-big {
		min-height: 55px;
	}
}