  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	transition: all 0.3s ease;
}
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;
}

/* #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 #D1353A;
	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 Free', sans-serif !important;
	font-weight: 900;
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: #D1353A;
	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: #D1353A;
	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: #D1353A;
	border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
	background: #313131;
}

/* font family section start  */
@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-Medium";
	src: url("../css/font/Poppins-Medium.ttf");
}
@font-face {
	font-family: "Poppins-SemiBold";
	src: url("../css/font/Poppins-SemiBold.ttf");
}
@font-face {
	font-family: "Poppins-Bold";
	src: url("../css/font/Poppins-Bold.ttf");
}

/*   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: 234px;
}
.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: linear-gradient(45deg, rgba(212, 26, 31, 1) 20%, rgba(250, 212, 213, 1) 170%);
	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-family: 'Poppins-Medium', sans-serif;
}
#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: #D1353A;
	color: #fff;
	font-size: 13px;
	display: inline-block;
	padding: 10px 21px;
	border-radius: 20px;
	font-family: 'Poppins-Regular', sans-serif;
}
.loginreg-btn-bg .regist-btn-main{
	background: transparent;
	color: #D3191E;
	font-size: 13px;
	display: inline-block;
	padding: 9px 26px;
	border-radius: 20px;
	font-family: 'Poppins-Regular', sans-serif;
	border: 1px solid #D3191E;
}

/* 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-color: #fff;
	color: #1A1A1A;
	border-radius: 100px;
	padding: 0 15px;
}
.menu-desk-link {
	display: flex;
	justify-content: end;
	align-items: center;
}
.menu-desk-link li {
	padding: 4px 21px;
}
.menu-desk-link li a {
	font-size: 14px;
	font-family: 'Poppins-Regular', sans-serif;
	color: #1A1A1A;
	transition: all 0.3s ease-in-out;
}
.menu-desk-link li a.active {
	font-size: 14px;
	font-family: 'Poppins-Medium', sans-serif;
	color: #1A1A1A;
}
.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: 130px;
	height: 43px;
	border-radius: 40px;
	color: #D1353A;
	border: 1px solid #D1353A;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-family: 'Poppins-Medium', sans-serif;
	transition: all 0.4s;
}
.login-registersbtn .regist-btn-main{
	width: 140px;
	height: 44px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #D1353A;
	border-radius: 40px;
	font-size: 14px;
	font-family: 'Poppins-Medium', sans-serif;
	transition: all 0.4s;
}
.login-registersbtn .regist-btn-main:hover{
	background: #fff;
	border: 1px solid #D1353A;
	color: #D1353A;

}
.login-registersbtn .login-btn-main:hover{
	background: #D1353A;
	color: #fff; 
}



/* header sections start  */ 
.header_mains-divclc .banner_sidebar{ 
    background-color: #fff;
    color: #1A1A1A;
    border-radius: 15px;
    padding: 17px;
    margin: 20px 0 20px auto;
    width: 400px;
}
.header_mains-divclc .banner_sidebar h5{
	text-align: left;
    font-weight: 600;
    font-size: 18px;
	font-family: 'Poppins-Regular', sans-serif;
}
.header_mains-divclc .banner_sidebar .home-header-comn-input-flds{
	width: 100%;
    padding: 7px;
    border-radius: 7px;
    border: 1px solid #a1a1a1;
    margin: 10px 0;
    outline: none;
	font-size: 14px;
	font-weight: 400;
	color: #4c4c4c;
}


.header_mains-divclc .banner_sidebar .header-form-flex-gap{
	display: flex;
	align-items: center;
	gap: 20px;
}
.header_mains-divclc .banner_sidebar .header-form-flex-gap .w-25{
	width: 25%;
}
.header_mains-divclc .banner_sidebar .header-form-flex-gap .w-75{
	width: 75%;
}
.header_mains-divclc .banner_sidebar .agree-condition-home-header-form{
	font-size: 14px;
	font-weight: 400;
	color: #1A1A1A;
	font-family: 'Poppins-Regular', sans-serif;
	display: flex;
	justify-content: left;
	align-items: center;
}
.header_mains-divclc .banner_sidebar .agree-condition-home-header-form .agree-check-box{
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.header_mains-divclc .banner_sidebar .agree-condition-home-header-form label{
	position: relative;
	cursor: pointer;
	margin: 10px 0 10px 10px;
	color: #626262;
	display: flex; 	
}
.header_mains-divclc .banner_sidebar .agree-condition-home-header-form label:before {
	content: '';
	height: fit-content;
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #D3191E;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 10px;
	border-radius: 4px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 10px;
	
}
.header_mains-divclc .banner_sidebar .agree-condition-home-header-form .agree-check-box:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 9px;
	width: 6px;
	height: 14px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.header_mains-divclc .banner_sidebar .agree-condition-home-header-form .agree-check-box:checked+label:before {
	background-color: #D3191E;
}
.header_mains-divclc .banner_sidebar .header-form-submit-btn{
	background-color: #D3191E;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Poppins-SemiBold', sans-serif;
	color: #fff;
	outline: none;
	border: none;
	border-radius: 100px;
	width: 80%;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px auto;
}
.header_mains-divclc .banner_sidebar .home-header-form-login{
	margin-top: 15px;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Poppins-Regular', sans-serif;
	color: #333333
}
.header_mains-divclc .banner_sidebar .home-header-form-login span{
	color: #D3191E;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Poppins-SemiBold', sans-serif;
}



.main_header_scvBG{
	position: relative;
	background: url(../images/header-bglayers.png) no-repeat, linear-gradient(45deg, rgba(212, 26, 31, 1) 20%, rgba(250, 212, 213, 1) 170%);
	background-size: cover;
}
.header_mains-divclc{ 
	overflow: hidden;
}
.center_header-sec{
	display: flex;
	align-items: center;
}
.left_matri_headers h2{
	font-size: 44px;
	color: #ffffff;
	font-family: 'Poppins-Bold', sans-serif;
	line-height: 63px;
}
.left_matri_headers h2 span{
	font-family: "Poppins-Light", sans-serif;
}
.left_matri_headers h4{
	color: #fff;
	font-size: 14px;
	font-family: 'Poppins-Regular', sans-serif;
	margin-top: 22px;
	line-height: 26px;
}
.left_matri_headers .btn_register-ht img{
	height: 48px;   
	border-radius: 6px;
	transition: all 0.4s; 
	margin: 25px 0;
} 
.left_matri_headers .btn_register-ht img:hover{
	box-shadow: 0px 0px 10px 0px #00000051;
}    
.header_mains-divclc .complet-join-profile {
	display: flex;
	align-items: center;
	margin: 18px 0;
}
.header_mains-divclc .complet-join-profile .complet-part {
	display: flex;
	align-items: center;
	gap: 10px;
} 
.header_mains-divclc .complet-join-profile .join-part h6,
.header_mains-divclc .complet-join-profile .complet-part h6{
	font-size: 28px;
    color: #ffffff;
    font-family: 'Poppins-Bold', sans-serif; 
}
.header_mains-divclc .complet-join-profile .join-part p,
.header_mains-divclc .complet-join-profile .complet-part p{ 
	font-size: 14px;
    color: #ffffff;
    font-family: 'Poppins-SemiBold', sans-serif; 
	margin-top: 8px;
}
.header_mains-divclc .complet-join-profile .join-part  {
	padding-left: 20px;
	margin-left: 20px;
	border-left: 1px solid #fff;
}
.header_mains-divclc .complet-join-profile .join-part .join-part-flex{
	display: flex;
	align-items: center;
	gap: 20px;
} 
.header_mains-divclc .complet-join-profile .header-reviewed_users-img {
	margin-left: 21px;
}
.header_mains-divclc .complet-join-profile .header-reviewed_users-img img {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	border: 2px solid #fff;
	object-fit: cover;
	margin-left: -21px;
} 
 

/* last added ptofile section start  */
.lastaddd_Seactionmaindiv{
	padding: 61px 0px 32px;
}
.lastaddedunder-contenst{
	margin-top: 22px;
}
.titles_lastadded h2{
	color: #1A1A1A;
	font-size: 34px;
	font-family: 'Poppins-SemiBold', sans-serif;
}
.titles_lastadded h2 .light{
	font-family: 'Poppins-Regular', sans-serif;
}
.titles_lastadded h2 .dark{
	color: #D1353A;
}
.titles_lastadded p{
	font-size: 16px;
	color: #6F6F6F;
	font-family: 'Poppins-Regular', sans-serif;
	margin-top: 4px;
} 
.single_lastProfiles .multieBordersBG{
	background: #FAD4D5;
	border-radius: 15px;
	padding: 10px;
}
.lastaddeSlider .items{
	padding: 5px;
}
.single_lastProfiles .tops_imagesdsd{
	display: inline-block;
	margin: auto;
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius:10px;
}
.multieBordersBG .tops_imagesdsd:hover .lastprofileimg{
	transform: scale(1.2);
}
.multieBordersBG .tops_imagesdsd:hover .commanbadge{
	margin-left: 20px;
}
.tops_imagesdsd .lastprofileimg{
	width: 100%;
	height: 217px;
	border-radius:10px;
	object-fit: cover;
	object-position: top;
	transition: all 0.4s;
} 
.multieBordersBG .last-cntrd{
	background-color: #fff;
	border-radius: 10px;
	margin-top: 10px;
	padding: 0 15px;
}
.multieBordersBG .last-cntrd h4{
	font-size: 16px;
	font-family: 'Poppins-Bold', sans-serif;
	padding-top: 20px;
	color: #1A1A1A;
	text-align: center;
} 
.multieBordersBG .last-cntrd p{
	text-align: center;
	color: #6F6F6F;
	font-size: 14px;
	font-family: 'Poppins-Regular', sans-serif;
	margin-top: 6px;
	padding-bottom: 20px;
}
.successslider.owl-theme .owl-controls .owl-buttons div,
.lastaddeSlider.owl-theme .owl-controls .owl-buttons div{
	font-size: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	opacity: 1;
}
.successslider.owl-theme .owl-controls,
.lastaddeSlider.owl-theme .owl-controls{
	margin-top: 0px;
}
.successslider.owl-theme .owl-controls .owl-buttons .owl-prev:after,
.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;
	top: -58px;
	right: 46px;
	background-size: 100%;
	background-repeat: no-repeat;
}
.successslider.owl-theme .owl-controls .owl-buttons .owl-next,
.lastaddeSlider.owl-theme .owl-controls .owl-buttons .owl-next{
	content: "";
	height: 38px;
	width: 38px;
	background: url(../images/lastNextarrow.png);
	display: block;
	position: absolute;
	top: -58px;
	right: 0px;
	background-size: 100%;
	background-repeat: no-repeat;
}

/* country stats section   */
.maincoutry-setsffgfg{
	background: #D1353A;
	padding: 10px 0px;
}
.commancdjfdmlnjor .cmn-icons{
	height: 45px;
	width: 45px;
	margin: auto 0;
	object-fit: contain;
	display: block;
}
.commancdjfdmlnjor h4{
	font-size: 18px;
	font-weight: 500;
	color: #FFF8F8;
	font-family: 'Poppins-SemiBold', sans-serif; 
}
.commancdjfdmlnjor p{
	font-size: 14px;
	font-weight: 400; 
	font-family: 'Poppins-Regular', sans-serif;
	color: #FFF8F8; 
	margin-top: 5px;
}
.maincoutry-setsffgfg .commancdjfdmlnjor{
	padding:10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
 
 /* success slider */ 
.successslider .tops_imagesdsd .lastprofileimg {
	width: 100%;
	height: 290px;
	border-radius: 10px;
	object-fit: cover;
	object-position: center;
	transition: all 0.4s;
}
.successslider .multieBordersBG .last-cntrd{
	background-color: unset;
	border-radius: 10px;
	margin-top: unset;
	padding: unset;
}
.successslider .multieBordersBG .last-cntrd h4{
	font-size: 16px;
	font-family: 'Poppins-Bold', sans-serif;
	padding: 9px 15px;
	color: #1A1A1A;
	background-color: #fff;
	width: fit-content;
	margin: 0 auto;
	border-radius: 10px;
	margin-top: -24px;
	z-index: 2;
	position: relative;
}
.success_Seactionmaindiv{
	padding: 30px 0;
}
.successslider .single_lastProfiles {
	padding: 0 5px;
}
.successslider .multieBordersBG p{
	text-align: center;
	color: #6F6F6F;
	font-size: 14px;
	font-family: 'Poppins-Regular', sans-serif;
	margin-top: 6px;
	padding:10px 15px 15px;
}
.successslider .multieBordersBG .red-mor-btn{
	background-color: #000;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	padding: 10px 15px;
	display: block;
	margin: 0 auto;
	width: fit-content;
}

/* .app away section start   */
.appwawysmaindivsdfer{
	padding: 46px 0px 52px;
}
.whyappsiinnernai{
	position: relative;
	border-radius: 35px;
	padding: 40px 0px 38px 78px;
}
.app-way-home-background{
	border-radius: 35px;
	background: #FAD4D5;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 20%;
}
.left_appsawaydivs h2{
	font-size: 35px;
	color: #1A1A1A;
	font-family: 'Poppins-Bold';
	line-height: 45px;
	margin-top: 22px;
}
.left_appsawaydivs .apcentersdfvf{
	font-size: 14px;
	font-weight: 400;
	color: #6F6F6F;
	font-family: 'Poppins-Medium';
	margin-top: 32px;
}
.left_appsawaydivs .apcentersdfvf span{
	height: 12px;
	width: 2px;
	display: inline-block;
	background: #6F6F6F;
	margin: 0px 16px;
}
.apsiconGroupsdiv{
	margin-top: 42px;
}
.apsiconGroupsdiv .appsplay-icon{
	width: 120px;
	margin-right: 12px;
}
.right_Appsmockups .screendesign{
	width: 60%;
	float: right;
}
.appusesesusermain{
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 34px;
}
.appusesesusermain .usersappsgroup{
	margin-left: 28px;
}
.usersappsgroup .commanprofile{
	height: 47px;
	width: 47px;
	border-radius: 100%;
	object-fit: cover;
	object-position: top;
	border: 3px solid #fff;
}
.usersappsgroup .commanprofile.users-M_neg{
	margin-left: -28px;
} 
.appusesesusermain p{
	font-size: 14px;
	color: #6F6F6F;
	font-family: 'Poppins-Regular';
}
.appusesesusermain p span{
	display: block;
}

/* why choose us section start  */
.whychoosemaindivs{
	padding: 40px 0px;
	background-color: #D1353A; 
}
.whychoosemaindivs .choosenlogo {
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 20px;
}
.whychoosemaindivs .choosenlogo img{
	width: 200px;
}
.leftcheooses-maind h2{
	margin-top: 15px;
	color: #FFF8F8;
	text-transform: capitalize;
	font-size: 50px;
	font-weight: 700;
	font-family: 'Poppins-SemiBold', sans-serif;
	line-height: 70px;
}
.leftcheooses-maind h2 span.chosed-text{
	font-size: 14px;
	font-weight: 400;
	color: #FFF8F8;
	font-family: 'Poppins-Regular', sans-serif; 
	display: block;
}
.leftcheooses-maind h2 span.transper{
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #FFF8F8;
	transition: all 0.2s;
}
.leftcheooses-maind h2 span.transper:hover{
	color: #D1353A;
	-webkit-text-stroke-color: #D1353A;
}
.leftcheooses-maind p{
	font-size: 14px;
	font-weight: 400;
	color: #FFF8F8;
	font-family: 'Poppins-Regular', sans-serif;
	margin-top: 12px;
	line-height: 23px;
}
.lftnumberchose .numbers{
	font-size: 48px;
	font-weight: 700;
	font-family: 'Poppins-Bold', sans-serif;
	color: transparent;
	-webkit-text-stroke: 1px #FFF8F8;
	transition: all 0.2s ease 0s;
}
.rigt-choostexts h4 {
	color: #FFF8F8;
	font-size: 18px;
	font-weight: 500;
	font-family: 'Poppins-Medium', sans-serif;
	margin-bottom: 9px;
	padding-top: 10px;
}
.rigt-choostexts h5 {
	font-size: 14px;
	font-weight: 400;
	color: #FFF8F8;
	font-family: 'Poppins-Regular', sans-serif;
	line-height: 22px;
}
.right-choosesmaind .singles-chooselist{
	display: flex;
	gap: 24px;
	margin: 36px 0px;
}
 

/* ------browse matri start--- */
.browse_matri_section{
    background: #FDF0ED;
    padding: 40px 0;
    margin: 40px 0;
} 
.matri-browse-tabs > .tabs > ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.section-titles h2 {
	font-size: 36px; 
	font-family: 'Poppins-SemiBold', sans-serif;
	color: #3e3e3e;
}
.matri-browse-tabs .nav-pills > li.active > a,
.matri-browse-tabs .nav-pills > li.active > a:hover,
.matri-browse-tabs .nav-pills > li.active > a:focus {
	background: #D1353A;
	color: #ffffff;
}
.matri-browse-tabs .nav-pills > li{
  	margin: 0px 5px;
}
.matri-browse-tabs .nav-pills > li > a {
	color: #1A1A1A;
	font-size: 18px; 
	font-family: 'Poppins-Medium', sans-serif;
	padding: 11px 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: none;
	border-radius: 6px;
	transition: all 0.4s ease;
}
.cust_padding {
	padding-right: 35px;
	padding-left: 35px;
}
.new-footer-ul {
	margin-top: 20px;
	margin-bottom: 0px;
	min-height: 60px;
}
.new-footer-ul li a {
	color: #6F6F6F;
	font-size: 15px;
	padding: 6px 3px;
	line-height: 1.7; 
	font-family: 'Poppins-Regular', sans-serif;
	transition: all 0.3s ease;
	margin: 10px;
}
.new-footer-ul li a:hover {
	color: #151515;
	
}
.new-footer-ul li .view_more-matri {
	color: #ffffff;
	font-size: 16px; 
	font-family: 'Poppins-Regular', sans-serif;
	width: 189px;
	background: #1A1A1A;
	border: 1px solid #1A1A1A;
	height: 44px;
	border-radius: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	margin-top: 28px;
}
.new-footer-ul li .view_more-matri:hover {
	color: #1A1A1A;
	background-color: transparent;
}
.vl {
	border-left: 2px solid #a1a1a1;
	height: 10px;
	display: inline-block;
	margin: 0px 0px;
}
.matri-title-hdng h2{
	text-align: center; 
	font-family: 'Poppins-SemiBold', sans-serif;
	font-size: 30px;
	font-weight: 500;
	color: #141414;
	margin-bottom: 27px;
}
.matri-title-hdng h2 span{
  	color: #D1353A;
}
.browse-matri-new .matri-browse-tabs{
  margin-top: 43px;
}
.matri-browse-tabs .nav-pills>li>a:hover,
.matri-browse-tabs .nav-pills>li.active>a:hover,
.matri-browse-tabs .nav-pills>li.active>a:focus {
	background: #D1353A;
	color: #ffffff;
}

/* ----footer start-- */
.footer-title { 
	margin-bottom: 25px;
}
.footer-bg {
	padding-top: 45px;
	background: #D1353A;
	color: #FFF8F8;
	border-radius: 40px 40px 0 0;
}
.footer-bg .flex-md-grid-xs{
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.logo-footer img {
	width: 163px;
	height: 55px;
	object-fit: contain;
}
.p-70 {
	padding-left: 70px;
}
.about-us p {
	color: #ffffffcf;
	font-size: 13.5px;
	font-family: 'Poppins-Regular', sans-serif;
	line-height: 26px;
}
.footer-title p { 
	font-size: 18px;
	font-family: 'Poppins-Medium', sans-serif;
}
.cms-ul li a { 
	font-size: 14px;
	font-family: 'Poppins-Regular', sans-serif;
	text-decoration: none;
	transition: all 0.4s;
}
.cms-ul li a:hover{
	margin-left: 4px;
	color: #999999; 
}
.cms-ul li {
	margin-bottom: 18px;
}
.copy-rights {

	background: #D1353A;
}
.copy-rights h6 {
	color: #FFF8F8;
	font-family: 'Poppins-Regular', sans-serif;
	font-size: 14px;
	text-align: center;
	line-height: 22px;
}
.footer-small-bg {
		padding: 10px 0px;
	border-top: 1px solid #fff ;
	display: flex;
	align-items: center;
}
.list-unstyled .numemailftrs{
	font-size: 15px;
	color: #FFF8F8;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-bg .spacingbottomvb{
	padding-bottom:30px;
	border-top: 1px solid #DDE2E5;
	padding-top: 30px;
	margin-top: 28px;
}
.footerlogocontents .footerlogo{
	width: 234px;
}
.footerlogocontents p{
	font-size: 14px;
	color: #FFF8F8;
	font-family: 'Poppins-Regular', sans-serif;
	margin-top: 17px;
}
.followus-labels{
	font-size: 18px;
	color: #FFF8F8;
	font-family: 'Poppins-SemiBold', sans-serif;
}
.socialmediaFooters{
	display: flex;
	gap: 21px;
	margin-top: 20px;
}
.socialmediaFooters .social-icon{
	height: 36px;
	width: 36px;
	background: #D1353A;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	font-size: 18px;
}
.header_mains-divclc .banner_sidebar .header-form-flex-gender input{
    display: none;
    margin: 0;    
}
.header_mains-divclc .banner_sidebar .header-form-flex-gender input[type="radio"]:checked+label:before {
    border-color: #fff6f9;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards;
}
.header_mains-divclc .banner_sidebar .header-form-flex-gender input[type="radio"]:checked+label:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.header_mains-divclc .banner_sidebar .header-form-flex-gender label {
    position: relative;
    margin: 0;    
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
}
.header_mains-divclc .banner_sidebar .header-form-flex-gender label::before {
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #C5C5C5;
    /* border: 2px solid rgba(255, 255, 255, 0.61); */
    margin-left: -25px;
}
.header_mains-divclc .banner_sidebar .header-form-flex-gender label:before,
.header_mains-divclc .banner_sidebar .header-form-flex-gender label:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    transition: all .3s ease;
    transition-property: border-color, -webkit-transform;
    transition-property: transform, border-color;
    transition-property: transform, border-color, -webkit-transform;
}
.header_mains-divclc .banner_sidebar .header-form-flex-gender label:after {
    -webkit-transform: scale(0);
    transform: scale(0);  
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 6px solid rgb(255, 0, 0);
    margin-left: -25px;
}
.header_mains-divclc .banner_sidebar .home-header-comn-input-gender{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_mains-divclc .banner_sidebar .header-form-flex-gender {
    margin: 10px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-form-relativeclass{
	position: relative;
}
.header-form-relativeclass .toggle-password{
    position: absolute;
    right: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}
.header_mains-divclc .select2-container {
	vertical-align: unset !important;
}
.header_mains-divclc .select2-container--default .select2-selection--single{
	width: 100% !important;
	padding: 3px !important;
	border-radius: 7px !important;
	border: 1px solid #a1a1a1 !important;
	margin: 10px 0 !important;
	outline: none !important;
	height: fit-content !important;
}
.header_mains-divclc .select2-container--default .select2-selection--single .select2-selection__arrow{
	top: 0 !important;
	bottom: 0 !important;
	height: fit-content !important;
	margin: auto !important;
}
.header_mains-divclc .select2-container .select2-selection--single .select2-selection__rendered{
	text-align: left !important;  
	font-size: 14px !important;
	font-weight: 400 !important;
	color: #4c4c4c !important;
}

.header_mains-divclc .banner_sidebar .curser_icon {
    color: #464646;
    font-size: 26px;
    margin: 14px 0 0 10px;
}