@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/*  Basic Css  */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-scroll {
  overflow: hidden;
}

a,
a:focus {
  text-decoration: none;
  -webkit-text-decoration: none;
  color: var(--black-color);
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
.p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Google Sans", sans-serif;
  background: #FCF1F5;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

:root {
  --primary-color: #EA115F;
  --primary-lightcolor: #F4DDE5;
  --title-color: #41232E;
  --subtitle-color: #5E4E41;
  --green-title-color: #667368;
  --yellow-title-color: #BFA682;
  --green-subtitle-color: #5F5B5A;
  --white-color: #FFFFFF;
  --black-color: #000000;
}

/* scrollbar css settings*/
::-webkit-scrollbar {
  width: 6px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--title-color);
  border-radius: 8px;
}
::-moz-scrollbar {
  width: 6px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
}
::-moz-scrollbar-track {
  border-radius: 8px;
}
::-moz-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
::-moz-scrollbar-thumb:hover {
  background: var(--title-color);
}

/* progress bar bottom to top Old  */
/* .progress-wrap {
  position: fixed;
  right: 34px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px var(--primary-color);
  z-index: 999;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  bottom: 24px;
  background: var(--primary-color);
  border-radius: 12px;
}
.progress-wrap:hover {
  background: var(--title-color);
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\eedc";
  font-family: 'boxicons', sans-serif;
  text-align: center;
  color: var(--white-color);
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  animation: heartbeat 2s infinite;
  background-position: center;
  font-size: 30px;
}
.progress-wrap:hover::after {
  opacity: 1;
  color: var(--white-color);
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--grey);
  stroke-width: 2;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@keyframes heartbeat {
  0% {
    transform: scale(0.75);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.75);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.75);
  }
  100% {
    transform: scale(0.75);
  }
} */

/* progress bar bottom to top New  */
.progress-wrap,
.progress-wrap::after {
    height: 46px;
    width: 46px;
    display: block;
    -webkit-transition: .2s linear;
    cursor: pointer
}

::-moz-scrollbar-track {
    border-radius: 8px
}

::-moz-scrollbar-thumb {
    background: var(--primary-bg-color);
    border-radius: 8px
}

::-moz-scrollbar-thumb:hover {
    background: var(--purple-color)
}

.progress-wrap {
    position: fixed;
    right: 10px;
    border-radius: 0;
    box-shadow: inset 0 0 0 2px #EA115F;
    z-index: 999;
    visibility: hidden;
    transition: .2s linear;
    bottom: 10px;
    clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 10px 100%, 0% calc(100% - 10px));
    background: #EA115F
}

.progress-wrap:hover {
    background: #f5719f
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.progress-wrap::after {
    position: absolute;
    content: "";
    background: url("https://beta.mominrishtey.in/public/storage/web/assets/img/icons/arrowTop-progres.svg") center center / 22px 22px no-repeat;
    font-weight: 400;
    text-align: center;
    color: var(--secondary-text-color);
    left: 0;
    top: 0;
    z-index: 1;
    transition: .2s linear;
    animation: 2s infinite heartbeat
}

.progress-wrap:hover::after,
.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: .2s linear;
    transition: .2s linear
}

@keyframes heartbeat {
    0%,
    100%,
    40%,
    80% {
        transform: scale(.75)
    }
    20%,
    60% {
        transform: scale(1)
    }
}

/* font family use for html class  */
.fw-normal-4 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}
.fw-normal-5 {
  font-family: "Libre Baskerville", serif;
  font-weight: 300;
}
.fw-normal-6 {
  font-family: "Libre Baskerville", serif;
  font-weight: 600;
}
.fw-normal-7 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
}
.fw-3 {
  font-family: "Google Sans", sans-serif;
  font-weight: 300;
}
.fw-4 {
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
}
.fw-5 {
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
}
.fw-6 {
  font-family: "Google Sans", sans-serif;
  font-weight: 600;
}
.fw-7 {
  font-family: "Google Sans", sans-serif;
  font-weight: 700;
}
.fw-8 {
  font-family: "Google Sans", sans-serif;
  font-weight: 800;
}

/* Color And Background-Color Use for Html  */
.primary-color-n {
  color: var(--primary-color);
}
.primary-bgcolor-n {
  background: var(--primary-color);
}
.primary-lightcolor-n {
  color: var(--primary-lightcolor);
}
.primary-bglightcolor-n {
  background: var(--primary-lightcolor);
}
.title-color-n {
  color: var(--title-color);
}
.title-bgcolor-n {
  background: var(--title-color);
}
.subtitle-color-n {
  color: var(--subtitle-color);
}
.subtitle-bgcolor-n {
  background: var(--subtitle-color);
}
.green-title-color-n {
  color: var(--green-title-color);
}
.green-title-bgcolor-n {
  background: var(--green-title-color);
}
.green-subtitle-color-n {
  color: var(--green-subtitle-color);
}
.green-subtitle-bgcolor-n {
  background: var(--green-subtitle-color);
}
.yellow-title-color-n {
  color: var(--yellow-title-color);
}
.yellow-title-bgcolor-n {
  background: var(--yellow-title-color);
}
.white-color-n {
  color: var(--white-color);
}
.white-bgcolor-n {
  background: var(--white-color);
}
.black-color-n {
  color: var(--black-color);
}
.black-bgcolor-n {
  background: var(--black-color);
}

/* font size use for html  */
.fts-68 {
  font-size: 68px;
}
.fts-62 {
  font-size: 62px;
}
.fts-58 {
  font-size: 58px;
}
.fts-52 {
  font-size: 52px;
}
.fts-50 {
  font-size: 50px;
}
.fts-44 {
  font-size: 44px;
}
.fts-38 {
  font-size: 38px;
}
.fts-36 {
  font-size: 36px;
}
.fts-32 {
  font-size: 32px;
}
.fts-28 {
  font-size: 28px;
}
.fts-24 {
  font-size: 24px;
}
.fts-22 {
  font-size: 22px;
}
.fts-20 {
  font-size: 20px;
}
.fts-18 {
  font-size: 18px;
}
.fts-16 {
  font-size: 16px;
}
.fts-15 {
  font-size: 15px;
}
.fts-14 {
  font-size: 14px;
}
.fts-13 {
  font-size: 13px;
}
.fts-12 {
  font-size: 12px;
}
.fts-10 {
  font-size: 10px;
}

@media only screen and (max-device-width: 768px) {
  .fts-68 {
    font-size: 30px;
  }
  .fts-62 {
    font-size: 29px;
  }
  .fts-58 {
    font-size: 28px;
  }
  .fts-52 {
    font-size: 28px;
  }
  .fts-50 {
    font-size: 28px;
  }
  .fts-44 {
    font-size: 28px;
  }
  .fts-38 {
    font-size: 28px;
  }
  .fts-36 {
    font-size: 26px;
  }
  .fts-32 {
    font-size: 26px;
  }
  .fts-28 {
    font-size: 20px;
  }
  .fts-24 {
    font-size: 20px;
  }
  .fts-22 {
    font-size: 20px;
  }
  .fts-20 {
    font-size: 18px;
  }
  .fts-18 {
    font-size: 16px;
  }
  .fts-16 {
    font-size: 15px;
  }
  .fts-15 {
    font-size: 14px;
  }
  .fts-14 {
    font-size: 13px;
  }
  .fts-13 {
    font-size: 12px;
  }
  .fts-12 {
    font-size: 11px;
  }
  .fts-10 {
    font-size: 9px;
  }
}

/* navbar section start  */
.navbar-ui li .nav-item:hover,
.navbar-ui li.active .nav-item{
  color: var(--primary-color);
}
.navbar-ui li .nav-item{
  color: var(--title-color);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-motersDesign .brand-logo{
  width: 200px;
  outline: none;
  border: 0;
}
.common-dropdown-menu {
  position: absolute;
  border-radius: 12px;
  left: -38px !important;
  top: 34px !important;
  z-index: 991;
  transition: all 0.4s;
  background: var(--white-color);
  border: 1px solid #00000012;
  min-width: 190px;
  transform: unset !important;
}
.navbar-ui li a i {
  font-size: 24px;
  line-height: 0;
}
.common-dropdown-menu li .dropdown-item {
  font-size: 14px;
  color: var(--subtitle-color);
  background: var(--white-color);
  margin-bottom: 3px;
  padding: 7px 12px;
  transition: all 0.3s;
  font-weight: 400;
}
.common-dropdown-menu li .dropdown-item.active,
.common-dropdown-menu li .dropdown-item:hover{
  background: var(--secondary-color);
}
.nav-register-btn{
  display: flex;
  align-items: center;
  padding: 3px 3px 3px 16px;
  gap: 10px;
  border: 1px solid var(--title-color);
  background: transparent;
  border-radius: 10px;
  font-weight: 500;
  color: var(--title-color);
  transition: all 0.3s;
}
.nav-register-btn i{
  height: 35px;
  width: 35px;
  background: var(--white-color);
  color: var(--title-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 19px;
  transform: rotate(180deg);
  border: 1px solid var(--primary-lightcolor);
  transition: all 0.3s;
}
.nav-register-btn:hover{
  background: var(--title-color);
  color: var(--white-color);
}
.nav-register-btn:hover i{
  background: #ffffff26;
  border-color: #ffffff26;
  color: var(--white-color);
}
.nav-login-btn{
  display: flex;
  align-items: center;
  padding: 3px 3px 3px 16px;
  gap: 10px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  border-radius: 10px;
  font-weight: 500;
  color: var(--white-color);
  transition: all 0.3s;
}
.nav-login-btn i{
  height: 35px;
  width: 35px;
  background: transparent;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 19px;
  transform: rotate(180deg);
  border: 1px solid #ffffff70;
  transition: all 0.3s;
}
.nav-login-btn:hover{
  background: transparent;
  color: var(--primary-color);
}
.nav-login-btn:hover i{
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.navbar-ui .dropdownstyle-lite{
  left: -36px !important;
  z-index: 99992;
  transition: all 0.4s;
  background: linear-gradient(180deg, #F4E2E8 0%, #FFFFFF 100%);
  border: 1px solid var(--white-color);
  border-radius: 12px;
}
.dropdownstyle-lite li a{
  color: var(--title-color);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 16px;
  line-height: 24px;
}
.dropdownstyle-lite li a.active,
.dropdownstyle-lite li a:hover{
  background: transparent;
  color: var(--primary-color);
}

/* header section start  */
.home-nav-header-background {
  background-size: cover !important;
}
.header-design-box{
  /* background: #FFFFFF82; */
  background: #ffffff47;
  /* backdrop-filter: blur(33px); */
  backdrop-filter: blur(103px);
  box-shadow: 0px 2px 6px 0px #00000017;
  width: fit-content;
  border-radius: 18px;
}
.header-apps-google-btn{
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 7px 7px 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  color: var(--white-color);
  width: 100%;
}
.apps-icon-header{
  background: linear-gradient(180deg, #FFFFFF 0%, #C8C8C8 100%);
  box-shadow: 0px 4px 4px 0px #00000040;
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
  font-size: 26px;
}

/* Search for your right partner Starts */
.for-search-relative{
  background: linear-gradient(180deg, #E4DEDC 0%, #FFFFFF 100%);
  backdrop-filter: blur(56.5px);
  box-shadow: 0px 2px 6px 0px #00000017;
  border-radius: 14px;
  padding: 15px 18px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.custom-width-gender{
  width: 25%;
}
.custom-width-age{
  width: 38%;
}
.custom-width-religion{
  width: 25%;
}
.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}
.custom-select-wrapper select {
  display: none;
  visibility: hidden;
  border: 0px;
}
.custom-select-trigger {
  position: relative;
  display: block;
  font-size: 14px;
  color: var(--title-color);
  line-height: 25px;
  cursor: pointer;
  font-weight: 500;
  background: transparent;
  padding: 10px 0px;
}
.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  top: 49%;
  right: 16px;
  margin-top: 0px;
  border-bottom: 1px solid var(--title-color);
  border-right: 1px solid var(--title-color);
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.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: 57px;
  left: 0;
  right: 0;
  min-width: 100%;
  max-height: 153px;
  overflow: auto;
  overflow-x: hidden;
  margin: 0px 0;
  border: 1px solid var(--subtitle-color);
  box-sizing: border-box;
  background: var(--white-color);
  transition: all 0.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 0.4s ease-in-out;
}
.option-hover:before {
  background: #f9f9f9;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 17px;
  border-bottom: 1px solid #7E5474;
  font-size: 14px;
  color: var(--title-color);
  line-height: 37px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}
.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: var(--title-color);
  color: var(--white-color);
}
.bor-rmd {
  border-radius: 0px 3px 3px 0px;
}
.searchnow {
  display: flex;
  align-items: center;
  padding: 3px 3px 3px 16px;
  gap: 10px;
  border: 1px solid var(--title-color);
  background: var(--title-color);
  border-radius: 10px;
  font-weight: 400;
  width: 118px;
  color: var(--white-color);
  transition: all 0.3s;
}
.searchnow i {
  height: 35px;
  width: 35px;
  background: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 19px;
  transform: rotate(180deg);
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
}
.custom-select-trigger_new:after {
  right: 20px;
}
.main-header-bottomset{
  margin-top: -35px;
}

/* Trusted by Thousands of Muslim Families */
.section-title-bg{
  width: 310px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}
.trusted-single-box{
  background: linear-gradient(180deg, #E5F4E2 0%, #FFFFFF 100%);
  border: 1px solid var(--white-color);
  box-shadow: 0px 10px 17.1px -2px #3F212D0F;
  box-shadow: 0px 7px 0px 0px #00000012;
  border-radius: 16px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s;
}
.trusted-single-box:hover{
  transform: translateY(-5px);
}
.trusted-single-box:hover .trusted-img-box .trusted-img{
  transform: scale(1.1);
}
.inner-trusted-box{
  background: #FFFFFF82;
  box-shadow: 0px 10px 17.1px 0px #3F212D0F;
  border-radius: 12px;
  padding: 14px 14px 22px;
  margin-top: 100px;
}
.trusted-img-box{
  height: 110px;
  width: 110px;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid var(--white-color);
  margin: -66px auto 0px;
}
.trusted-img-box .trusted-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.trusted-single-box.profile-color-1{
  background: linear-gradient(180deg, #F4E2E8 0%, #FFFFFF 100%);
}
.trusted-single-box.profile-color-2{
  background: linear-gradient(180deg, #F4ECE2 0%, #FFFFFF 100%);
}
.trusted-single-box.profile-color-3{
  background: linear-gradient(180deg, #F4E2E3 0%, #FFFFFF 100%);
}

/* Happy success stories*/
.inner-stories-borderbox{
  background: linear-gradient(180deg, #F4E2E8 0%, #FFFFFF 100%);
  border: 1px solid var(--white-color);
  box-shadow: 0px 7px 0px 0px #00000012;
  border-radius: 16px;
  padding: 10px;
}
.inner-stories-border{
  border: 1px dashed #667368;
  border-radius: 14px;
  background: url(../images/bg-design-common.png) no-repeat;
  background-position: 0% 95%;
  background-size: 400px;
}
.success-user-top{
  width: 100%;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}
.success-user-top .stories-img-home{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.more-stories-btn{
  color: var(--green-title-color);
  border: 1px solid var(--green-title-color);
  padding: 10px 24px;
  display: inline-block;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s;
}
.success-hover-part p{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.more-stories-btn:hover{
  background: var(--green-title-color);
  color: var(--white-color);
}
.successStoryArrows{
  background: transparent;
  width: fit-content;
  padding: 6px;
  border-radius: 100px;
  gap: 10px;
}
.successStoryArrows .slick-prev,
.successStoryArrows .slick-next{
  background: #3B3B3B;
  color: var(--white-color);
  height: 40px;
  width: 40px;
  border-radius: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.successStoryArrows .slick-prev:hover,
.successStoryArrows .slick-next:hover{
  background: var(--primary-color);
}
.happy-success-Slider .slick-track{
  margin: 0;
}

/* last added Profiles */ 
.LastProfileSlider .lastprofileimg {
  display: block;
  height: 310px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  width: 100%;
}
.single-dashboard-profiles{
  border-radius: 16px;
  background: linear-gradient(180deg, #E5F4E2 0%, #FFFFFF 100%);
  box-shadow: 0px 7px 0px 0px #00000012;
}
.btn-profile-view{
  background: #F6F6F6;
  border: 1px solid #D8DDE1;
  height: 36px;
  width: 36px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--primary-color);
}
.lastProfileArrows{
  background: var(--black-color);
  width: fit-content;
  padding: 6px;
  margin: auto;
  border-radius: 100px;
  gap: 10px;
}
.lastProfileArrows .slick-prev,
.lastProfileArrows .slick-next{
  background: #3B3B3B;
  color: var(--white-color);
  height: 40px;
  width: 40px;
  border-radius: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.lastProfileArrows .slick-prev:hover,
.lastProfileArrows .slick-next:hover{
  background: var(--primary-color);
}
.LastProfileSlider .slick-track{
  margin: 0;
}

/* how momin rishtey work section */
.how-works-stepsmain {
  padding: 10px;
  background: #FBF4F6;
  border-radius: 16px;
  border: 1px solid #FFFFFF;
  position: relative;
  text-align: center;
  box-shadow: 0px 7px 0px 0px #00000012;
  transition: all 0.3s;
}
.how-works-stepsmain:hover{
  transform: translateY(-5px);
}
.step-icon-area{
  background: linear-gradient(270deg, #F2EFEC 0%, #DEE0DB 100%);
  padding: 12px 3px 3px 3px;
  border-radius: 200px 200px 10px 10px;
}
.step-icon-area.odd{
  background: linear-gradient(270deg, #F0EDE2 0%, #EADECE 100%);
}
.how-works-stepscontent{
  background: #F8F1F0;
  border: 1px solid #fff;
  margin-top: -30px;
  border-radius: 40px 40px 6px 6px;
  padding: 20px 15px 20px;
}
.step-user-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* Why Parents Trust Momin Rishtey */
.single-parent-box{
  background: #FBF4F6;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 7px 0px 0px #00000012;
  border-radius: 16px;
  cursor: pointer;
  align-items: center;
  transition: all 0.3s;
}
.single-parent-box:hover{
  transform: translateY(-5px);
}
.lefts-parent-img .parent-icon{
  height: 80px;
  width: 80px;
  object-fit: contain;
}

/* Personalised Matchmaking Service Section */
.match-join-btn{
  display: flex;
  align-items: center;
  padding: 3px 3px 3px 16px;
  gap: 10px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  border-radius: 10px;
  font-weight: 500;
  color: var(--white-color);
  width: fit-content;
  transition: all 0.3s;
}
.match-join-btn i{
  height: 40px;
  width: 40px;
  background: transparent;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 21px;
  transform: rotate(180deg);
  border: 1px solid #ffffff70;
  transition: all 0.3s;
}
.match-join-btn:hover{
  background: transparent;
  color: var(--primary-color);
}
.match-join-btn:hover i{
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.personalised-list li i{
  height: 28px;
  width: 28px;
  background: var(--primary-lightcolor);
  color: var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 10px;
}
 
/* app away section start   */
.appwawysmaindivsdfer { 
  background: url(../images/index-best-way-bg.png) no-repeat 100%/contain,var(--secondary-color);
}
.left_appsawaydivs .apcentersdfvf span {
  height: 12px;
  width: 2px;
  display: inline-block;
}
.apsiconGroupsdiv .appsplay-icon {
  width: 140px;
  margin-right: 12px;
}
.appusesesusermain {
  display: flex;
  align-items: center;
  gap: 20px;
}
.usersappsgroup .commanprofile {
  height: 47px;
  width: 47px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
  border: 3px solid #fff;
}
.usersappsgroup .commanprofile.users2 {
  margin-left: -28px;
}
.usersappsgroup .commanprofile.users3 {
  margin-left: -28px;
}
.usersappsgroup .commanprofile.users4 {
  margin-left: -28px;
}
.usersappsgroup .commanprofile.users5 {
  margin-left: -28px;
}
.appusesesusermain p span {
  display: block;
}
.left_appsawaydivs h4 span{
  height: 12px;
  width: 2px;
  background: var(--white-color);
  display: inline-block;
  margin: 0px 24px;
}

/* Community section start */
.single_browse-inner .icon_browse-vn {
  height: 52px;
  width: 52px;
  min-width: 52px;
  background: var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 22px;
}
.right_content-browse .browse_list-direct a {
  font-weight: 400;
  color: var(--subtitle-color);
}
.right_content-browse .browse_list-direct a.more-details{
  color: var(--black-color);
  font-weight: 500;
}
.browse_list-direct .br-lines {
  display: inline-block;
  height: 10px;
  width: 1px;
  background: var(--subtitle-color);
  margin: 0px 9px;
}


/* footer section start  */
.home-footer-main{
  background: url(../images/footer-bg-line.png) no-repeat, var(--black-color);
  background-size: cover;
  background-position: center;
}
.footer-logo-social-box{
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #FFFFFF29;
  border: 0.86px solid #0000001F;
  backdrop-filter: blur(4.128754px);
  border-radius: 40px;
  padding: 10px 35px;
}
.social-footers-icons .footer-icon-m{
  background: var(--white-color);
  height: 38px;
  width: 38px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black-color);
  transition: all 0.3s;
}
.social-footers-icons .footer-icon-m:hover{
  background: var(--primary-color);
  color: var(--white-color);
}
.footer-logo-social-box .footer-logo{
  width: 120px;
}
.footerlist a{
  color: var(--white-color);
}
.footer-main .footer-description{
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: auto;
}
.copy-right-footers{
  background: #2A2A2A;
}
.custom-tooltip {
  --bs-tooltip-bg: var(--primary-color);
  --bs-tooltip-color: var(--white-color);
}
.social-footers-home a{
  height: 34px;
  width: 34px;
  background: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B83F13;
  box-shadow: 0px 4px 4px 0px #ad844a0f;
  transition: all 0.3s;
  margin-right: 4px;
}
.social-footers-home a:hover{
  background: #B83F13;
  color: var(--white-color);
}
.footer_linking-mng .footer-logo{
  width: 140px;
}
.footer-support-list .footer-suppor-link{
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--subtitle-color);
  font-weight: 500;
}
.footer-suppor-link span{
  height: 38px;
  width: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-color);
  color: var(--white-color);
  border-radius: 100%;
  font-size: 18px;
} 

.green-glow-light {
    position: relative;
    width: 12px;
    height: 12px;
    background: #01d61a;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px !important;
}

/* center dot */
.green-glow-light::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #01d61a;
    border-radius: 50%;
    top: 0;
    left: 0;
}

/* ripple ring */
.green-glow-light::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(1,214,26,0.4);
    top: 0;
    left: 0;
    animation: ripple 1.6s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    70% {
        transform: scale(2.8);
        opacity: 0;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}


.word-space-h2 {
  word-spacing: 10px;
}

.home-nav-header-background-banner-img
{
    background: url('../../../assets/home6/images/banner.jpg') no-repeat center;
    background-size: cover;
}
@media (max-width: 1000px){
    .home-nav-header-background-banner-img
    {
        background:none;
    }
    .home-nav-header-background-banner-img-sm-show
    {
        background: url('../../../assets/home6/images/banner.jpg') no-repeat center;
        background-size: cover;
    }
}