@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	padding-top: 2rem;
	/* Adjust as needed */
	padding-bottom: 2rem;
	/* Adjust as needed */
	font-family: 'Poppins', sans-serif;
	background-color: #0F0F0F;
}

/* Other existing styles remain unchanged */

/* Media Queries for Mobile Devices */

@media screen and (max-width: 768px) {
	.container {
		padding: 1rem;
		/* Adjust padding for smaller screens */
	}

	.background-video {
		margin-bottom: 2rem;
		/* Adjust margin for smaller screens */
	}

	.tickets {
		margin-top: 10vh;
		/* Adjust margin-top for smaller screens */
		padding: 2rem;
		/* Adjust padding for smaller screens */
	}

	.submit-field {
		margin-top: 30rem;
		/* Adjust margin-top for smaller screens */
	}

	.book-field {
		width: 80%;
		/* Adjust width for smaller screens */
		height: 80px;
		/* Adjust height for smaller screens */
		font-size: 10px;
		/* Adjust font-size for smaller screens */
	}
	.textAreaAddress {
        width: 300px; 
        height: 50px; 
    }

	/* Add more responsive styles as needed */
}

@media screen and (max-width: 600px) {
	.submit-field {
		margin-top: 25rem;
		/* Adjust margin-top for even smaller screens */
	}

	.background-video {
		margin-bottom: 4rem;
		/* Adjust margin for even smaller screens */
	}
	
	.textAreaAddress {
        width: 300px; 
        height: 50px; 
    }

	/* Add more responsive styles as needed */
}


html {
	scroll-behavior: smooth;
	scroll-padding: 5rem;
}

.container {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	/* Adjust the height as needed */
	box-shadow: 2px 2px 4px 2px #0F0F0F;
	margin-bottom: 2rem;
	padding: 1rem;
}

.background-video {
	position: absolute;
	/* top: 0; */
	/*margin-bottom: 7.5rem; */
	width: 1400px;
	height: 1500px;
	object-fit: contain;
	z-index: -1;
}

.tickets {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-radius: 16px;
	margin-top: 35vh;
	padding: 1rem 0rem;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background-color: white;

	/* Border with linear gradient and animation */
	border: 8px solid;
	animation: colorChange 5s infinite linear;
}

@keyframes colorChange {
	0% {
		border-color: #f2981a;
	}

	50% {
		border-color: #612f1c;
	}

	100% {
		border-color: #f7b742;
	}
}

.tickets .form-field {
	padding: 0 4rem;
}


.submit-field {
	position: absolute;
	margin-top: 52rem;
	text-align: center;
}


.book-field {
	position: absolute;
	margin-top: -5%;
	background-color: #dfd2d2;
	color: black;
	border: none;
	border-radius: 14px;
	padding: 12px;
	font-size: 12px;
	cursor: pointer;
	width: 500px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-carousel {
	animation: carousel 3s infinite;
	font-size: 24px;
	font-weight: bold;
}


@keyframes carousel {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	20% {
		transform: translateY(-50%);
		opacity: 0;
	}

	25%,
	75% {
		transform: translateY(50%);
		opacity: 0;
	}

	80%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.tickets h2 {
	font-size: 36px;
	margin-bottom: 20px;

}

.radio-buttons {
	display: flex;
	justify-content: center;
	/*align-items: center;*/
	/*margin-bottom: 20px;*/
	cursor: pointer;
}

.radio-buttons label {
	display: flex;
	/*align-items: center;*/
	margin-right: 20px;
	cursor: pointer;
	gap: 5px;
}

.radio-buttons input[type="radio"] {
	margin-right: 5px;
	cursor: pointer;

}

select,
input[type="date"],
input[type="time"] {
	width: 100%;
	padding: 5px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
}


input[type="text"] {
	width: 100%;
	padding: 5px;

	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;

}

button[type="submit"] {
	background-color: #FFC02D;
	color: white;
	border: none;
	border-radius: 14px;
	padding: 15px 28px;
	font-size: 16px;
	cursor: pointer;

}

button[type="submit"]:hover {
	background-color: #a87f1e;
}


.data {
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-field {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 30px;


}

.form-field label {
	font-weight: 600;
	/* Optional: Make the labels bold */
}

.form-fields {
	display: flex;
	justify-content: space-evenly;
	align-items: flex-start;
	/* gap: 4vw; */
}


.suggestions {
	position: absolute;
	margin-top: -10px;
	background-color: white;
	border: 1px solid #ccc;
	/*overflow-y: none;*/
	display: none;
	z-index: 1;
	max-height: 150px;
	/* Adjust the height as needed */
	overflow-y: auto;
}

.suggestions div {
	padding: 10px;
	cursor: pointer;
}

.suggestions div:hover {
	background-color: #f0f0f0;
}


/*area*/
.suggestions_area {
	position: absolute;
	margin-top: 0px;
	background-color: white;
	border: 1px solid #ccc;
	/*overflow-y: none;*/
	display: none;
	z-index: 1;
	max-height: 150px;
	/* Adjust the height as needed */
	overflow-y: auto;
}

.suggestions_area div {
	padding: 10px;
	cursor: pointer;
}

.suggestions_area div:hover {
	background-color: #f0f0f0;
}

.about {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.left-about {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 2vw 6vw;
	color: #A15942;
	justify-content: center;
	/* margin-top: 4vw; */
}

.left-about h2 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 1rem;
}

.left-about h3 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 1rem;
}

.left-about p {
	width: auto;
	font-size: 1.11rem;
	font-weight: 600;
	color: #666;
	line-height: 1.6rem;
	text-align: justify;
	margin-bottom: 1rem;

}

.registered {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}


.registered h5 {
	font-weight: 600;
	font-size: 1.5rem;
	color: #312f2f;
}

.registered .reg {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 4rem;
	margin-bottom: 1rem;
}

.regh2 {
	margin-top: 3rem;
}

.marquee__group {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0rem;
	min-width: 100%;
	animation: scroll 20s linear infinite reverse;
}

.marquee__group span {
	color: #FEF0CC;
	font-size: 1.2rem;
	font-weight: 600;
	white-space: nowrap;

}

.radio-buttons:hover {

	cursor: pointer;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - 2rem));
	}
}

@media(max-width: 2200px) {

	.submit-field {
		position: absolute;
		margin-top: 32rem;
	}

	/*.background-video{*/
	/*    margin-top:50rem;*/
	/*}*/
}

@media(max-width: 1500px) {

	.submit-field {
		position: absolute;
		margin-top: 32rem;
	}
}

@media(max-width: 990px) {

	.submit-field {
		position: absolute;
		margin-top: 27rem;
	}

	.background-video {
		width: 90%;
		object-fit: contain;
		height: auto;
		margin-bottom: 40rem;
	}

	.tickets {
		margin-top: 5rem;
	}

}

@media(max-width: 920px) {

	.form-fields {
		display: block;

	}

	.submit-field {
		position: absolute;
		margin-top: 63rem;
	}

	.book-field {
		position: absolute;
		top: 30%;
		/* Adjust as needed */
		left: 50%;
		/* Center it horizontally */
		transform: translateX(-50%);
		/* Center it horizontally */
		width: 200px;
		/* Set a fixed width (adjust as needed) */
		height: 80px;
		/* Set a fixed height (adjust as needed) */
		padding: 8px 16px;
		/* Adjust padding as needed */
		z-index: 1;
		/* Ensure it overlaps .tickets */
		overflow: hidden;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;

		/* Hide any overflowing content */
	}


	.about {

		display: block;
	}

	.background-video {
		width: 80%;
		object-fit: contain;
		height: auto;
		margin-bottom: 50rem;
	}

	.tickets {
		margin-top: 20rem;
	}
}


@media (max-width: 720px) {

	.form-fields {
		display: block;

	}

	.submit-field {
		position: absolute;
		margin-top: 53rem;
	}


	.book-field {
		position: absolute;
		top: 30%;
		left: 50%;
		transform: translateX(-50%);
		width: 200px;
		height: 80px;
		padding: 12px;
		z-index: 1;
		overflow: hidden;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;

	}


	.about {

		display: block;
	}

	.background-video {
		width: 70%;
		object-fit: contain;
		height: auto;
		margin-bottom: 60rem;
	}

	.tickets {
		margin-top: 10rem;
	}
	
	.textAreaAddress {
        width: 300px; 
        height: 50px; 
    }
}

@media(max-width: 600px) {

	.form-fields {
		display: block;
	}

	.submit-field {
		position: absolute;
		margin-top: 50rem;
	}

	.radio-buttons {
		/*width:100px;*/
		margin-top: 2rem;
	}


	.book-field {
		position: absolute;
		top: 34%;
		left: 50%;
		transform: translateX(-50%);
		width: 200px;
		height: 80px;
		padding: 12px;
		z-index: 1;
		overflow: hidden;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.background-video {
		width: 80%;
		object-fit: contain;
		height: auto;
		margin-bottom: 60rem;

	}

	.tickets {
		margin-top: 5rem;
	}
}


@media(max-width: 400px) {

	.form-fields {
		display: block;
	}

	.submit-field {
		position: absolute;
		margin-top: 60rem;
	}

	.tickets {
		padding: 6rem 0;
	}

	.book-field {
		position: absolute;
		top: 33%;
		left: 50%;
		transform: translateX(-50%);
		width: 200px;
		height: 80px;
		padding: 10px;
		z-index: 1;
		overflow: hidden;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.background-video {
		width: 90%;
		object-fit: contain;
		height: auto;
		margin-bottom: 65rem;
	}

	.tickets {
		margin-top: 10rem;
	}
	
	.textAreaAddress {
        width: 300px; 
        height: 50px; 
    }
}

@media(max-width: 375px) {
	.background-video {
		width: 90%;
		object-fit: contain;
		height: auto;
		margin-bottom: 65rem;
		margin-top: 4rem;
	}
	.textAreaAddress {
        width: 300px; 
        height: 50px; 
    }
}

@media(max-width: 360px) {
	.background-video {
		width: 90%;
		object-fit: contain;
		height: auto;
		margin-bottom: 65rem;
		margin-top: 4rem;
	}
	.textAreaAddress {
        width: 300px; 
        height: 50px; 
    }
}

.result-containneer {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	/* Adjust as needed to create space between header and container */
	flex-direction: column;
	width: 50%;
	position: relative;
	margin: 40rem;
}

#result-container {
	display: block !important;
}

.provider-card {
	border: 2px solid #000;
	border-radius: 16px;
	border-top: 6px solid #000;
	flex-direction: column;
	margin-bottom: 2rem;
	padding: 2rem;
}

.book-now-button {
	background-color: #4CAF50;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.book-now-button:hover {
	background-color: #45a049;
}


/* Add or update modal styles */
/* Add more styles as needed */

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	/*border: 1px solid #888;*/
	border-top: 4px solid #888;
	width: 80%;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Input field styles */
form label {
	display: block;
	margin-bottom: 8px;
}

form input,
form textarea,
form select {
	width: 100%;
	padding: 10px;
	margin-bottom: 16px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
}


input[type="tel"],
input[type="email"],
#userAddress,
#specialRequirements {
	width: 100%;
	padding: 10px;
	margin-bottom: 16px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
}

/* Button style */
form button {
	background-color: #4caf50;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

form button:hover {
	background-color: #45a049;
}

/* Confirmation message style */
#confirmationMessage {
	display: none;
	margin-top: 16px;
	padding: 10px;
	background-color: #4caf50;
	color: white;
	border-radius: 4px;
}


.acc {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container1 {
	/* margin: 0 auto; */
	/* padding: 4rem 20rem; */

	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-basis: auto;
	text-align: center;
}


.container1 h2 {
	font-size: 3rem;
}


.registered {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.registered h5 {
	font-weight: 600;
	font-size: 1.5rem;
	color: #312f2f;
}

.registered .reg {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 4rem;
}

.regh2 {
	margin-top: 3rem;
}

.accordion {
	text-align: center;
	width: 100%;
	padding: 0 16rem;
	margin-bottom: 3rem;

}

.accordion .accordion-item {
	border-bottom: 1px solid #e5e5e5;
	/* margin-bottom: 3rem; */

}

.accordion .accordion-item button[aria-expanded='true'] {
	border-bottom: 1px solid #5f543a;

}

.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em 0;
	color: #7288a2;
	font-size: 1.15rem;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
}

.accordion button:hover,
.accordion button:focus {
	cursor: pointer;
	color: #A15942;
}

.accordion button:hover::after,
.accordion button:focus::after {
	cursor: pointer;
	color: #A15942;
	border: 1px solid #A15942;
}

.accordion button .accordion-title {
	padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 18px;
	right: 0;
	width: 22px;
	height: 22px;
	border: 1px solid;
	border-radius: 22px;
}

.accordion button .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: 9px;
	left: 5px;
	width: 10px;
	height: 2px;
	background: currentColor;
}

.accordion button .icon::after {
	display: block;
	position: absolute;
	content: '';
	top: 5px;
	left: 9px;
	width: 2px;
	height: 10px;
	background: currentColor;
}

.accordion button[aria-expanded='true'] {
	color: #A15942;
}

.accordion button[aria-expanded='true'] .icon::after {
	width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
	opacity: 1;
	max-height: 9em;
	transition: all 200ms linear;
	will-change: opacity, max-height;
}

.accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}

.accordion .accordion-content p {
	font-size: 1rem;
	font-weight: 300;
	margin: 2em 0;
}

h4 {
	text-align: center;
	margin-bottom: 10px;
}

/* Add this CSS to your stylesheet or in a <style> tag in your HTML file */
#bookingModal {
    font-family: Arial, sans-serif;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background overlay */
    display: none; /* Hide the modal by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.custom-modal {
    background-color: #f9e0e0;;
    border: 1px solid #ccc;
    padding: 15px;
    /*margin: 10px;*/
    margin: auto;
    border-radius: 5px;
    width: 80%; /* Adjust the width as needed */
    max-width: 600px; /* Set a maximum width */
    margin-top:10rem;
    
}

.custom-modal label {
    display: block;
    margin-bottom: 5px;
}

.custom-modal input,
.custom-modal textarea,
.custom-modal select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}

.custom-modal button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /*text-align:center;*/
}

.custom-modal button:hover {
    background-color: #45a049;
}


/*profile card*/
* {
  font-family: Nunito, sans-serif;
}

.responsive-cell-block {
  min-height: 75px;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: space-evenly;
}

.team-head-text {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
}

.team-head-text {
  line-height: 50px;
  width: 100%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

/*.container {*/
/*  max-width: 1380px;*/
/*  margin-top: 60px;*/
/*  margin-right: auto;*/
/*  margin-bottom: 60px;*/
/*  margin-left: auto;*/
/*  padding-top: 0px;*/
/*  padding-right: 30px;*/
/*  padding-bottom: 0px;*/
/*  padding-left: 30px;*/
/*}*/

.card {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-right: 25px;
  padding-bottom: 30px;
  padding-left: 25px;
}

.card-container {
  width: 280px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 25px;
  margin-left: 10px;
}

.name {
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  font-size: 18px;
  font-weight: 800;
}

.position {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.feature-text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  color: rgb(122, 122, 122);
  line-height: 30px;
}

.social-icons {
  width: 70px;
  display: flex;
  justify-content: space-between;
}

.team-image-wrapper {
  clip-path: circle(50% at 50% 50%);
  width: 130px;
  height: 130px;
}

.team-member-image {
  max-width: 100%;
}

@media (max-width: 500px) {
  .card-container {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
  }
}


.first-row {
  justify-content: center;
}

/* Add a class for the second row */
.second-row {
  justify-content: space-evenly;
}

.availability-button {
	background-color: #b0745e;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.availability-button:hover {
	background-color: #a15942;
}


