/* Global Css */
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:active,
:hover,
:focus {
	outline: 0 !important;
	outline-offset: 0;
}

a,
a:hover {
	text-decoration: none;
}

b,
strong {
	font-weight: 600 !important;
}

a:hover {
	/* color: var(--primary-color) !important; */
}

ul,
ol {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: auto !important;
}

body {
	font-family: 'Poppins', system-ui !important;
	font-weight: 400;
	font-style: normal;
	font-size: 100% !important;
	line-height: 1.5 !important;
	background-color: #fff !important;
}

/* Tag Css */

h1 {
	font-family: 'Poppins', system-ui !important;
	font-size: 3rem;
	color: #2b2c2d !important;
}

h2 {
	font-family: 'Poppins', system-ui !important;
	font-weight: 600;
	font-size: 2.25rem;
	text-transform: capitalize;
	color: #2b2c2d !important;
	margin-bottom: 0px !important;
}

h3 {
	font-family: 'Poppins', system-ui !important;
	margin-bottom: 0px !important;
}

h4 {
	font-family: 'Poppins', system-ui !important;
	text-transform: capitalize;
	font-size: 18px;
	font-weight: 800;
}

h5 {
	font-family: 'Poppins', system-ui !important;
	text-transform: capitalize;
	font-size: 1rem;
	font-weight: 600;
}

h6 {
	font-family: 'Poppins', system-ui !important;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0 !important;
}

p {
	font-family: 'Poppins', system-ui !important;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0 !important;
}

.para-text {
	font-size: 16px;
}

.gap-1 {
	gap: 48px;
}

/* ----------------- Common Component Css END ----------------- */

.main-heading {
	font-size: 30px;
	font-weight: 600;
	text-transform: none;
	color: #2b2c2d !important;
	margin: 0;
	line-height: 1.5;
	letter-spacing: 0.03em;

}

/* Button Css */
.main-btn {
	padding: 14px;
	min-width: 188px;
	/* background-color: #e66d70 !important; */
	background-color: #CB4350 !important;
	color: #fff !important;
	border-radius: 4px !important;
	min-height: 50px;
	height: 50px;
	font-weight: 600 !important;
	text-align: center;
	position: relative;
	text-decoration: none;
	text-transform: capitalize;
	overflow: hidden;
	outline: none;
	border: none;
}

.main-btn.green {
	background-color: #018F83 !important;
}

.main-btn.btn-effect {
	transition: all 0.2s linear 0s;
}

.main-btn.btn-effect::before {
	content: url('../images/button-arrow.svg');
	font-size: 15px;
	position: absolute;
	/* display: flex;
	align-items: center;
	justify-content: center; */
	right: 16px;
	/* top: 0; */
	top: 50%;
	opacity: 0;
	/* height: 100%; */
	height: 30px;
	width: 30px;
	transition: all 0.2s linear 0s;
	transform: translateY(-50%);

}

.main-btn:hover {
	background-color: #cf4448 !important;
}

.main-btn.green:hover {
	background-color: #16a296 !important;
}

.btn-effect:hover {
	background-color: #cf4448 !important;
	text-indent: -20px;
}

.btn-effect:hover::before {
	opacity: 1;
	text-indent: 0px;
}

.main-hover-btn {
	display: inline-block;
	padding: 14px 24px;
	border: 1px solid #d6d6d6;
	border-radius: 4px;
	color: #2b2c2d;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	background-color: #fff;
	display: flex;
	align-items: center;
	gap: 16px;
	height: 50px;
}

.main-hover-btn:hover {
	border: 1px solid #d6d6d6;
	background-color: #018f83;
	color: #fff;
}

.main-hover-btn:hover svg {
	stroke: #fff;
}

/* leaf buttons */
.leaf-btn {
	background-color: #fff !important;
	border-radius: 4px 30px 30px 24px !important;
	border: 1px solid #2b2c2d !important;
	color: #2b2c2d !important;
	box-shadow: none !important;
	text-transform: capitalize !important;
}

.leaf-btn.active {
	font-weight: 500;
	/* border-color: #018f83 !important; */
	/* color: #018f83 !important; */
	border-color: #018478 !important;
	color: #018478 !important;
	box-shadow: none !important;
}

/* double circle heading */

.double-circle-heading {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
	color: #2b2c2d;
	position: relative;
	/* width: max-content;
	display: inline-block; */
	z-index: 1;
}

.double-circle-heading::before {
	content: url('../images/double-circle.svg');
	position: absolute;
	display: inline-block;
	width: 82px;
	height: 100%;
	left: -11px;
	top: -24px;
	z-index: -1;
}

/* logo with bg circles */

.circle-logo {
	position: relative;
	display: inline-block;
	padding-left: 3px;
}

.circle-logo::before {
	content: '';
	position: absolute;
	display: inline-block;
	width: 71px;
	height: 71px;
	border-radius: 50%;
	background-color: #018f831a;
	left: -50%;
	top: -50%;
	transform: translate(25%, 25%);
}

.circle-logo .circle-icon {
	width: 80px;
	height: 80px;
}

/* content list */

.content-list {
	margin-top: 12px;
	list-style: none;
}

.content-list li {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: #2b2c2d;
}

.content-list li span {
	font-weight: 500;
}

.content-list li:not(:last-child) {
	margin-bottom: 8px;
}

.content-list li::before {
	display: inline-block;
	content: url('../images/list-check-icon.svg');
	width: 20px;
	height: 20px;
	position: absolute;
	/* top: 50%; */
	top: 12px;
	left: -32px;
	transform: translateY(-50%);
}

/* ----------------- Common Component Css END ----------------- */

/* ----------------- Conatiner Css END ----------------- */

.main-container {
	padding: 60px 0 !important;
}

/* ----------------- Navbar Css ----------------- */
.studio-navbar {
	box-shadow: 0px 4px 4px 0px #0000000d;
	z-index: 9999;
	background-color: #fff;
}

.studio-navbar .nav-container {
	/* padding: 15px 80px; */
	padding: 15px 0;
	max-width: 1280px;
}

.studio-navbar .nav-container .navbar-nav>li>a {
	padding-left: 0px;
	padding-right: 0px;
}

.nav-height {
	display: block;
	height: 80px;
}

/* .navbar-nav {
	gap: 32px;
	margin-left: -20%;
}

.navbar-nav .nav-link {
	color: #2b2c2d !important;
	font-weight: 400;
}

.navbar-nav .nav-link.active {
	color: #018f83 !important;
	font-weight: 600;
	border-bottom: 1px solid #018f83;
} */

.nav-menu-container {
	margin-left: -20%;
}

.nav-menu-container ul {
	list-style: none;
	display: flex;
	/* align-items: center; */
	gap: 32px;
	margin-bottom: 0;
}

.nav-menu-container ul li a {
	color: #2b2c2d !important;
	font-weight: 400;
	padding: 2px 0;
	text-decoration: none;
	white-space: nowrap;
}

.nav-menu-container ul ul.sub-menu li a {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0;
}

/* .nav-menu-container ul li.current_page_item a {
	
	color: #018478 !important;
	font-weight: 600;
	
	border-bottom: 2px solid #018478 !important;
} */

/*  Style only top-level active menu item */
.nav-menu-container ul>li.current_page_item>a {
	color: #018478 !important;
	font-weight: 600;
	border-bottom: 2px solid #018478 !important;
}



/* follow us css */

.follow-us {
	position: fixed;
	top: 185px;
	left: 30px;
	z-index: 90;
}

.follow-us::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 316px;
	background-color: #fff;
	top: -34px;
	left: 17px;
	/* transform: translateX(-50%); */
	border-radius: 40px;
}

.footer-follow-us .follow-us::before {
	content: none;
}

.follow-us-text {
	position: relative;
	transform: rotate(-90deg);
}

.follow-us-text::after {
	content: '';
	position: absolute;
	width: 28px;
	height: 1px;
	background-color: #5c5c5c;
	left: -44px;
	top: 50%;
}

.follow-us-text p {
	color: #5c5c5c;
	font-weight: 500;
}

.follow-tooltip .tooltip-arrow {
	visibility: hidden;
}

.follow-tooltip .tooltip-inner {
	background-color: #322f35;
}

.follow-link {
	display: inline-block;
	position: relative;
	cursor: pointer;
	width: 20px;
	height: 20px;
}

.follow-link:nth-child(1)::before {
	display: inline-block;
	content: url('../images/linkedin-gray.svg');
	width: 100%;
	height: 100%;
}

.follow-link:hover:nth-child(1)::before {
	content: url('../images/linkedin-color.svg');
}

.follow-link:nth-child(2)::before {
	display: inline-block;
	content: url('../images/dribble-gray.svg');
	width: 100%;
	height: 100%;
}

.follow-link:hover:nth-child(2)::before {
	content: url('../images/dribble-color.svg');
}

.follow-link:nth-child(3)::before {
	display: inline-block;
	content: url('../images/facebook-gray.svg');
	width: 100%;
	height: 100%;
}

.follow-link:hover:nth-child(3)::before {
	content: url('../images/facebook-color.svg');
}

.follow-link:nth-child(4)::before {
	display: inline-block;
	content: url('../images/behance-gray.svg');
	width: 100%;
	height: 100%;
}

.follow-link:hover:nth-child(4)::before {
	content: url('../images/behance-color.svg');
}

.follow-link:nth-child(5)::before {
	display: inline-block;
	content: url('../images/youtube-gray.svg');
	width: 100%;
	height: 100%;
}

.follow-link:hover:nth-child(5)::before {
	content: url('../images/youtube-color.svg');
}

.follow-link:nth-child(6)::before {
	display: inline-block;
	content: url('../images/instragram-gray.svg');
	width: 100%;
	height: 100%;
}

.follow-link:hover:nth-child(6)::before {
	content: url('../images/instagram-color.svg');
}

.hr-border {
	display: none;
}

.footer-follow-us .follow-us {
	position: static;
	display: block !important;
}

/* connect with us - form and inputs css */

.connect-form-section {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 16px;
}

.connect-form-section h2 .red {
	font-size: 48px;
	color: #e66d70;
	font-weight: inherit;
}

.connect-box {
	width: 100%;
	padding: 32px 56px;
	background: #fff;
	box-shadow: 0px 1px 12.6px 1px #00000026;
	border-radius: 4px;
}

.connect-box::before {
	content: '';
	display: inline-block;
	position: absolute;
	background: url('./../images/form-bg.webp');
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: translate(-90%, -20%);
	z-index: -1;
}

.oodles-label {
	font-size: 14px;
	font-weight: 400;
	color: #0f0f0f;
}

.oodles-input {
	border: 0.5px solid #9ba7b6 !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	color: #0f0f0f !important;
	border-radius: 4px !important;
	height: 42px;
}

.oodles-input::placeholder {
	font-size: 14px !important;
	font-weight: 400 !important;
	color: #5c5c5c !important;
}

.oodles-textArea {
	height: 120px !important;
	/* border: none !important; */
	/* box-shadow: none !important; */
	/* border-radius: 0 !important; */
	border-radius: 4px !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	color: #0f0f0f !important;
	/* border-bottom: 0.5px solid #9ba7b6 !important; */
	resize: none;
}

.form-floating>label {
	font-size: 14px !important;
	font-weight: 400 !important;
	color: #5c5c5c !important;
}

.upload-doc-box {
	width: 100%;
	min-height: 86px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #f2f2f7;
	border: 0.5px solid #d4d4d4;
	border-radius: 4px;
	padding: 4px;
}

.upload-doc-box p {
	font-size: 14px;
	color: #000716;
}

.upload-doc-box~p {
	font-size: 12px;
	font-weight: 400;
	color: #4f4f4f;
}

.upload-doc-box~p span {
	color: #018f83;
}

.upload-doc-box~p a {
	/* color: #018f83; */
	color: #018478;
	text-decoration: none;
	font-weight: 600;
}

.appended_files span {
	display: flex;
	align-items: center;
	gap: 4px;
	width: fit-content;
}

.custom_contact_file_remove {
	display: inline-block;
	width: 16px;
	height: 16px;
	min-width: 16px;
	min-height: 16px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-trash"><polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path></svg>');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.rotating-loader {
	animation: rotate 3s linear infinite;
}

.g-recaptcha.g-error {
	position: relative;
	transition: all 0.2s ease;
}

.g-recaptcha.g-error::before {
	content: 'Please verify that you are not a robot!';
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px;
	height: 38px;
	background: #fae2e2;
	box-shadow: 0px 4px 4px 0px #00000040;
	font-size: 12px;
	font-weight: 400;
	color: #b3171a;
}

.g-recaptcha.g-error::after {
	content: '';
	position: absolute;
	width: 0px;
	height: 0px;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-top: 9px solid #fae2e2;
	left: 50%;
	bottom: 82px;
	transform: translateX(-50%);
}

@keyframes rotate {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.was-validated .invalid-feedback {
	font-size: 12px !important;
	font-weight: 400;
	color: #b3171a !important;
}

.was-validated .required {
	border: 1px solid #e66d70 !important;
	background: #e66d701a !important;
}

/* ---- footer css ---- */
footer {
	background: #fafafa;
}

.footer-studio-info {
	display: flex;
	/* flex-direction: column; */
	/* gap: 16px; */
}

.footer-studio-info img {
	width: 360px;
	height: auto;
}

.footer-studio-info p {
	font-size: 14px;
	font-weight: 400;
	color: #4f4f4f;
}

.footer-follow-us .follow-us {
	position: static;
}

.footer-follow-us .follow-us div {
	flex-direction: row !important;
	gap: 16px !important;
}

.footer-follow-us .follow-us-text {
	transform: rotate(0);
}

.footer-follow-us .follow-us-text~div {
	gap: 8px !important;
}

.footer-follow-us .hr-border {
	display: inline-block;
	width: 28px;
	height: 1px;
	background-color: #5c5c5c;
}

.footer-follow-us .follow-us-text::after {
	display: none !important;
	content: '';
	position: absolute;
	width: 40px;
	height: 316px;
	background-color: #fff;
	top: -34px;
	left: 17px;
	/* transform: translateX(-50%); */
	border-radius: 40px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-column h2 {
	font-size: 16px;
	font-weight: 500;
	/* color: #018f83 !important; */
	color: #018478 !important;
}

.footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	column-gap: 32px;
	row-gap: 8px;
}

/* 
.footer-column ul li:not(:last-child) {
	margin-bottom: 12px;
} */

.footer-column ul li a {
	font-size: 16px;
	font-weight: 400;
	color: #5c5c5c;
	text-decoration: none;
}

.footer-column ul li a:hover {
	color: #018f83;
}

.footer-bottom {
	background-color: #fff;
	border-top: 1px solid #d9d9d9;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.footer-bottom h3 {
	font-size: 14px;
	color: #5c5c5c;
	font-weight: 400;
}

.footer-bottom h3 a {
	font-size: 14px;
	/* color: #018f83; */
	color: #018478;
	font-weight: 500;
	text-decoration: none;
}

.certificate-logo {
	width: 80px !important;
	height: 80px !important;
}

/* headers css */

.blue-header {
	background: #f1faff;
	padding: 32px 0;
}

.blue-header .head {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.anchor {
	width: 130px;
	height: 1px;
	background-color: #5c5c5c;
	position: relative;
	display: inline-block;
}

.anchor::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	right: -9px;
	top: 50%;
	transform: translate(0, -50%);
	border-radius: 50%;
	background-color: #018f83;
}

/* search bar */

.search-icon-wrapper {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-sarch-bar {
	margin: 0 auto;
	max-width: 820px;
}

.site-sarch-bar .search-form {
	width: 100%;
	box-shadow: 0px 2px 4px 0px #a4a4a440;
	background: #fefefe;
	margin-top: -28px;
	border-radius: 4px;
}

.site-sarch-bar .search-form label {
	width: 100%;
}

.site-sarch-bar .search-form .search-field {
	display: inline-block;
	height: 56px;
	/* box-shadow: 0px 2px 4px 0px #a4a4a440;
	background: #fefefe; */
	/* margin-top: -28px; */
	border: none;
	width: 100%;
	/* padding: 16px 44px 16px 24px; */
	padding-right: 44px;
}

.site-sarch-bar .search-form .search-submit {
	display: none;
}

.back-breadcrumb {
	height: 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.back-breadcrumb a {
	text-decoration: none;
}

.back-breadcrumb p {
	font-size: 14px;
	font-weight: 600;
	color: #018f83;
	text-wrap: nowrap;
}

.back-breadcrumb svg {
	stroke: #018f83;
}

.voice-search-button.listening::before {
	position: absolute;
	display: inline-block;
	content: '';
	width: 40px;
	height: 40px;
	border-radius: 50%;
	animation: mic 0.5s ease infinite;
	background-color: #e66d70;
	opacity: 0.5;
	left: 2px;

}

.voice-search-button svg {
	fill: #5c5c5c;
	width: 24px;
}

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

	50% {
		transform: scale(1.1);
	}

	60% {
		transform: scale(1.1);
	}

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


.scrollup {
	position: fixed;
	background-color: #018F83;
	right: 1rem;
	bottom: -30%;
	display: inline-flex;
	padding: .5rem;
	border-radius: .25rem;
	z-index: 999;
	opacity: .8;
	transition: .4s;
	cursor: pointer;
}

.scrollup__icon {
	font-size: 1rem;
	color: #FFF;
}

/* .scrollup:hover{
	background-color: var(--first-color-alt);
	opacity: 1;
  } */

.show-scroll {
	bottom: 3rem;
}


/* post pagination */

.post-pagination {
	width: 100%;
	margin-top: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pagination-wrapper .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pagination-wrapper .page-numbers.next,
.pagination-wrapper .page-numbers.prev {
	width: unset;

}

.pagination-wrapper .page-numbers {
	width: 45px;
	height: 45px;
	min-width: 45px;
	min-height: 45px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	border-radius: 8px;
	text-decoration: none;
	color: #1E1E1E;

}

.pagination-wrapper .page-numbers.current {
	background: #018F83;
	color: #fff;
}

/* cookies alert */

.cookies-alert {
	background: #000000 !important;
	border: none;
	position: fixed !important;
	left: 0;
	right: 0;
	bottom: 0;
	bottom: -16px;
	z-index: 9;
	/* display: none; */
	border-radius: 0px !important;
	border: none !important;
	transition: 0.3s ease-in-out !important;
	opacity: 0.9;
}

.cookies_content {
	font-size: 12px;
	color: #ffffff;
	line-height: 1.5;
	margin-bottom: 0;
}

.cookies_content a {
	text-decoration: none;
}

.btn.cookies_btn {
	/* background: #018f83 !important; */
	background: #018478 !important;
	border-radius: 4px;
	color: #fff !important;
	padding: 4px 15px !important;
	transition: 0.3s ease-in-out !important;
	font-size: 10pt;
}

.form-banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 8px;
}

.form-banner h4 {
	text-transform: unset;
}

.form-banner-text {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.05rem;
	color: #018F83;
}

/* revamp */
.form-banner-section {
	background: #f1faff;
	padding: 20px 0;
}

.spiral-cursor::before {
	content: "";
	position: absolute;
	right: 40px;
	top: -150%;
	z-index: 1;

	width: 50px;
	height: 50px;
	background-image: url(../images/spiral.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


.menu-item {
	position: relative;
	/* border-bottom: 1px solid #018F83; */
}

.sub-menu {
	flex-direction: column;
	gap: 12px !important;
	position: absolute;
	top: 27px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
	border-radius: 8px !important;
	padding: 16px;
	max-width: 258px;
	z-index: 999;
	border: 1px solid #ddd;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*  */
.menu-item-has-children>a::after {
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background-image: url('data:image/svg+xml,<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.36816 7.5L10.3682 12.5L15.3682 7.5" stroke="%232B2C2D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
	vertical-align: middle;
}

.menu-item-has-children:hover>a::after {
	transform: rotate(180deg);
	/* background-image: url("data:image/svg+xml,<svg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.36816 7.5L10.3682 12.5L15.3682 7.5' stroke='%23018F83' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); */
}

.menu-item-has-children.current-menu-item>a::after,
.menu-item-has-children.current-menu-ancestor>a::after,
.menu-item-has-children.current_page_item>a::after {
	background-image: url("data:image/svg+xml,<svg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.36816 7.5L10.3682 12.5L15.3682 7.5' stroke='%23018F83' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}


.menu-item-has-children:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
}

.menu-item-10830 {
	border: none !important;
}

.sub-menu li {
	display: block;
	color: #333;
	text-decoration: none;
}

.sub-menu li a:hover {
	background-color: #f0f0f0;
}

/* industry */
.industry-types {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.industry-types .g-4,
.industry-types .gy-4 {
	--bs-gutter-y: 32px;
}


.industry-types-bottom,
.industry-types-top,
.industry-types-third {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin: 0 auto;
	/* max-width: calc(100% - 128px); */
}


.industry-card {
	width: 100%;
	height: 100%;
	padding: 24px;
	border-radius: 16px;
	border: 1.5px solid #F2F9FF;
	display: flex;
	align-items: center;
	gap: 24px;
	background-color: #FCFFFF;
}

.industry-types .subtitle {
	color: #2B2C2D;
}

.section-gap {
	gap: 48px;
}

.video-frame p {
	height: 100%;
}

.video-frame iframe {
	height: 100%;
	min-height: 350px;
	width: 100%;
}

.text-gray-1 {
	color: #5C5C5C !important;
}

.text-black-1{
	color: #2B2C2D !important;
}

.green-text {
	font-weight: 600;
	color: #018F83;
	text-decoration: none;
}

.green-bg-1{
	background: #E9FAF8;
}

.blue-header .texts{
    text-transform: none;
}

@media (min-width: 1400px) {
	.main-container {
		max-width: 1180px !important;
	}

	.spiral-cursor::before {
		width: 200px;
		height: 114px;
	}
}

@media (max-width: 1400px) {

	.spiral-cursor::before {
		width: 200px;
		height: 114px;
	}

	/* .industry-types {
		flex-direction: row;
	} */

	.industry-types-top,
	.industry-types-bottom {
		/* flex-direction: column; */
		flex-grow: 1;
		width: 100%;
	}

}


@media (max-width: 1299px) {
	.studio-navbar .nav-container {
		padding: 15px 0;
		max-width: 100%;
		margin: 0 20px;
	}

	.follow-us {
		display: none;
	}

}


@media screen and (min-width: 1200px) {

	.studio-navbar .nav-container {
		padding: 15px 0;
		max-width: 1280px;
	}


	/* .hero-container,
	.reshape-container {
		max-width: 1283px;
	} */

	.scrollup {
		right: 3rem;
	}
}

/* Desktop Menu Dropdown - 3 Column Layout */
@media (min-width: 992px) {
	@media (min-width: 992px) {
		.menu-item-has-children>.sub-menu {
			position: absolute;
			top: calc(100% + 8px);
			left: 220%;
			transform: translateX(-50%);

			/* Layout - Changed to 3 columns with explicit rows */
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			grid-template-rows: auto auto auto auto auto auto auto;
			/* 7 rows: 1 header + 6 content rows */
			gap: 0 !important;
			grid-auto-flow: column;
			/* Fill by column instead of by row */

			/* Size */
			min-width: 750px;
			max-width: 750px;
			padding: 24px;

			/* Style */
			background-color: #fff;
			border-radius: 24px !important;
			border: 1px solid #E5E5E5;
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

			/* Hidden by default */
			opacity: 0;
			visibility: hidden;
			transition: opacity 0.3s ease, visibility 0.3s ease;
		}

		/* Add "Our Services" heading - spans all 3 columns */
		.menu-item-has-children>.sub-menu::before {
			content: 'Our Services';
			grid-column: 1 / -1;
			grid-row: 1;
			font-size: 18px;
			font-weight: 500;
			line-height: 1.4;
			letter-spacing: 0;
			color: #018F83;
			padding-bottom: 16px;
		}

		/* Submenu items - start from row 2 */
		.sub-menu li {
			list-style: none;
			padding: 0;
			margin: 0;
		}

		/* First column (items 1-6) */
		.sub-menu li:nth-child(1) {
			grid-column: 1;
			grid-row: 2;
		}

		.sub-menu li:nth-child(2) {
			grid-column: 1;
			grid-row: 3;
		}

		.sub-menu li:nth-child(3) {
			grid-column: 1;
			grid-row: 4;
		}

		.sub-menu li:nth-child(4) {
			grid-column: 1;
			grid-row: 5;
		}

		.sub-menu li:nth-child(5) {
			grid-column: 1;
			grid-row: 6;
		}

		.sub-menu li:nth-child(6) {
			grid-column: 1;
			grid-row: 7;
		}

		/* Second column (items 7-12) */
		.sub-menu li:nth-child(7) {
			grid-column: 2;
			grid-row: 2;
		}

		.sub-menu li:nth-child(8) {
			grid-column: 2;
			grid-row: 3;
		}

		.sub-menu li:nth-child(9) {
			grid-column: 2;
			grid-row: 4;
		}

		.sub-menu li:nth-child(10) {
			grid-column: 2;
			grid-row: 5;
		}

		.sub-menu li:nth-child(11) {
			grid-column: 2;
			grid-row: 6;
		}

		.sub-menu li:nth-child(12) {
			grid-column: 2;
			grid-row: 7;
		}

		/* Third column (items 13-16) */
		.sub-menu li:nth-child(13) {
			grid-column: 3;
			grid-row: 2;
		}

		.sub-menu li:nth-child(14) {
			grid-column: 3;
			grid-row: 3;
		}

		.sub-menu li:nth-child(15) {
			grid-column: 3;
			grid-row: 4;
		}

		.sub-menu li:nth-child(16) {
			grid-column: 3;
			grid-row: 5;
		}

		/* Add vertical separators between columns */
		.sub-menu li:nth-child(n+1):nth-child(-n+6) {
			border-right: 1px solid #0000001A !important;
			padding-right: 16px;
			margin-right: 16px;
		}

		.sub-menu li:nth-child(n+7):nth-child(-n+12) {
			border-right: 1px solid #0000001A;
			padding-right: 16px;
			margin-right: 16px;
		}

		/* Submenu links */
		.sub-menu li a {
			display: block;
			padding: 8px !important;
			font-size: 14px;
			font-weight: 400;
			color: #2B2C2D;
			transition: all 0.2s ease;
			white-space: normal;
		}

		.sub-menu li a:hover {
			background-color: #F5F5F5;
			color: #018478 !important;
		}
	}
}

@media screen and (max-width: 1199px) {

	.connect-box::before {
		display: none;
		content: unset;
	}

	.connect-form-section {
		align-items: center;
		justify-content: center;
		gap: 16px;
	}

	.spiral-cursor::before {
		width: 120px;
		height: 114px;
	}

	.form-banner-section {
		padding: 20px;
	}
}

@media (max-width: 991px) {
	.nav-height {
		height: 70px;
	}

	.main-heading {
		font-size: 24px;
	}

	.double-circle-heading {
		font-size: 22px;
	}

	.blue-header br {
		display: none;
	}

	.site-sarch-bar {
		margin: 0 20px;
		max-width: 100%;
	}

	.studio-navbar .offcanvas-body {
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 24px;
	}

	.studio-navbar .offcanvas-body .nav-menu-container {
		width: 100%;
		margin-left: 0;
	}

	.navbar-toggler {
		outline: none !important;
		box-shadow: none !important;
	}

	.spiral-cursor::before {
		width: 115px;
		height: 115px;
	}

	/* nav mobile offcanvas start */
	.nav-mobile-menu li {
		display: flex;
		flex-direction: column;
		position: relative;
	}

	.nav-mobile-menu .menu-item-has-children>a::after {
		content: none;
	}

	.nav-mobile-menu .menu-item-has-children::after {
		content: '';
		display: inline-block;
		width: 22px;
		height: 22px;
		background-image: url('data:image/svg+xml,<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.36816 7.5L10.3682 12.5L15.3682 7.5" stroke="%232B2C2D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		transition: transform 0.3s ease;
		vertical-align: middle;
		position: absolute;
		right: 0;
	}

	.menu-item-has-children:hover>.sub-menu {
		opacity: 0;
		visibility: hidden;
	}

	.nav-mobile-menu .active::after {
		transform: rotate(180deg);
	}

	.menu-item-has-children.active .sub-menu {
		opacity: 1;
		visibility: visible;
		display: flex;
		background-color: #fff;
		border-radius: none !important;
		padding: 0;
		max-width: 100%;
		z-index: 999;
		border: none;
		box-shadow: none;
		padding-top: 12px;
		display: flex;
		flex-direction: column;
		gap: 12;
		padding-left: 12px;
	}

	.nav-mobile-menu .sub-menu {
		position: static;
		display: flex;
		flex-direction: column;
		transform: unset;
		display: none;

	}

	.nav-menu-container ul>li.current_page_item>a {
		width: max-content;
		border: none;

	}

	.nav-menu-container ul>li>a {
		width: max-content;
		font-size: 14px;
	}

	.nav-menu-container ul>li.current_page_item>a {
		color: #018478 !important;
		font-weight: 600;
	}

	.nav-menu-container ul>li.current_page_item>a {
		border-bottom: none;
	}

	/* nav mobile offcanvas end */
	.industry-types .subtitle {
		font-size: 18px;
	}

	.industry-card {
		padding: 18px;
		gap: 16px;
	}

	.industry-types-top,
	.industry-types-bottom {
		flex-direction: column;
	}

	.anchor {
		margin-bottom: 8px;
	}

	.section-gap {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.industry-types {
		flex-direction: column;
	}

	.last-column-title {
		display: none;
	}

	.footer-studio-info .gy-3 {
		--bs-gutter-y: 16px;
	}

	.footer-column ul {
		flex-direction: column;
	}

	.footer-column ul li a {
		font-size: 14px;
	}
}

@media screen and (max-width: 575px) {

	.para-text {
		font-size: 14px !important;
	}

	/* .container.main-container{
		margin-left: 20px;
		margin-right: 20px;
	} */

	.main-container {
		padding: 48px 0 !important;
	}

	.nav-pills.leaf-pills {
		flex-wrap: nowrap;
		overflow: auto;
		width: 100%;
		text-wrap: nowrap;
	}


	.connect-box {
		padding: 16px;
	}

	.main-container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.main-heading {
		font-size: 24px;
	}

	.blue-header {
		background: #f1faff;
		padding: 16px;
	}

	footer {
		overflow: hidden;
	}


	.studio-navbar .offcanvas {
		width: 80% !important;
	}

	.navbar-brand img {
		width: 90%;
	}

	.nav-menu-container ul {
		gap: 24px;
	}

	.connect-form-section h2 .red {
		font-size: 32px;
		color: #e66d70;
		font-weight: inherit;
	}

	.navbar-brand {
		margin-right: 0 !important;
	}

	.spiral-cursor::before {
		width: 80px;
		height: 80px;
	}

	.form-banner-text {
		font-size: 16px;
	}

	.video-frame iframe {
		min-height: 194px;
	}
	
}






.cursor {
	pointer-events: none;
	position: fixed;
	display: block;
	border-radius: 0;
	mix-blend-mode: difference;
	top: 0;
	left: 0;
	z-index: 9999999999999999;
}

.circle {
	height: 24px;
	width: 24px;
	border-radius: 24px;
	background-color: black;
	opacity: 0.5;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 99999999;
	/* so that it stays on top of all other elements */
}