body {
	font-family: 'poppins-Regular', sans-serif !important;

}

* {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

/*  Basic Css  */

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

a,
a:hover,
a:focus {
	text-decoration: none;
}

/********************Padding Top*****************/
.padding-top-5 {
	padding-top: 5px;
}

.padding-top-10 {
	padding-top: 10px;
}

.padding-top-15 {
	padding-top: 15px;
}

.padding-top-20 {
	padding-top: 20px;
}

.padding-top-25 {
	padding-top: 25px;
}

.padding-top-30 {
	padding-top: 30px;
}

.padding-top-35 {
	padding-top: 35px;
}

.padding-top-40 {
	padding-top: 40px;
}

/********************Padding Bottom*****************/
.padding-bottom-5 {
	padding-bottom: 5px;
}

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

.padding-bottom-15 {
	padding-bottom: 15px;
}

.padding-bottom-20 {
	padding-bottom: 20px;
}

.padding-bottom-25 {
	padding-bottom: 25px;
}

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

.padding-bottom-35 {
	padding-bottom: 35px;
}

.padding-bottom-40 {
	padding-bottom: 40px;
}

/* #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;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px #990012;
	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;
	/*font-family: 'unicons';
	content: '\e84b';*/
	content: '\f004';
	font-family: 'Font Awesome 5 Pro' !important;
	font-weight: 900;
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: #990012;
	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);
	}
}

/* #Progress with back to top */



.margin-top-2 {
	margin-top: 2px;
}

.margin-top-3 {
	margin-top: 3px;
}

.margin-top-4 {
	margin-top: 4px;
}

.margin-top-5 {
	margin-top: 5px;
}

.margin-top-10 {
	margin-top: 10px;
}

.margin-top-15 {
	margin-top: 15px;

}

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

.margin-top-25 {
	margin-top: 25px;
}

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

.margin-top-35 {
	margin-top: 35px;
}

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

.margin-top-50 {
	margin-top: 50px;
}

.margin-top-60 {
	margin-top: 60px;
}

.margin-top-70 {
	margin-top: 70px;
}

.margin-top-80 {
	margin-top: 80px;
}

.margin-top-90 {
	margin-top: 90px;
}

.margin-top-100 {
	margin-top: 100px;
}

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

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

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

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

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

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

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

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

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

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

/*  Basic Css Ends  */

/*  Font Family  */

/**** 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: #990012;
	border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
	background: #313131;
}

/**** END webkit scrollbar ******/
@font-face {
	font-family: "Raleway-Bold";
	src: url("../css/font/Raleway-Bold.ttf");
}

@font-face {
	font-family: "Raleway-Regular";
	src: url("../css/font/Raleway-Regular.ttf");
}

@font-face {
	font-family: "poppins-light";
	src: url("../css/font/Poppins-Light.ttf");
}

@font-face {
	font-family: "poppins-regular";
	src: url("../css/font/Poppins-Regular.ttf");
}

@font-face {
	font-family: "poppins-semibold";
	src: url("../css/font/Poppins-SemiBold.ttf");
}

@font-face {
	font-family: "poppins-medium";
	src: url("../css/font/Poppins-Medium.ttf");
}

/*  Font Family Ends  */



/*  Main nav Bar  */

._logo {
	float: left;
	padding: 8px 0 5px;
	margin-top: 0px;
}

/* ._hamburge {
	float: right;
	margin-top: 10px;
	background-color: transparent; */
	/*position: absolute;*/
	/* right: 0;
	width: 65%;
	padding: 21px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
} */

/* ._hamburge ul {
	float: right;
}

._hamburge ul li {
	float: left;
} */

/* ._logo a img {
	width: 219px;
	height: 34px;
	margin-top: 16px;
} */

.logocss a img {

	padding: 2px 0px;

}

._navBarMani {
	display: block;
	height: 80px;
	background-color: #ffff;
}

/* ._hamburge ul li {
	margin-right: 49.9px;
	margin-top: 0px;
} */

/*--- new ---*/

/*._hamburge ul li:last-child {
    margin-left: 20px;
}

._hamburge ul li:nth-child(5) {
    margin-right: 27px;
} 

._hamburge ul li:last-child a {
	padding: 8px 3px;
    background: #FF5796;
    margin-top: -7px;
    color: #fff;
    border-radius: 5px;
    transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 116px;
    text-align: center;
    font-size: 14px;
}

._hamburge ul li:last-child a:hover {
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.349);
} 


._hamburge li:last-child:hover:after {
  background: none
}*/


/*--- new ---*/

/* ._hamburge ul li a {
	color: #353535;
	display: block;
	font-size: 14px;
	font-family: 'HelveticaNeue-Light', sans-serif;
} */

.dropdown-menu {

	left: -45px;
	text-align: center;
}

.dropdown-menu a:last-child {
	border-bottom: none;
}

.dropdown-menu a {
	padding: 6px;
	border-bottom: 1px solid #8080808f;
	color: #353535 !IMPORTANT;
	font-size: 14px !important;
	text-align: left;

}

/*   mobile menu  */

._MobileMenuLogo {
	float: right;
	text-align: left;
	width: 78%;
}

._MobileMenuLogo a {
	display: inline-block;
}

._MobileMenuLogo a img {
	/* width: 184px;
		height: 54px;
		display: block;
	margin-top: 15px; */
	display: block;
	margin-top: 15px;
	width: 100%;


}

._MobileMenuLogo a {
	padding: 5px 5px;
}

._menuOpenMobile {
	float: left;
}

.newHamburge {
	height: 40px;
	width: 40px;
	background: #FFAA00;
	color: rgb(255, 255, 255);
	border: none;
	border-radius: 100px;
	font-size: 24px;
	outline: none;
	margin: 17px 15px;
}

.sideLogo a,
.sideLogo a img {
	width: 86px;
	height: 100px;
	display: block;
}

#sidebar {
	width: 250px;
	position: fixed;
	top: 0;
	left: -255px;
	height: 100vh;
	z-index: 999;
	background: rgb(255, 255, 255);
	color: #fff;
	transition: all 0.3s;
	overflow-y: scroll;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
	border-radius: 0px 50px 50px 0px;
}

#sidebar.active {
	left: 0;
	z-index: 9999999999999;
}

#dismiss {
	width: 46px;
	height: 46px;
	line-height: 35px;
	text-align: center;
	background: #990012;
	position: absolute;
	color: #ffffffd6;
	top: 14px;
	font-size: 21px;
	right: 17px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	display: flex;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 100%;
	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: 60px 0;
}

#sidebar ul p {
	color: #fff;
	padding: 10px;
}

#sidebar ul li a {
	padding: 16px 22px;
	font-size: 16px;
	display: block;
	color: #353535;
	border-bottom: 0.5px solid rgb(200 200 200 / 18%);
}

#sidebar ul li a:hover {
	background-color: #9900120a;
}

#sidebar ul li:hover #sidebar {
	width: 50%;
}

#sidebar ul li a i {
	/* float: right; */
	margin-top: 5px;
	margin-right: 10px;
}

.angle-down-a {
	border-top: 6px dashed;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
}

.stroke-i {
	-webkit-text-stroke-width: 0.4px;
	-webkit-text-stroke-color: white;
	font-size: 14px
}

._topBar {
	background-color: #98ca61;
}

._padding5px {
	padding-top: 5px;
	padding-bottom: 5px;
}

._topLeft {
	float: left;
}

._nameOf p {
	font-family: 'OpenSans-Light', sans-serif;
	font-size: 16px;
	color: #3b3c1f;
	letter-spacing: 0px;
	margin-bottom: 0;

}

._topRight {
	float: right;
}

._topNav ul li {
	float: left;
}

._topNav ul li:first-child a {
	margin-right: 30px;
}

._topNav ul li a,
._topNav ul li span {
	display: block;
	font-size: 16px;
	color: #3b3c1f;
	letter-spacing: 0px;
	font-family: 'OpenSans-Light', sans-serif;
	cursor: pointer;
}

._topNav ul li a i {
	margin-right: 3px;

}

/*  main nav bar ends  */


.nav-main {
	display: flex;
	align-items: center;
	height: 80px;
	justify-content: space-between;
	padding: 0px 15px;
}

.navbar-nav {
	margin: auto !important;
}

.menu-desk-link {
	display: flex;
	justify-content: end;
	margin-top: 36px;
	align-items: center;
	gap: 44px;
	padding: 0;
}

.menu-desk-link li a {
	font-size: 14px;
	font-family: poppins-medium;
	color: #990012;
	transition: all 0.3s ease-in-out;
}

.menu-desk-link li a i {
	margin-right: 6px;
	color: #5b5b5b;
}

.menu-desk-link .active a {
	font-size: 14px;
	font-family: poppins-medium;
	color: #990012 !important;
}

.menu-desk-link li a:hover {
	font-size: 14px;
	color: #990012 !important;
}

.nav-brand-logo {
	margin-top: 18px;
}

/* .desk-logo-v {
	background: white;
	padding: 6px;
	border-radius: 6px;
} */

.navbar-desk {
	position: relative;
	z-index: 999;
	background: transparent;
	height: 88px;
}

.login-btn-bg a {
	float: right;
	text-decoration: none;
	font-size: 15px;
	font-family: poppins-medium;
	color: #990012;
	transition: all 0.3s ease-in-out;

}

.login-btn-bg a:hover {
	box-shadow: none;
}

.main-banner {
	position: relative;
	/* background: url(../images/banner-dot-bg.png); */
	background: linear-gradient(0deg, rgb(153 0 18 / 7%) 16%, rgb(153 0 18 / 3%) 74%);
	height: 100%;
}

.banner-top-1 {
	position: absolute;
	right: 0px;
	top: 0px;
}

.menu-position {
	background-color: #ffffff;
}

.header_conten {
	position: relative;
}

.left_side-ht img {
	position: absolute;
	bottom: 0;
}

.bg-design {
	position: absolute;
	left: 30px;
	bottom: 0px;
}

.design-2 {
	position: absolute;
	right: 155px;
	bottom: 0px;
}

.main-title-banner h1 {
	color: #1E1E1E;
	font-size: 32px;
	line-height: 24px;
	font-family: "Raleway-Bold";
	text-align: start;
	line-height: 51px;
}

.main-title-banner {
	padding-right: 30px;
	margin-top: 85px;
}

.banner-lottie-line lottie-player {
	position: absolute;
	mix-blend-mode: screen;
	left: 0;
	width: 100%;
}

.main-banner-bg img {
	width: 100%;
}

.create-account-btn a {
	display: inline-block;
	align-items: center;
	padding: 14px 30px;
	background-color: #990012;
	border: 1px solid #990012;
	margin-top: 40px;
	transition: all 0.3s ease-in-out;
	border-radius: 35px 0px 35px 0px;

}

.create-account-btn a {
	text-decoration: none;
	font-size: 15px;
	font-family: "poppins-medium";
	color: #ffffff;
}

.create-account-btn a i {

	font-size: 17px;

}

.banner-main-img {
	margin-top: 60px;
	position: relative;
	/* z-index: 99; */
}

.heart-animation {
	position: absolute;
	top: 0px;
	right: 26%;
	z-index: 1;

}

/* how do work section start   */

.section-titles h2 {
	font-family: 'Raleway-Bold';
	color: #1E1E1E;
	font-size: 30px;
}

.section-titles h2 span {
	color: #990012;
}

.section-titles h5 {
	font-size: 15px;
	color: #4B4B4B;
	font-family: 'poppins-regular';
}

.do-work-mains {
	height: 100%;
	width: 100%;
	padding: 52px 0px;
	background: url(../images/Untitled-111.png);
}

.work-box-mn {
	background: white;
	box-shadow: 1px 0px 6px 1px #bcbcbc63;
	border-radius: 6px;
	padding: 30px 10px;
	position: relative;
	text-align: center;
	transition: all .7s;
	width: 85%;
	margin: 25px auto 0px;
	height: 100%;
	min-height: 310px;
}

.work-box-mn:hover {
	background-color: linear-gradient(0deg, rgb(153 0 18 / 7%) 16%, rgb(153 0 18 / 3%) 74%);
	transform: scale(1.1);
}

.work-box-mn:hover .number-onwork {
	border: 1px solid rgb(153, 0, 18);
}

.number-onwork {
	height: 36px;
	width: 36px;
	border: 3px solid rgb(153 0 18 / 20%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	position: absolute;
	top: -14px;
	background: white;
	right: -13px;
	font-family: 'Raleway-Bold';
	font-size: 18px;
	color: #6c6c6c;
}

.work-box-mn h2 {
	font-size: 18px;
	font-family: 'Raleway-Bold';
}

.work-box-mn p {
	font-size: 14px;
	font-family: 'poppins-regular';
	color: #6d6d6d;
}

/* how do work section end   */


/* <!-- Success Stories section start --> */

.members_td {
	height: 100%;
	width: 100%;
	background-color: var(--white);
	padding-top: 20px;
	padding-bottom: 52px;
}

.success-heading h1 {
	text-align: center;
	color: var(--black-blue);
	font-size: 30px;
	font-family: 'VerdanaPro-SemiBold';
	margin-top: 52px;
	margin-bottom: 36px;
}

.members_td h1 span {
	color: var(--secondary-color);
}

.slide-image-tn {
	padding-bottom: 42px;
}

.slide-image-tn .thumbnail-images img {
	width: 100% !important;
	height: 264px;
	display: inline !important;
	border-radius: 14px;
	object-fit: cover;
}

.slide-image-tn .thumbnail-images .thumbnail-conten {
	background-color: var(--white);
	border-radius: 0px 0px 6px 6px;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0px 18px;
}

.slide-image-tn .thumbnail-images .thumbnail-conten h2 {
	margin: 0;
	font-size: 17px;
	color: #303030;
	font-family: 'Poppins-SemiBold';
	padding-top: 28px;
	text-align: center;
	text-transform: capitalize;
}

.slide-image-tn .thumbnail-images .thumbnail-conten p {
	font-size: 14px;
	color: #727272;
	font-family: 'Poppins-Regular';
	margin-top: 9px;
	padding-bottom: 12px;
	text-align: center;
	line-height: 24px;
}

.slide-image-tn .thumbnail-images .thumbnail-conten p span {
	color: var(--secondary);
	font-family: 'Poppins-Medium';
}

.align-conten {
	display: flex;
	align-items: center;
}

.slider-2 .slick-dots li button {
	border: 1px solid #707070;
	border-radius: 50%;
	height: 16px;
	width: 16px;
}

.slider-2 .slick-dots li.slick-active button:before {
	opacity: .75;
	color: #990012;
	margin-top: -2px;
	margin-left: -2px;
}

.slider-2 .slick-dots li button:before {
	font-size: 40px;
	opacity: 1;
	color: transparent;
	margin-top: -2px;
	margin-left: -2px;
}

.slider-2 .slick-prev,
.slider-2 .slick-next {
	background: #990012;
	height: 36px;
	width: 36px;
	position: absolute;
	top: unset;
	bottom: -30px;
	z-index: 99;
	margin-top: 40px;
}

.slider-2 .slick-prev:before,
.slider-2 .slick-next:before {
	opacity: 1;
}

.slider-2 .slick-prev:hover,
.slider-2 .slick-prev:focus,
.slider-2 .slick-next:hover,
.slider-2 .slick-next:focus {
	color: #990012;
	background: #990012a6;
	border: 1px solid #990012;
}


.slider-2 .slick-next {
	border-radius: 70px 70px 70px 0px;
	left: 20px;
}

.slider-2 .slick-prev {
	border-radius: 70px 70px 0px 70px;
}

/* <!-- Success Stories section End --> */


/********Happiness is Just an App Away! start *********/

.stay-connected {
	background: url(../images/how-work-bg11.png) #FFFFFF no-repeat center;
	padding: 48px 0px;
}

.stay-connected .just_set_tt {
	display: flex;
	align-items: center;
}

.stay-connected-title span {
	color: #cf001f;
	font-family: "Raleway-Regular";
}

.stay-connected-title p {
	font-size: 30px;
	color: #1E1E1E;
	margin: 20px 0 5px;
	font-family: "Raleway-Bold";
}

._Availablenowat span {
	display: block;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	font-size: 16px;
}

._Availablenowat a {
	display: inline-block;
	border-radius: 8px;
	margin-top: 8px;
}

._Availablenowat a img {
	display: inline-block;
	height: 59px;
	width: 200px;
}

._Availablenowat a:last-child {
	margin-left: 60px;
}

.hr-mobile-new {
	margin-top: 0px;
	margin-bottom: 0px;
	border: 0;
	border-top: 2px solid #E90040;
}

.stay-connected-title-dec h4 {
	color: #494949;
	font-family: 'poppins-regular';
	font-size: 16px;
	word-spacing: 5px;
	margin-top: 40px;
	margin-bottom: 50px;
	line-height: 26px;
}

.stay-connected-title-dec p {
	font-size: 14px;
	color: #8A8A8A;
	font-family: "poppins-medium";
}

.app-bottom {
	background-color: #1D1D1D;
	height: 80px;
}

.ab-text p {
	color: #fff;
	margin-top: 4px;
}

/******** Happiness is Just an App Away! end *********/

/* Matrimony- Trusted by over 20 Million Members section start  */

.teusted_sst {
	height: 100%;
	width: 100%;
	padding: 48px 0px;
}

.teusted-conten h1 {
	text-align: center;
	font-size: 30px;
	color: #2E2E2E;
	margin: 0;
	margin-bottom: 22px;
	font-family: 'Raleway-Bold';
}

.teusted-conten p {
	text-align: center;
	font-family: 'poppins-regular';
	font-size: 14px;
	color: #1C1C1C;
	line-height: 26px;
}

/* Matrimony- Trusted by over 20 Million Members section end  */

/* Browse Matrimonial Profiles By section start */

.browse-matrin-main {
	background: url(../images/line-1.png) no-repeat, linear-gradient(#f8f8f8, #ffffff);
	padding: 48px 0px;
	background-size: auto;
}

.custom-nav-tabs {
	border-bottom: none;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.custom-nav-tabs>li>a:hover {
	border: none;
	color: #990012 !important;
}

.custom-nav-tabs>li>a {
	color: black;
	font-size: 15px;
	font-family: 'poppins-semibold';
	border: none;
}

.custom-nav-tabs>li.active>a,
.custom-nav-tabsnav-tabs>li.active>a:hover,
.custom-nav-tabs>li.active>a:focus {
	background-color: transparent !important;
	border: none !important;
	color: #990012;
}

.custom-nav-tabs>li {
	position: relative;
	display: block;
	padding-bottom: 12px;
	font-size: 16px;
	letter-spacing: .9px;
}

.custom-nav-tabs>li::after {
	content: "";
	background: #990012;
	height: 3px;
	position: absolute;
	width: 73%;
	left: 11px;
	right: 10px;
	bottom: 6px;
	transition: all 250ms ease 0s;
	transform: scale(0);
}

.custom-nav-tabs>li.active::after,
.custom-nav-tabs>li:hover::after {
	transform: scale(1);
}

.browse-matrin-main .tab-content {
	padding: 20px 10px;
}

.tab-content .tab-btn-links a {
	list-style: none;
	border: solid 1px #aaa;
	background-color: #fcfcfc;
	padding: 9px 30px;
	margin: 10px 8px 10px 0;
	border-radius: 18px;
	display: inline-block;
	text-decoration: none;
	letter-spacing: .84px;
	font-size: 14px;
	color: #000;
	font-family: 'poppins-regular';
}

.tab-content .tab-btn-links a:hover {
	color: #990012;

}

.tab-content .tab-btn-links .hover-more {
	color: #990012;
}

.sp-member-wd {
	/* position: relative; */
	/* top: 87px; */
	display: flex;
	margin-top: 99px;
	justify-content: center;
}

.wedding-member {
	height: 71px;
	width: 210px;
	background: #ffffff;
	box-shadow: 0px 8px 29px #00000014;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 7px 10px;
	margin-bottom: 18px;
	margin-right: 22px;
}

.wedding-member .icon-wed-bx {
	height: 56px;
	width: 56px;
	background: #feeeec;
	border-radius: 9px 0px 9px 9px;
	color: #A84675;
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wedding-member .wedding-text h1 {
	font-size: 20px;
	font-family: "Raleway-Regular";
	color: #2A2A2A;
	margin: 0;
	font-weight: 600;
}

.wedding-member .wedding-text p {
	font-size: 13.5px;
	color: #797979;
	font-family: 'poppins-regular';
	margin: 0;
}

/* Browse Matrimonial Profiles By section end */


/* ----footer start-- */
.footer-title {
	margin-bottom: 25px;
}

.footer-bg {
	padding-top: 35px;
	background: #990012;
}

.footer-brd-btm {
	border-bottom: 1px solid #ffffff47;
	padding-bottom: 20px;
}

.social-icon-footer p {
	font-size: 14.18px;
	color: #afa6a6;
	display: inline-block;
}

.logo-footer img {
	width: 163px;
	height: 55px;
	object-fit: contain;
}

.p-70 {
	padding-left: 70px;
}

.about-us p {
    color: #FFFFFF;
    font-size: 13.5px;
    font-family: "poppins-regular";
    line-height: 26px;
    height: 157px;
    overflow: auto;
    padding-right: 16px;
}

.footer-title p {

	color: #FFFFFF;
	font-size: 21px;
	font-family: 'Raleway-Bold';
}

.footer-title .btm-line {
	height: 1px;
	width: 157px;
	background-color: #ffffff66;
}

.footer-title p span {

	color: #FFFFFF;
	font-size: 21px;
	font-family: "poppins-semibold";
}

.cms-ul li a {
	color: #FFFFFF;
	font-size: 13.5px;
	font-family: "poppins-regular";
	text-decoration: none;
}

.cms-ul li {
	margin-bottom: 15px;
}

.social-icon-footer {
	margin-top: 20px;
	float: left;
}

.social-icon-footer p i {
	font-size: 18px;
	color: #990012;

}

.social-icon-footer p i:hover {
	transform: scale(1.2);
}

.social-icon-footer p {

	margin-right: 20px;
}

.copy-rights {
	width: 100%;
	background-color: #f1f8fd;
	margin-top: 0;
	padding: 9px 0px;
}

.copy-rights h6 {
	color: #990012;
	font-family: "poppins-regular";
	font-size: 13px;
	text-align: end;
}

.footer-small-bg {
	display: flex;
	align-items: center;
}

.fa-facebook-f:before {
    content: "\f39e";
}
.slick-track{
    margin-left: 0px !important;
}