/*!
Theme Name: note360
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: note360
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

note360 is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 

font-family: "Inter", sans-serif;
font-family: "Inter Tight", sans-serif;
font-family: "Poppins", sans-serif;

*/


/* deafult start */

:root {
	scroll-behavior: inherit;
	--primary-font: "Poppins", sans-serif;
	--secondary-font: "Inter", sans-serif;
	--inter-tight: "Inter Tight", sans-serif;

	--primary-color: #36C5F1;
	--secondary-color: #E02359;
	--content-color: #4F4F4F;
	--border-color: #B9B9B9;

	--menu-color: #0D0D0D;
	--darkBlueColor: #180576;
	--darkGrayColor: #282924;
	--footer-bg: #06296E;
	--sky-light: #EBFAFE;

	--white-color: #ffffff;
	--black-color: #000000;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--primary-font);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
	font-style: normal;
	color: var(--content-color);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.9;
	background-color: var(--white-color);
}


b,
strong {
	font-weight: 700;
}

p {
	margin: 0 0 12px 0;
}

p:last-child {
	margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 12px 0;
	padding: 0;
	font-family: var(--secondary-font);
	color: var(--darkGrayColor);
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: -0.01em;
	text-transform: capitalize;

}


h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
	margin-bottom: 0;
}


h1,
.title-h1 {
	font-weight: 800;
	font-size: 80px;
}

h2,
.title-h2 {
	font-size: 54px;
	color: var(--content-color);
}

h1 span {
	color: var(--primary-color);
}

h2 span {
	color: var(--primary-color);
	font-weight: 800;
	font-family: var(--inter-tight);
}


h3,
.title-h3 {
	font-weight: 800;
	font-size: 26px;
	letter-spacing: 0px;
}

/* h4,
.title-h4 {
    font-size: 32px;
}

h5,
.title-h5 {
    font-size: 24px;
}


h6,
.title-h6 {
    font-size: 22px;
} */


a {
	margin: 0;
	padding: 0;
	text-decoration: none !important;
	outline: none !important;
	color: var(--content-color);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

img {
	max-width: 100%;
}

label {
	margin-bottom: 16px;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="number"],
select {
	width: 100%;
	height: 58px;
	padding: 0 15px;
	background-color: transparent;
	color: var(--content-color);
	border: 1px solid var(--primary-color);
	outline: none !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}

textarea {
	width: 100%;
	height: 158px;
	padding: 15px;
	background-color: transparent;
	color: var(--content-color);
	border: 1px solid var(--primary-color);
	outline: none !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}

select {
	width: 100%;
	padding: 0 15px;
	padding-right: 40px;
	background: url(./images/sort-down.svg) no-repeat calc(100% - 15px) center transparent;
	background-size: 12px;
	color: var(--content-color);
	border: 1px solid var(--primary-color);
	outline: none !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

.submit-wpr {
	margin-top: 20px;
}

input[type="submit"] {
	height: 58px;
	padding-left: 30px;
	padding-right: 30px;
	background-color: var(--primary-color);
	color: var(--white-color);
	border: 1px solid transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	outline: none !important;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

input[type="submit"]:hover {
	background: var(--secondary-color);
}

::-webkit-input-placeholder {
	opacity: 1;
	color: var(--black-color);
}

:-ms-input-placeholder {
	opacity: 1;
	color: var(--black-color);
}

::-moz-placeholder {
	opacity: 1;
	color: var(--black-color);
}

:-moz-placeholder {
	opacity: 1;
	color: var(--black-color);
}


/* images alignment for wordpress content pages */
.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 0 20px 20px 0;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	float: none;
	clear: both;
}

/* custom checkbox */
.form_input_check {
	margin-bottom: 16px;
}

.form_input_check:last-child {
	margin-bottom: 0;
}

.form_input_check label {
	position: relative;
	display: inline-block;
	line-height: 1.4;
	padding-left: 30px;
	margin: 0;
	cursor: pointer;
}

.form_input_check label span {
	margin: 0;
	padding: 0;
}

.form_input_check label input[type="checkbox"] {
	visibility: hidden;
	display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 22px;
	height: 22px;
	border: 1px solid #3E3E42;
	background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 22px;
	height: 22px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	background: url(./images/tick.svg) no-repeat center center;
	background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.form_input_check input[type="checkbox"]:checked+span {
	color: var(--primary-color);
}

.form_input_check label input[type="checkbox"]:checked+span:after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/* custom radio */

.form_input_radio label {
	position: relative;
	margin: 0;
	padding-left: 30px;
	display: inline-block;
}

.form_input_radio label span {
	margin: 0;
	padding: 0;
}

.form_input_radio label input[type="radio"] {
	visibility: hidden;
	display: none;
}

.form_input_radio label input[type="radio"]+span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1px;
	width: 22px;
	height: 22px;
	border: 2px solid var(--black-color)000;
	border-radius: 100%;
	background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
	content: '';
	width: 12px;
	height: 12px;
	background: #4b0049;
	position: absolute;
	top: 6px;
	left: 5px;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}


/* custom radio end */

.cmn-btn-grp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -5px -5px 0;
}

.text-center .cmn-btn-grp {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cmn-btn-grp .cmn-btn-col {
	padding: 5px 5px 0;
}

.cmn-btn {
	min-width: 196px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1;
	border: 1px solid transparent;
	padding: 16px 26px;
	background: var(--secondary-color);
	color: var(--white-color);
	display: inline-block;
	border-radius: 25px;
	text-align: center;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	white-space: nowrap;
}

.cmn-btn i {
	max-width: 14px;
	margin-left: 30px;
	display: inline-block;
	line-height: 0;
}

.cmn-btn:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

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

.cmn-btn.cmn-btn-secondary:hover {
	background: var(--primary-color);
}

.btn-white {
	background: var(--white-color);
	color: var(--darkGrayColor);
}

.btn-white:hover {
	color: var(--darkGrayColor);
}

.cmn-gap {
	padding: 100px 0px;
}

.radius-20 {
	border-radius: 20px;
}


.cmn-img-ratio {
	position: relative;
	padding-top: 78%;
	z-index: 1;
}

.cmn-img-ratio a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.cmn-img-ratio img {
	position: absolute;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	top: 0;
	left: 0;
}

.cmn-sec-head {
	margin-bottom: 30px;
}

.cmn-sec-head p {
	max-width: 890px;
}

.cmn-sec-head.text-center p {
	margin: 0 auto;
}

.load-more-wpr {
	margin-top: 45px;
	text-align: center;
}


.list-tick ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.list-tick ul li {
	padding-left: 24px;
	position: relative;
	margin-bottom: 15px;
}

.list-tick ul li:last-child {
	margin-bottom: 0;
}

.list-tick ul li:after {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 13px;
	height: 10px;
	background: url(./images/tick.svg) no-repeat center/contain;
}

.accordion-el {
	margin-bottom: 20px;
	-webkit-box-shadow: -1px 4px 40px 0px #36C5F114;
	box-shadow: -1px 4px 40px 0px #36C5F114;
	overflow: hidden;
}

.accordion-content {
	padding: 0 36px 26px;
	/* background: var(--sky-light); */
}

.accordion-head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	font-family: var(--secondary-font);
	padding: 26px 36px;
	line-height: 1.3;
	color: var(--darkGrayColor);
	background: var(--sky-light);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.accordion-body {
	background: var(--sky-light);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}

.accordion-head.collapsed {
	background: var(--white-color);
}

.accordion-head.collapsed+.accordion-body {
	background: var(--white-color);
}

.accordion-head::after {
	content: "";
	background: url(images/sort-down.svg) no-repeat center right/contain;
	width: 40px;
	height: 9px;
	display: inline-block;
	margin-left: auto;
	-webkit-filter: brightness(0) saturate(100%) invert(63%) sepia(97%) saturate(991%) hue-rotate(159deg) brightness(100%) contrast(89%);
	filter: brightness(0) saturate(100%) invert(63%) sepia(97%) saturate(991%) hue-rotate(159deg) brightness(100%) contrast(89%);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scaleY(-1);
	-ms-transform: scaleY(-1);
	transform: scaleY(-1);
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	padding-left: 20px;
}

.accordion-body p {
	max-width: 1052px;
}

.faq-accordion-el-wpr {
	max-width: 1264px;
	margin: 0 auto;
}

.accordion-head.collapsed::after {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}


/* deafult end */


/* =============== HEADER START =============== */

.main-head {
	position: fixed;
	z-index: 10;
	width: 100%;
	background-color: var(--page-bg);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 0;
}

.main-head.fixed {
	background: var(--white-color);
	-webkit-box-shadow: -3px 6px 33px -21px rgba(24, 5, 118, 0.75);
	box-shadow: -3px 6px 33px -21px rgba(24, 5, 118, 0.75);
}

.main-head.fixed .navbar-brand-wpr {
	padding-bottom: 18px;
}

.main-head .navbar {
	padding: 0;
}

.navbar-main-wpr {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--white-color);
	border-radius: 50px;
	padding: 10px 16px 10px 38px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* .main-head.fixed .navbar-brand {
    width: 70px;
} */


.secondary-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 60px;
}

.navbar-brand-wpr {
	background: var(--white-color);
	border-radius: 0px 0px 73px 73px;
	text-align: center;
	padding: 12px 33px 34px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-brand {
	padding: 0;
	margin: 0;
	width: 153px;
	height: 146px;
	background: var(--white-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	border-radius: 0px 0px 73px 73px;
	overflow: hidden;
	line-height: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.navbar-brand video {
	width: 100%;
	max-width: 110px;
}

.navbar {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: none;
	margin: 0;
	padding: 13px 0;
	min-height: inherit;
	height: inherit;
	border: none;
	border-radius: 0;
}

.navbar-nav li {
	position: relative;
	list-style: none;
	line-height: 1;
}

.navbar-nav li a {
	font-size: 16px;
	font-weight: 300;
	line-height: 1;
	position: relative;
	color: var(--menu-color);
	text-transform: capitalize;
}

.navbar-nav>li {
	margin: 0 30px;
	padding: 0;
	position: relative;
}

.navbar-nav>li:first-child {
	margin-left: 0;
}

.navbar-nav>li:last-child {
	margin-right: 0;
}

.navbar-nav>li.menu-item-has-children {
	padding-right: 24px;
}

.navbar-nav .clickD {
	content: "";
	background: url(./images/caret-down-Icon.png) no-repeat center / 17px;
	width: 18px;
	height: 18px;
	right: 0;
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
	position: relative;
	top: 0;
	position: absolute;
}

.navbar-nav>li.menu-item-has-children li.menu-item-has-children .clickD {
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

/* .navbar-nav>li>a:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
} */

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
	background: -o-linear-gradient(339.52deg, #285FCC 0%, #2034A3 52.47%, #180576 100%);
	background: linear-gradient(110.48deg, #285FCC 0%, #2034A3 52.47%, #180576 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;

}

/* .navbar-nav>li.current-menu>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
} */


/* navbar submenu*/
.navbar-nav>.menu-item-has-children>.sub-menu::before {
	content: "";
	width: 100%;
	height: 20px;
	background: transparent;
	position: absolute;
	top: -20px;
	left: 0;
}

.sub-menu {
	background-color: white;
	position: absolute;
	top: calc(100% + 20px);
	left: 0;
	z-index: 1000;
	display: none;
	border-radius: 0;
	width: 200px;
	padding: 15px;
	border-radius: 4px;
	-webkit-box-shadow: var(--primary-color) 0px 2px 6px;
	box-shadow: var(--primary-color) 0px 2px 6px;
}

.sub-menu>li>a {
	color: var(--content-color);
	display: block;
	width: 100%;
	padding: 0;
	font-size: 16px;
}

.sub-menu>li {
	margin-bottom: 16px;
}

.sub-menu>li:last-child {
	margin-bottom: 0;
}

.sub-menu>li>a:hover {
	color: var(--primary-color);
}

.sub-menu>li {
	width: 100%;
	display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li>a {
	background: var(--primary-color-light);
}


.navbar-nav>li:last-child>.sub-menu {
	right: 0;
	left: inherit;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
	position: absolute;
	left: 100%;
	top: 0;
}

/* for push-menu */

.navbar-collapse .navbar-toggler {
	display: none;
}

#navoverlay {
	display: block;
	pointer-events: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	margin: 0;
	padding: 0;
	z-index: 99;
	-webkit-transition: background-color 0.5s linear;
	-o-transition: background-color 0.5s linear;
	transition: background-color 0.5s linear;
}

/* header search bar start */
.header-search-fld {
	width: 100%;
}

.header-search-icon {
	max-width: 20px;
	margin-right: 20px;
	cursor: pointer;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}

.header-search-icon:last-child {
	margin-right: 0;
}

.header-search-icon img {
	width: 100%;
}

.header-search-fld {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 16px 40px;
	background: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translateY(-120%);
	-ms-transform: translateY(-120%);
	transform: translateY(-120%);
	-webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.header-search-fld.show {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.header-search-fld form {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.header-search-fld input[type="text"] {
	padding-right: 60px;
	border-color: transparent;
	border-bottom-color: var(--secondary-color);
}

.header-search-fld input[type="submit"] {
	background-image: url(./images/header-search-dark.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px;
	border-color: transparent;
	background-color: transparent;
	position: absolute;
	right: 0;
	height: 100%;
	padding: 29px;
}

.header-search-fld input[type="submit"]:hover {
	background-image: url(./images/header-search-secondary.svg);
}

.header-search-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	margin-left: 40px;
}

.header-search-close img {
	width: 16px;
	-webkit-filter: brightness(0) invert(0);
	filter: brightness(0) invert(0);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-search-close:hover img {
	-webkit-filter: none;
	filter: none;
}

/* header search bar end */

/* main style start */
.cmn-hmr-hd {
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0.8em;
	text-transform: uppercase;
	color: var(--darkBlueColor);
	margin-bottom: 2px;
}

.sub-hd {
	font-size: 36px;
	line-height: 1;
	text-transform: capitalize;
	letter-spacing: -0.01em;
	color: var(--content-color);
	font-weight: 300;
	display: block;
}

.home-bnr-sec {
	padding-top: 182px;
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;
}

.home-bnr-sec .cmn-hmr-hd {
	margin-bottom: 0;
}

.home-bnr-bg {
	position: absolute;
	width: 100%;
	height: 68%;
	left: 0;
	top: 0;
	background: var(--sky-light);
}

.home-bnr-bg img {
	width: 100%;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}

.home-bnr-content {
	margin-bottom: 50px;
	position: relative;
}

.home-bnr-content h1 {
	margin-bottom: 24px;
	color: var(--primary-color);
}

.home-bnr-img {
	max-width: 1246px;
	padding: 20px;
	margin: 0 auto;
}

.cmn-figure-style {
	-webkit-backdrop-filter: blur(25px);
	backdrop-filter: blur(25px);
	-webkit-box-shadow: 15px 10px 250px 0px #00000014;
	box-shadow: 15px 10px 250px 0px #00000014;
	background: rgba(217, 217, 217, 0.051);
	border-radius: 34px;
	padding: 18px;
}

.cmn-figure-style>img {
	border-radius: 20px;
	max-width: none;
	width: 100%;
}

.hm-services-sec {
	position: relative;
}

.hm-services-bg {
	position: absolute;
	bottom: 220px;
	left: 0;
	z-index: -1;
}

.hm-services-main-wpr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 120px;
}

.hm-services-main-wpr:last-child {
	margin-bottom: 0;
}

.hm-services-dtl-wpr {
	width: 44.5%;
	padding: 128px 70px 128px 0;
}

.hm-services-img-wpr {
	width: 55.5%;
	position: relative;

}

.hm-services-img {
	margin-right: -36px;
	position: relative;
	padding: 79px 0;
}

.hm-services-dtl {}

.hm-services-dtl:last-child,
.hm-services-img:last-child {
	margin-bottom: 0;
}


.hm-services-img-shpe-outer {
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	border-radius: 50%;
	width: calc(100% - 161px);
	height: 100%;
	background: color-mix(in srgb, currentColor 60%, transparent);
}

.hm-services-out .hm-services-img-wpr .hm-services-img-shpe-outer {
	background: rgba(236, 178, 45, 0.27);
}

.hm-services-img-shpe {
	background: currentColor;
	position: absolute;
	top: 32px;
	left: 32px;
	right: 32px;
	bottom: 32px;
	border-radius: 50%;
}

.color-yeallow {
	color: #ECB22D;
}

.color-green {
	color: #2FB67C;
}

.color-pink {
	color: #E02359;
}

.color-sky {
	color: #36C5F1;
}

.container-fluid-space {
	padding: 0 40px;
}

.cmn-sec-inr {
	max-width: 1670px;
	margin: 0 auto;
	background: var(--sky-light);
	border-radius: 30px;
	padding: 100px 30px;
}

.hm-work-process-hd {
	max-width: 566px;
}


.hm-work-process-inr {
	max-width: 330px;
	margin: 0 auto;
	position: relative;
}

.hm-work-process-curve {
	position: absolute;
	width: 88%;
	max-width: 1200px;
	top: -26%;
	left: -25px;
	height: auto;

}

.hm-work-process-row-wpr {
	position: relative;
}

.hm-work-process-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -20px;
}

.hm-work-process-item {
	width: 33.33%;
	padding: 0 20px;
}

.hm-work-process-item:nth-child(1) {
	margin-top: 18.5%;
	margin-left: 7%;
}

.hm-work-process-item:nth-child(2) {
	margin-top: 8%;
}

.hm-work-process-item:nth-child(3) {
	margin-top: -11%;
}


.hm-work-process-icon-box {
	width: 76px;
	height: 76px;
	border-radius: 24px;
	margin-bottom: 30px;
	position: relative;
	background: var(--white-color);
}

.hm-work-process-icon-box:after {
	content: '';
	width: 26px;
	height: 26px;
	background: var(--darkBlueColor);
	border-radius: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.hm-work-process-item h3 {
	margin-bottom: 4px;
	margin-top: -110px;
}

.hm-work-process-item p {
	line-height: 1.5;
}

.hm-work-process-num {
	font-family: var(--inter-tight);
	font-weight: 900;
	font-size: 240px;
	letter-spacing: -0.02em;
	color: #000000;
	opacity: 0.04;
	text-align: right;
	margin-top: -70px;
	line-height: 1;
}

.hm-work-process-row-wrap {
	position: relative;
}

.pricing-card {
	padding: 22px 20px 40px;
	border: 1px solid var(--border-color);
	line-height: 1.5;
	min-height: 592px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.pricing-card ul {
	max-width: 346px;
	margin-bottom: 30px;

}

.pricing-card-hd {
	padding: 28px 24px;
	/* background: #F4F5FF; */
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
}

.pricing-card-hd p {
	color: #595959;
}

.pricing-card-bd {
	padding: 0 24px;

}

.pricing-card-link {
	color: var(--menu-color);
	text-decoration: underline !important;
}

.pricing-card-link:hover {
	color: var(--secondary-color);
}

.hm-pricing-row {
	--bs-gutter-x: 30px;
	--bs-gutter-y: 30px;
}

.hm-abt-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hm-abt-img-wpr {
	width: 55.4%;
	position: relative;
}

.hm-abt-img {
	width: calc(100% + 56px);
	margin-left: -56px;
	position: relative;
	z-index: 1;
}

.hm-abt-img img {
	max-width: none;
	width: 100%;
	-webkit-filter: drop-shadow(30px 6px 60px rgba(22, 66, 197, 0.25));
	filter: drop-shadow(30px 6px 60px rgba(22, 66, 197, 0.25));
}

.hm-abt-info {
	width: 44.6%;
	padding-left: 26px;
}

.hm-abt-info p {
	margin-bottom: 26px;
}

.hm-abt-shpe1 {
	position: absolute;
	right: 60px;
	bottom: -20px;
	max-width: 220px;
}

.hm-abt-shpe2 {
	position: absolute;
	left: -66px;
	top: 70px;
	max-width: 256px;
}

.inr-bnr-sec {
	min-height: 500px;
	padding: 160px 0 46px;
	background: var(--sky-light);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

.inr-bnr-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	pointer-events: none;
}

.inr-bnr-bg img,
.inr-bnr-bg video {
	width: 100%;
}

.inr-bnr-cntnt {
	position: relative;
}

.inr-bnr-cntnt h1 {
	color: var(--primary-color);
}

.inr-bnr-cntnt h1:last-child {
	margin-bottom: 0;
}

.service-img-blk-sec {
	position: relative;
}

.service-img-blk-bg {
	position: absolute;
	top: 20%;
	left: 0;
	z-index: -1;
}

.service-img-blk-bg img {
	width: 100%;
}

.service-img-blk-bg2 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
}

.service-img-blk-bg2 img {
	width: 100%;
}

.cmn-imgblk-wpr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 100px;
}


.cmn-imgblk-wpr:last-child {
	margin-bottom: 0;
}

.cmn-imgblk-dtl {
	width: 46%;
	padding-left: 76px;
}

.cmn-imgblk-img {
	position: relative;
	padding: 90px 0;
	width: calc(54% + 50px);
	margin-left: -50px;
}

.cmn-imgblk-shpe-outer {
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	border-radius: 50%;
	width: calc(100% - 96px);
	height: 100%;
	background: color-mix(in srgb, currentColor 60%, transparent);
}

.cmn-imgblk-shpe {
	background: currentColor;
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	border-radius: 50%;
}

.cmn-imgblk-wpr.cmn-imgblk-wpr-rev,
.cmn-imgblk-wpr:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.cmn-imgblk-wpr:nth-child(even) .cmn-imgblk-dtl,
.cmn-imgblk-wpr-rev .cmn-imgblk-dtl {
	padding-left: 0;
	padding-right: 76px;
}

.cmn-imgblk-wpr:nth-child(even) .cmn-imgblk-img,
.cmn-imgblk-wpr-rev .cmn-imgblk-img {
	margin-right: -50px;
	margin-left: 0;
}

.cmn-imgblk-wpr.cmn-imgblk-wpr-normal .cmn-imgblk-img {
	margin-right: 0;
	margin-left: 0;
	width: 54%;
}

.blog-card {
	padding: 18px 18px 32px;
	-webkit-box-shadow: -1px 4px 40px 0px #36C5F114;
	box-shadow: -1px 4px 40px 0px #36C5F114;
}

.blog-card-row {
	--bs-gutter-x: 28px;
	--bs-gutter-y: 46px;
}

.blog-card h3 a {
	display: inline-block;
	color: #282924;
}

.blog-card h3 a:hover {
	color: var(--primary-color);
}

.blog-card h3 {
	line-height: 1.3;
	margin-bottom: 7px;
}

.blog-card-img {
	overflow: hidden;
	display: block;
	margin-bottom: 20px;
}

.blog-card-img .cmn-img-ratio {
	padding-top: 59.5%;
}

.blog-card-img img {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog-card-img:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.blog-card-meta {
	margin-bottom: 8px;
}

.blog-card-meta ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: -5px -24px 0;
	list-style: none;
	padding: 0;
}

.blog-card-meta ul li {
	padding: 5px 24px 0;
	position: relative;
}

.blog-card-meta ul li:after {
	content: "/";
	position: absolute;
	right: 0;
	top: 5px;
}

.blog-card-meta ul li:last-child::after {
	display: none;
}

.blog-card-meta ul li i {
	max-width: 18px;
	line-height: 0;
	margin-right: 10px;
	position: relative;
	top: -1px;
}

.blog-pagination {
	margin-top: 50px;
	text-align: center;
}


/* main style end */

/* footer start */
.main-footer {
	background: var(--footer-bg);
	padding-top: 75px;
}

.footer-bd-row {
	--bs-gutter-x: 24px;
	--bs-gutter-y: 30px;
}

.footer-hd .cmn-btn-grp {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}

.footer-hd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-hd-info {
	margin-right: 30px;
	color: var(--white-color);
}

.footer-hd-info h2 {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-bd {
	padding: 40px 0 60px;
}

.footer-menu-item {
	color: var(--white-color);
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto;
}

.footer-menu-item a {
	color: var(--white-color);
}

.footer-menu-item a:hover {
	color: var(--primary-color);
}


.footer-social-col .footer-menu-item {
	margin-left: auto;
	margin-right: 0;

}

.footer-logo-col .footer-menu-item {
	margin-right: auto;
	margin-left: 0;
}


.footer-logo-col .footer-logo {
	max-width: 86px;
	display: inline-block;
	margin-bottom: 25px;

}

.footer-logo img {
	width: 100%;
}


.footer-logo-col p {
	max-width: 250px;
	line-height: 1.5;
}

.footer-menu-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu-item ul li {
	margin-bottom: 12px;
}

.footer-menu-item ul li:last-child {
	margin-bottom: 0;
}

.footer-menu-hd {
	font-size: 26px;
	letter-spacing: 0px;
	text-transform: capitalize;
	font-weight: 800;
	line-height: 1.5;
	margin-bottom: 10px;
	font-family: var(--secondary-font);
}


.footer-menu-item ul li i {
	margin-right: 15px;
}


.footer-menu-item ul li i img {
	max-width: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.twitter-icon a:hover img {
	-webkit-filter: brightness(0) saturate(100%) invert(82%) sepia(25%) saturate(7375%) hue-rotate(160deg) brightness(101%) contrast(89%);
	filter: brightness(0) saturate(100%) invert(82%) sepia(25%) saturate(7375%) hue-rotate(160deg) brightness(101%) contrast(89%);
}

.footer-ft {
	color: var(--white-color);
	border-top: 1px solid #335088;
	padding: 15px 0;
}

.footer-ft-wpr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;

}

.footer-ft-wpr ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer-ft a {
	color: var(--white-color);
}

.footer-ft a:hover {
	color: var(--primary-color);
}

.footer-ft-wpr ul li {
	position: relative;
	padding: 0 20px;
}

.footer-menu-item li.current-menu-item a {
	color: var(--primary-color);
}

.footer-ft-wpr ul li:first-child {
	padding-left: 0;
}

.footer-ft-wpr ul li:last-child {
	padding-right: 0;
}

.footer-ft-wpr ul li:after {
	content: "";
	width: 1px;
	height: 100%;
	background: #ADADAD4F;
	display: inline-block;
	position: absolute;
	right: 0;
	top: 0;
}

.footer-ft-wpr ul li:last-child::after {
	display: none;
}

.footer-ft-wpr p {
	margin-bottom: 0;
}


/* footer end */

.hm-pricing-sec {
	overflow: hidden;
}

.pricing-card-before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #F4F5FF;
	z-index: -1;
}

.cmn-hmr-hd-bnr-wpr {
	margin-bottom: 16px;
	overflow: hidden;
}

.cmn-hmr-hd-bnr-wpr .cmn-hmr-hd span {
	display: inline-block;
}

.hm-services-out .hm-services-main-wpr {
	margin-bottom: 0;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.hm-services-out .hm-services-dtl:not(:last-child) {
	margin-bottom: 250px;
}

.hm-services-out .hm-services-img-wpr {
	position: sticky;
	top: 20%;
	left: 0;
}

.service-figure-wpr {
	position: relative;
	padding-top: 59%;
	overflow: hidden;
}

.service-figure-wpr img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	-o-object-fit: cover;
	object-fit: cover;
}

.hm-services-img.hm-services-img-tablet {
	display: none;
}

.main-head.fixed .navbar-brand {
	height: 100px;
}

.pagination {
	margin-bottom: -4px;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

.page-numbers:not(.prev):not(.next) {
	width: 35px;
	height: 35px;
	background: var(--white-color);
	border-radius: 50%;
	margin: 0 4px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #595959;
	border: 1px solid #595959;
	font-weight: 400;
	font-size: 12px;
	flex: none;
	padding-top: 2px;
}



.page-numbers:not(.prev):not(.next):hover {
	background: var(--darkBlueColor);
	color: var(--white-color);
	border-color: transparent;
}

.page-numbers.current:not(.prev):not(.next) {
	background: var(--darkBlueColor);
	color: var(--white-color);
	border-color: transparent;
}

.page-numbers.prev,
.page-numbers.next {
	font-size: 20px;
	color: #595959;
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
	color: var(--darkBlueColor);
}

.page-numbers.prev {
	margin-right: 26px;
}

.page-numbers.next {
	margin-left: 26px;
}

.alert-box {
	color: var(--darkBlueColor);
	border-radius: 10px;
	text-align: center;
	font-weight: 400;
	margin-top: 30px;
}

/* blog setalis start */
.standard-content .post-thumbnail {
	width: 100%;
	margin-bottom: 18px;
}

.standard-content h2,
.standard-content h3,
.standard-content h4,
.standard-content h5 {
	color: var(--darkGrayColor);
	font-weight: 700;
}

.standard-content h3,
.standard-content h4,
.standard-content h5 {
	margin-bottom: 8px
}

.standard-content .post-thumbnail img {
	border-radius: 20px;
	width: 100%;
	height: auto;

}

.standard-content .blog-card-meta {
	margin-bottom: 8px;
}


.standard-content .blog-card-meta ul {
	padding-left: 0;
}

.standard-content ul,
.standard-content ol {
	padding-left: 20px;
	margin-bottom: 12px;
}

.standard-content a {
	color: var(--primary-color);
}

.standard-content a:hover {
	color: var(--darkBlueColor);
}

.error-wraper {
	text-align: center;
	padding: 200px 0 100px;
}

.error-wraper h2 {
	color: var(--darkBlueColor);
	margin-bottom: 12px;
}

.error-wraper p {
	margin-bottom: 20px;
	color: var(--black-color);
}

.button-lower-text {
	font-size: 10px;
}

.price-btn {
	border-radius: 50px;
	width: fit-content;
}

/* blog setalis end */



/* S.Mv Css Start 22-05-25 */
.pricing-card {
	height: 100%;
	justify-content: inherit;
	min-height: inherit;
}

.pricing-btn-outer {
	display: flex;
	flex-wrap: wrap;
	margin: -5px;
	margin-top: auto;
}

.pricing-btn-outer .cmn-btn {
	margin: 5px;
	min-width: 170px;
	padding: 16px 20px;
}

.pricing-btn-outer .cmn-btn.free-trial {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.pricing-btn-outer .cmn-btn.free-trial:hover {
	background-color: var(--secondary-color);
}

.lower-text {
	font-size: 12px;
	font-weight: 500;
	margin-top: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.pricing-card-bd {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.hippa-sec {
	overflow: hidden;
}

/* .hippa-sec .cmn-sec-head {
	margin-bottom: 80px;
} */

.hippa-row {
	--bs-gutter-x: 30px;
	--bs-gutter-y: 60px;
	justify-content: center;
}

.hippa-card {
	height: 100%;
	-webkit-box-shadow: -1px 4px 40px 0px #90909024;
	box-shadow: -1px 8px 35px 1px #90909024;
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 60px 20px 20px;
	position: relative;
	text-align: center;
}

.hippa-card figure {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--sky-light);
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}

.hippa-card figure img {
	max-width: 30px;
}

.footer-hd-info h2 span {
	display: block;
}

.pricing-card-bd {
	padding: 0;
}

.pricing-btn-txt-wpr {
	position: relative;
	padding-bottom: 30px;
	margin-top: auto;
}








/* S.Mv Css End 22-05-25 */

/* sg-23-may-2025  */
.footer-ft-wpr {
	font-size: 14px;
}

.single-post .inr-bnr-cntnt h1 {
	font-size: 50px;
}

.cmn-figure-style>img {
	height: auto;
}

.table-wrapper {
	overflow-x: auto;
	max-width: 100%;
}

/* sg-23-may-2025  */


/* supports starts 26.05.2025   */
.home-bnr-content h1 b {
	color: var(--primary-color);
}

.home-bnr-content h1 {
	font-size: 40px;
}

.footer-hd-info h2 {
	font-size: 35px;
}

.pricing-tab {
	justify-content: center;
	margin-bottom: 50px;
}

.pricing-tab .nav-item button.nav-link.active,
.pricing-tab .nav-item button.nav-link:hover {
	border: 1px solid transparent;
	background: var(--secondary-color);
	color: var(--white-color);
}

.pricing-tab .nav-item button.nav-link {
	min-width: 145px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	border: 1px solid var(--primary-color);
	padding: 16px 26px;
	background: transparent;
	color: var(--primary-color);
	display: inline-block;
	border-radius: 25px;
	text-align: center;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	white-space: nowrap;
}

.pricing-tab .nav-item:not(:last-child) {
	margin-right: 10px;
}

.nav-link:focus-visible {
	box-shadow: none;
}

.hm-pricing-row {
	justify-content: center;
}

/* supports ends 26.05.2025  */



/* S.Mv Css Start 27-05-25 */
.home-bnr-content h1 {
	line-height: 1.4;
}

.home-bnr-content h1,
.home-bnr-content h1 .sub-hd {
	font-size: 34px;
}

.home-bnr-content h1 b {
	font-size: 40px;
}

.cmn-imgblk-dtl p a {
	color: var(--footer-bg);
	font-weight: 500;
}

.abt-bios-outer {
	max-width: 1200px;
	margin: 0 auto;
}

.abt-bios-row {
	--bs-gutter-x: 25px;
	--bs-gutter-y: 30px;
	justify-content: center;
}

.abt-bios-card {
	box-shadow: -1px 8px 35px 1px #90909024;
	background-color: var(--white-color);
	border-radius: 15px;
	overflow: hidden;
	height: 100%;
}

.abt-bios-card figure {
	padding-top: 80%;
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}

.abt-bios-card figure>img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* object-position:top; */
}

.abt-bios-txt {
	padding: 22px;
}

.abt-bios-txt h3 {
	font-size: 24px;
	margin-bottom: 12px;
	line-height: 1;
}

.abt-bios-txt .designation {
	display: block;
	font-size: 14px;
	line-height: 1.1;
	margin-bottom: 15px;
	font-weight: 500;
}

.abt-bios-txt p {
	line-height: 1.2;
	margin-bottom: 8px;
}

.abt-bios-card figure .linked-link {
	display: block;
	position: absolute;
	bottom: 10px;
	right: 10px;
	max-width: 40px;
}

.abt-bios-card figure .linked-link img {
	width: 100%;
}

/* .abt-bios-sec .cmn-sec-head {
	margin-bottom: 50px;
} */

/* S.Mv Css End 27-05-25 */

/* pro 28/5/25 start */
.home-bnr-content h1 {
	margin-bottom: 24px;
	color: var(--content-color);
}

.cmn-imgblk-dtl p a {
	text-decoration: underline !important;
}

.cmn-imgblk-dtl p a:hover {
	color: var(--secondary-color);
}

.abt-bios-card figure .linked-link {
	border-radius: 50%;
	overflow: hidden;
	background: #277eb0;
	padding: 4px;
}

.abt-bios-card figure {
	padding-top: 70%;
}

/* pro 28/5/25 end */


/* pro 2/6/25 start */
.abt-bios-card {
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
}

.abt-bios-card figure {
	width: 80px;
	height: 80px;
	flex: none;
	border-radius: 50%;
	padding-top: 0;
}

.abt-bios-txt {
	padding: 0 0 0 20px;
	width: calc(100% - 80px);
}

.abt-bios-txt .designation {
	margin-bottom: 10px;
}

.abt-bios-txt h3 {
	font-size: 22px;
	line-height: 1.2;
}

.abt-bios-txt p {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.4;
}

.abt-bios-card .linked-link {
	position: static;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	background: #277eb0;
	padding: 4px;
	margin-left: auto;
	margin-top: 6px;
}

.abt-bios-card .linked-link:hover {

	transform: scale(0.85);
}

.abt-bios-card figure .linked-link img {
	width: 100%;
}

.google-apple-store-wpr {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
}

.google-apple-store-wpr a {
	margin: 10px 10px 0;
	display: inline-block;
}

.google-apple-store-wpr img {
	height: 60px;
}

.footer-logo-col .footer-menu-item {
	display: flex;
	flex-wrap: wrap;
}

.footer-logo-col .footer-menu-item .footer-logo {
	margin-right: 20px;
}

.footer-logo-col .hippa-logo-sec {
	max-width: 100px;
}

.footer-logo-col .hippa-logo-sec a {
	display: block;
}

/* .abt-bios-card h3 {
    font-size: 22px;
	margin-bottom: 12px;
    line-height: 1.2;
} */

.abt-bios-card-hd {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.abt-bios-txt{
	width: 100%;
}


.abt-bios-card-hd figure{
	margin-bottom: 0;
}

.abt-bios-card p{
	line-height:1.5;
}

.abt-bios-card{
	display: block;
}

.abt-bios-txt h3 {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.2;
}
.abt-bios-txt .designation{
	margin-bottom: 0;
}
/* pro 2/6/25 end */

/* 23.6.25 */
.cmn-figure-style video{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.google-apple-store-wpr { 
    align-items: center;
}
.google-apple-store-wpr a:last-child img{
	height: 85px;
}
.blog-card h3 { 
    font-size: 20px;
}
.blog-card-row { 
    justify-content: center;
}
.standard-content .post-thumbnail {
    width: 100%;
    margin-bottom: 18px;
    float: right;
    height: 410px;
    width: 490px;
    margin-left: 30px;
    margin-bottom: 30px;
}
 .standard-content .post-thumbnail  img{
width: 100%;
height: 100%;
object-fit: cover;
 }
 .blog-card-meta ul li:first-child{
 	padding-left: 0;
 }
/* 23.6.25 */
/* ========== responsive css =========== */
@media (min-width: 992px) {

	.navbar-nav li.menu-item-has-children:hover>.sub-menu {
		display: block;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1448px;
	}

}

@media(max-width:1700px) {
	.hm-abt-img {
		width: 100%;
		margin-left: 0;
	}

	.hm-abt-shpe2 {
		left: -16px;
	}

	.hm-services-out .hm-services-img-wpr {
		top: 15%;
	}
}


@media(max-width:1600px) {
	.hm-services-img {
		margin-right: 0;
	}

	.hm-pricing-row {
		--bs-gutter-x: 24px;
		--bs-gutter-y: 24px;
	}

	.hm-abt-shpe2 {
		left: 0;
		max-width: 196px;
	}

	.hm-abt-img {
		width: 100%;
		margin-left: 0;
	}

	.cmn-imgblk-img {
		margin-left: 0;
		width: 54%;
	}

	.cmn-imgblk-wpr:nth-child(even) .cmn-imgblk-img,
	.cmn-imgblk-wpr-rev .cmn-imgblk-img {
		margin-left: 0;
		margin-right: 0;
		width: 54%;
	}

	.hm-work-process-curve {
		top: -23%;
	}


}

/* @media(max-width:1536px) {
    .container-fluid-space {
        padding: 0 12px;
    }
} */

@media(max-width:1399px) {

	/* ====== HEADER START ======*/
	.navbar-nav .clickD {
		top: -1px;
	}

	/* ====== HEADER END ======*/

	/* footer start */
	.footer-menu-item {
		margin: 0;
	}

	.footer-logo-col .footer-menu-item {
		width: 100%;
		/* text-align: center; */
	}

	.footer-logo-col p {
		max-width: 100%;

	}

	.footer-social-col .footer-menu-item {
		margin-left: auto;
	}

	/* footer end */

	/* main-style start */


	.hm-services-img {
		padding: 50px 0;
	}

	.hm-services-img-shpe-outer {
		width: calc(100% - 120px);
	}

	.hm-services-img-shpe {
		top: 20px;
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.hm-services-dtl-wpr {
		padding: 78px 50px 78px 0;
	}


	.hm-work-process-icon-box {
		width: 60px;
		height: 60px;
		margin-bottom: 16px;
	}

	.hm-work-process-icon-box:after {
		width: 20px;
		height: 20px;
	}

	.hm-work-process-item:nth-child(1) {
		/* margin-top: 240px; */
	}

	.hm-work-process-num {
		font-size: 190px;
	}

	.hm-work-process-item:nth-child(2) {
		/* margin-top: 100px; */
	}

	.hm-work-process-item:nth-child(3) {
		margin-top: -9%;
	}

	.cmn-imgblk-dtl {
		width: 48%;
		padding-left: 60px;
	}

	.cmn-imgblk-wpr:nth-child(even) .cmn-imgblk-dtl,
	.cmn-imgblk-wpr-rev .cmn-imgblk-dtl {
		padding-right: 60px;
	}

	.cmn-imgblk-img {
		width: 52%;
		padding: 60px 0;
	}

	.cmn-imgblk-wpr:nth-child(even) .cmn-imgblk-img,
	.cmn-imgblk-wpr-rev .cmn-imgblk-img {
		width: 52%;
	}

	.cmn-imgblk-wpr.cmn-imgblk-wpr-normal .cmn-imgblk-img {
		width: 52%;
	}

	.cmn-imgblk-shpe {
		top: 20px;
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	/* main-style end */

	.home-bnr-img {
		max-width: 900px;
		padding: 20px;
		margin: 0 auto;
	}

	.hm-services-out .hm-services-img-wpr {
		top: 30%;
	}



	/* S.Mv Css Start 22-05-25 */
	.pricing-btn-outer .cmn-btn {
		min-width: 152px;
		padding: 16px 11px;
	}

	.hippa-row {
		--bs-gutter-x: 15px;
	}


	/* S.Mv Css End 22-05-25 */

	/* support starts 26.05.2025  */
	.home-bnr-content h1 {
		font-size: 35px;
	}

	.footer-hd-info h2 {
		font-size: 30px;
	}

	/* support ends 26.05.2025  */

}

@media(max-width:1199px) {

	/* DEFAULT START */
	body {
		font-size: 15px;
		line-height: 1.8;
	}

	h1,
	.title-h1 {
		font-size: 64px;
	}

	h2,
	.title-h2 {
		font-size: 42px;
	}

	h3,
	.title-h3 {
		font-size: 24px;
	}

	.cmn-gap {
		padding: 70px 0px;
	}

	.cmn-sec-inr {
		border-radius: 20px;
	}

	.radius-20 {
		border-radius: 14px;
	}

	/* DEFAULT END */


	/* HEADER START */
	.navbar-brand-wpr {
		border-radius: 0px 0px 50px 50px;
		padding: 8px 23px 25px;
	}

	.main-head.fixed .navbar-brand-wpr {
		padding-bottom: 14px;
	}

	.navbar-nav>li {
		margin: 0 20px;
	}

	.navbar-main-wpr {
		padding-left: 26px;
	}

	.navbar-brand {
		width: 90px;
		height: 110px;
	}

	.navbar-brand video {
		max-width: 80px;
	}

	.secondary-nav {
		margin-left: 30px;
	}

	/* HEADER END */

	.footer-logo-col .footer-menu-item {
		text-align: center;
	}

	/* main style start */
	.sub-hd {
		font-size: 28px;
		margin-bottom: 2px;
	}

	.home-bnr-sec {
		padding-top: 160px;
		padding-bottom: 70px;
	}

	.hm-services-bg {
		bottom: 130px;
	}

	.hm-services-dtl-wpr {
		width: 50%;
		padding-right: 30px;
	}

	.hm-services-img-wpr {
		width: 50%;
	}

	.hm-services-img-shpe {
		top: 16px;
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.hm-services-main-wpr {
		margin-bottom: 70px;
	}

	.hm-services-img-shpe-outer {
		width: calc(100% - 80px);
	}

	.hm-work-process-icon-box {
		width: 50px;
		height: 50px;
		border-radius: 14px;
	}

	.hm-work-process-num {
		font-size: 160px;
		margin-top: -40px;

	}

	.hm-work-process-item:nth-child(1) {
		/* margin-top: 160px;
        margin-left: 40px; */
	}

	.hm-work-process-item:nth-child(2) {
		/* margin-top: 70px; */
	}

	.hm-work-process-item:nth-child(3) {
		/* margin-top: -30px; */
	}

	.pricing-card-hd {
		padding: 20px;
	}

	.pricing-card {
		padding: 12px 12px 24px;
	}

	.pricing-card-bd {
		padding: 0 10px;
	}

	.list-tick ul li {
		padding-left: 22px;
		position: relative;
		margin-bottom: 12px;
	}


	.cmn-imgblk-wpr {
		margin-bottom: 70px;
	}

	.cmn-imgblk-dtl {
		padding-left: 40px;
	}

	.cmn-imgblk-wpr:nth-child(even) .cmn-imgblk-dtl,
	.cmn-imgblk-wpr-rev .cmn-imgblk-dtl {
		padding-right: 40px;
	}

	.cmn-imgblk-img {
		padding: 40px 0;
	}

	.inr-bnr-sec {
		min-height: 400px;
		padding: 100px 0 40px;
	}

	.blog-card-row {
		--bs-gutter-x: 24px;
		--bs-gutter-y: 24px;
	}


	.blog-card {
		padding: 15px 15px 20px;
	}

	.blog-card-meta ul {
		margin: -5px -15px 0;
	}

	.blog-card-meta ul li {
		padding: 5px 15px 0;
	}


	/* main style end */

	.hm-services-out .hm-services-dtl:not(:last-child) {
		margin-bottom: 190px;
	}

	.home-bnr-img {
		max-width: 800px;
	}

	.hm-work-process-curve {
		top: -20%;
	}

	.hm-work-process-item:nth-child(1) {
		margin-left: 4%;
	}

	.hm-abt-shpe2 {
		max-width: 86px;
	}

	.hm-abt-shpe1 {
		max-width: 70px;
	}

	.error-wraper {
		padding: 150px 0 80px;
	}


	/* S.Mv Css Start 22-05-25 */
	.pricing-btn-outer {
		margin: -2px;
		margin-top: auto;
	}

	.pricing-btn-outer .cmn-btn {
		min-width: 120px;
		padding: 16px 10px;
		font-size: 13px;
		margin: 2px;
	}




	/* S.Mv Css End 22-05-25 */

	/* sg-23-may-2025  */
	.single-post .inr-bnr-cntnt h1 {
		font-size: 40px;
	}

	.table-wrapper table tr td ul,
	.table-wrapper table tr td span {
		font-size: 15px !important;
	}

	/* sg-23-may-2025  */

	/* support starts 26.05.2025  */
	.pricing-tab .nav-item button.nav-link {
		min-width: 135px;
		padding: 14px 20px;
	}

	.pricing-tab {
		margin-bottom: 35px;
	}

	.home-bnr-content h1 {
		font-size: 30px;
	}

	/* support ends 26.05.2025  */
	/* pro 2/5/25 start */
	.abt-bios-card figure {
		width: 60px;
		height: 60px;
	}

	.abt-bios-txt {
		padding: 0 0 0 10px;
		width: calc(100% - 60px);
	}

	/* pro 2/5/25 end */
	.standard-content .post-thumbnail { 
    height: 410px;
    width: 360px; 
}
}

@media (max-width: 991px) {

	/* DEFAULT START */


	h1,
	.title-h1 {
		font-size: 50px;
	}

	h2,
	.title-h2 {
		font-size: 36px;
	}

	.cmn-btn i {
		margin-left: 20px;
	}

	.load-more-wpr {
		margin-top: 30px;
	}

	/* DEFAULT END */


	/* ========== HEADER START ==========*/

	.navbar-main-wpr {
		padding: 0;
		background: transparent;
	}

	.header-btns {
		margin-left: auto;
	}

	.navbar-nav li a {
		color: var(--content-color);
	}

	.navbar-nav>li.menu-item-has-children::after {
		display: none;
	}

	.navbar-nav>.menu-item-has-children>.sub-menu::before {
		display: none;
	}

	/* .navbar-nav>.menu-item-has-children>.sub-menu {
        width: calc(100% - 40px);
        margin-left: 20px;
    } */

	.sub-menu {
		-webkit-box-shadow: none;
		box-shadow: none;
		background: rgb(231 45 136 / 15%);
	}

	.sub-menu>li>a {
		padding: 0;
	}

	.sub-menu>li>a:hover,
	.sub-menu>li.menu-item-has-children:hover>a,
	.sub-menu>li>a {
		background: transparent;
		color: var(--primary-color);
	}

	.navbar-nav>li>.sub-menu .sub-menu {
		background: white;
		margin-bottom: 10px;
	}

	.navbar-nav .clickD {
		position: absolute;
		width: 20px;
		height: 20px;
		background: url(./images/caret-down-Icon.png) no-repeat center/17px;
		display: block;
		cursor: pointer;
	}

	.navbar-nav .clickD.toggled {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.sub-menu>li.menu-item-has-children .clickD {
		top: 8px;
		right: 5px;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}

	.navbar-nav .sub-menu>li.menu-item-has-children .clickD.toggled {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.navbar-nav>li.menu-item-has-children {
		padding-right: 20px;
	}

	.sub-menu>li.menu-item-has-children>a {
		padding-right: 20px;
	}

	.sub-menu.show {
		display: block;
	}

	.navbar-nav>li {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.navbar-nav>li>a:after,
	.navbar-nav>li.menu-item-has-children>a:after {
		opacity: 0;
	}

	.navbar-toggler {
		position: relative;
		width: 33px;
		margin-left: 30px;
		height: 28px;
		padding: 0;
		outline: none !important;
		border: none !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
	}

	.stick,
	.stick:after,
	.stick:before {
		width: 30px;
		height: 2px;
		background: var(--secondary-color);
		position: absolute;
		left: 0;
		top: auto;
		-webkit-transition: all 0.6s;
		-o-transition: all 0.6s;
		transition: all 0.6s;
		border-radius: 5px;
	}

	.stick:before {
		content: "";
		top: -10px;
		left: 0;
	}

	.stick:after {
		content: "";
		top: 10px;
		left: 0;
	}

	.stick.open {
		-webkit-transform: translateX(-50px);
		-ms-transform: translateX(-50px);
		transform: translateX(-50px);
		background: transparent;
	}

	.stick.open:before {
		-webkit-transform: rotate(45deg) translate(42px, -28px);
		-ms-transform: rotate(45deg) translate(42px, -28px);
		transform: rotate(45deg) translate(42px, -28px);
		left: 2px;
	}

	.stick.open:after {
		-webkit-transform: rotate(-45deg) translate(42px, 28px);
		-ms-transform: rotate(-45deg) translate(42px, 28px);
		transform: rotate(-45deg) translate(42px, 28px);
		left: 2px;
	}

	.navbar-nav .clickD {
		top: 0;
		right: 10px;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}

	.navbar-nav .clickD.toggled {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.sub-menu>li.menu-item-has-children .clickD {
		top: 8px;
		right: 10px;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}

	.sub-menu,
	.navbar-nav>li>.sub-menu .sub-menu {
		position: relative;
		width: 100%;
		left: inherit;
		top: inherit;
		border: none;
		right: inherit;
	}

	.navbar-nav>li.menu-item-has-children {
		padding-right: 0;
	}

	.navbar-nav>li {
		margin: 0 0 16px;
		padding: 0;
	}

	.navbar-nav>li.menu-item-has-children .sub-menu {
		margin-top: 10px;
	}

	.navbar-nav>li>a {
		display: inline-block;
		width: 100%;
		line-height: 1.5;
	}


	.sub-menu .sub-menu {
		padding: 12px;
	}

	.sub-menu .sub-menu>li {
		margin-bottom: 12px;
	}

	.sub-menu .sub-menu>li a {
		font-size: 15px;
	}

	.sub-menu .sub-menu>li:last-child {
		margin-bottom: 0;
	}

	.sub-menu .sub-menu .sub-menu>li>a {
		padding-left: 80px;
	}

	.navbar-nav>li>a:after {
		bottom: 0;
	}

	/* navbar end*/
	/* push nav */
	.navbar-collapse {
		background: #fff;
		position: fixed;
		top: 0;
		height: 100% !important;
		width: 290px;
		overflow-y: auto;
		-webkit-transition: inherit !important;
		-o-transition: inherit !important;
		transition: inherit !important;
		right: 0;
		margin: 0;
		display: block !important;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: -webkit-transform 0.2s ease-in-out !important;
		transition: -webkit-transform 0.2s ease-in-out !important;
		-o-transition: transform 0.2s ease-in-out !important;
		transition: transform 0.2s ease-in-out !important;
		transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
		z-index: 100;
	}

	.navbar-collapse.show,
	.navbar-collapse.collapsing {
		display: block !important;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		-webkit-transition: -webkit-transform 0.2s ease-in-out !important;
		transition: -webkit-transform 0.2s ease-in-out !important;
		-o-transition: transform 0.2s ease-in-out !important;
		transition: transform 0.2s ease-in-out !important;
		transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
	}

	.navbar-collapse .navbar-nav {
		margin: 80px 0 0;
		padding: 0 20px 40px;
	}

	.navbar-collapse .navbar-toggler {
		display: block;
		right: 20px;
		top: 20px;
		position: absolute;
	}

	#navoverlay.open {
		background-color: rgba(0, 0, 0, 0.4);
		pointer-events: all;
		-webkit-transition: background-color 0.5s linear;
		-o-transition: background-color 0.5s linear;
		transition: background-color 0.5s linear;
	}

	body.open-nav,
	html.open-nav {
		height: 100%;
		overflow: hidden;
	}

	.secondary-nav {
		margin-left: auto;
	}

	/* ========== HEADER END ==========*/

	/* footer start */
	.footer-hd {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding-bottom: 40px;
	}

	.footer-hd-info {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.footer-menu-hd {
		font-size: 22px;
		margin-bottom: 6px;
	}

	.footer-bd {
		padding: 40px 0 40px;
	}

	.footer-social-col .footer-menu-item {
		width: 100%;
	}

	/* footer end */

	/* main style start */

	.home-bnr-sec {
		padding-top: 140px;
	}

	.sub-hd {
		font-size: 24px;
	}

	.home-bnr-content h1 {
		margin-bottom: 16px;
	}

	.home-bnr-content {
		margin-bottom: 30px;
	}

	.hm-services-bg {
		bottom: 260px;
	}

	.hm-services-main-wpr {
		margin-bottom: 70px;
		max-width: 600px;
		margin: 0 auto 60px;
	}

	.hm-services-dtl-wpr {
		width: 100%;
		padding-right: 0;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.hm-services-img-wpr {
		width: 100%;
		margin-bottom: 30px;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.hm-work-process-curve {
		top: 0px;
		left: -11px;
	}

	.hm-work-process-row {
		margin: 0 -12px;
	}

	.hm-work-process-item {
		padding: 0 12px;
	}

	.hm-work-process-num {
		font-size: 90px;
		top: 40px;
	}

	.hm-work-process-item:nth-child(1) {
		margin-top: 160px;
		margin-left: 20px;
	}

	.hm-work-process-item:nth-child(2) {
		margin-top: 97px;
	}

	.hm-work-process-item:nth-child(3) {
		margin-top: -11px;
	}

	.hm-pricing-row {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.hm-abt-img-wpr {
		width: 100%;
		margin-bottom: 50px;
	}

	.hm-abt-info {
		width: 100%;
		padding-left: 0;
	}

	.inr-bnr-sec {
		min-height: 350px;
	}

	.service-img-blk-bg {
		top: 23%;
	}

	.cmn-imgblk-dtl {
		width: 100%;
		padding-left: 0;
	}

	.cmn-imgblk-wpr:nth-child(even) .cmn-imgblk-dtl,
	.cmn-imgblk-wpr-rev .cmn-imgblk-dtl {
		padding-right: 0;
	}

	.cmn-imgblk-img {
		width: 100%;
		padding: 60px 0;
		margin-bottom: 30px;
	}

	.cmn-imgblk-wpr:nth-child(even) .cmn-imgblk-img,
	.cmn-imgblk-wpr-rev .cmn-imgblk-img {
		width: 100%;
	}

	.cmn-imgblk-wpr.cmn-imgblk-wpr-normal .cmn-imgblk-img {
		width: 100%;
	}

	.cmn-imgblk-wpr {
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}

	.accordion-content {
		padding: 0 20px 20px;
	}

	.accordion-head {
		padding: 20px 20px;
	}

	.blog-pagination {
		margin-top: 30px;
	}


	/* main style end */
	.home-bnr-img {
		max-width: 600px;
	}

	.hm-work-process-item h3 {
		margin-top: -30px;
	}

	.hm-abt-shpe2 {
		left: 20px;
	}

	.hm-services-out .hm-services-img-wpr {
		display: none;
	}

	.hm-services-img.hm-services-img-tablet {
		display: block;
		margin-bottom: 60px;
	}

	.hm-services-dtl-wpr {
		padding: 58px 0 58px 0;
	}

	.hm-services-out .hm-services-dtl:not(:last-child) {
		margin-bottom: 80px;
	}

	.page-numbers.prev {
		margin-right: 20px;
	}

	.page-numbers.next {
		margin-left: 20px;
	}


	/* S.Mv Css Start 22-05-25 */
	.pricing-btn-outer .cmn-btn {
		min-width: 142px;
		font-size: 14px;
	}



	/* S.Mv Css End 22-05-25 */

	/* supports starts 26.05.2025  */
	.pricing-tab .nav-item button.nav-link {
		font-size: 15px;
	}

	.home-bnr-content h1,
	.footer-hd-info h2 {
		font-size: 25px;
	}

	/* supports ends 26.05.2025  */


	/* pro 2/5/25 start */
	.abt-bios-txt {
		padding: 0 0 0 10px;
	}

	/* pro 2/5/25 end */
	.standard-content .post-thumbnail { 
    width: 286px;
}
}


@media (max-width: 767px) {

	/* ========== DEAFULT START ==========*/
	h1,
	.title-h1 {
		font-size: 42px;
	}

	h2,
	.title-h2 {
		font-size: 30px;
	}

	.cmn-hmr-hd {
		letter-spacing: 0.4em;
	}


	.cmn-gap {
		padding: 60px 0px;
	}

	.cmn-btn {
		padding: 14px 20px;
	}

	/* DEAFULT END */

	/* images alignment for wordpress content pages */
	.alignright,
	.alignleft,
	.aligncenter {
		float: none;
		clear: both;
		display: block;
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
		clear: both;
		margin-bottom: 24px;
	}

	/* ========== HEADER START ==========*/
	/* .navbar-brand,
    .main-head.fixed .navbar-brand {
        width: 60px;
    } */


	.header-search-fld {
		padding: 16px;
	}

	.header-search-close {
		margin-left: 20px;
	}

	/* ========== HEADER END ==========*/
	/* main style start */
	.sub-hd {
		font-size: 20px;
	}

	.hm-work-process-hd {
		margin-bottom: 30px;
	}

	.hm-work-process-curve {
		display: none;
	}

	.hm-work-process-row {
		border-left: 3px solid var(--darkBlueColor);
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.hm-work-process-item,
	.hm-work-process-item:nth-child(1),
	.hm-work-process-item:nth-child(2),
	.hm-work-process-item:nth-child(3) {
		margin: 0 0 30px;
		width: 100%;
	}

	.hm-work-process-item:last-child {
		margin-bottom: 0;
	}

	.hm-work-process-inr {
		max-width: 90%;
	}

	.hm-work-process-num {
		font-size: 90px;
		top: -10px;
	}

	.pricing-card {
		max-width: 400px;
		margin: 0 auto;
	}

	.hm-abt-shpe2 {
		left: 0;
		max-width: 90px;
	}

	.hm-abt-shpe1 {
		position: absolute;
		right: 30px;
		bottom: -20px;
		max-width: 70px;
	}

	.hm-services-bg {
		bottom: 570px;
	}

	.home-bnr-bg {
		height: 78%;
	}

	.service-img-blk-bg {
		bottom: 570px;
	}

	.inr-bnr-sec {
		min-height: 300px;
	}

	.cmn-imgblk-wpr {
		margin-bottom: 60px;
	}

	/* main style end */

	/* footer start */
	.main-footer {
		padding-top: 60px;
	}

	.footer-ft-wpr {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer-ft-wpr p {
		margin-bottom: 15px;
	}

	.cmn-imgblk-img {
		padding: 50px 0;
	}

	.cmn-imgblk-shpe-outer {
		width: calc(100% - 80px);
	}

	.cmn-imgblk-shpe {
		top: 15px;
		left: 15px;
		right: 15px;
		bottom: 15px;
	}


	/* footer end */

	.hm-services-dtl-wpr {
		padding: 50px 0 20px 0;
	}


	.alert-box {
		margin-top: 20px;
	}

	.page-numbers.prev {
		margin-right: 15px;
	}

	.page-numbers.next {
		margin-left: 15px;
	}

	.pricing-card {
		min-height: fit-content;
	}

	/* S.Mv Css Start 22-05-25 */
	.hippa-clm {
		width: 50%;
	}

	.pricing-btn-txt-wpr {
		padding-bottom: 0;
	}

	.lower-text {
		position: relative;
	}

	/* S.Mv Css End 22-05-25 */

	/* sg-23-may-2025  */
	.single-post .inr-bnr-cntnt h1 {
		font-size: 30px;
	}

	.table-wrapper table {
		width: 800px;
	}

	/* sg-23-may-2025  */

	/* supports starts 26.05.2025   */
	.pricing-tab .nav-item button.nav-link {
		min-width: 125px;
		padding: 12px 20px;
	}

	.pricing-tab {
		margin-bottom: 30px;
	}

	.home-bnr-content h1,
	.footer-hd-info h2 {
		font-size: 20px;
	}

	/* supports ends 26.05.2025   */



	/* S.Mv Css Start 27-05-25 */
	.abt-bios-clm {
		width: 50%;
	}

	.abt-bios-txt h3 {
		font-size: 20px;
		line-height: 1.2;
	}

	.abt-bios-txt {
		padding: 15px;
	}

	/* S.Mv Css End 27-05-25 */
	.google-apple-store-wpr {
		margin-top: 20px;
	}

	.google-apple-store-wpr {
		margin-top: 30px;
	}

	.google-apple-store-wpr img {
		height: 40px;
	}

	/* pro 2/5/25 start */
	/* .abt-bios-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	} */

	.abt-bios-card-hd{
		flex-direction: column;
	}

	.abt-bios-txt {
		padding: 0;
		width: 100%;
	}

	.abt-bios-card figure {
		margin-bottom: 15px;
	}

.abt-bios-card{
	text-align:center;
	
}

.abt-bios-card .linked-link{
	margin-right: auto;
}
/* pro 2/5/25 end */
/* 23.6.25 */
.google-apple-store-wpr a:last-child img {
	height: 75px;
}
.standard-content .post-thumbnail { 
    float: inherit;
    width: 100%;
    height: auto;
    margin-left: 0;
}
.blog-card-meta ul li:first-child {
    padding-left: 15px;
}
/* 23.6.25 */

}

@media (max-width: 575px) {

	/* DEAFULT START */
	h3,
	.title-h3 {
		font-size: 23px;
	}

	.cmn-btn {
		min-width: 196px;
		font-size: 15px;
	}

	.cmn-btn i {
		margin-left: 12px;
		max-width: 11px;
		position: relative;
		top: -1px;
	}

	.cmn-gap {
		padding: 50px 0px;
	}

	.cmn-btn {
		min-width: 170px;
		font-size: 15px;
	}

	/* DEAFULT END */

	/* HEADER START */
	.navbar-brand-wpr {
		border-radius: 0px 0px 30px 30px;
		padding: 8px 10px 16px;
	}

	.navbar-toggler {
		margin-left: 10px;
	}

	/* HEADER END */

	/* footer start */
	.main-footer {
		padding-top: 50px;
	}

	.footer-hd {
		padding-bottom: 30px;
	}

	.footer-bd {
		padding: 30px 0 30px;
	}

	.footer-ft-wpr ul li {
		position: relative;
		padding: 0 10px;
	}

	.footer-col {
		width: 50%;
	}

	.footer-menu-hd {
		font-size: 20px;
	}

	/* footer end */

	/* main style start */
	.home-bnr-sec .cmn-hmr-hd {
		margin-bottom: 10px;
		line-height: 1;
	}

	.cmn-figure-style {
		border-radius: 10px;
		padding: 12px;
	}

	.cmn-figure-style>img {
		border-radius: 10px;
	}

	.hm-services-main-wpr {
		margin: 0 auto 50px;
	}

	.hm-services-img {
		padding: 30px 0;
	}

	.hm-services-img-shpe-outer {
		width: calc(100% - 70px);
	}

	.hm-services-img-shpe {
		top: 10px;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.hm-abt-shpe2 {
		max-width: 70px;
		top: 20px;
	}

	.hm-abt-shpe1 {
		right: 20px;
		max-width: 70px;
	}

	.home-bnr-bg {
		height: 85%;
	}

	.inr-bnr-sec {
		min-height: 280px;
	}

	.cmn-imgblk-wpr {
		margin-bottom: 50px;
	}

	.cmn-imgblk-img {
		padding: 30px 0;
	}

	.cmn-imgblk-shpe-outer {
		width: calc(100% - 70px);
	}

	.cmn-imgblk-shpe {
		top: 10px;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.accordion-head {
		font-size: 20px;
	}

	/* main style end */

	.home-bnr-img {
		max-width: 370px;
	}

	.container-fluid-space {
		padding: 0 15px;
	}


	.page-numbers:not(.prev):not(.next) {
		padding-top: 0;
	}

	.page-numbers.prev {
		margin-right: 10px;
	}

	.page-numbers.next {
		margin-left: 10px;
	}

	.error-wraper {
		padding: 120px 0 60px;
	}

	/* S.Mv Css Start 22-05-25 */
	.hippa-clm {
		width: 100%;
	}

	/* S.Mv Css End 22-05-25 */

	/* S.Mv Css Start 27-05-25 */
	.abt-bios-row {
		--bs-gutter-x: 15px;
		--bs-gutter-y: 20px;
	}


	/* S.Mv Css End 27-05-25 */




}

@media (max-width: 479px) {
	.main-head .cmn-btn i {
		display: none;
	}

	.main-head .cmn-btn {
		min-width: 130px;
		font-size: 14px;
		padding: 11px 14px;
	}

	.navbar-brand {
		height: 90px;
		width: 80px;
	}

	.navbar-brand video {
		max-width: 60px;
	}

	.home-bnr-img {
		max-width: 300px;
	}

	.cmn-sec-inr {
		padding: 50px 15px;
	}

	.hm-abt-shpe2 {
		max-width: 40px;
		left: 10px;
	}

	.hm-abt-shpe1 {
		bottom: -10px;
		max-width: 40px;
	}

	.hm-services-img.hm-services-img-tablet,
	.hm-services-out .hm-services-dtl:not(:last-child) {
		margin-bottom: 50px;
	}

	.hm-work-process-icon-box:after {
		width: 14px;
		height: 14px;
	}

	.hm-work-process-icon-box {
		width: 40px;
		height: 40px;
		border-radius: 8px;
		margin-bottom: 16px;
	}

	/* S.Mv Css tart 22-05-25 */
	.pricing-btn-outer .cmn-btn {
		min-width: 170px;
		font-size: 16px;
		margin: 4px;
	}

	.lower-text {
		margin-top: 20px;
	}

	/* S.Mv Css End 22-05-25 */

	/* sg-23-may-2025  */
	.single-post .inr-bnr-cntnt h1 {
		font-size: 25px;
	}

	.table-wrapper table {
		width: 700px;
	}

	/* sg-23-may-2025  */

	/* support starts 26.05.2025  */
	.home-bnr-content h1,
	.footer-hd-info h2 {
		font-size: 18px;
	}

	/* support ends 26.05.2025  */

	/* S.Mv Css Start 27-05-25 */
	.abt-bios-clm {
		width: 100%;
	}

	/* S.Mv Css End 27-05-25 */


}


@media (max-width: 374px) {

	/* default start */
	h1,
	.title-h1 {
		font-size: 35px;
	}


	/* default end */


	/* header start */
	.navbar-brand,
	.main-head.fixed .navbar-brand {
		width: 80px;
	}

	/* header end */
	.footer-col {
		width: 100%;
	}

	/* main style start */
	.hm-services-img {
		padding: 20px 0;
	}

	.cmn-imgblk-img {
		padding: 20px 0;
	}

	.accordion-head {
		font-size: 18px;
	}

	.blog-card-meta ul {
		margin: -5px -8px 0;
	}

	.blog-card-meta ul li {
		padding: 5px 8px 0;
		font-size: 14px;
	}

	.blog-card-meta ul li i {
		display: inline-block;
		max-width: 14px;
		margin-right: 5px;
	}

	/* main style end */

	/* 
	.navbar-brand video {
		max-width: 50px;
	} */
}