.boxedcontainer {
	max-width: 1170px;
	margin: auto;
	padding: 0px 30px;
}

/*********************************************
	-	SETTINGS FOR BANNER CONTAINERS	-
**********************************************/

.tp-banner-container {
	width: 100%;
	position: relative;
	padding: 0;

}

.tp-banner {
	width: 100%;
	position: relative;
}

.tp-banner-fullscreen-container {
	width: 100%;
	position: relative;
	padding: 0;
}

.color-1 {
	color: #fafafa;
	font-weight: 600;
}

/* contact form added */
.form-main {
	background: linear-gradient(to bottom, #000 24, #000 24), no-repeat center;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.form-main .main-wrapper {
	border-radius: 10px;
	padding: 45px;
	width: 40%;
	box-shadow: 0 0 5px 5px #000 20;
	backdrop-filter: blur(5px);
	background-color: #fff 85;
}

@media screen and (max-width: 991px) {
	.form-main .main-wrapper {
		width: 70%;
	}
}

@media screen and (max-width: 767px) {
	.form-main .main-wrapper {
		width: 90%;
	}

	.welcome-two {
		padding-bottom: 0px;
	}

	.welcome {
		padding: 30px 0px;
	}

	.main-footer .detail {
		margin: 18px 0 0 0;
	}

	.padding-page-top {
		padding-top: 40px !important;
	}

	.detail {
		margin-bottom: 30px;
	}

	.main-footer .useful-links {
		margin-top: 30px;
	}

	.services-five {
		padding: 90px 0 0px 0px;
	}


}

.form-main .main-wrapper .form-head {
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	text-align: center;
	margin: 0px 0 25px;
}

.form-main .main-wrapper .form-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
}

.form-main .main-wrapper .form-wrapper .form-card {
	position: relative;
	width: 100%;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input {
	padding: 20px 25px 15px;
	width: 100%;
	border: 1px solid black;
	border-radius: 5px;
	background: transparent;
	outline: none;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	box-sizing: border-box;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input:valid,
.form-main .main-wrapper .form-wrapper .form-card .form-input:focus {
	border: 1px solid gray;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input:valid~.form-label,
.form-main .main-wrapper .form-wrapper .form-card .form-input:focus~.form-label {
	color: -gray;
	top: 30%;
	transform: translateY(-70%);
	font-size: 13px;
	line-height: 23px;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill,
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill:hover,
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill:focus,
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill:active {
	transition: background-color 9999s ease-in-out 0s;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input::-webkit-outer-spin-button,
.form-main .main-wrapper .form-wrapper .form-card .form-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.form-main .main-wrapper .form-wrapper .form-card .form-label {
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	transition: 0.3s;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea {
	padding: 20px 25px 15px;
	width: 100%;
	border: 1px solid black;
	border-radius: 5px;
	background: transparent;
	outline: none;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	resize: none;
	box-sizing: border-box;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea:valid,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:focus {
	border: 1px solid gray;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea:valid~.form-textarea-label,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:focus~.form-textarea-label {
	color: gray;
	top: 18%;
	transform: translateY(-82%);
	font-size: 13px;
	line-height: 23px;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea:-webkit-autofill,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:-webkit-autofill:hover,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:-webkit-autofill:focus,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:-webkit-autofill:active {
	transition: background-color 9999s ease-in-out 0s;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea-label {
	position: absolute;
	left: 25px;
	top: 30%;
	transform: translateY(-70%);
	pointer-events: none;
	transition: 0.3s;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

.btn-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 0 0;
}

.btn-wrap button {
	padding: 0 32px;
	font-size: 18px;
	line-height: 48px;
	border: 1px solid transparent;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.5s ease;
	cursor: pointer;
	box-shadow: 0 0 5px 5px #000 20;
}

.btn-wrap button:hover {
	border: 1px solid #000;
	background: transparent;
}

.read-more-1 {

	background-color: #02adc6;
	color: #fff;
	text-transform: uppercase;
	display: inline-block;
	margin: 15px 0 0 0;
	padding: 14px 40px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 15px;
	border: solid transparent;

}

.read-more-1:hover {

	background-color: transparent;
	color: black;
	border: 2px solid rgb(170, 170, 170);


}

@media (max-width:500px) {
	.dark-testi {
		background-size: 400%;
	}

	.fun-facts {
		background: #333;
	}

	.tp-caption img {
		display: none;
	}

}

.about-para {
	padding-top: 20px;

}

#text {
	display: none;
}

.button-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.margin-button {
	margin-top: 20px;
}

.margin-button a:hover {
	color: white !important;
}

/* treatments */
/* Make the col-md-4 sticky */
.procedures-links {
	position: sticky;
	top: 0;
	height: 100vh;
	/* Set a height for proper scrolling */
	overflow-y: auto;
	/* Enable vertical scrolling */
}

/* Highlight the selected link */
.link.active {
	font-weight: bold;
	color: #007bff;
	/* Set the desired color */
}

.Gynaecology,
.Laparoscopic,
.Orthopaedic,
.Poison,
.Emergency,
.Dialysis {
	display: none;
}

.procedures .procedure-text .detail img.right {
	border-radius: 7px;
	box-shadow: 0px 4px 10px black;

}

.staff {
	padding-bottom: 80px;
}

/* table */

.intro {
	height: 100%;
}

table td,
table th {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

thead th {
	color: #fff;
}

.card {
	border-radius: .5rem;
}

.table-scroll {
	border-radius: .5rem;
}

.table-scroll table thead th {
	font-size: 1.25rem;
}

table {
	margin-bottom: 0px !important;
	border: 1px solid #888888b2;
}

thead {
	top: 0;
	position: sticky;
}

/* scroll bar */
/* For Webkit browsers (e.g., Chrome, Safari) */
::-webkit-scrollbar {
	width: 10px;
	/* You can adjust the width to your preference */
}

::-webkit-scrollbar-track {
	background-color: #f1f1f1;
	/* Change the background color of the track */
}

::-webkit-scrollbar-thumb {
	background-color: #888;
	/* Change the color of the thumb */
	border-radius: 2px;
	/* Optional: add rounded corners to the thumb */
}

/* For Firefox */
/* Note: Firefox uses a different syntax for scrollbar styling */
/* You can use a shorthand property for Firefox */
/* Example: scrollbar-width: thin; scrollbar-color: #888 #f1f1f1; */
/* Or use the individual properties as shown below */

/* Set the width of the scrollbar */
* {
	scrollbar-width: thin;
	/* "thin", "auto", or "none" */
}

/* Set the color of the thumb and the track */
* {
	scrollbar-color: #888 #f1f1f1;
	/* thumb color, track color */
}

.box-shadow {
	box-shadow: 1px 2px 10px black;
}

body {
	overflow-x: hidden;

}

html {
	overflow-x: hidden;

}

.menu-2 .nav a.active {
	color: #02adc6;
	font-weight: 700;
	margin-right: 10px;
	border-radius: 5px;
	padding: 10px 24px;
}

.menu-2 .nav a {
	font-weight: 600;
}

/* specialist page */
.padding-page {
	padding-bottom: 80px;
}

.padding-page-top {
	padding-top: 80px;
}

.contact-get .main-title {
	margin-bottom: 37px !important;
}

.dark-back .main-title {
	margin-bottom: 37px !important;

}