@import url('https://fonts.googleapis.com/css2?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');

* {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
p,h1,h2,h3,h4,h5,h6{
	margin: 0px;
	padding: 0px;
}
ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
a,
a:hover,
a:focus {
	text-decoration: none;
	color: unset;
}

body{
	font-family: "Poppins", sans-serif;
}

/* #Progress with back to top*/
:root {
	--red: #da2c4d;
	--yellow: #f8ab37;
	--green: #2ecc71;
	--white: #ffffff;
	--grey-light: #f2f7f9;
	--grey: #ecedf3;
	--black: #080808;
	--black-blue: #1f2029;
	--black-blue-light: #353746;
	--black-blue-light-2: #404255;
	--black-blue-light-3: #4b4d64;
	--black-light: #424455;
}
.progress-wrap {
	position: fixed;
	right: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px #CD0565;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	bottom: 86px;
	background: #fff;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	content: '\f004';
	font-family: 'Font Awesome\ 5 pro', sans-serif !important;
	font-weight: 900;
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: #CD0565;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	animation: heartbeat 1s infinite;
}
.progress-wrap:hover::after {
	opacity: 1;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
	stroke: var(--grey);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

@keyframes heartbeat {
	0% {
		transform: scale(.75);
	}

	20% {
		transform: scale(1);
	}

	40% {
		transform: scale(.75);
	}

	60% {
		transform: scale(1);
	}

	80% {
		transform: scale(.75);
	}

	100% {
		transform: scale(.75);
	}
}

::selection {
	background-color: #CD0565;
	color: rgb(255, 255, 255);
}


/**** Start webkit scrollbar ******/
div::-webkit-scrollbar {
	width: 6px;
}
div::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba #313131;
	border-radius: 12px;
}
::-webkit-scrollbar {
	width: 4px;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 2px #000;
	border-radius: 0px;
}
::-webkit-scrollbar-thumb {
	background: #CD0565;
	border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
	background: #313131;
}

/*   mobile menu section */
.btn_mobile-lr{
	display: flex;
	gap: 7px;
}
.sidebar-icon .side_cnf{
	width: 30px;
}
.mob_changes .dropdown-menu{
	border: none;
	border-radius: 10px;
	padding: 10px 0px;
}
.sidebar-icon{
	display: flex;
	justify-content: end;
	gap: 16px;
	padding-right: 10px;
	align-items: center;
}
.nav-brand-logo a img{
	width: 150px;
	margin-left: 10px;
}
.logo-mobile a {
	display: block;
	margin-left: 26px;
}
.logo-mobile a img{
	width: 198px;
}
#sidebar {
	width: 300px;
	position: fixed;
	top: 0;
	left: -310px;
	height: 100vh;
	z-index: 999;
	background: rgb(255, 255, 255);
	color: #fff;
	transition: all 0.3s;
	overflow-y: scroll;
	box-shadow: 3px 3px 19px 0px rgb(0 0 0 / 13%);
	border-radius: 0px 30px 30px 0px;
}
#sidebar.active {
	left: 0;
	z-index: 9999999999999;
}
#dismiss {
	width: 46px;
	height: 46px;
	line-height: 35px;
	text-align: center;
	background: #CD0565;
	position: absolute;
	color: #fff;
	top: 14px;
	font-size: 24px;
	right: 17px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	display: flex;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 60%;
	justify-content: center;
	align-items: center;
}
#dismiss:hover {
	color: #fff;
}
.overlay {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 998;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.overlay.active {
	display: block;
	opacity: 1;
}
#sidebar .sidebar-header {
	padding: 20px;
	background: rgb(255, 255, 255);
}
#sidebar ul.components {
	padding: 70px 0px 30px 0px;
}
#sidebar ul p {
	color: #fff;
	padding: 10px;
}
#sidebar ul li a {
	padding: 12px 22px;
	font-size: 14px;
	display: block;
	color: #414141;
	border-bottom: 0.5px solid rgb(200 200 200 / 18%);
	font-weight: 500;
}
#sidebar ul li a.nb-0{
	border-bottom: none;
}
#sidebar ul li a i {
	float: right;
	margin-top: 5px;
	margin-right: 10px;
}
.nav-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px;
	background: #ffffff;
	border-radius: 0px 0px 38px 38px;
}
.menu-position{
	position: relative;
}
.loginreg-btn-bg{
	padding: 13px 22px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.loginreg-btn-bg .login-btn-main{
	background: #CD0565;
	color: #fff;
	font-size: 13px;
	display: inline-block;
	padding: 10px 21px;
	border-radius: 20px;
	font-weight: 400;
}
.loginreg-btn-bg .regist-btn-main{
	background: transparent;
	color: #fff;
	font-size: 13px;
	display: inline-block;
	padding: 9px 26px;
	border-radius: 20px;
	font-weight: 400;
	background: #CD0565;
}

/* desk menu section start */
.navbar-desk {
	position: relative;
	z-index: 999;
	padding: 22px 0px;
}
.flex_desk_menubar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-radius: 60px;
	padding: 8px 14px;
}
.menu-desk-link {
	display: flex;
	justify-content: end;
	align-items: center;
}
.menu-desk-link li {
	padding: 4px 16px;
}
.menu-desk-link li a {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	transition: all 0.3s ease-in-out;
}
.menu-desk-link li a.active {
	font-weight: 500;
	color: #CD0565;
}
.flex_desk_menubar .navmenu_bfbdfrdvdfr{
	display: flex;
	align-items: center;
	gap: 14px;
}
.login-registersbtn{
	display: flex;
	align-items: center;
	gap: 22px;
}
.login-registersbtn .login-btn-main{
	width: 104px;
	height: 43px;
	border-radius: 40px;
	color: #000;
	border: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.4s;
	background: transparent;
}
.login-registersbtn .regist-btn-main{
	width: 140px;
	height: 44px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #CD0565;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.4s;
}
.menu-desk-link .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 11px 0;
	margin: 15px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: none;
	border-radius: 11px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	box-shadow: 2px 8px 44px -10px rgb(0 0 0 / 13%);
	transform: translate(0px, 0px) !important;
}
.menu-desk-link .dropdown-menu li{
	padding: 0;
}
.menu-desk-link .dropdown-menu li a{
	padding: 8px 19px;
}

/* header sections start  */
.banner_sidebar .bannermile{
	width: 100%;
}
.banner_sidebar{
	position: relative;
	right: -60px;
}
.main_header_scvBG{
	position: relative;
	background: url(../images/header-bgNri.png) no-repeat;
	background-size: cover;
}
.header_mains-divclc{
	padding-top: 66px;
	overflow: hidden;
}
.center_header-sec{
	display: flex;
	align-items: center;
}
.left_matri_headers h1{
	font-size: 54px;
	color: #000000;
	line-height: 68px;
	font-weight: 300;
}
.left_matri_headers h1 .primary{
	color: #CD0565;
	font-weight: 600;
}
.left_matri_headers h1 .bold{
	font-weight: 600;
}
.left_matri_headers h4{
	color: #000000ab;
	font-size: 16px;
	font-weight: 300;
	margin-top: 22px;
	line-height: 26px;
}
.left_matri_headers h4 span{
	font-weight: 600;
	color: #000;
}

/* search section form start   */
.register-frm-ds {
	height: auto;
	width: 100%;
	display: flex;
	gap: 12px;
	align-items: end;
	margin-top: 26px;
}
.lookin-for-field{
	width: 19%;
}
.religion-field{
	width: 25%;
}
.search-age-field-main{
	width: 40%;
}
.search-age-field-flex{
	display: flex;
	align-items: center;
	gap: 10px;
}
.search-age-field-flex .age-field{
	width: 100%;
}
.search-button button{
	height: 42px;
	width: 42px;
	border-radius: 8px;
	background: #CD0565;
	border: 1px solid #CD0565;
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.custom-select-wrapper {
	position: relative;
	display: block;
	user-select: none;
}
.custom-select-wrapper select {
	display: none;
	visibility: hidden;
	border: 0px;
}
.search-label {
	display: block;
	max-width: 100%;
	margin-bottom: 6px;
	font-size: 14px;
	text-align: left;
	font-weight: 500;
	height: 20px;
	color: #000000;
}
.custom-select-trigger {
	position: relative;
	display: block;
	font-size: 13px;
	color: #000;
	line-height: 42px;
	cursor: pointer;
	padding: 0 14px;
	font-weight: 400;
	background: #F8F8F8;
	border-radius: 8px;
	text-align: left;
}
.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	width: 5.5px;
	height: 5.5px;
	top: 48%;
	right: 14px;
	margin-top: 0px;
	border-bottom: 1px solid #474747;
	border-right: 1px solid #474747;
	transform: rotate(45deg) translateY(-50%);
	transition: all .4s ease-in-out;
	transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	right: 0;
	min-width: 100%;
	max-height: 153px;
	overflow: auto;
	overflow-x: hidden;
	margin: 0px 0;
	border: 1px solid #dedede;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
	background: #fff;
	transition: all .4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
	border-radius: 10px;
}
.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
	z-index: 100;
}
.custom-options:before {
	position: absolute;
	display: block;
	content: '';
	bottom: 100%;
	right: 25px;
	width: 7px;
	height: 7px;
	margin-bottom: -3px;
	border-top: 1px solid #b5b5b5;
	border-left: 1px solid #b5b5b5;
	background: #fff;
	transform: rotate(45deg);
	transition: all .4s ease-in-out;
}
.option-hover:before {
	background: #f9f9f9;
}
.custom-option {
	position: relative;
	display: block;
	padding: 0 17px;
	border-bottom: 1px solid #ececec;
	font-size: 14px;
	font-weight: normal;
	color: #464646;
	line-height: 37px;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
.custom-option:first-of-type {
	border-radius: 0px 0px 0 0;
}
.custom-option:last-of-type {
	border-bottom: 0;
	border-radius: 0 0 0px 0px;
}
.custom-option:hover,
.custom-option.selection {
	background: #ececec;
}
.to_labl-form {
	display: block;
	font-size: 12px;
	font-weight: 500;
	height: 20px;
	color: #000000;
	text-align: center;
}

/* Find Your Perfect Match section start  */
.header-bottomMainsdiv{
	background: #000;
	padding: 20px 0px;
}
.topHeading-text h3{
	font-size: 40px;
	color: #000;
	font-weight: 300;
}
.topHeading-text h3 span{
	font-weight: 600;
}
.topHeading-works h2{
	font-size: 36px;
	color: #fff;
	font-weight: 300;
	line-height: 1.3;
	margin-top: 10px;
}
.topHeading-works h2 span{
	font-weight: 600;
}
.topHeading-text{
	width: 50%;
	margin: auto;
	margin-bottom: 32px;
}
.topHeading-text p{
	font-size: 15px;
	color: #586169;
	font-weight: 400;
	margin-top: 10px;
}
.single-btm-header{
	margin: 15px 0px;
}
.single-btm-header h4{
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	margin-top: 12px;
}
.single-btm-header .works-img-icon{
	height: 54px;
	width: 54px;
	object-fit: contain;
}

/* last added ptofile section start  */
.lastaddd_Seactionmaindiv{
	padding: 61px 0px 32px;
	background: #fff;
}
.lastaddedunder-contenst{
	margin-top: 22px;
}
.titles_lastadded h2{
	color: #212429;
	font-size: 34px;
	font-weight: 700;
}
.titles_lastadded h2 .dark{
	color: #CD0565;
}
.titles_lastadded p{
	font-size: 16px;
	color: #586169;
	font-weight: 400;
	margin-top: 4px;
}
.lastaddeSlider .items{
	padding: 20px 15px;
}
.multieBordersBG{
	position: relative;
}
.single_lastProfiles .tops_imagesdsd{
	width: 100%;
	height: 320px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.tops_imagesdsd .lastprofileimg{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.multieBordersBG .last-cntrd{
	padding: 12px;
	border: 1px solid #6c6c6c;
	border-radius: 10px;
	position: absolute;
	bottom: 10px;
	width: 92%;
	margin: auto;
	left: 0;
	right: 0;
	background: #0000005e;
	backdrop-filter: blur(4px);
}
.multieBordersBG .last-cntrd h4{
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.multieBordersBG .last-cntrd p{
	color: #ffffffce;
	font-size: 14px;
	font-weight: 400;
	margin-top: 6px;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.lastaddeSlider.owl-theme .owl-controls .owl-buttons div{
	font-size: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	opacity: 1;
}
.lastaddeSlider.owl-theme .owl-controls{
	margin-top: 0px;
}
.lastaddeSlider.owl-theme .owl-controls .owl-buttons .owl-prev:after{
	content: "";
	height: 39px;
	width: 39px;
	background: url(../images/lastPrev-arrow.png);
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0;
	top: 0;
	margin: auto;
}
.lastaddeSlider.owl-theme .owl-controls .owl-buttons .owl-next{
	content: "";
	height: 38px;
	width: 38px;
	background: url(../images/lastNextarrow.png);
	display: block;
	position: absolute;
	bottom: 0;
	right: 0px;
	top: 0;
	margin: auto;
}
.success_sliders.owl-theme .owl-controls .owl-buttons div{
	font-size: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	opacity: 1;
}
.success_sliders.owl-theme .owl-controls{
	margin-top: 0px;
}
.success_sliders.owl-theme .owl-controls .owl-buttons .owl-prev:after{
	content: "";
	height: 39px;
	width: 39px;
	background: url(../images/lastPrev-arrow.png);
	display: block;
}
.success_sliders.owl-theme .owl-controls .owl-buttons .owl-next{
	content: "";
	height: 38px;
	width: 38px;
	background: url(../images/lastNextarrow.png);
	display: block;
}
.success_sliders.owl-theme .owl-controls .owl-buttons{
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}

/* country stats section   */
.maincoutry-setsffgfg{
	background: #CD0565;
	padding: 10px 0px;
}
.commancdjfdmlnjor .cmn-icons{
	height: 54px;
	width: 54px;
	margin: auto;
	object-fit: contain;
	display: block;
}
.commancdjfdmlnjor h4{
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	margin-top: 15px;
}
.commancdjfdmlnjor p{
	font-size: 13px;
	text-align: center;
	font-weight: 400;
	color: #fff;
	margin-top: 3px;
}
.maincoutry-setsffgfg .commancdjfdmlnjor{
	margin: 20px 0px;
}

/* success stories section start  */
.succesmainstoriefrg{
	padding: 48px 0px 46px;
	background: url(../images/bg-success-story.png) no-repeat, #fff;
	background-size: cover;
}
.success-leftssdsff {
	margin-bottom: 42px;
}
.success-leftssdsff h2{
	font-size: 38px;
	color: #fff;
	font-weight: 700;
	margin-top: 12px;
	transition: all 0.4s;
}
.single_storiesmain{
	position: relative;
	transition: all 0.4s;
	background: #fff;
	box-shadow: 0px 0px 22px 0px #6363631A;
	border-radius: 16px;
	padding: 8px;
}
.single_storiesmain .storie_profiles{
	height: 214px;
	width: 100%;
	border-radius: 14px;
	object-fit: cover;
	object-position: top;
}
.success_sliders .items{
	padding: 10px 10px;
}
.hover_contentsview{
	padding: 18px 15px 11px;
}
.hover_contentsview h4{
	font-size: 18px;
	font-weight: 500;
	color: #212429;
	margin-bottom: 5px;
}
.hover_contentsview p{
	font-size: 14px;
	color: #586169;
	font-weight: 400;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.more-home-stories{
	color: #000;
	font-weight: 400;
	border: 1px solid #000;
	display: inline-block;
	padding: 8px 22px;
	border-radius: 40px;
	margin-top: 12px;
	transition: all 0.3s;
}
.more-home-stories:hover{
	background: #000;
	color: #fff;
}

/* .app away section start   */
.appwawysmaindivsdfer{
	padding: 46px 0px 52px;
}
.left_appsawaydivs h2{
	font-size: 44px;
	color: #212429;
	line-height: 62px;
	font-weight: 600;
}
.left_appsawaydivs h2 span{
	color: #CD0565;
}
.left_appsawaydivs .apcentersdfvf{
	font-size: 18px;
	color: #495057;
	font-weight: 500;
	margin-top: 32px;
}
.left_appsawaydivs .apcentersdfvf span{
	height: 12px;
	width: 2px;
	display: inline-block;
	background: #495057;
	margin: 0px 16px;
}
.apsiconGroupsdiv{
	margin-top: 34px;
}
.apsiconGroupsdiv .appsplay-icon{
	width: 160px;
	margin-right: 12px;
}
.right_Appsmockups .screendesign{
	width: 100%;
}
.whyappsiinnernai{
	display: flex;
	align-items: center;
	background: #F8F9FA;
	padding: 40px 42px;
	border-radius: 24px;
}
.appusesesusermain {
	display: flex;
	gap: 12px;
	margin-top: 34px;
}
.usersappsgroup .commanprofile {
	height: 44px;
	width: 44px;
	border-radius: 100%;
	object-fit: cover;
	object-position: top;
	border: 3px solid #fff;
}
.usersappsgroup .commanprofile.users5,
.usersappsgroup .commanprofile.users4,
.usersappsgroup .commanprofile.users3,
.usersappsgroup .commanprofile.users2 {
	margin-left: -28px;
}

/* planning section- */
.planing-bg-main{
	padding: 48px 0px;
}
.planing-text{
	margin-top: 32px;
}
.planing-bg-main .planing-text h2 {
	color: #212429;
	font-size: 38px;
	font-weight: 300;
	line-height: 50px;
}
.planing-bg-main .planing-text h2 .bold{
	font-weight: 600;
}
.planing-bg-main .planing-text h2 .primary{
	color: #CD0565;
	font-weight: 600;
}
.planing-text .btn-get-plan{
	border: 1px solid #000;
	background: #000;
	border-radius: 40px;
	display: inline-block;
	padding: 14px 42px;
	font-weight: 500;
	color: #fff;
	margin-top: 20px;
}
.planning-btn .bgg-plnt{
	width: 100%;
}

/* about & Community section start */
.communitismainscvdiv{
	background: #F8F9FA;
	padding: 48px 0px;
}
.communitie-titles{
	padding-bottom: 12px;
}
.communitie-titles h2{
	color: #212429;
	font-size: 44px;
}
.left_aboutvidjsg h4{
	font-size: 12px;
	color: #ACB5BD;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 32px;
}
.communitie-titles p{
	font-size: 15px;
	color: #586169;
	font-weight: 400;
	margin-top: 7px;
}
.left-side-communt .icon-bg-comunt {
	height: 56px;
	width: 56px;
	background: #ffffff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 2.06997px 4.13994px 0px rgba(33, 36, 41, 0.05);
	color: #000;
	font-size: 24px;
	transition: all 0.2s;
}
.left-side-communt .icon-bg-comunt:hover{
	background: #000;
	color: #fff;
}
.right-comunity-sdf .heading-text{
	font-size: 15px;
	color: #212429;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.matri-comunity-s .lvg {
	height: 10px;
	width: 1px;
	background: #586169;
	margin: 0px 10px;
	display: inline-block;
}
.matri-comunity-s .text-comunity{
	font-size: 14px;
	color: #495057;
	font-weight: 400;
}
.matri-comunity-s .more-textdet{
	font-weight: 500;
	color: #212429;
}
.single-community-str{
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 22px 0px;
}
.left_aboutvidjsg .logohere{
	width: 110px;
}
.left_aboutvidjsg h2{
	font-size: 44px;
	color: #000;
	margin-top: 12px;
	line-height: 62px;
}
.left_aboutvidjsg p{
	font-size: 14px;
	color: #000;
	margin-top: 6px;
	font-weight: 400;
	line-height: 24px;
}
.matripagesdiv .right_browseview{
	padding: 40px 30px 40px 42px;
}
.browse-community-sect{
	background: #FFFFFF;
	padding: 52px 0px;
}
.single-aboutStepd{
	display: flex;
	gap: 16px;
	margin: 30px 0px;
}
.right-sedeAboutTxt h4{
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
.right-sedeAboutTxt p{
	font-size: 15px;
	color: #000;
	font-weight: 400;
	margin-top: 13px;
}

/*--- loader ---*/

#lightbox-panel-loader {
    display: none;
    position: fixed;
    z-index: 10000;
}

#lightbox-panel-mask {
    position: fixed;
    z-index: 9000;
    background-color: #FFF;
    display: none;
    top: 0px;
    left: 0px;
    width: 100%;
    opacity: 0.2;
}


/*--- loader ---*/

/* ----footer start-- */
