@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Figtree", sans-serif;
}

.container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.foot-nav {
	position: absolute;
	position: fixed;
	z-index: 50;
	background-color: #fff1e6;
	border: #ffe0c4 0.0625rem solid;
	border-radius: 1.25rem 1.25rem 0rem 0rem;
	display: flex;
	align-items: center;
	justify-content: space-around;
	bottom: 0rem;
	width: 100%;
	height: 4.5rem;
}
@media (min-width: 48rem) {
	.foot-nav {
		display: none;
	}
}
.foot-nav hr {
	border: 0.0625rem solid #ffe0c4;
	width: 0.0625rem;
	height: 2.5rem;
}
.foot-nav .toggle {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
}
.foot-nav .toggle p {
	color: #4d2c19;
	font-size: 0.75rem;
	font-weight: 600;
}

.nav {
	background-color: #fffaf5;
	width: 100%;
	height: 4.375rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 50rem) {
	.nav {
		height: 5rem;
	}
}
.nav .logo {
	margin-left: 2.6875rem;
}
@media (max-width: 50rem) {
	.nav .logo {
		margin-left: 1rem;
	}
}

.sidebuttons {
	margin-right: 3.75rem;
	display: flex;
	gap: 0.75rem;
	flex-direction: row-reverse;
}
@media (max-width: 50rem) {
	.sidebuttons {
		margin-right: 1rem;
	}
}
.sidebuttons .btn {
	border-radius: 4.375rem;
	height: 2.375rem;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0.75rem 0.75rem;
	border: 0.0625rem solid;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	color: white;
	transition: all 0.2s ease;
}
.sidebuttons .btn-primary {
	width: 9.625rem;
	background-color: white;
	border-color: #462512;
	color: #1a1a1a;
}
.sidebuttons .btn-primary:hover {
	background-color: black;
	color: white;
}
.sidebuttons .btn-secondary {
	width: 12.5rem;
	background-color: #f8943f;
	border-color: #de6f0d;
	color: white;
}
@media (max-width: 50rem) {
	.sidebuttons .btn-secondary {
		display: none;
	}
}
.sidebuttons .btn-secondary:hover {
	background-color: #de6f0d;
}

@media (max-width: 50rem) {
	.secbtn {
		margin-right: 1rem;
	}
}
.secbtn .btn {
	border-radius: 4.375rem;
	height: 2.375rem;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0.75rem 0.75rem;
	border: 0.0625rem solid;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	color: white;
	transition: all 0.2s ease;
}
.secbtn .btn-secondary {
	width: 12.5rem;
	background-color: #f8943f;
	border-color: #de6f0d;
	color: white;
}
@media (max-width: 50rem) {
	.secbtn .btn-secondary {
		width: 14.0625rem;
	}
}
.secbtn .btn-secondary:hover {
	background-color: #de6f0d;
}

.span-ul {
	text-decoration: underline;
	cursor: pointer;
}
.span-ul:hover {
	color: #de6f0d;
}

.hero {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 28.125rem;
	background-color: #fffaf5;
	position: relative;
}
@media (max-width: 62.5rem) {
	.hero {
		flex-direction: column;
		align-items: center;
		height: auto;
		gap: 0rem;
		background-color: white;
	}
}
.hero .ticker-tape-container {
	position: absolute;
	top: 28.125rem;
	left: 0;
	z-index: 999;
	height: 3.75rem;
	width: 100%;
	background-color: #fff9f4;
	overflow-x: hidden;
	display: flex;
}
@media (max-width: 62.5rem) {
	.hero .ticker-tape-container {
		top: 24.625rem;
	}
}
.hero .ticker-tape-container .ticker-tape {
	--direction: normal;
	--duration: 60s;
	--delay: 0s;
	--iteration-count: infinite;
	display: flex;
	gap: 2.5rem;
	flex: 0 0 auto;
	margin-right: 1rem;
	min-width: 100%;
	align-items: center;
	animation: marquee var(--duration) linear var(--delay)
		var(--iteration-count);
	animation-direction: var(--direction);
}
.hero .ticker-tape-container .ticker-tape .ticker-item {
	display: flex;
	align-items: center;
	gap: 0rem;
}
.hero .ticker-tape-container .ticker-tape .ticker-item p {
	font-size: 0.875rem;
	font-weight: 700;
	margin-left: 0.125rem;
}
.hero .ticker-tape-container .ticker-tape .ticker-item .colored {
	margin-left: 0.75rem;
	color: #f58420;
}
@keyframes marquee {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-100%);
	}
}
.hero .hero-pic {
	position: relative;
	width: 67%;
	height: 100%;
	background-color: #fff9f4;
	overflow: hidden;
	display: flex;
}
@media (max-width: 62.5rem) {
	.hero .hero-pic {
		width: 100%;
		justify-content: center;
		flex-direction: column;
	}
}
.hero .hero-pic .partners {
	position: absolute;
	z-index: 5;
	right: 0rem;
	top: 0rem;
	width: 13.125rem;
	height: 2.8737rem;
	background-color: white;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(0.1556rem);
	-webkit-backdrop-filter: blur(0.1556rem);
	border-radius: 0rem 0rem 0rem 1.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero .hero-pic .partners .image-container {
	width: 4.0625rem;
	height: 1.625rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero .hero-pic .partners .image-container img {
	transform: scale(0.08);
	transform-origin: center;
}
.hero .hero-pic .partners .image-container .sm {
	transform: scale(0.04);
	transform-origin: center;
}
@media (min-width: 62.5rem) {
	.hero .hero-pic .partners {
		display: none;
	}
}
.hero .hero-pic .hero-pic-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/hero-bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0% 50%;
	background-size: 150%;
	filter: blur(0.1875rem);
	-webkit-filter: blur(0.1875rem);
	z-index: 1;
}
.hero .hero-pic .hero-pic-banner {
	position: relative;
	z-index: 2;
	background-color: white;
	opacity: 1;
	margin-top: 9.3125rem;
	width: 40.25rem;
	height: 9.5625rem;
	padding-top: 1.5rem;
	background-color: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(0.0938rem);
	-webkit-backdrop-filter: blur(0.0938rem);
}
.hero .hero-pic .hero-pic-banner .internal-text {
	margin-left: 3.75rem;
	margin-bottom: 1.25rem;
	z-index: 3;
}
@media (max-width: 62.5rem) {
	.hero .hero-pic .hero-pic-banner .internal-text {
		margin-left: 1rem;
	}
}
.hero .hero-pic .hero-pic-banner .internal-text h2 {
	font-size: 1rem;
	font-weight: 800;
	color: #303030;
}
.hero .hero-pic .hero-pic-banner .internal-text h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #4e4e4e;
	margin-top: 0.5rem;
	margin-bottom: 1.25rem;
}
@media (max-width: 62.5rem) {
	.hero .hero-pic .hero-pic-banner {
		margin-top: 4.125rem;
		width: 100%;
		height: 12.8125rem;
		margin-bottom: 7.6875rem;
	}
}
.hero .hero-pic .man-pic {
	position: absolute;
	left: 23rem;
	bottom: 2.6875rem;
	z-index: 2;
	transform: scaleX(-1);
	scale: 1.15;
}
@media (max-width: 70rem) {
	.hero .hero-pic .man-pic {
		left: 21.25rem;
		bottom: -0.3125rem;
		scale: 1;
	}
}
@media (max-width: 40.125rem) {
	.hero .hero-pic .man-pic {
		left: 18.75rem;
		bottom: -4.375rem;
		scale: 0.8;
	}
}
@media (max-width: 33.125rem) {
	.hero .hero-pic .man-pic {
		left: 6.25rem;
		bottom: -6.25rem;
		scale: 0.7;
	}
}

.hero-form-container {
	background-color: #fff9f4;
	border: #ffe0c4 0.0625rem solid;
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	width: 33%;
	height: 100%;
	padding-top: 3.0625rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
@media (max-width: 62.5rem) {
	.hero-form-container {
		margin-left: 1rem;
		margin-right: 1rem;
		margin-top: 5rem;
		border-radius: 1.25rem;
		width: auto;
		padding-bottom: 1rem;
	}
}
.hero-form-container p,
.hero-form-container h2 {
	text-align: left;
	width: 100%;
}
@media (max-width: 62.5rem) {
	.hero-form-container p,
	.hero-form-container h2 {
		text-align: center;
	}
}
.hero-form-container h2 {
	font-weight: 700;
	font-size: 1.25rem;
	color: #303030;
	margin-bottom: 0.5rem;
}
.hero-form-container p {
	font-weight: 400;
	font-size: 1rem;
	color: #474747;
}
.hero-form-container .consult-form {
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 1rem;
}
.hero-form-container .consult-form input {
	position: relative;
	width: 100%;
	height: 2.5rem;
	border-radius: 1.5rem;
	border: 0.0625rem solid #ffe0c4;
	padding-left: 1rem;
	font-size: 1rem;
	color: #303030;
}
.hero-form-container .consult-form input:focus {
	outline: none;
	border-color: #f8943f;
}
.hero-form-container .consult-form .captcha-wrapper {
	position: relative;
	width: 100%;
}
.hero-form-container .consult-form .captcha-wrapper input {
	width: 100%;
	height: 2.5rem;
	border-radius: 1.5rem;
	border: 0.0625rem solid #ffe0c4;
	padding-left: 1rem;
	padding-right: 5rem;
	font-size: 1rem;
	color: #303030;
}
.hero-form-container .consult-form .captcha-wrapper input:focus {
	outline: none;
	border-color: #f8943f;
}
.hero-form-container .consult-form .captcha-wrapper .captcha-label {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 0rem;
	height: 100%;
	width: 6.875rem;
	transform: translateY(-50%);
	background-color: #ffe0c4;
	border-radius: 0rem 1.5rem 1.5rem 0rem;
	background-color: #462512;
	font-size: 0.875rem;
	color: white;
	pointer-events: none;
}
.hero-form-container .consult-form .checkbox-wrapper {
	display: flex;
	flex-direction: row-reverse;
	align-items: start;
	justify-content: flex-end;
	gap: 0.5rem;
	margin-top: 0.5rem;
}
.hero-form-container .consult-form .checkbox-wrapper input[type="checkbox"] {
	width: 1.1875rem;
	height: 1.1875rem;
	border: 0.0625rem solid #ffe0c4;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-color: white;
	cursor: pointer;
	border-radius: 0.25rem;
}
.hero-form-container .consult-form .checkbox-wrapper label {
	font-size: 0.75rem;
	font-weight: 400;
	color: #303030;
	cursor: pointer;
}

.book-btn {
	width: 100%;
	height: 2.375rem;
	border-radius: 1.5rem;
	background-color: #f58420;
	color: white;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}
.book-btn:hover {
	background-color: #de6f0d;
	color: white;
}

.main-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-left: 3.75rem;
	padding-right: 3.75rem;
	margin-top: 7.5rem;
	background-color: white;
}
@media (max-width: 62.5rem) {
	.main-container {
		padding-left: 1rem;
		padding-right: 1rem;
		margin-top: 3.75rem;
	}
}

.root-canal-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.root-canal-section h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #303030;
	margin-bottom: 0.5rem;
	text-align: center;
	max-width: 100%;
}
.root-canal-section p {
	font-size: 1.25rem;
	font-weight: 400;
	color: #474747;
	text-align: center;
	max-width: 100%;
	text-align: center;
}

.root-canal-cards-section {
	display: flex;
	margin-top: 1.25rem;
	gap: 2.5rem;
	overflow-x: auto;
	width: 100%;
}
@media (max-width: 45rem) {
	.root-canal-cards-section {
		gap: auto;
		overflow: scroll;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.root-canal-cards-section::-webkit-scrollbar {
		display: none;
	}
}
.root-canal-cards-section .card {
	border: #ffe0c4 0.0625rem solid;
	border-radius: 1.25rem;
	width: 40rem;
	height: auto;
	display: flex;
	gap: 0rem;
	flex-shrink: 0;
}
@media (max-width: 45rem) {
	.root-canal-cards-section .card {
		width: 17.8125rem;
		flex-direction: column;
	}
}
.root-canal-cards-section .card .bg {
	background-color: #e0d5cb;
	border-radius: 1.25rem 0rem 0rem 1.25rem;
}
@media (max-width: 45rem) {
	.root-canal-cards-section .card .bg {
		width: 17.8125rem;
		height: 17.8125rem;
		border-radius: 1.25rem 1.25rem 0rem 0rem;
	}
}
.root-canal-cards-section .card .image {
	width: 20rem;
	height: auto;
	border-radius: 1.25rem 0rem 0rem 1.25rem;
}
@media (max-width: 45rem) {
	.root-canal-cards-section .card .image {
		width: 17.8125rem;
		height: 17.8125rem;
		border-radius: 1.25rem 1.25rem 0rem 0rem;
	}
}
.root-canal-cards-section .card .text {
	display: flex;
	gap: 1rem;
	flex-direction: column;
	padding: 1rem 1.25rem 1.25rem 1rem;
}
.root-canal-cards-section .card .text h2 {
	font-weight: 43.75rem;
	font-size: 1.25rem;
	text-align: left;
	margin: 0rem;
}
.root-canal-cards-section .card .text p {
	font-weight: 400;
	font-size: 1rem;
	color: #474747;
	text-align: left;
	margin-top: 0.5rem;
}
.root-canal-cards-section .card .text h3 {
	font-weight: 700;
	font-size: 1rem;
}
.root-canal-cards-section .card .text ul {
	padding-left: 1rem;
	margin-top: 0.5rem;
}
.root-canal-cards-section .card .text ul li {
	font-weight: 400;
	font-size: 1rem;
	color: #474747;
}
.root-canal-cards-section .card .text h4 {
	font-weight: 600;
	font-size: 0.875rem;
	color: #f58420;
	margin-bottom: 0.25rem;
}
.root-canal-cards-section .card .text .price {
	margin: 0rem;
	font-weight: 600;
	font-size: 1.25rem;
}

.real-smile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.real-smile .img-container {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	gap: 2.5rem;
	margin-top: 1.25rem;
	width: 100%;
	overflow-x: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.real-smile .img-container::-webkit-scrollbar {
	display: none;
}
.real-smile .img-container .img-box {
	display: flex;
	gap: 0.5rem;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	width: 18.4375rem;
	height: auto;
	border-radius: 1.25rem;
	flex-shrink: 0;
}
.real-smile .img-container .img-box .text {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}
.real-smile .img-container .img-box .text .name {
	font-weight: 600;
	font-size: 1rem;
	color: #1a1a1a;
}
.real-smile .img-container .img-box .text .city {
	font-weight: 600;
	font-size: 0.875rem;
	color: #f58420;
}
.real-smile .img-container .img-box img {
	width: 18.4375rem;
	height: auto;
	border-radius: 1.25rem;
}

.top-text {
	margin-top: 3.75rem;
}
.top-text h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #303030;
	margin-bottom: 0.5rem;
	text-align: center;
	max-width: 100%;
}
.top-text p {
	font-size: 1.25rem;
	font-weight: 400;
	color: #474747;
	text-align: center;
	max-width: 100%;
}

.why-section {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
}
.why-section .why-section-data {
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 6rem;
	width: 100%;
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}
@media (max-width: 62.5rem) {
	.why-section .why-section-data {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
		align-items: center;
		flex-direction: column-reverse;
		gap: 1.25rem;
	}
}
.why-section .why-section-data .image {
	width: 28.8125rem;
	height: auto;
	border-radius: 1.25rem;
}
@media (max-width: 62.5rem) {
	.why-section .why-section-data .image {
		width: 100%;
	}
}
.why-section .why-section-data .accordion {
	width: 100%;
}
.why-section .why-section-data .accordion .accordion-item {
	margin-bottom: 2.5rem;
}
.why-section .why-section-data .accordion .accordion-item .accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.why-section .why-section-data .accordion .accordion-item .accordion-header p {
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
}
.why-section
	.why-section-data
	.accordion
	.accordion-item
	.accordion-header
	.accordion-icon {
	font-size: 1.25rem;
	font-weight: bold;
	color: #ea7d28;
	display: inline-block;
	transition: transform 0.3s ease;
}
.why-section
	.why-section-data
	.accordion
	.accordion-item
	.accordion-header
	.accordion-content.active
	~ .accordion-header
	.accordion-icon {
	transform: rotate(45deg);
}
.why-section .why-section-data .accordion .accordion-item .accordion-content {
	margin-left: 0.5rem;
	font-weight: 400;
	color: gray;
	max-height: 0;
	transition: max-height 0.5s ease, padding 0.3s ease;
	overflow: hidden;
	padding-top: 0;
}
.why-section
	.why-section-data
	.accordion
	.accordion-item
	.accordion-content
	ul {
	list-style-type: disc;
	padding-left: 1.5rem;
}
.why-section
	.why-section-data
	.accordion
	.accordion-item
	.accordion-content.active {
	padding-top: 0.625rem;
	padding-bottom: 5rem;
}

.review {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
}
.review .review-cards {
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 1.5rem;
	width: 100%;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.review .review-cards::-webkit-scrollbar {
	display: none;
}
@media (max-width: 62.5rem) {
	.review .review-cards {
		gap: 1.25rem;
	}
}
.review .review-cards .card {
	height: auto;
	border-radius: 0.625rem;
	width: 14rem;
}
@media (max-width: 62.5rem) {
	.review .review-cards .card {
		width: 12.5rem;
	}
}
.review .review-cards .card img {
	width: 14rem;
	height: 21.875rem;
	border-radius: 0.625rem;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 62.5rem) {
	.review .review-cards .card img {
		width: 12.5rem;
		height: 22.5rem;
	}
}
.review .review-cards .card .card-text {
	display: flex;
	align-items: start;
	justify-content: space-between;
	width: 100%;
}
.review .review-cards .card .card-text .name-and-city {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.review .review-cards .card .card-text .name-and-city .name {
	font-size: 1rem;
	color: #1a1a1a;
	font-weight: 600;
}
.review .review-cards .card .card-text .name-and-city .city {
	font-size: 0.875rem;
	color: #777777;
	font-weight: 600;
}
.review .review-cards .card .card-text .type {
	font-size: 1rem;
	color: #f58420;
	font-weight: 600;
}

.booking-box {
	margin-top: 3.75rem;
	width: 100%;
	height: auto;
	background-color: #fff9f4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0rem;
	border-radius: 0.625rem;
}
@media (max-width: 62.5rem) {
	.booking-box {
		border-radius: 1.25rem;
	}
}
.booking-box h2 {
	font-weight: 700;
	font-size: 1.5rem;
	color: #303030;
	margin-bottom: 1.25rem;
	margin-top: 1rem;
	text-align: center;
}
@media (max-width: 62.5rem) {
	.booking-box h2 {
		font-size: 1.25rem;
		margin-bottom: 1.5rem;
	}
}
.booking-box .form {
	display: flex;
	width: 100%;
	gap: 1.5rem;
	align-items: center;
	justify-self: center;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
@media (max-width: 62.5rem) {
	.booking-box .form {
		flex-direction: column;
		gap: 1rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
.booking-box .form input {
	height: 2.375rem;
	width: 100%;
	border-radius: 1.5rem;
	border: 0.0625rem solid #ffe0c4;
	padding-left: 1rem;
	padding-right: 5rem;
	font-size: 1rem;
	color: #303030;
}
.booking-box .form .captcha-wrapper {
	position: relative;
	width: 100%;
}
.booking-box .form .captcha-wrapper input {
	width: 100%;
	height: 2.5rem;
	border-radius: 1.5rem;
	border: 0.0625rem solid #ffe0c4;
	padding-left: 1rem;
	padding-right: 5rem;
	font-size: 1rem;
	color: #303030;
}
.booking-box .form .captcha-wrapper input:focus {
	outline: none;
	border-color: #f8943f;
}
.booking-box .form .captcha-wrapper .captcha-label {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 0rem;
	height: 100%;
	width: 6.875rem;
	transform: translateY(-50%);
	background-color: #ffe0c4;
	border-radius: 0rem 1.5rem 1.5rem 0rem;
	background-color: #462512;
	font-size: 0.875rem;
	color: white;
	pointer-events: none;
}
.booking-box .checkbox-wrapper {
	display: flex;
	flex-direction: row-reverse;
	align-items: start;
	justify-content: flex-end;
	gap: 0.5rem;
	margin-top: 1.5rem;
}
.booking-box .checkbox-wrapper input[type="checkbox"] {
	width: 1.1875rem;
	height: 1.1875rem;
	border: 0.0625rem solid #ffe0c4;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-color: white;
	cursor: pointer;
	border-radius: 0.25rem;
}
.booking-box .checkbox-wrapper label {
	font-size: 0.75rem;
	font-weight: 400;
	color: #303030;
	cursor: pointer;
}
.booking-box .book-book {
	width: 20.375rem;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.safety {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
}
.safety .cards {
	display: flex;
	width: 100%;
	gap: 1.5rem;
	justify-content: space-evenly;
	align-items: center;
	overflow-x: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.safety .cards::-webkit-scrollbar {
	display: none;
}
@media (max-width: 62.5rem) {
	.safety .cards {
		flex-shrink: 0;
		overflow-x: auto;
		overflow-y: visible;
		gap: 1rem;
	}
}
.safety .cards .card {
	position: relative;
	width: 100%;
	height: 21.5625rem;
	border-radius: 0.625rem 0.625rem 0.625rem 0.625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 25.8125rem;
	flex-shrink: 0;
}
@media (max-width: 62.5rem) {
	.safety .cards .card {
		max-width: 18.75rem;
		height: 23.75rem;
		border-radius: 0.625rem 0.625rem 0rem 0rem;
	}
}
.safety .cards .card .overlay-box {
	position: absolute;
	top: 7.5rem;
	left: 2rem;
	width: 80%;
	height: auto;
	background-color: #112230;
	padding: 1.25rem;
	border-radius: 1.25rem;
}
@media (max-width: 62.5rem) {
	.safety .cards .card .overlay-box {
		top: 12.5rem;
		width: 100%;
		left: 0;
		height: auto;
		border-radius: 0rem 0rem 0.625rem 0.625rem;
		padding: 1rem;
	}
}
.safety .cards .card .overlay-box .overlay-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
}
.safety .cards .card .overlay-box .overlay-content .heading {
	display: flex;
	align-items: center;
	justify-content: center;
}
.safety .cards .card .overlay-box .overlay-content .heading h2 {
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
}
@media (max-width: 62.5rem) {
	.safety .cards .card .overlay-box .overlay-content .heading h2 {
		font-size: 1rem;
	}
}
.safety .cards .card .overlay-box .overlay-content .heading .special {
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
	width: 100%;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}
@media (max-width: 62.5rem) {
	.safety .cards .card .overlay-box .overlay-content .heading .special {
		font-size: 1rem;
	}
}
.safety
	.cards
	.card
	.overlay-box
	.overlay-content
	.heading
	.special
	.aips-large {
	font-size: 1.75rem;
	font-weight: 800;
}
@media (max-width: 62.5rem) {
	.safety
		.cards
		.card
		.overlay-box
		.overlay-content
		.heading
		.special
		.aips-large {
		font-size: 1.375rem;
	}
}
.safety .cards .card .overlay-box .overlay-content .heading hr {
	width: 100%;
	height: 0.625rem;
	background-color: #f58420;
	border: none;
	border-radius: 0.625rem;
	margin-left: 1.4375rem;
}
.safety .cards .card .overlay-box .overlay-content .para {
	font-weight: 300;
	font-size: 1rem;
	color: white;
	margin-bottom: 1.25rem;
}
@media (max-width: 62.5rem) {
	.safety .cards .card .overlay-box .overlay-content .para {
		font-size: 0.875rem;
	}
}
.safety .cards .card .overlay-box .overlay-content .learn-more {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 1rem;
	width: 100%;
	font-size: 1rem;
	font-weight: 600;
	color: #f58420;
}
@media (max-width: 62.5rem) {
	.safety .cards .card .overlay-box .overlay-content .learn-more {
		font-size: 0.875rem;
	}
}
.safety .cards .card .third {
	background-color: #462512;
}
.safety .cards .card img {
	width: 100%;
	height: 21.5625rem;
	border-radius: 0.625rem 0.625rem 0.625rem 0.625rem;
	-o-object-fit: fill;
	object-fit: fill;
	-o-object-position: center;
	object-position: center;
}
.safety .cards .card img .scale-up {
	transform: scale(1.4);
}
@media (max-width: 62.5rem) {
	.safety .cards .card img {
		height: 12.5rem;
		border-radius: 0.625rem 0.625rem 0rem 0rem;
	}
}

.locations {
	width: 100%;
	margin-top: 3.75rem;
}
.locations .heading {
	margin-bottom: 2.5rem;
}
.locations .heading h2 {
	font-weight: 700;
	font-size: 1.5rem;
	color: #303030;
	margin-bottom: 0.5rem;
}
@media (max-width: 70.625rem) {
	.locations .heading h2 {
		font-size: 1.25rem;
		text-align: center;
	}
}
.locations .heading p {
	font-weight: 400;
	font-size: 1.25rem;
	color: #474747;
}
@media (max-width: 70.625rem) {
	.locations .heading p {
		font-size: 1rem;
		text-align: center;
	}
}
.locations .big-container {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
	align-items: center;
	gap: 5rem;
}
@media (max-width: 70.625rem) {
	.locations .big-container {
		flex-direction: column;
		justify-content: start;
		align-items: center;
		gap: 2.5rem;
	}
}
.locations .big-container .city-container {
	width: 25.125rem;
	min-width: 21.875rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	-moz-column-gap: 0.625rem;
	column-gap: 0.625rem;
	row-gap: 1.875rem;
	align-content: start;
}
@media (max-width: 70.625rem) {
	.locations .big-container .city-container {
		gap: 0.625rem;
		width: 21.875rem;
	}
}
.locations .big-container .city-container .city-box {
	border: #d0d0d0 0.0625rem solid;
	border-radius: 0.5rem;
	width: 12.25rem;
	min-width: 10.625rem;
	height: 5.375rem;
	flex: 1 1 10.625rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
}
@media (max-width(70.625rem)) {
	.locations .big-container .city-container .city-box {
		gap: 0.75rem;
		width: 10.625rem;
		max-width: 10.625rem;
	}
}
.locations .big-container .city-container .city-box .text h2 {
	font-weight: 700;
	color: #303030;
	font-size: 1rem;
}
.locations .big-container .city-container .city-box .text p {
	font-weight: 600;
	color: #303030;
	font-size: 1rem;
}
.locations .big-container .clinic-container {
	width: 100%;
	max-width: 52.375rem;
	min-width: 16.8125rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.locations .big-container .clinic-container::-webkit-scrollbar {
	display: none;
}
@media (max-width: 70.625rem) {
	.locations .big-container .clinic-container {
		justify-content: start;
		align-items: center;
		flex-wrap: nowrap;
	}
}
.locations .big-container .clinic-container .clinic-box {
	min-width: 16.8125rem;
	height: 12.9375rem;
	flex: 1 1 16.8125rem;
	border: #d0d0d0 0.0625rem solid;
	border-radius: 0.5rem;
}
.locations .big-container .clinic-container .clinic-box img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	display: block;
	border-radius: 0.5rem;
}

.buying-section {
	margin-top: 3.75rem;
	display: flex;
	width: 100%;
	gap: 3.75rem;
	justify-content: space-evenly;
	align-items: center;
	flex-shrink: 0;
	overflow-x: auto;
	overflow-y: visible;
}
@media (max-width: 75.9375rem) {
	.buying-section {
		flex-direction: column;
		gap: 4.75rem;
	}
}
.buying-section .book-now-box {
	width: 31.25rem;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 15.625rem;
	background-color: #fff9f4;
	border: #ffe0c4 solid 0.0625rem;
	padding: 1rem 2.625rem 1rem 2.625rem;
	flex-direction: column;
	gap: 1.25rem;
	border-radius: 1.25rem;
}
@media (max-width: 75.9375rem) {
	.buying-section .book-now-box {
		width: 22.375rem;
		gap: 1.5rem;
	}
}
.buying-section .book-now-box .text h2 {
	font-weight: 700;
	font-size: 1.5rem;
	color: #303030;
}
@media (max-width: 75.9375rem) {
	.buying-section .book-now-box .text h2 {
		font-size: 1.25rem;
	}
}
.buying-section .book-now-box .text p {
	font-weight: 400;
	font-size: 0.875rem;
	color: #474747;
}
@media (max-width: 62.5rem) {
	.buying-section .book-now-box .text p {
		font-size: 1rem;
	}
}
.buying-section .book-now-box form {
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 1rem;
}
.buying-section .book-now-box form input {
	position: relative;
	width: 100%;
	height: 2.5rem;
	border-radius: 1.5rem;
	border: 0.0625rem solid #ffe0c4;
	padding-left: 1rem;
	font-size: 1rem;
	color: #303030;
}
.buying-section .book-now-box form input:focus {
	outline: none;
	border-color: #f8943f;
}
.buying-section .book-now-box form .captcha-wrapper {
	position: relative;
	width: 100%;
}
.buying-section .book-now-box form .captcha-wrapper input {
	width: 100%;
	height: 2.5rem;
	border-radius: 1.5rem;
	border: 0.0625rem solid #ffe0c4;
	padding-left: 1rem;
	padding-right: 5rem;
	font-size: 1rem;
	color: #303030;
}
.buying-section .book-now-box form .captcha-wrapper input:focus {
	outline: none;
	border-color: #f8943f;
}
.buying-section .book-now-box form .captcha-wrapper .captcha-label {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 0rem;
	height: 100%;
	width: 6.875rem;
	transform: translateY(-50%);
	background-color: #ffe0c4;
	border-radius: 0rem 1.5rem 1.5rem 0rem;
	background-color: #462512;
	font-size: 0.875rem;
	color: white;
	pointer-events: none;
}
.buying-section .book-now-box form .checkbox-wrapper {
	display: flex;
	flex-direction: row-reverse;
	align-items: start;
	justify-content: flex-end;
	gap: 0.5rem;
	margin-top: 0.5rem;
}
.buying-section .book-now-box form .checkbox-wrapper input[type="checkbox"] {
	width: 1.1875rem;
	height: 1.1875rem;
	border: 0.0625rem solid #ffe0c4;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-color: white;
	cursor: pointer;
	border-radius: 0.25rem;
}
.buying-section .book-now-box form .checkbox-wrapper label {
	font-size: 0.75rem;
	font-weight: 400;
	color: #303030;
	cursor: pointer;
}
.buying-section .buy-now-box {
	width: 47.5rem;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: start;
	min-width: 20.375rem;
	border: #ffe0c4 0.0625rem solid;
	border-radius: 1.25rem;
	flex-shrink: 0;
}
@media (max-width: 75.9375rem) {
	.buying-section .buy-now-box {
		flex-direction: column;
		width: 22.375rem;
	}
}
.buying-section .buy-now-box .image-container {
	width: 24.9375rem;
}
@media (max-width: 75.9375rem) {
	.buying-section .buy-now-box .image-container {
		width: 22.375rem;
	}
}
.buying-section .buy-now-box .image-container img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	display: block;
	border-radius: 1.25rem 0rem 0rem 1.25rem;
}
@media (max-width: 75.9375rem) {
	.buying-section .buy-now-box .image-container img {
		border-radius: 1.25rem 1.25rem 0rem 0rem;
	}
}
.buying-section .buy-now-box .offer {
	padding: 1rem 1.25rem 1rem 1.25rem;
	width: 22.5625rem;
}
.buying-section .buy-now-box .offer h2 {
	font-weight: 43.75rem;
	font-size: 1.25rem;
	color: #303030;
}
@media (max-width: 75.9375rem) {
	.buying-section .buy-now-box .offer h2 {
		font-size: 1.25rem;
	}
}
.buying-section .buy-now-box .offer ul {
	margin-top: 0.75rem;
}
@media (max-width: 75.9375rem) {
	.buying-section .buy-now-box .offer ul {
		margin-top: 0.3019rem;
	}
}
.buying-section .buy-now-box .offer li {
	font-weight: 43.75rem;
	margin-left: 1.25rem;
	margin-bottom: 0.9375rem;
	font-size: 1rem;
	color: #303030;
}
@media (max-width: 75.9375rem) {
	.buying-section .buy-now-box .offer li {
		font-size: 1.25rem;
	}
}
.buying-section .buy-now-box .buy-part {
	margin-top: 1.125rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 75.9375rem) {
	.buying-section .buy-now-box .buy-part {
		flex-direction: column;
		gap: 0.5rem;
		justify-content: start;
		align-items: start;
	}
}
.buying-section .buy-now-box .buy-part .discount {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	gap: 0.25rem;
}
.buying-section .buy-now-box .buy-part .discount h3 {
	color: #f58420;
	font-weight: 600;
	font-size: 0.875rem;
}
.buying-section .buy-now-box .buy-part .discount .price {
	display: flex;
	gap: 1.0625rem;
}
.buying-section .buy-now-box .buy-part .discount .price .current-price {
	color: #1a1a1a;
	font-size: 1.25rem;
	font-weight: 700;
}
.buying-section .buy-now-box .buy-part .discount .price .new-price {
	color: #303030;
	font-weight: 400;
	font-size: 1.25rem;
}
.buying-section .buy-now-box .buy-part .buy-button {
	background-color: #f58420;
	height: 2.375rem;
	width: 8.625rem;
	color: white;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 3.125rem;
	border: none;
}
.buying-section .buy-now-box .buy-part .buy-button:hover {
	outline: none;
	background-color: #de6f0d;
	cursor: pointer;
}
@media (max-width: 75.9375rem) {
	.buying-section .buy-now-box .buy-part .buy-button {
		width: 100%;
	}
}

.footer {
	background-color: #3f1d0d;
	height: 9.3125rem;
	color: white;
	padding: 2.5rem 3.75rem;
	font-family: "Inter", sans-serif;
	font-size: 0.875rem;
	margin-top: 3.75rem;
	display: flex;
	justify-content: space-between;
	position: relative;
}
@media (max-width: 48rem) {
	.footer {
		flex-direction: column;
		height: 16.5625rem;
		gap: 0rem;
	}
}
.footer svg {
	width: 10.875rem;
	height: 4.3125rem;
}
@media (max-width: 48rem) {
	.footer svg {
		width: 6.875rem;
		height: 2.75rem;
		position: absolute;
	}
}
.footer .footer-text {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: end;
	gap: 1.5rem;
}
.footer .footer-text .upper-text {
	display: flex;
	gap: 1.6875rem;
}
@media (max-width: 48rem) {
	.footer .footer-text .upper-text {
		flex-direction: column;
		gap: 1.5rem;
	}
}
@media (max-width: 48rem) {
	.footer .footer-text .upper-text .hidden-on-mobile {
		display: none;
	}
}
.footer .footer-text .upper-text p {
	font-size: 1rem;
	font-weight: 400;
	color: white;
}
.footer .footer-text hr {
	border: 0.0625rem solid white;
	width: 100%;
}
.footer .footer-text .lower-text {
	display: flex;
}
.footer .footer-text .lower-text p {
	font-size: 0.875rem;
	font-weight: 400;
	color: white;
}
@media (max-width: 48rem) {
	.footer .footer-text .lower-text p {
		font-size: 0.875rem;
	}
}
