@charset "utf-8";

/*************** DEFAULT CSS ***************/
@font-face {
	font-family: 'mosvitaregular';
	src: url('../fonts/mosvitaregular.eot');
	src: url('../fonts/mosvitaregular.eot') format('embedded-opentype'),
		url('../fonts/mosvitaregular.woff2') format('woff2'),
		url('../fonts/mosvitaregular.woff') format('woff'),
		url('../fonts/mosvitaregular.ttf') format('truetype'),
		url('../fonts/mosvitaregular.svg#mosvitaregular') format('svg');
}

@font-face {
	font-family: 'mosvitasemibold';
	src: url('../fonts/mosvitasemibold.eot');
	src: url('../fonts/mosvitasemibold.eot') format('embedded-opentype'),
		url('../fonts/mosvitasemibold.woff2') format('woff2'),
		url('../fonts/mosvitasemibold.woff') format('woff'),
		url('../fonts/mosvitasemibold.ttf') format('truetype'),
		url('../fonts/mosvitasemibold.svg#mosvitasemibold') format('svg');
}

@font-face {
	font-family: 'mosvitamedium';
	src: url('../fonts/mosvitamedium.eot');
	src: url('../fonts/mosvitamedium.eot') format('embedded-opentype'),
		url('../fonts/mosvitamedium.woff2') format('woff2'),
		url('../fonts/mosvitamedium.woff') format('woff'),
		url('../fonts/mosvitamedium.ttf') format('truetype'),
		url('../fonts/mosvitamedium.svg#mosvitamedium') format('svg');
}

@font-face {
	font-family: 'mosvitalight';
	src: url('../fonts/mosvitalight.eot');
	src: url('../fonts/mosvitalight.eot') format('embedded-opentype'),
		url('../fonts/mosvitalight.woff2') format('woff2'),
		url('../fonts/mosvitalight.woff') format('woff'),
		url('../fonts/mosvitalight.ttf') format('truetype'),
		url('../fonts/mosvitalight.svg#mosvitalight') format('svg');
}

@font-face {
	font-family: 'mosvitabold';
	src: url('../fonts/mosvitabold.eot');
	src: url('../fonts/mosvitabold.eot') format('embedded-opentype'),
		url('../fonts/mosvitabold.woff2') format('woff2'),
		url('../fonts/mosvitabold.woff') format('woff'),
		url('../fonts/mosvitabold.ttf') format('truetype'),
		url('../fonts/mosvitabold.svg#mosvitabold') format('svg');
}

:root {
	--body-font: 'mosvitamedium', sans-serif;
	--body-font-size: 16px;
	--body-color: #4e4e4e;
	--primary-color: #1e69af;
	--secondary-color: #1EA0D7;
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F7F7F8;
	--grey-dark: #6D6D6D;	
	--gradient:linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	--font-regular: 'mosvitaregular', sans-serif;
	--font-light: 'mosvitalight', sans-serif;
	--font-medium: 'mosvitamedium', sans-serif;
	--font-semibold: 'mosvitasemibold', sans-serif;
	--font-bold: 'mosvitabold', sans-serif;

}

body {
	font-family: var(--body-font);
	font-size: var(--body-font-size);
	font-style: normal;
	line-height: normal;
	font-weight: 400;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	font-optical-sizing: auto;
}

html {
	scroll-behavior: smooth;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: #000;
	color: #fff;
}

::-moz-selection {
	background: #000;
	color: #fff;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

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

p {
	margin: 0 0 30px 0;
	clear: left;
	padding: 0;
}

ul {
	padding: 0px;
	margin: 0 0 25px;
}

ul li {
	list-style: none;
}

/******* Headings Style *******/
h1 {
	font-size: 42px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 22px;
}

h6 {
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px 0;
	padding: 0;
	font-weight: normal;
}

hr {
	margin: 40px 0 60px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid #c1c1c1;
	border-bottom: 1px solid #c1c1c1;
	width: 100%;
	position: relative;
}

img {
	border: 0;
	max-width: 100%;
}

a img {
	border: 0;
}

/*************** PRELOADER ***************/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.spinner {
	width: 100%;
	height: 100%;
	background-image: url(../images/kerala-textiles-and-garments-dealers-welfare-associations.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 250px;
}

#preloader.hidden {
	opacity: 0;
	visibility: hidden;
}

/*************** COLUMS AND ROWS ***************/
main {
	position: relative;
}

.row {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.justify-content-center {
	justify-content: center;
}

.space-between {
	justify-content: space-between;
}

.justify-content-flex-end {
	justify-content: flex-end
}

.section-spacing {
	padding: 100px 0;
}

.sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width: 100%;
}

.clearfix {
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 0;
	display: block;
}

.container {
	width: 1400px;
	margin: 0 auto;
}

.fullwidth {
	width: 100%;
	display: block;
}

.two-col {
	flex: 0 0 48%;
}

.three-col {
	flex: 0 0 31%;
}

.four-col {
	flex: 0 0 22%;
}

section {
	width: 100%;
	display: block;
	position: relative;
}

aside {
	flex: 0 0 25%;
	margin: 0;
	padding: 0;
}

summary {
	flex: 0 0 70%;
	margin: 0;
	padding: 0;
}

.list {
	padding: 0px;
	margin: 0 0 25px;
	display: flex;
	width: 100%;
	flex-direction: column;
}

.list li {
	list-style: none;
	color: #3a4455;
	padding-left: 22px;
	margin-bottom: 6px;
	line-height: 24px;
	position: relative;
}

.list li:after {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border: 2px solid var(--primary-color);
	left: 0px;
	top: 8px;
	border-radius: 50px;
}

.list li a {
	color: #3a4455;
}

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

.scrollwrap {
	width: calc(50vw + 680px);
	overflow: hidden;
}

.scrollwrap-left {
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
}

.gap-1 {
	gap: 1%
}

.gap-2 {
	gap: 2%
}

.gap-3 {
	gap: 3%
}

.gap-4 {
	gap: 4%
}

.gap-5 {
	gap: 5%
}

.gap-10,
.gap-20,
.gap-30,
.gap-40,
.gap-50,
.gap-60,
.gap-70,
.gap-80,
.gap-90,
.gap-100 {
	display: flex;
	width: 100%;
	height: 10px;
}

.gap-20 {
	height: 20px;
}

.gap-30 {
	height: 30px;
}

.gap-40 {
	height: 40px;
}

.gap-50 {
	height: 50px;
}

.gap-60 {
	height: 60px;
}

.gap-70 {
	height: 70px;
}

.gap-80 {
	height: 80px;
}

.gap-90 {
	height: 90px;
}

.gap-100 {
	height: 100px;
}

.m-b-0 {
	margin-bottom: 0px;
}

.m-b-5 {
	margin-bottom: 5px;
}

.m-b-10 {
	margin-bottom: 10px;
}

.m-b-15 {
	margin-bottom: 15px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.m-b-25 {
	margin-bottom: 25px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.m-b-35 {
	margin-bottom: 35px;
}

.m-b-40 {
	margin-bottom: 40px;
}

.m-b-45 {
	margin-bottom: 45px;
}

.m-b-50 {
	margin-bottom: 50px;
}

.button-style a,
.button-style-span {
	position: relative;
	background-color: var(--primary-color);
	color: var(--white);
	font-family: var(--font-semibold);
	font-size: 16px;
	padding: 16px 50px 15px 25px;
	display: inline-block;
}

.button-style a:after,
.button-style-span:after {
	color: var(--white);
	content: "\f061";
	font-family: 'Font Awesome 7 Free';
	font-weight: 900;
	right: 18px;
	position: absolute;
	top: 14px;
	line-height: 28px;
	border-radius: 50px;
	text-align: center;
	transition: .3s ease-in-out;
	transform: rotate(1deg);
	font-size: 15px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.button-style a:hover,
.button-style-span:hover {
	background-color: var(--secondary-color);
	color: var(--white);
}

.button-style a:hover:after,
.button-style-span:after {
	transform: rotate(328deg);
}

.button-group {
	display: flex;
	gap: 10px;
}

.button-style-02 a {
	background-color: var(--white);
	color: var(--black);
}

.button-style-02 a:after {
	color: var(--primary-color);
}

.button-style-02 a:hover {
	background-color: var(--primary-color);
}

.button-style-02 a:hover:after {
	color: var(--white);
}

.button-style-03 a {
	background-color: var(--black);
}

.button-style-03 a:hover {
	background-color: var(--primary-color);
}

.button-style-04 a {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}

.button-style-04 a:hover {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--primary-color);
}

.button-style-04 a:hover:after {
	color: var(--primary-color);
}

/*************** PAGE CSS ***************/
header {
	top: -100px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

.header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0px;
	
}

.logo {
	line-height: 0;
}

.header-right {
	display: flex;
	gap: 15px 20px;
	align-items: center;
	justify-content: flex-end;
}

.header-ad-1 {
	line-height: 0;
	 
}

.call-email {
	 
	display: flex;
	gap: 15px;
	justify-content: space-between;
 
	
}

.call-email a {
	 
	color: var(--body-color);
	line-height:normal;
	position:relative;
	padding:0 0 0 50px;
}

.call-email a i {
	position:absolute;
	left:0;
	top:0;
	width:38px;
	height: 38px;
	border: 1px solid #e2e2e2;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}

.call-email a h6 {
	font-size: 16px;
	margin-bottom: 0;
 
}

.call-email a h6 span {
	font-size: 14px;
	display: block;
}

.btm-header {
	/* background-color: #ecedf2; */
	padding: 12px 0px;
	position: relative;
	z-index: 3;
 
}

.btm-header-wrap {
	display: flex;
	justify-content: space-between;
	 
}

.btm-head-right {
	display: flex;
	gap: 20px;
	align-items: center;
}

.down-btn {
	font-size: 12px;
	text-transform: uppercase;
	font-family: var(--font-bold);
}

.down-btn i {
	margin-right: 6px;
}

.login-btn {
	font-family: var(--font-medium);
	font-size: 14px;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 5px 20px;
	border-radius: 50px;
}

.call-email a:hover {
	color: var(--primary-color);
}

.down-btn:hover {
	color: var(--black);
}

.login-btn:hover {
	background-color: var(--black);
	color: var(--white);
}

.slider-section {
	background-color: #ecedf2;
	background-image: url(../images/bg1.png);
	background-position: top right;
	background-repeat: no-repeat;
	margin-top: -68px;
	padding-top: 68px;
	padding-bottom: 50px;
}

.slider-home-wrap {
	display: flex;
	gap: 25px .3%;
}

.slider-left {
	overflow: hidden;
	flex: 0 0 73.22%;
}

.slider-right {
	flex: 0 0 26.45%;
	line-height: 0;
}
.desktop{}
.mobile{
	display:none !important;
}

header.smaller {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 10;
	-webkit-transition: all 600ms ease-in-out;
	-moz-transition: all 600ms ease-in-out;
	transition: all 600ms ease-in-out;
	top: 0;
	box-shadow: 0px 1px 25px #0000003d;
	background-color: var(--white);
}
header .top-header {
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding:0;
 
}
header.smaller .top-header {
	display: none;
}




/*************** MEMBERSHIP SECTION ***************/
.membership-section {
	padding: 60px 0 50px;
}

.heading {
	font-size: 32px;
	font-family: var(--font-bold);
	color: var(--black);
	margin-bottom: 20px;
}

.membership-intro p {
	font-size: 16px;
	line-height: 26px;
	color: var(--body-color);
	margin-bottom: 30px;
}

.membership-showcase {
	/* padding: 80px 60px; */
	margin-top: 60px;
	color: var(--white);
	background: linear-gradient(to right, rgba(8, 43, 116, 1) 0%, rgba(30, 105, 175, 1) 65%, rgba(30, 105, 175, 1) 65%);
}

.membership-showcase-wrap {
	display: flex;
	gap: 80px;
	align-items: center;
	padding: 80px 60px;
	background-image: url(../images/bg2.png);
	background-repeat: no-repeat;
	background-position: right top -150px;
}

.membership-left {
	flex: 0 0 35%;
}

.membership-left h2 {
	font-size: 32px;
	font-family: var(--font-bold);
	color: var(--white);
}

.membership-left p {
	font-size: 22px;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.9);
	font-family: var(--font-medium);
}

.membership-right {
	flex: 1;
}

.member-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.member-card {
	/* background: rgba(255, 255, 255, 0.05); */
	border: 1px solid #00bff3;
	border-radius: 8px;
	padding: 10px 20px 15px;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: 0.3s;
	position: relative;
}

.member-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
}

.member-logo {
	flex: 0 0 77px;
	height: 77px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	padding: 10px;
}

.member-logo img {
	max-height: 100%;
	object-fit: contain;
}

.member-info h4 {
	font-size: 22px;
	font-family: var(--font-medium);
	margin-bottom: 5px;
	color: var(--white);
}

.member-info span {
	display: block;
	font-size: 14px;
	color: var(--white);
	margin-bottom: 0;
}

.member-time {
	font-size: 12px;
	color: #00ffff;
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-medium);
	position: absolute;
	right: 12px;
	bottom: 12px;
}

.member-time i {
	font-size: 14px;
	color: #00ffff;
}

.home-ad-img {
	padding: 25px 0 60px;
}

.home-ad-img-wrap {
	display: flex;
	justify-content: space-between;
	line-height: 0;
	gap: 20px;
}


/*************** FEATURES SECTION ***************/
.features-section {
	padding: 0px;
	/* border-bottom: 1px solid #e2e2e2; */
	/* border-top: 1px solid #e2e2e2; */
}

.features-wrap {
	display: flex;
	justify-content: space-between;
}

.feature-item {
	flex: 0 0 25%;
	padding: 30px;
	text-align: center;
	border-right: 1px solid #e2e2e2;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
	transition: all 0.4s ease;
	background-color: transparent;
}

.feature-item:hover {
	/* background-color: var(--white); */
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
	z-index: 1;
	position: relative;
	/* border-color: transparent; */
	background-color: #d5e2ed;
}



.feature-item:hover .feature-icon i {
	color: var(--white);
}

.feature-item:first-child {
	border-left: 1px solid #e2e2e2
}


.feature-icon {
	width: 80px;
	height: 80px;
	background-color: #f0f4f9;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 25px;
	transition: all 0.4s ease;
}

.feature-icon i {
	font-size: 32px;
	color: var(--primary-color);
}

.feature-content h4 {
	font-size: 18px;
	font-family: var(--font-bold);
	color: var(--black);
	margin-bottom: 15px;
	line-height: 1.3;
}

.feature-content p {
	font-size: 16px;
	line-height: 22px;
	color: var(--body-color);
	margin-bottom: 0;
	font-family: var(--font-medium);
}


/*************** MEMBER BENEFITS ***************/
.member-benefits {
	padding: 0 0 70px;
}

.benefits-wrap {
	display: flex;
	border: 1px solid #e2e2e2;
	background: #fff;
}

.benefit-item {
	flex: 1;
	display: flex;
	padding: 30px 20px;
	gap: 15px;
	border-right: 1px solid #e2e2e2;
	align-items: flex-start;
	transition: all 0.4s ease;
}

.benefit-item:hover {
	background-color: #f0f8ff;
	box-shadow: inset 0 0 20px rgba(30, 105, 175, 0.05);
}

.benefit-item:hover .benefit-icon img {
	transform: scale(1.1);
}

.benefit-item:last-child {
	border-right: none;
}

.benefit-icon {
	flex: 0 0 39px;
}

.benefit-icon img {
	height: auto;
	transition: all 0.4s ease;
}

.benefit-content h4 {
	font-size: 18px;
	font-family: var(--font-bold);
	color: var(--black);
	margin-bottom: 5px;
	line-height: 1.2;
}

.benefit-content p {
	margin-bottom: 0;
	line-height: 1.4;
	font-family: var(--font-medium);
}

/*************** PRICING SECTION ***************/
.pricing-section {
	padding: 100px 0 0px;
	position: relative;
	color: var(--white);
	background: linear-gradient(to right, rgba(8, 43, 116, 1) 0%, rgba(30, 105, 175, 1) 65%, rgba(30, 105, 175, 1) 65%);
}

.pricing-section:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	background-image: url(../images/bg3.png);
	background-position: top right;
	background-repeat: no-repeat;

}

.pricing-section:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 305px;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: var(--white);


}

.white {
	color: var(--white) !important;
}

.pricing-intro {
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
}

.pricing-intro .heading {
	margin-bottom: 12px;
}

.pricing-wrap {
	display: flex;
	gap: 30px;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.pricing-card {
	flex: 1;
	padding: 60px 50px 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	/* padding-top: 100px; */
}

.pricing-card.free {



	background: linear-gradient(to right, rgba(30, 160, 215, 1) 0%, rgba(23, 85, 156, 1) 100%);


	padding-top: 120px;
}

.pricing-card.standard {


	background: linear-gradient(to right, rgba(58, 152, 36, 1) 0%, rgba(0, 96, 27, 1) 100%);

}

.pricing-card.premium {


	background: linear-gradient(to right, rgba(215, 174, 30, 1) 0%, rgba(175, 126, 10, 1) 100%);

}

.pricing-header {
	position: absolute;
	top: -9px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	padding: 5px 20px;
	border-radius: 0 0 50px 40px;
	width: 249px;
	text-align: center;
}

.pricing-header h3 {
	margin: 0;
	font-size: 32px;
	font-family: var(--font-bold);
}

.pricing-header:before {
	position: absolute;
	content: '';
	width: 53px;
	height: 25px;
	top: 0;
	left: -52px;
	background-image: url(../images/shape-1.png);
	background-position: center;
	background-repeat: no-repeat;
}

.pricing-header:after {
	position: absolute;
	content: '';
	width: 53px;
	height: 25px;
	top: 0;
	right: -49px;
	background-image: url(../images/shape-2.png);
	background-position: center;
	background-repeat: no-repeat;
}

.free .pricing-header h3 {
	color: #1e9fd6;
}

.standard .pricing-header h3 {
	color: #399824;
}

.premium .pricing-header h3 {
	color: #d7ad1e;
}

.pricing-price {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.price-circle {
	width: 134px;
	height: 134px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #000;
}

.price-circle .currency {
	font-size: 32px;
	line-height: 34px;
	font-family: var(--font-semibold);
}

.price-circle .amount {
	font-size: 32px;
	line-height: 28px;
	font-family: var(--font-bold);
}

.price-circle .period {
	font-size: 18px;
	margin-top: 0;
	font-family: var(--font-bold);
	color: #767676;
	line-height: 18px;
}

.pricing-content {
	flex: 1;
}

.benefit-group {
	margin-bottom: 25px;
}

.benefit-group h5 {
	font-size: 19px;
	font-family: var(--font-semibold);
	color: var(--white);
	margin-bottom: 15px;
}

.benefit-group ul {
	padding: 0;
	margin: 0;
}

.benefit-group ul li {
	list-style: none;
	font-size: 15px;
	margin-bottom: 12px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	line-height: 1.4;
	font-family: var(--font-medium);
	color: var(--white);
}

.benefit-group ul li i {
	font-size: 13px;
	margin-top: 4px;
}

.not-included li {
	color: rgba(255, 255, 255, 0.6);
}

.pricing-summary {
	margin-top: 40px;
}

.pricing-summary p {
	font-size: 19px;
	font-family: var(--font-semibold);
	line-height: 1.3;
}

.pricing-footer {
	margin-top: auto;
	padding-top: 12px;
	text-align: center;
}

.pricing-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 25px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	font-family: var(--font-medium);
	font-size: 14px;
	transition: 0.3s;
}

.pricing-btn:hover {
	background: #fff;
	color: var(--black);
	border-color: #fff;
}


/*************** HOW IT WORKS SECTION ***************/
.how-it-works {
	padding: 0 0 100px;
	background-color: #fff;
}

.step-flow-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 60px;
	position: relative;
}

.step-item {
	flex: 0 0 18%;
	position: relative;
	z-index: 1;
}

.step-item:nth-child(even) {
	margin-top: 49px;
}

.step-icon {
	width: 79px;
	height: 79px;
	background: #fff;
	border: 1px solid #e0e8f0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto -32.5px;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.step-box {
	background: #fff;
	border: 1px solid #dfe8ef;
	padding: 70px 30px 60px;
	text-align: center;
	min-height: 280px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
	transition: all 0.4s ease;
}

.step-item:hover .step-box {
	box-shadow: 0 20px 50px rgba(30, 105, 175, 0.08);
	border-color: var(--primary-color);
	transform: translateY(-5px);
}

.step-item:hover .step-icon {
	border-color: var(--primary-color);
	background-color: #f0f7ff;
}

.step-box h4 {
	font-size: 18px;
	font-family: var(--font-bold);
	color: var(--black);
	margin-bottom: 20px;
	line-height: 1.2;
}

.step-box p {
	margin-bottom: 0;
}

.step-arrow {
	position: absolute;
	width: 64px;
	z-index: 0;
	pointer-events: none;
}

.step-item:nth-child(1) .step-arrow,
.step-item:nth-child(3) .step-arrow,
.step-item:nth-child(5) .step-arrow {
	bottom: 25px;
	right: -20px;
}

.step-item:nth-child(2) .step-arrow,
.step-item:nth-child(4) .step-arrow {
	top: 68px;
	right: -20px;
}




.step-arrow img {
	width: 100%;
}

/*************** LEADERSHIP SECTION ***************/
.leadership-section {
	padding: 80px 0 60px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, rgba(8, 43, 116, 1) 0%, rgba(30, 105, 175, 1) 65%, rgba(30, 105, 175, 1) 65%);
}

.leadership-section .heading,
.leadership-section p {
	color: var(--white);
}

.leadership-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/bg3.png);
	background-position: top right;
	background-repeat: no-repeat;
	z-index: 0;
}

.leadership-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.leadership-item {
	background: var(--white);
	padding: 15px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
}

.leadership-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.leadership-img {
	background: #f4f7f9;
	margin-bottom: 25px;
	padding: 0;
	overflow: hidden;
}

.leadership-img img {
	width: 100%;
	display: block;
	transition: 0.5s;
}

.leadership-item:hover .leadership-img img {
	transform: scale(1.05);
}

.leadership-info {
	padding-bottom: 10px;
}

.leadership-info h4 {
	font-size: 19px;
	color: var(--primary-color);
	font-family: var(--font-bold);
	margin-bottom: 8px;
}

.leadership-info span {
	font-size: 14px;
	color: #666;
	display: block;
	font-family: var(--font-medium);
}

.leadership-footer {
	margin-top: 60px;
	text-align: center;
}

.leadership-section .container {
	position: relative;
	z-index: 1;
}

.home-ad-full {
	padding: 40px 0px;
}

.member-logos {
	padding: 50px 0px;
}

.member-logos {
	padding: 50px 0px;
}

.member-logos-list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 1%;
}

.member-logos-list li {
	border: 1px solid #dfe8ef;
	flex: 0 0 13.429%;
	text-align: center;
	line-height: 0;
	overflow: hidden;
}

.member-logos-list li img {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.member-logos-list li:hover img {
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.m-b-10 {
	margin-bottom: 10px !important;
}

.news-events {
	background-color: #ecedf2;
	padding: 60px 0px;
}

.news-box {
	background-color: var(--white);
	display: block;
	padding: 20px;
}

.news-content {
	padding: 30px 0px;
}

.news-content p {
	color: #7e7e7e;
	font-family: var(--font-light);
	font-size: 15px;
	margin-bottom: 20px;
}

.news-content p i {
	margin-right: 5px;
}

.news-content h5 {
	color: var(--black);
	font-size: 18px;
	font-family: var(--font-bold);
	margin-bottom: 0px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.news-box:hover h5 {
	color: var(--primary-color);
}

.news-box:hover .hover-effect img {
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}


/*************** FOOTER SECTION ***************/
footer {
	background: linear-gradient(to right, #082b74 0%, #1e69af 100%);
	color: var(--white);
	padding-top: 60px;
	position: relative;
	overflow: hidden;
}

footer .container {
	position: relative;
	z-index: 1
}

footer::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/bg3.png);
	background-position: top right;
	background-repeat: no-repeat;
	z-index: 0;

}

.footer-top-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin-bottom: 40px;
}

.footer-logo img {
	max-width: 280px;
}

.footer-contact-info {
	display: flex;
	gap: 40px;
}

.f-contact-item {
	display: flex;
	gap: 15px;
	align-items: center;
}

.f-contact-item i {
	width: 45px;
	height: 45px;
	background: var(--white);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
}

.f-contact-text p {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 0;
	color: var(--white);
}

.f-contact-text span {
	display: block;
	font-size: 16px;
	color: var(--white);
	font-family: var(--font-medium);
}

.f-contact-text h6 {
	font-size: 20px;
	margin-bottom: 0;
}

.f-contact-text h6 a {
	color: var(--white);
}


.footer-middle-wrap {
	display: flex;
	justify-content: space-between;
	gap: 80px;
	padding-bottom: 25px;
}

.footer-newsletter {
	flex: 0 0 45%;
}

.footer-newsletter h3 {
	font-size: 32px;
	font-family: var(--font-bold);
	margin-bottom: 30px;
	color: var(--white);
}

.newsletter-form {
	display: flex;
	gap: 10px;
}

.newsletter-form input {
	flex: 1;
	height: 60px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.8);
	padding: 0 20px;
	color: var(--white);
	font-family: var(--font-medium);
	font-size: 14px;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
	background: #2cb2e2;
	color: var(--white);
	border: none;
	padding: 0 40px;
	font-family: var(--font-bold);
	font-size: 18px;
	cursor: pointer;
	transition: 0.3s;
}

.newsletter-form button:hover {
	background: var(--white);
	color: var(--primary-color);
}

.footer-links-wrap {
	flex: 1;
	display: flex;
	justify-content: space-between;
}

.footer-links-col h4 {
	font-size: 18px;
	font-family: var(--font-semibold);
	margin-bottom: 25px;
	color: var(--white);
}

.footer-links-col ul li {
	margin-bottom: 4px;
}

.footer-links-col ul li a {
	color: var(--white);
	font-size: 15px;
	transition: 0.3s;
}

.footer-links-col ul li a:hover {
	color: #24c5ff;
}

.footer-bottom-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding: 30px 0;
}

.f-bottom-left p {
	font-size: 14px;
	margin-bottom: 10px;
}

.f-bottom-links {
	font-size: 14px;
	color: var(--white);
	display:inline-flex;
	gap:0 10px;
}

.f-bottom-links a {
	color: var(--white);
	
}

.f-bottom-links a:hover {
	color: var(--secondary-color);
}

.f-bottom-right p {
	font-size: 14px;
	margin-bottom: 0;
	color: var(--white);
}
.f-bottom-right p a {
	color: var(--white);
}

.f-bottom-right p a:hover{
	color: var(--secondary-color);
}






 


/*************** SEARCH FORM ***************/
.search-form-wrap {
	display: flex;
	align-items: center;
	gap: 6%;
	/* background: transparent; */
	padding: 50px 0 0;
	/* margin-top: 30px; */
	/* border-top: 1px solid rgba(0, 0, 0, 0.05); */
}

.search-form-title h3 {
	margin: 0;
	font-size: 24px;
	font-family: var(--font-bold);
	color: var(--black);
	line-height: 1.2;
	max-width: 225px;
}

.search-form {
	display: flex;
	flex: 1;
	gap: 15px;
	align-items: stretch;
}

.search-input-group {
	flex: 1;
}

.search-input-group select {
	width: 100%;
	height: 50px;
	padding: 0 15px;
	border: 1px solid #000;
	background: transparent;
	font-family: var(--font-medium);
	font-size: 14px;
	color: #4e4e4e;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%231e69af' d='M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px;
	font-family: var(--font-medium);
}

.search-submit {
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	padding: 0 30px;
	height: 50px;
	font-family: var(--font-medium);
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: 0.3s;
}

.search-submit i {
	font-size: 18px;
}

.search-submit:hover {
	background-color: var(--black);
}

/*************** table style ***************/
.responsive-table {
	overflow-x: auto;
}

.table-style {
	border-collapse: collapse;
	width: 100%;
}

td,
th {
	border: 1px solid #ddd;
	padding: 8px;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}

tr:hover {
	background-color: #ddd;
}

th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: var(--primary-color);
	color: var(--white);
}

.label{
	padding:20px 0;
	line-height:normal;
	font-size:16px;
	width:100%;
	display:block;
	color:var(--primary-color);
	font-family:var(--font-semibold);
 
}
 
input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: inline-block;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);
}
 
 
/*****select*******/ 

.select-wrapper {
  position: relative;
  width: 100%;
   
}

.custom-select {
  width: 100%;
  height:55px;
  padding: 12px 40px 12px 12px;
  font-size: 14px;
  border:1px solid var(--grey-dark);
  background-color: transparent;
  appearance: none;           /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.fieldset.street-input  {
	  width: 100%;
  height:55px;
  padding: 12px 40px 12px 12px;
  font-size: 14px;
  border:1px solid var(--grey-dark);
  background-color: transparent;
  appearance: none;           /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover & Focus */
.custom-select:hover, .fieldset:hover {
  border-color: #999;
}

.custom-select:focus, .fieldset:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

/* Custom Arrow */
.select-wrapper::after {
  
  content: "▼";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: var(--primary-color);
}

/*********check box**************/
.my-checkbox {
  transform: scale(2);
  margin-left:10px;
  display:inline-block;
  border:0;
}
  /* Hide default checkbox */
.custom-checkbox input {
  display: none;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
  /*transform: scale(2);*/
  width: 25px;
  height: 25px;
  background-color: transparent;
  border:2px solid var(--primary-color);
  border-radius: 5px;
  display: inline-block;
  position: relative;
  margin-left:10px;
  vertical-align: middle;
  cursor: pointer;
  
}

/* Show checkmark when checked */
.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Optional: Hover effect */
.custom-checkbox:hover .checkmark {
  background-color: rgba(0, 0, 0, 0.4); /* Slightly more opaque on hover */
} 
.form-gutter{
	gap:20px 20px;
}
.member-photo{
	max-width:200px;
	display:inline-block;
}    
/*************************/
    .date-input{
        position:relative;
        width:280px;
    }

    .date-input input{
        width:100%;
        padding:12px 16px;
        border:1px solid #c1c1c1;
        font-size:16px;
        outline:none;
        transition:0.3s;
        background:#fff;
        cursor:pointer;
    }

    .date-input input:focus{
        border-color:#4f46e5;
        box-shadow:0 0 10px rgba(79,70,229,0.2);
    }

    /* Calendar icon */
    .date-input::after{
        content:"📅";
        position:absolute;
        right:15px;
        top:50%;
        transform:translateY(-50%);
        pointer-events:none;
        font-size:18px;
    }

    /* Custom date picker style */
    input[type="date"]::-webkit-calendar-picker-indicator{
        opacity:0;
        width:100%;
        position:absolute;
        left:0;
        top:0;
        cursor:pointer;
    }

/**********forms**************/

.application-form-wrap{
	max-width:1100px;
	margin:0 auto;
	}
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	height: 50px;
	padding: 10px 15px;
	background-color: var(--white);
	display: block;
	border: 1px solid #c1c1c1;
	margin: 0 0 10px 0;
	color: #262626;
	font-size: 14px;
 
}

textarea.fieldset,
textarea {
	height: 140px;
}

.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0 5px 0 0;
	float: left;
	color: var(--white);
	font-size: 24px;
	cursor: pointer;
	vertical-align: top;
	padding: 14px 25px 16px;
	text-align: center;
	background-color: var(--secondary-color);
	text-transform: uppercase;
 
}
.sendbutton-full{
	width:100%;
	}

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

::-webkit-input-placeholder {
	color: #262626 !important;
}

:-moz-placeholder {
	color: #262626 !important;
}

::-moz-placeholder {
	color: #262626 !important;
}

:-ms-input-placeholder {
	color: #262626 !important;
}

.newsletter-form input::-webkit-input-placeholder {
	color: #fff !important;
}

.newsletter-form input:-moz-placeholder {
	color: #fff !important;
}

.newsletter-form input::-moz-placeholder {
	color: #fff !important;
}

.newsletter-form input:-ms-input-placeholder {
	color: #fff !important;
}



/*************HOVER EFFECT*******/
.hover-effect {
	width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
}

.hover-effect i {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--white);
	position: absolute;
	left: 50%;
	top: -100px;
	z-index: 1;
	line-height: 50px;
	text-align: center;
	margin: 0 0 0 -25px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.hover-effect:hover i {
	top: 50%;
	margin: -25px 0 0 -25px;
}

.hover-effect:hover i:hover {
	background-color: var(--secondary-color);
}

.hover-effect img {
	display: block;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	width: 100%;
}

.hover-effect:hover img {
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

/*************BACK TO TOP*******/
.progress-wrap {
	position: fixed;
	right: 10px;
	bottom: 10px;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: "\f30c";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	text-align: center;
	line-height: 45px;
	font-size: 20px;
	color: #0eb0eb;
	left: 0;
	top: 0;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: #0eb0eb;
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

/***************INNER PAGE SETTINGS**************/

 
.banner { 
	width: 100%;
	height:150px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/banner-bg.jpg);
 
	 
}
 
.banner h2 {
	color:var(--white);	
	font-weight:var(--bold);
	font-size:30px;
	line-height:30px;
	margin:0;
	padding:0;
	position:relative;
	z-index:2;
}
 
 .section-spacing{
	 padding:100px 0;
 	}
	

 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--grey-dark);
	margin:0;
	position:relative;
	z-index:1;
}
 
.breadcrumb ul {     
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding:0;
 
}

.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--white);
	font-family:var(--bold);
 } 
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " →  "; 
	  color:var(--secondary-color);
	 
}
 .breadcrumb a{
   color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--secondary-color);	
 
}
   
.display-style{ 
      
	 /*aspect-ratio: 1 / 1;*/
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 transition: all 0.4s ease;
	 text-align:center;
	 justify-content: center;
	 flex-direction:column;
	 background-color:var(--white);
}
.display-style:hover{
	background-color:var(--primary-color);
	color:var(--white);
}


.display-style .icon{
	 display: flex;
	 justify-content: center;
	 margin-bottom:25px;
	 transition: all 0.4s ease;
	 font-size:40px;
	 align-items: center;
	 color:var(--primary-color);
} 
  
.display-style .icon img{
	width:70px;
	display:block;
} 
.display-style:hover .icon{
	filter: brightness(0) invert(1);
	transform: rotate(360deg);
}
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 30px 120px;
	margin-bottom:25px;
	border-bottom:1px solid var(--grey);
	min-height:100px;
	position:relative;
}
.iconic:before{
	width:80px;
	height:1px;
	content:'';
	position:absolute;
	left:0;
	bottom:-1px;
	background-color:var(--secondary-color);
	z-index:1;
}
.iconic:last-child{
	 
}
.iconic h2{
	font-size: 20px;
	font-weight:var(--bold);
	margin:0 0 15px 0;
	line-height:30px;
	color:var(--primary-color);
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding: 5px;
	border-radius:50%;
	border:1px solid var(--grey-dark);
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.iconic:hover .webicon{
	transform: rotate(360deg);
	
}
.iconic p:last-child{
	margin:0;
}
 
 /**********card design***********/
 

/* CARD */
.card{
     
    border:1px solid var(--grey);
	background:#fff;
    padding:70px 20px 20px 20px;
    position:relative;
    overflow:hidden;
    display:flex;
    gap:20px;
 
}

/* PREMIUM RIBBON */
.ribbon{
    position:absolute;
    top:20px;
    right:0;   
    color:#fff;
    font-size:18px;
    padding:10px 20px;
    line-height:1;
}
.premium{
	 background: var(--secondary-color);
} 
.standard{
	 background: #399724;
} 
.free{
	 background: #D6AD1E;
}
/* LOGO */
.membership-logo{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
	overflow:hidden;
	border:1px solid var(--grey);
}

/* CONTENT */
.card .content h2{
    font-size:24px;
    color:var(--primary-color);
    margin-bottom:8px;
}

.card .content .sub{
    font-size:14px;
    color:var(--grey-dark);
    margin-bottom:18px;
    font-weight:400;
}

.card .info{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
    color:#777;
   
}

.card .info i{
	color:var(--secondary-color);
   
}
 
/* CARD */
.member-details{
 
	margin:10px 0;
	padding:10px 0 10px 60px;
	position:relative;
	vertical-align:text-top;
	justify-content: start;
	background-color:var(--grey-light);
}
.member-details i{
	position:absolute;
	left:20px;
	top:12px;
	color:var(--primary-color);
}
 .member-details strong{
 	font-family:var( --font-medium);
 }






  /**********************/
 .address-box{
	padding:30px;
	border-bottom:4px solid var(--secondary-color);
	/*background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));*/
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
 
	 
}
 .add h2{
 	font-size:12px;
	line-height:14px;
	font-weight:var(--medium);	 
	margin:0;
	line-height:normal;
 }
.add i{
	width:40px;
	height:40px;
	line-height:35px;
	background-color:var(--primary-color);
	color:var(--white);
	font-size:16px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--black);
	}
.add a:hover{
	color:var(--secondary-color);
	} 

/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:var(--white)!important;	 
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 .fix-bg{
 	background-attachment:fixed;
	position:relative;
 }
 




/***************INNER PAGE SETTINGS END**************/














@media only screen and (max-width: 1200px) {
	.membership-showcase-wrap {
		flex-direction: column;
		gap: 40px;
	}

	.membership-left {
		flex: 0 0 100%;
		text-align: center;
	}
	
 
.header-ad-1 {
	width:50%;}
}

@media only screen and (max-width: 767px) {
	.member-grid {
		grid-template-columns: 1fr;
	}

	.membership-showcase {
		padding: 40px 20px;
	}
.btm-header-wrap {
	padding-right:50px;
	justify-content: start;	
}
 .section-spacing{
	 padding:50px 0;
 	}
}

@media only screen and (max-width: 1200px) {
	.footer-top-wrap {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}

	.footer-contact-info {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-middle-wrap {
		flex-direction: column;
		gap: 50px;
	}

	.footer-newsletter {
		flex: 0 0 100%;
	}
}

@media only screen and (max-width: 767px) {
	.footer-links-wrap {
		flex-direction: column;
		gap: 30px;
	}

	.footer-bottom-wrap {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-form button {
		height: 50px;
	}
}


@media only screen and (max-width: 1200px) {
	.search-form-wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.search-form {
		width: 100%;
		flex-wrap: wrap;
	}

	.search-input-group {
		flex: 0 0 48%;
	}
}



@media only screen and (max-width: 1024px) {
	.features-wrap {
		flex-wrap: wrap;
	}

	.feature-item {
		flex: 0 0 50%;
		border-right: none;
		margin-bottom: 40px;
	}

	.feature-item:nth-child(odd) {
		border-right: 1px solid #e2e2e2;
	}
}

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


}
@media only screen and (max-width: 767px) {
	.feature-item {
		flex: 0 0 100%;
		border-right: none !important;
		padding: 0 15px;
	}
}



@media only screen and (max-width: 1200px) {
	.benefits-wrap {
		flex-wrap: wrap;
	}

	.benefit-item {
		flex: 0 0 33.33%;
		border-bottom: 1px solid #e2e2e2;
	}

	.benefit-item:nth-child(3n) {
		border-right: none;
	}
}

@media only screen and (max-width: 767px) {
	.benefit-item {
		flex: 0 0 100%;
		border-right: none !important;
	}
}




@media only screen and (max-width: 1200px) {
	.step-arrow {
		display: none;
	}

	.step-item {
		flex: 0 0 48%;
		margin-bottom: 40px;
	}

	.step-item:nth-child(even) {
		margin-top: 0;
	}

	.step-flow-wrap {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.step-item {
		flex: 0 0 100%;
	}
}




@media only screen and (max-width: 1200px) {
	.leadership-wrap {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
 header{
 	 
 }
}

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

.leadership-wrap {
		grid-template-columns: 1fr;
	}
	
.slider-home-wrap {
	display: flex;
	gap: 10px 0;
	flex-direction:column;
}

.slider-left {
	flex: 0 0 100%;
	 
}
.slider-right {
	width:100%;
	display:flex;
}
header{
	padding-bottom:10px;
}
.desktop{
	display:none !important;}
.mobile{
	display:block !important;
	width:100%;
}
 
 
.call-email a h6 {
	display:none;
}
.call-email{
	gap:  5px;
}
.call-email a i {
	position:relative;
	left:auto;
	top::auto;
	width:30px;
	height:30px;
	font-size:12px;
	 
}
.call-email a {
		padding:0;
}
 
 
.btm-head-right {
	gap: 0 10px;
}

.search-form {
	 display: grid;
	 grid-gap:10px;
	grid-template-columns: repeat(1, 1fr);
}

.search-submit {
	width:100%;
	text-align:center;
	justify-content: center;
	direction:flex;
	 
}
.pricing-header {
	width: 180px;
 
}
.pricing-header h3 {
 
	font-size: 18px;
 
}
.pricing-header:before {
	left: -44px;
	 
}

.pricing-header:after {
	right: -44px;
	 
}




.down-btn {
	font-size: 10px;
	 
}

.down-btn i {
	margin-right: 6px;
}

.login-btn {
 
	font-size: 12px;
	padding: 5px 10px;
 
}
}

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

	.pricing-wrap {

		flex-direction: column;
		gap: 60px;
	}

	.pricing-card {
		max-width: 500px;
		margin: 0 auto;
		width: 100%;
	}
}

/************************************* 1330px *************************************/
@media only screen and (max-width: 1450px) {
	.container {
		width: 95%;
 
	}

	.scrollwrap {
		width: 100% !important;
		padding: 0;
	}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
	.container {
		width: 90%;
	}
}

/************************************* 800px *************************************/
@media only screen and (max-width: 800px) {}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {

	.two-col,
	.three-col,
	.four-col,
	aside,
	summary {
		flex: 0 0 100%;
		margin: 0 0 25px 0;
	}
	
	.member-photo{
	 margin-top:25px;
}
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
	.gap-50 {
		height: 25px;
	}

	.gap-100 {
		height: 50px;
	}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}