@import url("https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap");

:root {
	--col-6: 50%;
	--accent: #033d5a;
	--form-border: #89afc1;
	--libre: "Libre Bodoni", serif;
	--hel: "Helvetica", sans-serif;
	--hel-b: "Helvetica Bold", sans-serif;
	--hel-light: "Helvetica Light", sans-serif;
	--h2: 44px;
	--head: 40px;
	--para: 16px;
	--para-sm: 16px;
	--section: 80px;
	--gap: 60px;
	/* color */
	--text: #033d5a;
	--button: #224ce0;
	--button-hover: #1e3ca8;
	--border: #033d5a3b;
	--border-secondary: #d6e4eb;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--hel);
}

body {
	width: 100%;
	color: var(--text);
	overflow-x: clip;
	font-family: "Helvetica", sans-serif;
}

section,
.footerSection,
.anime-img {
	opacity: 0;
	transform: translateY(60px);
	transition: 0.7s ease;
}

section.scroll_active,
.footerSection.scroll_active,
footer.scroll_active,
.anime-img.scroll_active {
	opacity: 1;
	transform: translateY(0);
}

.footer-anime-img{
	opacity: 0;
	transform: translateY(60px);
	transition: .5s ease;
	transition-delay: .5s !important;
}

.footerSection.scroll_active .footer-anime-img{
	opacity: 1;
	transform: translateY(0);
}

a {
	text-decoration: none;
}

.underlineAnim {
	position: relative;
}

.underlineAnim-dark {
	position: relative;
}

.underlineAnim-dark:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 0%;
	background-color: var(--text);
	transition: 0.5s ease;
}

.underlineAnim-dark:hover::before {
	width: 100%;
}

.underlineAnim:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 0%;
	background-color: #fff;
	transition: 0.5s ease;
}

.underlineAnim:hover::before {
	width: 100%;
}

.border-dotted {
	border-radius: 32px;
	border: 1px dashed rgba(255, 255, 255, 0.5);
}

.container {
	padding: 0 20px;
	max-width: 1440px !important;
	margin: 0 auto;
}

.container-sm {
	max-width: 1100px !important;
}

.container .col-6 {
	width: var(--col-6);
	height: 100%;
}

.btn {
	padding: 13px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.btn-light {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 50px;
	transition: 0.5s ease;
}

.btn-blue {
	background-color: var(--button);
	border: 1px solid transparent;
	border-radius: 50px;
	transition: 0.5s ease;
	color: #fff;
	font-size: var(--para);
	font-weight: 400;
	font-family: var(--hel);
}

.icon-mid {
	width: 28px;
	height: 28px;
}

.icon {
	width: 24px;
	height: 24px;
}

/* modal */

body.modal-open {
	overflow: hidden;
	height: 100vh;
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
	z-index: 999;
}

.modal-content {
	position: absolute;
	top: 0;
	left: 0;
	background-color: white;
	padding: 60px;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}

.modal-swiper-div {
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.modal-body {
	width: 100%;
	height: 100%;
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 60px;
}

.modal-body .right * {
	color: var(--accent) !important;
}

.modal-body .right .head {
	margin-bottom: 40px;
}

.modal-body .right .head h2 {
	color: #033d5a;
	font-family: var(--hel);
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	margin-bottom: 10px;
}

.modal-body .right .head p {
	color: #033d5a;
	font-family: var(--hel);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
}

.modal-body .left img {
	object-fit: cover;
	max-height: calc(100vh - 120px);
}

.modal-body .left,
.modal-body .right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.modal-body .left .modal-brain {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.modal-body .right form {
	width: 100%;
	padding-left: 6px;
}

.modal-body .right .form-grp {
	display: flex;
	justify-content: flex-end;
	gap: 32px;
	margin-bottom: 32px;
}

.modal-body .right .form-grp:last-child {
	margin-bottom: 0;
}

.modal-body .right .input-form {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.modal-body .right .form-grp .form-lebel {
	color: #033d5a;
	text-align: center;
	font-family: var(--hel);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
}

/* gravity form */

.modal-body .right .gform_wrapper {
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 24px;
	width: 100%;
}

.modal-body .right .gform_wrapper::-webkit-scrollbar {
	width: 8px;
	background-color: transparent;
}

.modal-body .right .gform_wrapper::-webkit-scrollbar-thumb {
	background-color: var(--text);
	border-radius: 20px;
}

.modal-body .gform_title {
	font-weight: 700;
	line-height: 1.4;
}
.modal-body .gform_description {
	line-height: 1.8 !important;
	margin-top: 0.2rem;
}
.modal-body .gform_required_legend {
	margin-top: 12px;
}

.modal-body .gform_fields .gfield {
	grid-column: span 6 / span 6 !important;
}

.modal-body .gform_fields .gfield input,
.modal-body .gform_fields .gfield select {
	height: 60px !important;
}

.modal-body .gform_fields .gfield input,
.modal-body .gform_fields .gfield select,
.modal-body .gform_fields .gfield textarea {
	width: 100% !important;
	border-radius: 8px !important;
	line-height: 1.8 !important;
	color: var(--form-border) !important;
	border: 1px solid var(--form-border) !important;
	padding: 1rem 1.25rem;
}

.modal-body .gform_fields .gfield textarea {
	height: 140px !important;
}

.modal-body .gform_footer input[type="submit"] {
	height: 55px !important;
	border-radius: 120px !important;
	background-color: var(--button) !important;
	color: #fff !important;
	padding: 0.8rem 4rem 0.8rem 2.5rem !important;
	font-weight: 700 !important;
	line-height: 1.8 !important;
	background-image: url("../images//costa-mesa/calendar-white.svg");
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: 90% center;
	width: fit-content !important;
	margin-left: auto !important;
	display: inline-block !important;
	transition: 0.5s ease !important;
}

.modal-body .gform_footer input[type="submit"]:hover {
	background-color: var(--button-hover) !important;
}

.modal-body form {
	margin-top: 40px;
}

.modal-body .gform_fields .gfield.gfield--type-textarea {
	grid-column: span 12 / span 12 !important;
}

.modal-body .right .form-grp .form-input {
	border-radius: 8px;
	border: 1.5px solid #89afc1;
	padding: 16px 20px;
	width: 100%;
}

.modal-body .right .form-grp .form-input::placeholder {
	color: #89afc1;
	font-family: var(--hel);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	/* 28.8px */
}

.modal-body .right .form-grp .form-input:focus {
	border-color: var(--text);
	color: var(--text);
}

.close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	text-align: center;
	cursor: pointer;
	background-color: transparent;
	border: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 34px;
	background-image: url("../images/costa-mesa/cross.svg");
}

.close-btn:hover {
	background-color: transparent;
}

.show-modal {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.show-modal .swiper-zoom-container .body {
	position: absolute;
	bottom: 5%;
	left: 80px;
}

.show-modal .swiper-zoom-container {
	position: relative;
	border-radius: 20px;
}

.show-modal .swiper-zoom-container::before {
	border-radius: 20px;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-image: radial-gradient(transparent, #000000b2);
	width: 100%;
	height: 100%;
}

.show-modal .swiper-zoom-container .body {
	position: absolute;
	bottom: 5%;
	left: 80px;
	width: max-content;
}

.show-modal .swiper-zoom-container .body h4 {
	color: #fff;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	width: 60%;
	text-align: left;
}

.btn-blue .check-icon {
	background-image: url("../images/costa-mesa/check-circle.svg");
	transition: 0.5s ease;
	margin-left: 20px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(136%)
		hue-rotate(62deg) brightness(112%) contrast(100%);
}

.modal-body input[type="date"]::-webkit-calendar-picker-indicator {
	color: rgba(0, 0, 0, 0);
	opacity: 1;
	display: block;
	background: url("../images/costa-mesa/calendar.svg") no-repeat;
	width: 20px;
	height: 20px;
	border-width: thin;
}

.modal-body select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	background-image: url("../images/costa-mesa/chevron-down.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-position-x: calc(100% - 20px);
	position: relative;

	font-family: var(--hel);
	color: var(--text);
	font-size: var(--para);
}

/* carousel */
.modal-body .swiper {
	width: 100%;
	height: 100%;
}

.modal-body .swiper-slide {
	overflow: hidden;
}

.modal-body .swiper-zoom-container > canvas,
.modal-body .swiper-zoom-container > img,
.modal-body .swiper-zoom-container > svg {
	border-radius: 20px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.navbar {
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	z-index: 100;
	background-color: transparent;
	position: fixed;
	border-bottom: 2px solid transparent;
	margin-top: 57px;
	transition: 0.5s ease;
}

.thank-you-page .navbar:not(.bg-light){
	margin-top:0;

}

.navbar.bg-light,
.thank-you-page .navbar{
	backdrop-filter: blur(10px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	background-color: #444bd2bf;
	border-bottom: 1px solid #ffffff;
	transition: 0.5s ease;
	top: 0;
	left: 0;
	margin-top: 0 !important;
}

.navbar .container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar .container .col-6:last-child {
	width: var(--col-6);
	display: flex;
	justify-content: flex-end;
}

.navbar .container .col-6 .location {
	width: var(--col-6);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 34px;
	gap: 12px;
}

.navbar .container .col-6 .location .para {
	font-size: var(--para);
	color: #fff;
	font-weight: 400;
	line-height: 180%;
}

.location-tag {
	display: block;
	width: fit-content;
}

.navbar .container .col-6 .number .callBtn {
	font-size: 26px;
	color: #fff;
	font-weight: 400;
	text-decoration: none;
	line-height: 140%;
}

.navbar .container .col-6 .number .para {
	font-size: var(--para);
	color: #fff;
	font-weight: 400;
}

.hero {
	background-color: #444ad2;
	height: 760px;
	width: 100%;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
}

.hero .personBg {
	object-fit: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: -1;
	fill: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.08) 100%);
	mix-blend-mode: soft-light;
}

.hero::before {
	content: "";
	width: 684px;
	height: 492px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #4dacef;
	mix-blend-mode: hard-light;
	filter: blur(140px);
	transform: rotate(300deg);
	border-radius: 50%;
	z-index: -1;
}

.hero::after {
	content: "";
	width: 684px;
	height: 492px;
	position: absolute;
	top: 0;
	right: 5%;
	background-color: #835feb;
	filter: blur(140px);
	border-radius: 50%;
	transform: rotate(126deg);
	z-index: -1;
}

.hero .container {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero .container .left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hero .container .herohead {
	font-size: var(--h2);
	line-height: 140%;
	color: white;
	font-weight: 400;
	margin-bottom: 32px;
}

.hero .container .herohead .libra {
	font-size: var(--h2);
	line-height: 140%;
	color: white;
	font-weight: 400;
	font-family: var(--libre);
	font-style: italic;
}

.hero .container .herohead .hrBottom {
	position: relative;
	text-transform: uppercase;
	display: inline-block;
	width: max-content;
}

.hero .hrBottom::before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 95%;
	height: 6px;
	background-color: #f6de04;
	border-radius: 50px;
	transform: rotate(-4deg);
	animation: 0.9s draw linear forwards;
	opacity: 1;
}

.hero .hrBottom::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 95%;
	height: 6px;
	background-color: #f6de04;
	border-radius: 50px;
	transform: rotate(1deg);
	animation: 0.9s draw linear forwards;
	opacity: 1;
}

@keyframes draw {
	0% {
		opacity: 0;
		width: 0;
	}

	100% {
		opacity: 1;
		width: 100%;
	}
}

.hero .left .para-sm {
	font-size: var(--para-sm);
	font-family: var(--hel-light);
	color: #fff;
	width: 80%;
	margin-bottom: 60px;
	font-weight: 200;
	line-height: 180%;
}

.hero .btn-light {
	font-family: var(--hel);
	font-size: var(--para-sm);
	font-weight: 700;
	color: var(--text);
	cursor: pointer;
}

.btn-light:hover,
.btn-blue:hover {
	background-color: #033d5a;
	color: #fff;
}

.hero .left .btn-light .calendar-icon {
	background-image: url("../images/costa-mesa/calendar.svg");
	transition: 0.5s ease;
}

.hero .left .btn-light:hover .calendar-icon {
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(136%)
		hue-rotate(62deg) brightness(112%) contrast(100%);
}

.hero .left .btn-light .icon {
	margin-left: 20px;
	width: 24px;
	height: 24px;
}

.hero .right {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero .right .rightImage {
	width: 500px;
	height: 680px;
	object-fit: contain;
	position: absolute;
	bottom: -100px;
	right: 0;
	z-index: 100;
}

.fecility-sec {
	position: relative;
	height: 100%;
	width: 100%;
	padding-top: var(--section);
	display: flex;
	align-items: center;
	justify-content: center;
}

.fecility-sec::before {
	content: "";
	position: absolute;
	top: 8%;
	left: 0;
	height: 50%;
	width: 100%;
	background-image: linear-gradient(to top, #eef9ff, #fff);
	z-index: -1;
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 50%;
}

.fecility-sec .container {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
	flex-direction: column;
}

.fecility-sec .container .top {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 15%;
}

.fecility-sec .container .top .left .facility {
	height: 100%;
	width: 100%;
	border-radius: 1rem;
}

.fecility-sec .right .sheild {
	width: 120px;
	height: 120px;
	margin-bottom: 10px;
}

.fecility-sec .right h2 {
	color: #033d5a;
	font-size: var(--head);
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	margin-bottom: 25px;
}

.fecility-sec .right .para {
	color: #033d5a;
	font-size: var(--para);
	font-weight: 400;
	line-height: 170%;
	width: 72%;
	margin-bottom: 40px;
}

.btn-blue .calendar-icon {
	background-image: url("../images/costa-mesa/calendar.svg");
	transition: 0.5s ease;
	margin-left: 20px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(136%)
		hue-rotate(62deg) brightness(112%) contrast(100%);
}

.fecility-sec .btn-blue .icon {
	margin-left: 20px;
	width: 24px;
	height: 24px;
}

.fecility-sec .bottom {
	margin-top: 40px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 100px;
}

.fecility-sec .bottom .tech-card .card-icon {
	height: 54px;
	width: 54px;
}

.hexagon:hover #hexagon #outer {
	animation: hexagon 0.5s linear;
	transform-origin: center;
	transform-box: fill-box;
}

.hexagon:hover #hexagon #lines {
	animation: lines 1s linear;
	transform-origin: center;
	transform-box: fill-box;
}

.hexagon:hover #hexagon #circles {
	animation: lines 1s linear;
	transform-origin: center;
	transform-box: fill-box;
}

/* animations */
@keyframes hexagon {
	100% {
		transform: rotate(178deg);
	}
}

@keyframes lines {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

.heart:hover #heart #plus {
	animation: rotate 0.5s linear;
	transform-origin: center;
	transform-box: fill-box;
}

.heart:hover #heart #line {
	animation: beat 1s linear infinite;
	transform-origin: center;
	transform-box: fill-box;
}

/* animations */
@keyframes rotate {
	100% {
		transform: rotate(178deg);
	}
}

@keyframes beat {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.15);
	}

	100% {
		transform: scale(1);
	}
}

.clock:hover #clock #hand {
	animation: rotate 0.5s linear;
	transform-origin: center bottom;
	transform-box: fill-box;
}

.clock:hover #clock #line {
	animation: beat 1s linear infinite;
	transform-origin: center;
	transform-box: fill-box;
}

/* animations */
@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes beat {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.15);
	}

	100% {
		transform: scale(1);
	}
}

.fecility-sec .bottom .tech-card .card-body {
	padding-top: 16px;
	position: relative;
	margin-top: 18px;
	transition: 1s ease;
}

.fecility-sec .card-body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 2px;
	transition: 1s ease;
	background-color: #033d5a;
}
.fecility-sec .card-body.scroll_active::before {
	width: 20%;
}

.fecility-sec .card-body h3 {
	color: #033d5a;
	font-size: 26px;
	font-weight: 400;
	line-height: 140%;
	margin-bottom: 14px;
}

.fecility-sec .bottom .tech-card .card-body .para {
	font-size: var(--para-sm);
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
}

.reviews {
	margin-top: var(--section);
	position: relative;
	overflow-x: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.reviews .container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

.reviews .top {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 32px;
}

.reviews .reviews-card {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	border: 1px solid var(--border);
	padding: 10px 28px;
	border-radius: 50px;
	margin-left: 0;
	width: max-content;
}

.reviews .reviews-card p {
	font-size: var(--para);
	font-weight: bold;
	color: var(--text);
}

.reviews .reviews-card .star {
	margin-left: 10px;
	width: 20px;
}

.reviews .reviews-card p span {
	margin: 0 5px;
}

.reviews .h-Bar {
	animation-name: marquee1;
}
.bottom.marquee {
	width: 100%;
}
.reviews .marquee-box {
	display: flex;
	align-items: center;
}

.reviews .marquee-wrapper {
	position: relative;
	display: flex;
	width: 100%;
	pointer-events: none;
}
.marquee-inner-wrap {
	height: 100%;
	width: 100%;
}

.marquee p {
	text-align: center;
	color: #033d5a;
	font-weight: 400;
	white-space: nowrap;
	font-size: 1rem;
	line-height: 180%;
	padding: 0 40px;
	display: flex;
	align-items: flex-start;
}

.marquee .name-span {
	color: #033d5a;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 180%;
	text-transform: capitalize;
}

.marquee-img {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.marquee-box:first-child {
	margin-left: -17rem !important;
}

.marquee__inner {
	height: 100%;
	width: max-content;
	align-items: center;
	display: flex;
	position: relative;
	animation: marquee 90s linear infinite;
	will-change: transform;
}

@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

.reviews .marquee .body {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.reviews .marquee .body .body-name {
	color: #033d5a;
	font-size: var(--para);
	font-weight: 700;
	line-height: 180%;
	text-transform: capitalize;
}

.reviews .marquee .body .para {
	color: #033d5a;
	font-size: var(--para);
	font-weight: 400;
	line-height: 180%;
	margin-right: 5px;
}

.reviews .quote-icon {
	background-image: url("../images/costa-mesa/qoute.svg");
	color: #033d5a;
	width: 16px;
	height: 16px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 5px;
}
/* hospital */

.hospital {
	background: url("../images/costa-mesa/hospital.jpg");
	width: 100%;
	height: fit-content;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: var(--section);
	padding-top: 50px;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hospital::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		#033d5a 50%,
		rgba(3, 61, 90, 0.4) 112.36%
	);
	mix-blend-mode: multiply;
	z-index: -1;
}

.hospital .container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 20px;
}

.hospital .container .head {
	color: #fff;
	text-align: center;
	font-size: 58px;
	font-weight: 400;
	line-height: 132%;
	width: 100%;
}

.hospital .container .head span {
	color: #7cc7fc;
	font-size: 58px;
	font-style: italic;
	font-weight: 700;
	line-height: 132%;
}

.hospital .container .para {
	color: #fff;
	text-align: center;
	font-family: Helvetica;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%;
	padding: 5px 30px;
	text-wrap: nowrap;
}

.about {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-top: var(--section);
}

@media screen and (min-width: 2000px) {
	.about::before {
		width: 24% !important;
		right: 44rem !important;
	}
	.about .container .right img {
		left: 0 !important;
	}
	.about .container {
		background-image: url("../images/costa-mesa/human-bg.png");
		background-repeat: no-repeat;
		background-position: 100% 0;
	}
	.about {
		background-image: none;
	}
}

@media screen and (max-width: 1999px) {
	.about {
		background-image: url("../images/costa-mesa/human-bg.png");
		background-repeat: no-repeat;
		background-position: 100% 0;
	}
}

/* .about::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 44%;
	height: 100%;
	background: linear-gradient(to bottom, #a6d7f7af, rgba(77, 172, 239, 0));
	border-top-left-radius: 100%;
} */

.about .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	position: relative;
}

.about .container .right {
	position: relative;
	bottom: -8px;
	display: flex;
	/* justify-content: flex-end; */
	align-items: center;
}

.about .container .right img {
	width: 484px;
	height: 100%;
	position: relative;
	left: 16rem;
	object-fit: scale-down;
}

.about .container .left h2 {
	color: #033d5a;
	font-size: var(--head);
	font-weight: 700;
	line-height: 140%;
	max-width: 80%;
	margin-bottom: 24px;
}

.about .container .left .para {
	color: #033d5a;
	font-size: var(--para-sm);
	font-weight: 400;
	line-height: 180%;
	width: 72%;
	margin-bottom: 32px;
}

.about .container .left .about-list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 40px;
	align-items: center;
	margin-bottom: 50px;
}

.about .container .left .about-list li {
	list-style-type: none;
	margin-bottom: 24px;
	position: relative;
	margin-left: 10px;
}
.about .beforeElement {
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 18px;
	transition: 0.9s ease;
}

.about .beforeElement.active {
	opacity: 1;
}
.about .beforeElement span {
	height: 20px;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../images/costa-mesa/check-icon.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transition: 0.9s ease;
}

.about .container .left .about-list li p {
	color: #033d5a;
	font-size: var(--para-sm);
	font-weight: 400;
	line-height: 180%;
}

.about .container .left h4 {
	color: #033d5a;
	font-size: 26px;
	font-weight: 400;
	line-height: 140%;
	width: 80%;
	margin-bottom: 35px;
}

.about .container .left .btn-grp {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	gap: 35px;
}

.about .container .left .btn-grp .btn-light-blue {
	border: 1px solid var(--button);
	background-color: transparent;
	border-radius: 50px;
	text-decoration: none;
	color: #224ce0;
	font-size: var(--para);
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s ease;
}

.about .container .left .btn-grp .btn-light-blue:hover {
	background-color: var(--text);
	color: #fff;
	border-color: var(--text);
}

.about .container .left .btn-grp .btn-light-blue:hover .call-icon {
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(136%)
		hue-rotate(62deg) brightness(112%) contrast(100%);
}

.about .container .left .btn-grp .btn-light-blue .call-icon {
	background-image: url("../images/costa-mesa/call-arrow.svg");
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-flex;
	margin-left: 20px;
	transition: 0.5s ease;
}

@media screen and (max-width: 1536px) {
	.about .container .right img {
		left: 10rem;
	}
}

.whyUs {
	position: relative;
	z-index: 10;
	margin-top: var(--section);
	overflow-x: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.whyUs .container {
	overflow: hidden;
	background-image: url("../images/costa-mesa/heroBg-Person-blue.png");
	background-repeat: no-repeat;
	background-position: right;
	/* background-size: contain; */
}

@media screen and (max-width: 1024px) {
	.whyUs .container {
		background-size: contain;
	}
}

.whyUs .container {
	display: flex;
	flex-direction: column;
}

.whyUs .container h2 {
	color: #033d5a;
	font-size: var(--head);
	font-weight: 700;
	line-height: 140%;
	/* 56px */
	margin-bottom: 40px;
}

.whyUs .container .card {
	display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.whyUs .container .card:last-child {
	margin-bottom: 0;
}

.whyUs .container .card img {
	border-radius: 20px;
	width: 100%;
	object-fit: cover;
}

.whyUs .container .card .card-head {
	grid-column: span 5 / span 5;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	padding-left: 80px;
}

.whyUs .container .card .number {
	border-radius: 8px;
	background: #e9f6ff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px;
	height: 55px;
	width: 55px;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	z-index: 20;
}

.whyUs .container .card .card-body {
	grid-column: span 7 / span 7;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	height: 100%;
	margin-left: 80px;
}

.whyUs .container .card .card-body .head {
	color: #033d5a;
	font-size: 36px;
	font-weight: 400;
	line-height: 140%;
	/* 50.4px */
	margin-bottom: 16px;
	width: 70%;
	text-align: left;
}

.whyUs .container .card .card-body .para {
	color: #033d5a;
	font-size: var(--para);
	font-weight: 400;
	line-height: 180%;
	width: 72%;
}

#location {
	margin-top: var(--section);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.location-div {
	padding: 80px 60px;
	border-radius: 20px;
	min-height: 660px;
	background-image: url("../images/costa-mesa/map.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.location-div::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background-image: linear-gradient(to left, #edf8ff00, #edf8ff, #edf8ff);
	z-index: -1;
	border-radius: 20px;
}

.location-div::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80%;
	height: 100%;
	background: radial-gradient(
		157.32% 40.66% at 76.86% 33.65%,
		rgba(237, 248, 255, 0) 0%,
		#edf8ffda 100%
	);
	z-index: -1;
	border-radius: 20px;
}

.location-div .btn-blue {
	margin-top: 40px;
	cursor: pointer;
	font-size: var(--para);
}

.location-div .btn-light-blue:hover .map-icon {
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(136%)
		hue-rotate(62deg) brightness(112%) contrast(100%);
}

.location-div .btn-blue .map-icon {
	background-image: url("../images/costa-mesa/loaction-line.png");
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-flex;
	margin-left: 20px;
	transition: 0.5s ease;
}

#location .head {
	color: #033d5a;
	font-size: var(--head);
	font-family: var(--hel-b);
	font-weight: 700;
	line-height: 140%;
	margin-bottom: 32px;
	width: 80%;
}

#location .details {
	margin-bottom: 32px;
}

#location .details .title {
	color: #033d5a;
	font-family: var(--hel-b);
	font-size: var(--para);
	font-weight: 700;
	line-height: 140%;
	margin-bottom: 10px;
}

#location .details .para {
	color: #033d5a;
	font-family: var(--hel);
	font-size: var(--para);
	font-weight: 400;
	line-height: 140%;
	margin-bottom: 10px;
}

#location .right {
	position: relative;
	height: 500px;
}

#location .right::before {
	content: "";
	position: absolute;
	top: 12%;
	right: 42%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--button);
	z-index: 100;
}

#location .right::after {
	content: "";
	position: absolute;
	top: 10.8%;
	right: 41.1%;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #224be072;
	background-color: #224be08c;
	z-index: 100;
	animation: 2s linear blink infinite;
}

@keyframes blink {
	0% {
		transform: scale(0);
		opacity: 0.4;
	}

	50% {
		transform: scale(2);
		opacity: 0.5;
	}

	75% {
		transform: scale(3);
		opacity: 0.3;
	}

	100% {
		transform: scale(4);
		opacity: 0;
	}
}

#location .box {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: absolute;
	bottom: 0;
	right: 0;
}

#location .box .map-icon {
	background-image: url("../images/costa-mesa/location.svg");
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-flex;
	margin-left: 20px;
	transition: 0.5s ease;
	margin-right: 10px;
	filter: brightness(0) saturate(100%) invert(31%) sepia(16%) saturate(7074%)
		hue-rotate(206deg) brightness(98%) contrast(98%);
}

#location .box .text {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	width: 100%;
}

#location .box h6 {
	color: #033d5a;
	font-family: var(--hel);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	width: 50%;
}

#location .box img {
	width: 183px;
	height: 135px;
	border-radius: 1rem;
}

.hospitalMri {
	margin-top: 30px;
}

.faq {
	margin-top: var(--section);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 800px;
}

.faq .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 200px;
}

.faq .accordionItem {
	float: left;
	display: block;
	width: 100%;
	box-sizing: border-box;
}

.faq .accordionItem.close {
	margin-top: 40px;
	border-bottom: 1px solid var(--border-secondary);
}

.faq .accordionItem.open {
	margin-top: 0px;
	padding-top: 40px;
	border-bottom: 1px solid transparent;
}

.faq .accordionItem .acc-head:focus,
.faq .accordionItem .acc-head:active {
	outline: none;
	background-color: transparent;
	box-shadow: none;
}

.faq .acc-head {
	background-color: #fff;
	border: transparent;
	cursor: pointer;
	color: #033d5a;
	font-family: var(--hel);
	font-size: 26px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
	text-transform: capitalize;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 32px;
	transition: border 0.5s ease;
	user-select: none;
}

.faq .accordionItemContent p {
	color: var(--text);
	font-family: Helvetica;
	font-size: var(--para-sm);
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
}

.faq .accordionItemContent ul{
	list-style:disc;
	display:flex;
	flex-direction:column;
	gap:10px;
	margin-top:14px;
}

.faq .close .accordionItemContent p {
	height: 0;
}

.faq .open .accordionItemContent p {
	width: 80%;
}

.faq .close .accordionItemContent {
	height: 0;
	opacity: 0;
	float: left;
	display: block;
	background-color: #fff;
	transition: 0.2s ease;
	padding: 0px;
	margin: 0px;
}

.faq .open .accordionItemContent {
	padding-top: 24px;
	padding-bottom: 32px;
	background-color: #fff;
	border-bottom: 2px solid var(--border-secondary);
	width: 100%;
	display: block;
	box-sizing: border-box;
	height: max-content;
	opacity: 1;
	transition: 0.2s ease;
}

.faq .open .acc-head {
	margin: 0px;
	padding: 0;
	background-color: transparent;
	border: 2px solid transparent;

	color: #033d5a;
	font-family: var(--hel);
	font-weight: 400;
	line-height: 140%;
	text-transform: capitalize;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.faq .open .acc-head .toggle-icon {
	position: relative;
	background-color: #e9f6ff;
	width: 36px;
	height: 36px;
	border-radius: 6px;
	transition: 0.3s ease;
}

.faq .toggle-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 20px;
	transition: 0.3s ease;
}

.faq .close .acc-head .toggle-icon::before {
	background-image: url("../images/costa-mesa/plus.svg");
}

.faq .open .acc-head .toggle-icon::before {
	background-image: url("../images/costa-mesa/minus.svg");
}

.faq .close .acc-head .toggle-icon {
	position: relative;
	background-color: transparent;
	border: 2px solid var(--border-secondary);
	width: 36px;
	height: 36px;
	border-radius: 6px;
}

.faq h2.head {
	font-size: var(--head);
	color: #033d5a;
	font-weight: 700;
	line-height: 140%;
	margin-bottom: 30px;
}

.faq .faqImage {
	margin-bottom: 40px;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	object-fit: cover;
}

.faq .right {
	display: flex;
	flex-direction: column;
}

.faq_right{
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
}

.faq .right .para {
	color: #033d5a;
	font-family: var(--hel);
	font-size: var(--para);
	font-weight: 500;
	line-height: 180%;
	margin-bottom: 28px;
	width: 75%;
}

.faq .container .right .btn-light-blue {
	border: 1px solid var(--button);
	background-color: transparent;
	border-radius: 50px;
	text-decoration: none;
	color: #224ce0;
	font-size: var(--para);
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s ease;
	width: max-content;
}

.faq .container .right .btn-light-blue:hover {
	background-color: var(--text);
	color: #fff;
	border-color: var(--text);
}

.faq .container .right .btn-light-blue:hover .call-icon {
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(136%)
		hue-rotate(62deg) brightness(112%) contrast(100%);
}

.faq .container .right .btn-light-blue .call-icon {
	background-image: url("../images/costa-mesa/call-arrow.svg");
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-flex;
	margin-left: 20px;
	transition: 0.5s ease;
}

.footer {
	background: #033d5a;
	margin-top: var(--section);
	padding-top: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.footer .container {
	width: 100%;
}

.footer .container .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 36px;
	margin-bottom: 36px;
	border-bottom: 1px solid var(--border-secondary);
	width: 100%;
}

.footer .container .top h6 {
	color: #fff;
	font-family: var(--hel);
	font-size: 26px;
	font-weight: 400;
	line-height: 140%;
	width: 45%;
}

.footer .container .bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}

.footer .container .bottom .left {
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
	width: 50%;
	gap: 60px;
}

.footer .container .bottom .left p {
	color: #fff;
	font-family: var(--hel-b);
	font-size: var(--para);
	font-weight: 700;
	line-height: 140%;
	margin-bottom: 10px;
}

.footer .container .bottom .left a {
	color: #fff;
	font-family: var(--hel);
	font-size: var(--para);
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	text-decoration: none;
}

.footer .container .bottom .right {
	width: 50%;
	gap: 25px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.footer .btn-blue:hover {
	background-color: #fff;
	color: var(--text);
}

.footer .btn-blue:hover .calendar-icon {
	background-image: url("../images/costa-mesa/calendar.svg");
	transition: 0.5s ease;
	filter: brightness(0) saturate(100%) invert(31%) sepia(16%) saturate(7074%)
		hue-rotate(206deg) brightness(98%) contrast(98%);
}

.footer .container .bottom .right .social-icons {
	width: max-content;
	gap: 20px;
	display: inline-flex;
}

.footer .container .bottom .right .icon {
	width: 24px;
	height: 24px;
	display: inline-flex;
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(136%)
		hue-rotate(62deg) brightness(112%) contrast(100%);
	background-repeat: no-repeat;
	transition: 0.2s ease;
}

.footer .container .bottom .right .icon:hover {
	width: 24px;
	height: 24px;
	filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(3548%)
		hue-rotate(227deg) brightness(89%) contrast(97%);
}

.footer .container .bottom .right .facebook {
	background-image: url("../images/costa-mesa/facebook.svg");
	background-position: center;
	background-size: contain;
}

.footer .container .bottom .right .linkedin {
	background-image: url("../images/costa-mesa/linkedin.svg");
	background-position: center;
	background-size: contain;
}

.footer .container .bottom .right .twitter {
	background-image: url("../images/costa-mesa/twitter.svg");
	background-position: center;
	background-size: contain;
}

.footer .container .bottom .right .youtube {
	background-image: url("../images/costa-mesa/youtube.svg");
	background-position: center;
	background-size: contain;
}

.footer .container .bottom .right .instagram {
	background-image: url("../images/costa-mesa/insta.svg");
	background-position: center;
	background-size: contain;
}

.footerLogo {
	margin-bottom: -125px;
	width: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1600px) {
	:root {
		--col-6: 50%;
		--h2: 38px;
		--head: 40px;
		--para: 16px;
		--para-sm: 16px;
		--section: 80px;
		--gap: 60px;
	}

	.about .container .left h2 {
		width: 85%;
	}

	.about .container .left .para {
		width: 80%;
	}

	.about .container .left .about-list li p {
		width: max-content;
	}

	#location .right::before {
		top: 12%;
		right: 32%;
	}

	#location .right::after {
		top: 10.8%;
		right: 31%;
	}

	.faq .acc-head {
		padding-bottom: 10px;
	}

	#location .head {
		width: 90%;
	}

	.hospital .container .head {
		width: 100%;
	}

	.hospitalMri {
		width: 100%;
		height: 50%;
		object-fit: cover;
	}

	.hero .container .herohead {
		width: 100%;
	}
}

@media screen and (max-width: 1440px) {
	:root {
		--col-6: 50%;
		--h2: 40px;
		--head: 40px;
		--para: 16px;
		--para-sm: 16px;
		--section: 80px;
	}

	.faq .acc-head {
		font-size: 20px;
	}

	.faq .container .left {
		min-height: 800px;
	}

	#location .box h6 {
		width: 60%;
	}

	#location .right::before {
		top: 16%;
		right: 30%;
	}

	#location .right::after {
		top: 14.9%;
		right: 28.9%;
	}

	.whyUs .container .card .card-body .head {
		width: 100%;
	}

	.fecility-sec .bottom .tech-card .card-body .para {
		width: 105%;
	}

	.fecility-sec .bottom .tech-card .card-body::before {
		width: 40%;
	}

	.hospitalMri {
		width: 70%;
		height: 50%;
		object-fit: cover;
	}

	/* .about .container::before {
		content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		width: 60%;
		height: 100%;
		border-top-left-radius: 100%;
	} */

	.about .container .right img {
		width: 70%;
	}

	.whyUs .container .card .card-body {
		margin-left: 100px;
	}
}

@media screen and (max-width: 1366px) {
	.btn {
		padding: 13px 30px;
	}

	.navbar {
		margin-top: 30px;
	}

	.hero .right .rightImage {
		width: 460px;
	}

	.hero .container .herohead {
		width: 100%;
	}

	.about .container .left .para {
		width: 100%;
	}

	.about .container .left .about-list {
		gap: 30px;
	}

	.whyUs .container .card .card-body .head {
		font-size: 32px;
	}

	.footer .container .top h6 {
		width: 50%;
	}

	.fecility-sec .right .para {
		width: 90%;
	}
}

@media screen and (max-width: 1280px) {
	:root {
		--col-6: 50%;
		--h2: 38px;
		--head: 36px;
		--para: 16px;
		--para-sm: 16px;
		--section: 80px;
	}

	.fecility-sec .container .top .left .facility {
		width: 100%;
		height: 100%;
		border-radius: 1rem;
	}

	.fecility-sec .right h2 {
		width: 100%;
	}

	.text-wrap {
		text-wrap: nowrap;
	}

	.fecility-sec .bottom {
		margin-top: 80px;
	}

	.reviews .top {
		margin-bottom: 40px;
	}

	.reviews .h-Bar ul li {
		margin-right: 20px;
	}

	.about .container .left .btn-grp {
		gap: 10px;
	}

	.about::before {
		width: 52%;
	}

	.about .container .right img {
		width: 100%;
		left: 0;
	}

	.whyUs .container .card .card-body {
		margin-left: 80px;
	}

	.whyUs .container .card .card-body .para {
		width: 100%;
	}

	.whyUs .container .card .card-body .head {
		font-size: 28px;
	}

	.faq .container {
		gap: 120px;
	}

	.show-modal .swiper-zoom-container .body h4 {
		color: #fff;
		font-size: 30px;
		font-style: normal;
		font-weight: 700;
		line-height: 140%;
		width: 60%;
		text-align: left;
	}
	/* 
	.about .container .right img {
		width: 100%;
	} */

	.about .container .left .about-list {
		gap: 0;
		flex-direction: column;
		align-items: flex-start;
	}

	.about .container .left .btn-grp {
		gap: 20px;
		flex-direction: column;
		align-items: flex-start;
	}

	.btn-blue {
		width: 282px;
		justify-content: center;
	}
}

@media screen and (max-width: 1200px) {
	:root {
		--col-6: 50%;
		--h2: 32px;
		--head: 36px;
		--para: 16px;
		--para-sm: 16px;
		--section: 80px;
	}

	.modal-content {
		padding: 80px 20px 40px;
		overflow-y: auto;
		overflow-x: hidden;
	}

	.show-modal .swiper-zoom-container {
		max-height: 400px;
	}

	.modal-body {
		overflow-y: auto;
		overflow-x: hidden;
		height: auto;
	}
	.modal-body .right .gform_wrapper {
		overflow-y: visible;
		padding-right: 0 !important;
	}

	.modal-content::-webkit-scrollbar {
		width: 8px;
	}

	.modal-content::-webkit-scrollbar-thumb {
		background-color: var(--text);
		border-radius: 20px;
	}

	.about .container .left h4 {
		color: #033d5a;
		font-size: 22px;
		width: 90%;
	}

	.show-modal .modal-body {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px;
		width: 100%;
	}

	.show-modal .swiper-zoom-container > canvas,
	.show-modal .swiper-zoom-container > img,
	.show-modal .swiper-zoom-container > svg {
		max-width: 100%;
		height: 100%;
		object-fit: cover;
		width: 100%;
	}

	.show-modal .modal-body .left {
		display: none !important;
	}

	.show-modal .modal-body .left,
	.show-modal .modal-body .right {
		width: 100%;
	}

	.show-modal .modal-body .right .head h2 {
		font-size: 24px;
	}

	.show-modal .swiper-zoom-container {
		display: flex;
		justify-content: flex-start;
		position: relative;
		width: 100%;
	}

	.show-modal .swiper-zoom-container .body {
		position: absolute;
		bottom: 40px;
		left: 40px;
		width: fit-content;
	}

	.hero .right .rightImage {
		width: 100%;
		height: 100%;
		object-fit: contain;
		position: relative;
		bottom: -50px;
		right: 0;
		z-index: 100;
	}

	.hero .left .para-sm {
		width: 80%;
	}

	.hero {
		overflow: hidden;
	}

	#location .box h6 {
		width: 100%;
	}

	.navbar .container .col-6 .number .para {
		display: none;
	}

	.navbar .container .col-6 .number .callBtn {
		font-size: 20px;
	}

	.navbar .container .col-6 .location .para {
		font-size: var(--para);
		color: #fff;
		font-weight: 400;
		text-wrap: nowrap;
	}

	.fecility-sec .container .top {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 15%;
	}

	.fecility-sec .bottom .tech-card .card-body h3 {
		width: 90%;
	}

	.hospital .container .head,
	.hospital .container .head span {
		font-size: 40px;
	}

	.about .container .left .about-list {
		gap: 0;
		margin-left: 10px;
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 20px;
	}

	.about .container .left h2 {
		width: 100%;
	}

	.whyUs .container .card .card-head {
		position: relative;
	}


	.whyUs .container .card .card-head,
	.whyUs .container .card .card-body{
		grid-column: span 6 / span 6;
		margin-left: 0 !important;
	}

	.about .container .left .btn-grp {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 15px;
		flex-direction: column;
	}

	#location .right::after {
		top: 16.8%;
		right: 8.4%;
	}

	#location .right::before {
		top: 18%;
		right: 10%;
	}

	#location .box img {
		width: 150px;
		height: 100px;
	}

	.whyUs .container .card img {
		border-radius: 20px;
		width: 100%;
		height: 100%;
		min-width: 300px;
	}

	.footer {
		margin-top: 0;
	}

	#location .head {
		width: 100%;
	}

	.faq .container {
		gap: 80px;
	}

	.faq .acc-head {
		padding-bottom: 20px;
	}

	.footer .container .top h6 {
		font-size: 22px;
	}

	.faq .container .left {
		min-height: 650px;
	}
}

@media screen and (max-width: 980px) {
	:root {
		--col-6: 50%;
		--h2: 32px;
		--head: 28px;
		--para: 16px;
		--para-sm: 14px;
		--section: 80px;
	}

	.fecility-sec .bottom .tech-card .card-body h3 {
		color: #033d5a;
		font-size: 20px;
		font-weight: 400;
		line-height: 140%;
		margin-bottom: 14px;
	}

	.fecility-sec .right .sheild {
		width: 80px;
		height: 80px;
		margin-bottom: 10px;
	}

	.about .container .left h4 {
		font-size: 20px;
	}

	button:focus,
	button:active {
		outline: none;
		box-shadow: none;
		background-color: transparent;
	}

	.faq .accordionItem.close:focus,
	.faq .accordionItem.close:active,
	.faq .accordionItem.open:focus,
	.faq .accordionItem.open:active {
		outline: none;
		box-shadow: none;
		background-color: transparent;
	}

	.show-modal .modal-body .left,
	.show-modal .modal-body .right {
		height: fit-content !important;
	}

	#location .right::before,
	#location .right::after {
		display: none;
	}
}

@media screen and (max-width: 840px) {
	:root {
		--h2: 26px;
	}

	.btn-blue {
		width: 260px;
		justify-content: center;
	}

	.whyUs .container {
		background-position: 14rem 2rem;
	}

	.footer .container .bottom .left {
		display: flex;
		justify-content: flex-start;
		flex-direction: row;
		width: 50%;
		gap: 20px;
		flex-wrap: wrap;
	}

	.hero {
		height: 680px;
	}

	.about .container .left .about-list li {
		margin-bottom: 16px;
	}

	.about .container .left .about-list {
		margin-left: 0;
	}

	.hero::before,
	.hero::after {
		width: 50%;
		height: 50%;
	}

	.hero .right .rightImage {
		width: 100%;
		height: 100%;
		object-fit: contain;
		position: relative;
		bottom: 0px;
		right: 0;
		z-index: 100;
	}

	.footerLogo {
		margin-bottom: -30px;
		width: 100%;
		object-fit: cover;
	}

	#location .right {
		height: 500px;
	}

	#location .box img {
		width: 180px;
		height: 150px;
	}

	#location .box h6 {
		width: 55%;
		margin-right: 0;
	}

	#location .box {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 20px;
	}

	#location .box .text{
		justify-content: flex-end;
	}

	#location .box .text {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		text-align: right;
		width: 100%;
	}

	.faq .container .left {
		width: 100%;
		min-height: 500px;
	}

	.faq .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 40px;
		flex-direction: column;
	}

	.faq .right {
		display: flex;
		flex-direction: row;
		align-items: center;
		width: 100%;
		gap: 30px;
	}

	.fecility-sec .bottom {
		gap: 30px;
	}

	.fecility-sec {
		padding-top: 0;
	}

	.faq .faqImage {
		margin-bottom: 40px;
		width: 50%;
		height: 100%;
		object-fit: cover;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--col-6: 50%;
		--h2: 22px;
		--head: 28px;
		--para: 14px;
		--para-sm: 14px;
		--section: 60px;
	}

	.show-modal .swiper-zoom-container .body h4 {
		color: #fff;
		font-size: 30px;
		width: 60%;
	}

	.navbar .container .col-6 {
		width: 25%;
		display: flex;
		justify-content: flex-end;
	}

	.navbar .container .left img {
		width: 100%;
	}

	.navbar .container .col-6:last-child {
		width: 75%;
		display: flex;
		justify-content: flex-end;
		flex-direction: row;
		align-items: flex-end;
		gap: 20px;
	}

	.navbar .container .col-6 .location {
		width: var(--col-6);
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 0px;
		gap: 12px;
	}

	.navbar .container .col-6 .location {
		width: max-content;
	}

	.whyUs .container .card {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom:60px;
		text-align: left;
		gap: 24px;
	}

	.whyUs .container .card .card-body {
		margin-left: 0px;
		margin-top: 20px;
		width: 100%;
	}

	.whyUs .container .card .card-body .para {
		width: 100%;
		max-width: 540px;
	}

	.fecility-sec {
		padding-top: 0;
	}

	.fecility-sec::before {
		height: 25%;
	}

	.hero .right .rightImage {
		width: 100%;
		position: static;
		height: 100%;
	}

	.fecility-sec .container .top {
		gap: 60px;
	}

	.fecility-sec .right .para {
		margin-bottom: 24px;
	}

	.fecility-sec .right h2 {
		margin-bottom: 15px;
	}

	.fecility-sec .bottom {
		flex-direction: column;
		gap: 50px;
	}

	.fecility-sec .bottom .tech-card .card-body::before {
		width: 10%;
	}

	.fecility-sec .bottom .tech-card .card-body .para {
		width: 80%;
	}

	.about .container {
		gap: 60px;
		flex-direction: column-reverse;
	}
	.container .col-6.left,
	.col-6.right {
		width: 100%;
	}
	.about .container .right {
		justify-content: center;
	}
	.about .container .right img {
		width: 50%;
	}

	.whyUs .container .card img {
		width: 100%;
		max-width: 540px;
	}
	.about::before {
		height: 50%;
		top: 0;
		right: 0;
		width: 100%;
	}

	.whyUs .container .card .card-head {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		padding-left: 0;
		width: 100%;
	}

	.whyUs .container .card .number{
		position: relative;
		top: auto;
		left: auto;
	}

	.left-box {
		display: flex;
		flex-wrap: nowrap;
		gap: 20px;
	}

	#location .details {
		margin-bottom: 22px;
	}

	.left-box {
		display: flex;
		flex-wrap: nowrap;
		gap: 0px;
		flex-direction: column;
	}

	.location-div .btn-blue {
		margin-top: 20px;
	}

	.faq .container .left {
		width: 100%;
		min-height: 500px;
	}

	.faq .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 40px;
		flex-direction: column;
	}

	.faq .right {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		width: 100%;
		gap: 30px;
	}

	.faq .faqImage {
		margin-bottom: 40px;
		width: 50%;
		height: 100%;
		object-fit: cover;
	}

	.footer .container .bottom .left {
		display: flex;
		justify-content: flex-start;
		flex-direction: row;
		width: 50%;
		gap: 20px;
	}

	.footer {
		height: 100%;
		padding-top: 8%;
	}

	.footer .container .bottom {
		margin-bottom: 0px;
	}

	.footerLogo {
		margin-bottom: -60px;
		width: 100%;
		object-fit: cover;
	}

	.hero::before {
		content: "";
		width: 50%;
		height: 50%;
		position: absolute;
		top: 0;
		left: 0;
		background-color: #835feb;
		filter: blur(140px);
		border-radius: 50%;
		transform: rotate(126deg);
		z-index: -1;
	}

	.hero::after {
		content: "";
		width: 50%;
		height: 50%;
		position: absolute;
		top: 0;
		right: 10%;
		background-color: #835feb;
		filter: blur(140px);
		border-radius: 50%;
		transform: rotate(126deg);
		z-index: -1;
	}
	.whyUs .container {
		background-position: center;
	}
}

@media screen and (max-width: 767px) {
	:root {
		--col-6: 100%;
		--h2: 30px;
		--head: 28px;
		--para: 14px;
		--para-sm: 14px;
		--section: 60px;
	}

	.show-modal .swiper-zoom-container {
		display: flex;
		justify-content: flex-start;
		position: relative;
		width: 100%;
	}

	.hero {
		overflow: visible;
	}

	.about .container::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		transform: translateY(0);
		width: 100%;
		height: 50%;
		border-top-left-radius: 100%;
	}

	.about .container .right {
		position: relative;
		bottom: -8px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#location .details {
		margin-bottom: 10px;
	}

	#location .box{
		justify-content: flex-start;
	}

	#location .box .text{
		justify-content: flex-start;
		text-align: left;
		width: fit-content;
	}

	.hero {
		height: 100%;
	}

	.hero .right {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.hero::after {
		display: none;
	}

	.hero .container {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 30px;
		margin-top: 180px;
	}

	.hero .right .rightImage {
		width: 80%;
		height: 80%;
		position: static;
		margin-bottom: -50px;
	}

	.fecility-sec .container .top .left .facility {
		width: 80%;
		height: 80%;
		object-fit: contain;
	}

	.fecility-sec .bottom {
		margin-top: 50px;
	}

	.hospital .container .head,
	.hospital .container .head span {
		font-size: 30px;
	}

	.whyUs .container .card .card-body .head {
		font-size: 28px;
		width: 60%;
	}

	.fecility-sec::before {
		height: 20%;
	}

	.left-box {
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
		flex-direction: column;
	}

	.location-div {
		flex-direction: column;
	}

	#location .right {
		height: 200px;
		width: 100%;
	}

	#location .box img {
		width: 170px;
		height: 120px;
	}

	#location .box {
		display: flex;
		flex-direction: row;
		align-items: center;
	}

	#location .box h6 {
		width: 56%;
		margin-right: 0;
	}

	#location .box .map-icon {
		margin-left: 0px;
	}

	.fecility-sec .container .top {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 60px;
		flex-direction: column-reverse;
	}

	.about .container .right img {
		width: 100%;
		max-height: 400px;
		object-fit: contain;
		object-position: center;
	}

	.about {
		background-position: top right;
		background-size: 400px;
	}

	.faq .faqImage {
		margin-bottom: 0;
	}

	.footer {
		margin-top: var(--section);
	}

	.faq .right {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		gap: 30px;
	}

	.footer .container .bottom .left {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		width: 50%;
		gap: 20px;
	}

	.about .container .left .btn-grp {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 20px;
		flex-direction: column;
	}

	.faq .faqImage {
		margin-bottom: 0px;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media screen and (max-width: 540px) {
	:root {
		--col-6: 100%;
		--h2: 26px;
		--head: 22px;
		--para: 14px;
		--para-sm: 14px;
		--section: 60px;
	}

	.modal-body .gform_fields .gfield {
		grid-column: span 12 / span 12 !important;
	}

	#location .right {
		height: 250px;
		width: 100%;
	}

	.location-div{
		padding: 40px 20px;
	}

	#location .box {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.faq .acc-head {
		font-size: 16px;
		text-align: left;
	}

	.navbar .container .col-6 .location {
		width: 100%;
	}

	.show-modal .swiper-zoom-container {
		display: flex;
		justify-content: flex-start;
		position: relative;
		width: 100%;
	}

	.show-modal .swiper-zoom-container .body h4 {
		color: #fff;
		font-size: 20px;
		width: 60%;
	}

	.reviews .h-Bar ul li .quote-icon {
		background-image: url("../images/costa-mesa/qoute.svg");
		color: #033d5a;
		width: 16px;
		height: 16px;
		background-size: contain;
		background-repeat: no-repeat;
		margin-left: 10px;
	}

	.navbar .container .col-6 {
		width: 50%;
	}

	.navbar .container .col-6:last-child {
		width: 50%;
	}

	.navbar .container .col-6 .location {
		display: none;
	}

	.navbar {
		margin-top: 0px;
	}

	.hero .container {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 30px;
		margin-top: 120px;
	}

	.faq .right {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 30px;
	}

	.faq h2.head {
		margin-bottom: 0px;
	}

	.footer {
		height: 100%;
		padding-top: 10%;
	}

	.fecility-sec .container .top .left .facility {
		width: 100%;
		height: 80%;
		object-fit: contain;
	}

	.location-div .btn-blue {
		margin-top: 20px;
	}

	.footer .container .top {
		align-items: flex-start;
		flex-direction: column;
		gap: 30px;
	}

	.footer .container .top h6 {
		width: 80%;
	}

	.footer .container .bottom {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 40px;
		flex-direction: column;
		gap: 20px;
	}

	.footer .container .bottom .right .icon {
		margin-left: 0;
	}

	.footer .container .bottom .right .social-icons {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 20px;
		width: 100%;
	}

	.footer .container .bottom .right .icon {
		width: 34px;
	}

	.hospital .container .head,
	.hospital .container .head span {
		font-size: 22px;
	}

	.hospital .container .para {
		font-size: var(--para);
		text-wrap: nowrap;
	}

	.whyUs .container .card .card-body .para {
		width: 100%;
	}

	.whyUs .container .card .card-body .head {
		font-size: 24px;
		width: 100%;
	}

	.footer .container .top h6 {
		width: 100%;
	}

	.fecility-sec .right h2 {
		color: #033d5a;
		font-size: var(--head);
		font-style: normal;
		font-weight: 700;
		line-height: 140%;
		width: 100%;
		margin-bottom: 16px;
	}

	.footerLogo {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 390px) {
	:root {
		--col-6: 100%;
		--h2: 28px;
		--head: 22px;
		--para: 14px;
		--para-sm: 14px;
		--section: 40px;
	}

	.footer .container {
		width: 100%;
		margin-top: 24px;
	}

	.reviews .marquee .testi-logo {
		width: 40px;
		height: 40px;
	}

	.hero .container {
		margin-top: 100px;
	}

	.fecility-sec {
		padding-top: 0;
		margin-top: var(--section);
	}

	.navbar .container .col-6 .number .callBtn {
		font-size: 18px;
	}

	.hero .left .para-sm {
		margin-bottom: 30px;
		width: 100%;
	}

	.fecility-sec .right .para {
		margin-bottom: 30px;
	}

	.icon-mid {
		width: 22px;
		height: 22px;
	}

	.reviews .reviews-card .star {
		margin: 0 5px 0 10px;
		width: 16px;
		height: 16px;
	}

	.reviews .top {
		margin-bottom: 20px;
	}

	.about .container {
		gap: 40px;
		flex-direction: column-reverse;
	}

	.show-modal .swiper-zoom-container .body {
		position: absolute;
		bottom: 8%;
		left: 30px;
		width: max-content;
	}

	.show-modal .swiper-zoom-container .body h4 {
		color: #fff;
		font-size: 16px;
		width: 60%;
	}
}
