* {
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	font-family: 'Poppins', 'sans-serif;';
	box-sizing: border-box;
}

ul,
ol {
	list-style: none;
}

p {
	margin-bottom: 20px;
}

:root {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
}

.container,
.container-fluid {
	width: 100%;
	padding-right: var(--bs-gutter-x, .75rem);
	padding-left: var(--bs-gutter-x, .75rem);
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1180px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
	margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
}

.col {
	flex: 1 0 0%;
}

.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

/*------------ Layout media query starts ------------*/
@media (min-width: 768px) {
	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}

@media (min-width: 992px) {
	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 1.4;
}

.h1,
h1 {
	font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {

	.h1,
	h1 {
		font-size: 2.5rem
	}
}

.h2,
h2 {
	font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {
	.h2,
	h2 {
		font-size: 2.25rem
	}
}

.h3,
h3 {
	font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {
	.h3,
	h3 {
		font-size: 1.75rem
	}
}

.h4,
h4 {
	font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
	.h4,
	h4 {
		font-size: 1.5rem
	}
}

.h5,
h5 {
	font-size: 1.25rem
}

.h6,
h6 {
	font-size: 1rem
}

[class*="row-gap"] {
	row-gap: 20px;
}

.row-gap-3 {
	row-gap: 30px !important;
}

.col-gap{
	column-gap: 30px;
}

img,
svg {
	vertical-align: middle;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

:where(.section, section, .sec-space, .mt-5, .mt-auto) {
	margin-top: 60px;
}

.mt-3 {
	margin-top: 30px !important;
}

.mx-auto{
	margin-inline: auto !important;
}

.mt-lg-5{
	margin-top: 80px;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1{
	margin-bottom: 10px !important;
}

[class*="flex-"] {
	display: flex;
	align-items: center;
}

[class*="flex-col"] {
	flex-flow: column;
	align-items: unset;
}

[class*="-between"] {
	justify-content: space-between;
}

.justify-content-center {
	justify-content: center;
}

.align-items-center {
	align-items: center;
}

.text-center {
	text-align: center;
}

/*//header-----------------------start*/

header {
	height: 80px;
	display: flex;
}

header .flex-menu {
	gap: 40px;
}

.btn-flex-grp {
	flex-wrap: wrap;
	gap: 10px 15px;
}

header nav ul li.dropdown {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
}

header nav ul li.dropdown ul {
	position: absolute;
	top: 40px;
	white-space: nowrap;
	right: -60px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	z-index: 999;
}

header nav ul li.dropdown:hover ul {
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
	transition: all .3s ease;
}

#closeBtn,
#toggleBtn,
header .flex-menu li.btn,
header .mob-btn {
	display: none;
}

#headerSticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

header .site-logo img{
	height: 80px;
}

/*//responsive-query=================start*/

/* both Screens */
@media (width <=1023px) {
	#closeBtn,
	#toggleBtn,
	header .flex-menu li.btn,
	header .mob-btn {
		display: block !important;
	}

	header .mob-btn {
		margin-inline: auto 20px;
	}

	header nav {
		position: absolute;
	}

	header .flex-menu {
		position: fixed;
		left: 0;
		background: #f7f5ff;
		padding: 30px 20px;
		gap: 25px !important;
		height: 100%;
		width: 85%;
		overflow: auto;
		z-index: 99999;
		transform: translateY(100%);
		opacity: 0;
		visibility: hidden;
		transition: all .4s ease;
	}

	header .flex-menu#showMainMenu {
		transform: translateY(0%);
		opacity: 1;
		visibility: visible;
		transition: all .4s ease;
	}

	header .flex-menu,
	header nav ul li.dropdown {
		flex-direction: column;
		align-items: unset !important;
		top: 0;
	}

	header .flex-menu li.dropdown ul {
		transform: unset !important;
		position: relative !important;
		top: 10px !important;
		right: 0px !important;
		display: none;
		opacity: 1;
		visibility: visible;
	}

	header .flex-menu li.dropdown ul#showMenu {
		display: grid !important;
	}

	header nav ul li.dropdown svg {
		position: absolute;
		right: 0;
		top: 7px;
	}

	header nav ul li.dropdown ul li a {
		white-space: normal !important;
		line-height: 30px;
	}

	.hero-sec img{
		height: unset !important;
	}

	.inner-img, 
	.like-cta:after{
		display: none !important;
	}
}



/* Tablet Screens */
@media (600px <=width <=1023px) {
	.grid-5{
		grid-template-columns: repeat(3, 1fr) !important;
	}
}



/* Small Mobile Screens */
@media (width <=600px) {
	.grid-5{
		grid-template-columns: auto !important;
	}
}