#header-container {
	background: linear-gradient(180deg, #BA654D, #3A231B);
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
}

#desktop-content {
	display: none;
	margin-top: 0.4rem;
}

#title-page-image {
	width: 100%; max-width: 500px;
}

.banner-image {
	width: 90%;
}

.txt-white {
	color: white;
}


#subtitle {
	color: white;
	margin-bottom: .4rem;
	text-align: center;
	font-size: 2rem;
	font-family: var(--font-4);
}

#quote-text {
	max-width: 800px; 
	font-style: italic; 
	font-size: 24px; 
	opacity: 0.7; 
	font-family: Nunito
}

@media only screen and (max-width: 576px) {
	#main-header-image {
		right: calc(45% - 200px) !important;
	}
}

#second-header-image {
	width: 440px;
	position: absolute;
	top: 120px;
	right: calc(35% - 400px);
	transform: rotate(-15deg);
}

#main-header-image {
	width: 440px;
	position: absolute;
	top: 60px;
	left: calc(35% - 440px);
	transform: rotate(-7deg);
}

.mock-cnt {
	position: relative;
	max-width: 360px;
	width: 80vw;
	height: 470px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mock-img {
	border-radius: 5px;
	height: 470px;
	object-fit: contain;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ellipse-yellow {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(233, 201, 107, 0.4),
		rgba(58, 35, 27, 0)
	);
	border-radius: 50%;
	transform: rotate(15deg);
	filter: blur(7px);
}

.ellipse-red {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(177, 76, 50, 1),
		rgba(58, 35, 27, 0)
	);
	border-radius: 50%;
	filter: blur(7px);
}

.ellipse-yellow-red {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(233, 201, 107, 0.4) 30%,
		rgba(177, 76, 50, 0.8) 90%
	);
	border-radius: 50%;
	filter: blur(7px);
}

#main-title {
	color: white; 
	text-align: center; 
}

#review-container {
	background: linear-gradient(180deg, #3A231B, #8b4b39);
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: var(--p-pos);
	padding-bottom: var(--p-pos);
}

.review-card {
	border-radius: 20px;
	width: 370px;
	box-shadow: 0 4px 15px rgb(0, 0, 0, 0.3);
}

#testimonialCarousel {
	width: 370px;
	margin: auto;
	position: relative;
}

.testimonialWrapper {
	display: flex;
}

.testimonial {
	opacity: 0.5;
	margin-left: 15px;
	margin-right: 15px;
}

.active {
	opacity: 1;
	transition: opacity 0.5s ease;
}

.round-button {
	border: none;
	/* background-color: rgb(80, 104, 75, 0.6); */
	/* background-color: rgba(147, 118, 93, 0.6); */
    background-color: rgb(221 157 101 / 60%);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
	outline: none;
	margin-top: 20px;
	margin-right: 10px;
	margin-left: 10px;
	fill: #fff; /* Icon color */
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
}

.round-button svg {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.round-button:active {
	background-color: rgba(147, 118, 93, 1);
	/* background-color: rgb(80, 104, 75, 1); */
}

.round-button:disabled {
	background-color: #b2dfdb; /* Lighter shade for disabled state, you can change it as per your preference */
	cursor: not-allowed;
}

.match-sect-curved-top {
    padding-bottom: 50px;
}

.curved-top {
    position: relative;
    clip-path: ellipse(100% 50% at 50% 50%);
    transform: translateY(-50px);
    background-color: white;
    z-index: 1;
    padding-bottom: 30px !important;
}

@media (max-width: 768px) { 
    .curved-top {   
        clip-path: ellipse(120% 50% at 50% 50%);
    }
}


.h2-question {
	margin-bottom: 2rem;
	font-family: var(--font-1);
}

.value-list-icon {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 30px;
	background: linear-gradient(135deg, rgba(233, 201, 107, 0.8) 0%, rgba(177, 76, 50, 1) 100%);
}

.value-list-icon svg {
    width: 56px;
    height: 56px;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 equal-width columns */
	grid-template-rows: repeat(2, 1fr);    /* 2 equal-height rows */
	gap: 10px; /* optional spacing between items */
}
  
.grid-item {
	padding: 20px;
}

.subtext {
	color: grey;
}

.italic {
	font-style: italic;
}