.btn {
	background-color: var(--color-white);
	color: var(--color-blue);
	border-radius: 15px;
	transform: scale(1);
	transition: all 0.1s ease-in-out;
	cursor: pointer;
}

.btn:active {
	transform: scale(1.1);
}

.btn-book {
	margin-top: 5rem;
	padding: 1rem 4.4rem;
	font-size: 2.6rem;
}

.btn-contact-us {
	margin: 1.5rem 0;
	padding: 1rem 3rem;
	font-size: 1.8rem;
	font-weight: bold;
}

.btn-car-info {
	border-radius: 10px;
	font-size: 1.6rem;
	font-weight: 300;
	width: 60%;
	margin: 0.25rem 0;
	padding: 0.5rem 1rem;
	background-color: var(--color-blue);
	color: var(--color-white);
}

.btn-submit {
	display: block;
	margin: 2rem auto;
	padding: 1rem 3rem;
	font-size: 1.8rem;
	font-weight: bold;
}

.btn-hamburger {
	padding: 1rem;
	border-radius: 25%;
	position: fixed;
	bottom: 5%;
	right: 10%;
	background-color: var(--color-blue);
	border: none;
	box-shadow: 0px 0px 10px var(--color-black);
	z-index: 999;
}

.btn-hamburger__box {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.btn-hamburger__bar {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: var(--color-white);
}

.btn-close {
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 3rem;
	background: none;
	border: 2px solid var(--color-white);
	color: var(--color-white);
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.1s ease-in-out;
	z-index: 9999;
}

.btn-close:active {
	transform: scale(1.1);
}
