* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #3894A1;
	--secondary: #2F404F;
	--tertiary: #DDDEDB;
	--body: #F0F1EE;
	--txtDark: #3b3b3b;
	--txtLight: #5f5f5f;
	--txtWhite: #ffffff;
	--txtWhiteLight: #ffffffe5;
	--header-height: 5.5rem;
	--siteWidth: 74rem;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 2rem;
	overflow-x: hidden;
}

body {
	background-color: var(--body);
	font-family: 'Poppins', sans-serif;
	max-width: 92rem;
	font-weight: 300;
	margin-inline: auto;
}

main {
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	user-select: none;
}


a,
button {
	-webkit-tap-highlight-color: transparent;
}

.ab-container {
	height: 100%;
	padding: 0 1rem;
	max-width: var(--siteWidth);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}



.sub-menu {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: calc(100% - .5rem);
    right: 0;
    z-index: 1000;
    list-style: none;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    font-weight: 400;
    border-radius: 1.1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 0 2.5rem #0000001e;
    display: flex;
    flex-direction: column;
}
.menu-item-has-children:hover .sub-menu{
    opacity: 1;
    visibility: visible;
}
.sub-menu a {
    color: var(--txtLight) !important;
}
.custom-logo-link .custom-logo {
    width: 100%;
}
.sub-menu li {
    padding: 0 !important;
    margin: 0 !important;
	line-height: 1rem;
}
.sub-menu li:not(:first-child) {
    margin-top: 1.5rem !important;
}

.home2 .ab-container p {
    line-height: 2.1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--txtLight);
    margin-top: 1rem;
}
footer .contact-details img {
    width: 100%;
    max-height: 2rem;
}
footer .contact-details p {
    line-height: 2.1rem;
    font-size: 1rem;
    font-weight: 400;
}
.wpcf7-submit {
    background-color: var(--primary) !important;
    color: var(--txtWhite) !important;
    text-decoration: none;
    border: none !important;
    outline: none;
    padding: 0.8rem 1.8rem !important;
    display: block;
    max-width: max-content;
    letter-spacing: 0.06rem;
    margin-top: 2rem !important;
}






/* ----------- Margin And Padding Utilities ------------- */
.d-none{
	display: none !important;
}
.mt-1 {
	margin-top: 1rem;
}

.mt-2 {
	margin-top: 2rem;
}

.mt-3 {
	margin-top: 3rem;
}

.mt-4 {
	margin-top: 4rem;
}

.mt-6 {
	margin-top: 6rem;
}

.mt-mb-4 {
	margin-top: 0rem;
}

.py-6 {
	padding-block: 6rem;
}

.my-6 {
	margin-block: 6rem;
}

.my-4 {
	margin-block: 4rem;
}

.py-4 {
	padding-block: 4rem;
}

.py-3 {
	padding-block: 3rem;
}

.pt-4 {
	padding-top: 4rem;
}

.my-8 {
	margin-block: 8rem;
}

.py-8 {
	padding-block: 8rem;
}

.pd-3 {
	padding: 3rem;
}

.center {
	margin-inline: auto;
}


/* Spacer */
.sp-top {
	margin-top: calc(1rem * var(--spacer));
}

.sp-bottom {
	margin-bottom: calc(1rem * var(--spacer));
}


@media screen and (min-width:700px) {
	.mt-lg-4 {
		margin-top: 4rem;
	}
}

/* ---------- Grid Utilities ----------- */
.wpcf7-not-valid-tip {
    color: #ffa1a1 !important;
    padding: 6px 0 0;
}
.wpcf7 form .wpcf7-response-output {
    border: 0;
    margin: 0;
    color: #ffa1a1 !important;
    padding: 0;
}
.home5 p{
	    line-height: 2.1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--txtLight);
}

.custom-logo-link {
    display: flex;
	
}
.two-column {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
	gap: 4rem;
	align-items: center;
	justify-content: space-between;
}

.three-column {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.flex-13 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 3rem;
	/* border: 2px solid red; */
}

.flex-13 .col1 {
	/* border: 1px solid green; */
	flex: 1 1 20rem;
	max-width: 100%;
}

.flex-13 .col2 {
	max-width: 100%;
	/* border: 1px solid green; */
	flex: 3 1 30rem;
}

.justify-self-left {
	justify-self: flex-start;
}

.justify-self-right {
	justify-self: flex-end;
}

.flex-gap {
	gap: clamp(7rem, 20%, 3rem);
}

.one-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

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

/* ----------- Text Utilities ----------- */


.text-body {
	line-height: 2.1rem;
	font-size: 1rem;
	font-weight: 400;
	color: var(--txtLight);
}

.text-white {
	color: var(--txtWhite);
}

.text-white-light {
	color: var(--txtWhiteLight);
}

.text-dark {
	color: var(--txtDark);
}

.text-light {
	color: var(--txtLight);
}

.text-heading1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 4rem;
}

.text-heading2 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3rem;
}

.text-heading3 {
	font-size: 1.6rem;
	line-height: 2.2rem;
	font-weight: 400;
}

.home1 .ab-container p {
	font-size: 1.3rem;
	line-height: 2.2rem;
	color: #fff;
	margin-top: 10px ;
	text-align: center;
}

.text-center {
	text-align: center;
	max-width: max-content;
	margin-inline: auto;
}

.text-bold {
	font-weight: 700;
}

.text-regular {
	font-weight: 700;
}

.p-max {
	max-width: 30rem;
}

.font-os {
	font-family: 'Oswald', sans-serif;
}


/* ---------- Color Utilities ---------- */

.color-primary {
	color: var(--primary);
}

.color-secondary {
	color: var(--secondary);
}

.color-tertiary {
	color: var(--tertiary);
}

.bg-primary {
	background-color: var(--primary);
}

.bg-white {
	background-color: #ffffff;
}

.bg-secondary {
	background-color: var(--secondary);
}

.bg-tertiary {
	background-color: var(--tertiary);
}


/* ------ Button Utilities -------- */

.btn {
	text-decoration: none;
	border: none;
	outline: none;
	padding: 0.8rem 1.8rem;
	display: block;
	max-width: max-content;
	letter-spacing: 0.06rem;
}

.btn-primary {
	/* border-radius: 2.5rem; */
	background-color: var(--primary);
	color: var(--txtWhite);
}


.sec-title {
	position: relative;
	margin-inline: auto;
}


/* .text-center.sec-title::after{
   left: 50%;
   transform: translateX(-50%);
} */

.sec-title::after {
	position: absolute;
	bottom: 50%;
	left: -5%;
	transform: translate(0, 50%);
	width: clamp(4rem, 10vw, 6rem);
	height: clamp(4rem, 10vw, 6rem);
	content: "";
	background-color: var(--tertiary);
	z-index: -1;
	border-radius: 50%;

}


.list-basic {
	line-height: 2.1rem;
	font-size: 1rem;
	font-weight: 400;
	margin-left: 1rem;
	color: var(--txtLight);
}


/* HEADER STARTS---------- */

.header-container {
	padding: 0 1rem;
	margin: 0 auto;
	max-width: var(--siteWidth);
	border-radius: 0 0 1.1rem 1.1rem
}

.ab-header {
	position: relative;
	z-index: 999;
	background-color: var(--secondary)
}


.home header {
	background-color: transparent
}
.service-template-default .post-content p {
    line-height: 2.1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--txtLight);
    margin-top: 2rem;
}
.service-template-default .post-content h3 {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 700;
    margin-top: 2rem;
}

.ab-header-wrapper {
	min-height: var(--header-height);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative
}

.ab-brand {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.5rem;
	color: var(--accent);
	font-weight: 700;
	text-decoration: none;
	gap: 1rem
}

.ab-brand img {
	display: block;
	max-height: 2rem;
}

.brand-line-1 {
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.1rem;
	color: var(--txtDark);
	padding-bottom: 0.2rem;
	border-bottom: 2px solid #ffffff40;
	display: none;
}

.brand-line-2 {
	padding-top: 0.2rem;
	text-align: center;
	font-family: 'Oswald', sans-serif;
	font-size: .7rem;
	font-weight: 400;
	line-height: 1rem;
	color: var(--txtLight);
	display: none;
}

.ab-nav-menu {
	list-style: none;
	line-height: var(--header-height)
}

.ab-nav-menu .menu-item {
	display: inline-block;
	margin-left: .5rem
}

.ab-nav-menu .menu-item a,
.ab-nav-menu .menu-item {
	font-size: .95rem;
	letter-spacing: .05rem;
	font-weight: 500;
	display: inline-block;
	text-decoration: none;
	color: var(--txtWhiteLight);
	opacity: 1;
	padding: 0 .5rem
}

.ab-nav-menu .menu-item:hover>a,
.ab-nav-menu .menu-item:hover {
	color: var(--txtWhite);
	font-weight: 700
}

.active a,
.active,
.transparent .active a,
.transparent .active {
	color: var(--txtWhite);
	opacity: 1;
	font-weight: 700
}

.has-dropdown {
	position: relative;
	cursor: pointer
}

.has-dropdown:hover .dropdown {
	opacity: 1;
	visibility: visible
}

.dropdown,
.transparent .dropdown {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	position: absolute;
	top: calc(100% - .5rem);
	right: 0;
	z-index: 1000;
	list-style: none;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	font-weight: 400;
	border-radius: 1.1rem;
	padding: 2rem 1.5rem;
	box-shadow: 0 0 2.5rem #0000001e
}

.dropdown li a {
	display: inline-block
}

.dropdown li:not(:first-child) {
	margin-top: 1.5rem
}

.transparent .brand-line-1 {
	color: var(--txtWhite)
}

.transparent .brand-line-2 {
	color: var(--txtWhiteLight)
}

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

	.transparent .ab-nav-menu .menu-item:hover>a,
	.transparent .ab-nav-menu .menu-item:hover {
		color: var(--txtWhite)
	}

	.transparent .ab-nav-menu .menu-item a,
	.transparent .ab-nav-menu .menu-item {
		color: var(--txtWhiteLight)
	}
}

.transparent .dropdown li,
.transparent .dropdown li a,
.dropdown li,
.dropdown li a {
	line-height: 1rem;
	color: var(--txtLight)
}

.dropdown li a:hover,
.dropdown li:hover {
	color: var(--txtDark)
}

.dropdown .active a {
	color: var(--txtDark);
	font-weight: 700
}

.menu {
	display: none
}

.scroll-down {
	position: sticky;
	top: 0;
	left: 0;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	z-index: 999
}

.scroll-up,
.transparent.scroll-up {
	box-shadow: 0 0 2rem #00000015;
	background-color: #fff;
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0);
	-webkit-transition: background-color .3s, -webkit-transform .3s ease-in-out;
	transition: background-color .3s, -webkit-transform .3s ease-in-out;
	-o-transition: background-color .3s, transform .3s ease-in-out;
	transition: background-color .3s, transform .3s ease-in-out;
	transition: background-color .3s, transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.transparent.scroll-up .ab-nav-menu .menu-item a,
.transparent.scroll-up .ab-nav-menu .menu-item {
	color: var(--txtLight)
}

.transparent.scroll-up .active a,
.transparent.scroll-up .active {
	color: var(--primary)
}

.transparent.scroll-up .brand-line-1 {
	color: var(--txtDark)
}

.transparent.scroll-up .brand-line-2 {
	color: var(--txtLight)
}

@media screen and (max-width: 900px) {
	* {
		--header-height: 3.75rem
	}

	.ab-nav-menu {
		display: none
	}

	.menu {
		display: block;
		background-color: transparent;
		border: none;
		cursor: pointer;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0;
		-webkit-transform: scale(.75);
		-ms-transform: scale(.75);
		transform: scale(.75);
		position: relative;
		overflow: hidden
	}

	.ab-header-wrapper {
		min-height: 4rem
	}

	.line {
		fill: none;
		stroke: var(--txtDark);
		stroke-width: 6;
		-webkit-transition: stroke-dasharray .6s cubic-bezier(.4, 0, .2, 1), stroke-dashoffset .6s cubic-bezier(.4, 0, .2, 1);
		-o-transition: stroke-dasharray .6s cubic-bezier(.4, 0, .2, 1), stroke-dashoffset .6s cubic-bezier(.4, 0, .2, 1);
		transition: stroke-dasharray .6s cubic-bezier(.4, 0, .2, 1), stroke-dashoffset .6s cubic-bezier(.4, 0, .2, 1)
	}

	.transparent .line {
		stroke: var(--txtWhite)
	}

	.transparent.scroll-up .line {
		stroke: var(--txtLight)
	}

	.line1 {
		stroke-dasharray: 60 207;
		stroke-width: 6
	}

	.line2 {
		stroke-dasharray: 60 60;
		stroke-width: 6
	}

	.line3 {
		stroke-dasharray: 60 207;
		stroke-width: 6
	}

	.opened .line1 {
		stroke-dasharray: 90 207;
		stroke-dashoffset: -134;
		stroke-width: 6
	}

	.opened .line2 {
		stroke-dasharray: 1 60;
		stroke-dashoffset: -30;
		stroke-width: 6
	}

	.opened .line3 {
		stroke-dasharray: 90 207;
		stroke-dashoffset: -134;
		stroke-width: 6
	}

	.brand-line-1 {
		font-size: .9rem
	}

	.brand-line-2 {
		font-size: .76rem
	}

	.ab-brand {
		font-size: 1.3rem
	}

	.ab-brand img {
		max-height: 2rem
	}

	.ab-nav-menu {
		margin-top: 1rem;
		background-color: var(--secondary);
		-webkit-box-shadow: 0 .5rem 1rem #00000011;
		box-shadow: 0 .5rem 1rem #0001;
		width: 100%;
		position: absolute;
		display: block;
		top: var(--header-height);
		right: 0rem;
		z-index: 2;
		padding: 1rem;
		border-radius: .5rem;
		visibility: hidden;
		opacity: 0;
		-webkit-transform: translateY(-3rem);
		-ms-transform: translateY(-3rem);
		transform: translateY(-3rem);
		-webkit-transition: opacity .25s, visibility 0ms linear .25s, -webkit-transform .25s ease-out;
		transition: opacity .25s, visibility 0ms linear .25s, -webkit-transform .25s ease-out;
		-o-transition: opacity .25s, transform .25s ease-out, visibility 0ms linear .25s;
		transition: opacity .25s, transform .25s ease-out, visibility 0ms linear .25s;
		transition: opacity .25s, transform .25s ease-out, visibility 0ms linear .25s, -webkit-transform .25s ease-out
	}

	.ab-nav-menu .menu-item {
		display: block;
		line-height: 2.5rem
	}

	.ab-nav-menu .menu-item a {
		font-size: 1rem;
		padding: 0
	}

	.header-container {
		width: 100%
	}

	.dropdown {
		max-width: 100%;
		border-radius: .5rem;
		background-color: #00000009;
		position: static;
		display: none;
		visibility: hidden;
		opacity: 0;
		-webkit-transition: opacity .25s linear, -webkit-transform .25s ease-out;
		transition: opacity .25s linear, -webkit-transform .25s ease-out;
		-o-transition: transform .25s ease-out, opacity .25s linear;
		transition: transform .25s ease-out, opacity .25s linear;
		transition: transform .25s ease-out, opacity .25s linear, -webkit-transform .25s ease-out;
		box-shadow: none
	}

	.dropdown li a {
		font-size: .8rem
	}

	.drop {
		display: block;
		visibility: visible;
		opacity: 1
	}

	.mobile {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		-webkit-transition-delay: 0ms;
		-o-transition-delay: 0ms;
		transition-delay: 0ms
	}

	.ab-brand img {
		max-height: 1.5rem
	}
}


/* Main Styles Starts------------ */


section {
	position: relative;
}

.home1 {
	position: relative;
	padding-top: var(--header-height);
	margin-top: calc(-1.05 * var(--header-height));
}

.home1>div {
	min-height: clamp(35rem, 90vh, 40rem);
}

.home1 .text-heading1 {
	margin-top: -2rem;
}

.full-bg {
	user-select: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: -0.1rem;
	left: 0;
	object-fit: cover;
	z-index: 0;
	mix-blend-mode: luminosity;
	opacity: 0.2;
}

.d-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.home2 .col1 {
	position: relative;
}


.home2 .col1::before {
	content: "";
	position: absolute;
	top: -5rem;
	right: 0;
	width: 100vw;
	height: 50%;
	background-color: var(--tertiary);
	/* border: 2px solid red; */
	z-index: -1;
}

.home2 .text-heading2 {
	position: relative;
	z-index: 2;
}


.bg-element-map {
	position: absolute;
	right: 0;
	top: 10%;
	width: clamp(15rem, 100vw, 40rem);
	opacity: 0.1;
}

.home3>.two-column {
	align-items: flex-start;
}

.home3 .text-heading2 {
	position: relative;
}

.home3 .text-heading2::before {
	content: "";
	width: 100vw;
	height: 2rem;
	position: absolute;
	top: 2rem;
	left: 0;
	background-color: var(--tertiary);
	z-index: -1;
}

.sec-title-left {
	position: relative;
}

.sec-title-left::before {
	content: "";
	width: 100vw;
	height: 2rem;
	position: absolute;
	top: 2rem;
	left: 0;
	background-color: var(--tertiary);
	z-index: -1;
}


.svs-item {
	text-decoration: none;
	display: block;
	padding: 1rem;
	background-color: #ffffff10;
	backdrop-filter: blur(0.5rem);
}

.svs-item img {
	max-width: 4rem;
	filter: invert(100%);
}

.home4 {
	isolation: isolate;
}

.bg-box {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	background: var(--secondary);
}

.home4 .full-bg {
	position: sticky;
	height: 100vh;
}


.home5 .text-heading2 {
	position: relative;
}

.home5 .text-heading2::before {
	content: "";
	width: 100vw;
	height: 2rem;
	position: absolute;
	top: 2rem;
	left: 0;
	background-color: var(--tertiary);
	z-index: -1;
}

.home6 .text-heading2,
.home8 .text-heading2 {
	position: relative;
}

.home6 .text-heading2::before,
.home8 .text-heading2::before {
	content: "";
	width: 100%;
	height: 2rem;
	position: absolute;
	top: 2rem;
	left: 0;
	background-color: var(--tertiary);
	z-index: -1;
}

.home6-item {
	background-color: #ffffff;
	position: relative;
	padding: 1rem;
	align-self: stretch;
	min-height: 14rem;
}

.home6-img {
	max-width: 30%;
	opacity: 0.06;
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	user-select: none;
}

.home7 .text-heading2 {
	position: relative;
}

.home7 .text-heading2::before {
	content: "";
	width: 100vw;
	height: 2rem;
	position: absolute;
	top: 2rem;
	left: 0;
	background-color: white;
	z-index: -1;
}



/* Conctact Form */

.contact2 {
	isolation: isolate;
	position: relative;
}

.contact-wrapper {
	width: 100%;
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
	align-items: flex-start;
	isolation: isolate;
	gap: 4rem;
	overflow: hidden;
}

.contact-form {
	height: 100%;
	position: relative;
	display: grid;
	align-items: center;
	gap: 2rem;
	order: 2;
}

.contact-form form p .label {
	margin-top: 2rem;
	max-width: 30rem;
}

.contact-form form p .label:first-of-type {
	margin-top: 0rem;
}


.contact-form label {
	display: block;
	color: var(--txtWhiteLight);
	font-size: 1rem;
	font-weight: 700;
}
.home4  .text-heading2 {
    z-index: 1;
    position: relative;
}

.home4 .bg-box {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    background: url(https://theindianthinktank.docstokes.com/wp-content/uploads/2024/07/services.webp);
}

.service-template-default .post-content ul {
    line-height: 2.1rem;
    font-size: 1rem;
    font-weight: 400;
    margin-left: 1rem;
    color: var(--txtLight);
    margin-top: 2rem;
}
.home4:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    top: 0;
    left: 0;
    opacity: 0.8;
}

.contact-form input {
    border: none;
    padding: 1rem;
    /* border-radius: 0.5rem; */
    width: 100%;
    color: #fff;
    border: 0.0625rem solid var(--txtWhiteLight);
    background: none;
    margin-top: 0.6rem;
}

.contact-form input::placeholder {
	color: #ffffff70;
}

.contact-form input:focus {
	outline: none;
}

.contact-form .btn img {
	width: 1.3rem;
	margin-left: 0;
}

.contact-details {
	height: 100%;
	position: relative;
}

.contact-details .item {
	display: flex;
	text-decoration: none;
	align-items: flex-start;
	gap: 1rem;
	border-radius: 0.7rem;
	backdrop-filter: blur(5px);
}

.contact-details .item:not(:first-child) {
	margin-top: 1rem;
}

.contact-details .item .img {
	max-width: 1.5rem;
	border-radius: 0.5rem;

}

.contact-wrapper .details {
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 1.1rem;
}

.contact-details .item .text {
	line-height: 1.7rem;
	color: var(--txtWhiteLight);
	max-width: 25rem;
}

.contact-details .item .text b {
	margin-bottom: 1rem;
	color: var(--txtWhite);
}


.team-content {
	text-align: center;
	padding: 1rem;
}

.team-member img {
	filter: saturate(0%);
	transition: filter 200ms linear;
}

/* .team-member img:hover{
    filter: saturate(100%);
} */

.service-container {
	margin-top: 2rem;
	margin-bottom: 4rem;
}

.service-container .ab-container {
	max-width: 61rem;
}

.service-container img {
	filter: saturate(0%);
}

.home7 img {
	filter: saturate(0%);
}

/* Media Query For the Utility Styles---------------*/

@media screen and (max-width:700px) {
	.services a{
		pointer-events:none;
	}
	.sub-menu {
    width: 100%;
    border-radius: 5px;
}
	.service-template-default .post-content p {
		font-size: 1rem;
		line-height: 1.8rem;
		margin-top: 1rem;
	}
	.service-template-default .post-content h3 {
		font-size: 1.3rem;
		line-height: 1.8rem;
		margin-top: 1rem;
	}

	.text-heading1 {
		font-size: 2.1rem;
		line-height: 2.5rem;
	}

	.text-heading2 {
		font-size: 2.1rem;
		line-height: 2.5rem;
	}

	.text-heading3 {
		font-size: 1.3rem;
		line-height: 1.8rem;
	}

	.home1 .ab-container p {
		font-size: 1.15rem;
	}

	.text-heading5 {
		font-size: 1.1rem;
	}

	.text-body {
		font-size: 1rem;
		line-height: 1.8rem;
	}

	.sec-title {
		text-align: center;
	}

	.text-mb-center {
		text-align: center;
		margin-inline: auto;
	}

	.mb-center {
		margin-inline: auto;
	}

	.mt-mb-4 {
		margin-top: 3rem;
	}

	.mt-mb-2 {
		margin-top: 2rem;
	}

	.img-extra {
		width: 100vw;
		position: relative;
		left: 50%;
		right: 50%;
		margin-left: -50vw;
		margin-right: -50vw;
	}

	.two-column {
		gap: 2.5rem;
	}

	.pb-mb-0 {
		padding-block-end: 0;
	}

	.sec-title::after {
		left: 50%;
		transform: translate(-50%, 50%);
	}
}


/* Media Query For The Theme Styles----------------- */