@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
a {
	outline: 0;
	text-decoration: none;
	cursor: pointer;
	pointer-events: pointer;
}
a:hover {
	cursor: pointer;
	pointer-events: pointer;
}
body {
	font-family: "Bricolage Grotesque", sans-serif;
	background: rgb(255, 255, 255, 1);
	overflow-x: hidden;
	color: rgba(0,0,0,1);
}
.lp-body {
	background: rgb(231, 228, 227) !important;
}
.accordion-bg {
	--bs-accordion-bg: rgb(231, 228, 227);
}
.text-justify {
	text-align: justify;
}
.firstSection {
	background: rgb(231, 228, 227);
}
.secondSection .darkbrown-style {
	color: rgb(89, 66, 55);
}
.brown-style {
	color: rgb(162, 121, 86);
}
.black-style {
	background: rgb(39, 31, 37);
}
.gray-style {
	color: rgb(137, 129, 137);
}
.white-style {
	color: rgb(238, 238, 238);
}
.box-style {
	background: rgb(137, 129, 137);
	padding: 20px 30px;
}
.customButton {
	background-color: rgb(162, 121, 86);
	border: none;
	border-radius: 100px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.customButton::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
	transition: left 0.6s ease;
}
.customButton:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	background-color: rgb(162, 121, 86);
}
.customButton:hover::before {
	left: 100%;
}
.customButton:active {
	transform: translateY(0px) scale(0.97);
}
.customButton:first-child:active {
	background-color: rgb(162, 121, 86);
}
.thirdSection {
	background: rgb(231, 228, 227);
}
.form-control {
	background-color: #898189;
	color: #ffffff;
}
.form-control:focus {
	background-color: #898189;
	color: #ffffff;
}
.form-select {
	background-color: #898189;
	color: #ffffff;
}
.form-select option {
	background-color: #ffffff;
	color: #898189;
}
.form-select option:not([selected]) {
	color: rgb(89, 66, 55);
}
.select-wrapper {
	position: relative;
	display: inline-block;
}
.select-wrapper::after {
	content: "▼";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	pointer-events: none;
	font-size: 12px;
}
.select-wrapper select {
	width: 100%;
	padding-right: 30px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #898189;
	border: 1px solid #e7e4e2 !important;
	padding: 13px;
}
select::-ms-expand {
	display: none;
}
.form-check-input:checked {
	background-color: #898189;
	border-color: #898189;
}
.form-control[type="date"] {
	color-scheme: dark;
}
input:focus,
select:focus {
	box-shadow: none !important;
}
input:not([type="checkbox"]):focus,
select:focus {
	border: 1px solid #ffffff !important;	
}
input:not([type="checkbox"]),
select{
	border-radius: 20px !important;
	border: 1px solid #e7e4e2 !important;
	color: #ffffff !important;
	padding: 13px;
}
input::placeholder {
	color: #ffffff !important;
	opacity: 1;
}
.accordion-button::after {
    display: none;
}
.accordion-button {
    border: none !important;
	justify-content: center;
	text-align: center !important;
}
.accordion {
    --bs-accordion-border-color: transparent;
}
.accordion-button:not(.collapsed) {
	color: rgb(0, 0, 0) !important;
	font-weight: bold !important;
}
@media (min-width: 768px) {
.w-md-auto {
	width: auto !important;
}
}