@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&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: 'Gordita-Regular', sans-serif;
  background: #F6F8FD;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

:root {
  --primary-color: #40CFA4;
  --semi-primary-color: #40cfa470;
  --primary2-color: #F6FDF6;
  --primary-L-color: #FFF8F8;
  --secondary-color: #251839;
  --blue-color: #3478EB;
  --blue-L-color: #EBF8F8;
  --label-color: #24272C;
  --title-color: #111116;
  --subtitle-color: #4F4F4F;
  --border-color: #DDDFE5;
  --placeholder-color: #696665;
  --gray1-color: #F8F9FA;
  --gray2-color: #DDE2E5;
  --gray3-color: #ACB5BD;
  --gray4-color: #495057;
  --real-black-color: #000;
  --black-color: #212429;
  --white-color: #FFFFFF;
  --error-color: #F03D3E;
  --green-color-L: #00A569;
  --payment-color: #50B748;
  --pending-bgcolor: #FFE8C7;
  --pending-textcolor: #D49233;
  --accept-bgcolor: #CDFDE6;
  --accept-textcolor: #18CB75;
  --msg-receive-color: #F1F1F1;
  --saleText-color: #DD4949;
  --sale-bg-color: #ffd5d5;
  --error-bgcolor-L: #FDECEC;
  --success-color: #E4DEBE;
  --success-bgcolor-L: #EBEDF9;
  --notification-color: #D84910;
  --green-lighcolor-L: #14E45B1F;
  --intrest-bgcolor: #21AB8A;
}

/* 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(--secondary-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(--secondary-color);
}

/* progress bar bottom to top  */
.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: transparent;
}

.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(--primary-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);
  }
}

/* font family use for html class  */
@font-face {
  font-family: 'Gordita-Light';
  src: url(../fonts/Gordita-Light.otf);
}

@font-face {
  font-family: 'Gordita-Regular';
  src: url(../fonts/Gordita-Regular.otf);
}

@font-face {
  font-family: 'Gordita-Medium';
  src: url(../fonts/Gordita-Medium.otf);
}

@font-face {
  font-family: 'Gordita-Bold';
  src: url(../fonts/Gordita-Bold.otf);
}

@font-face {
  font-family: 'Gordita-Black';
  src: url(../fonts/Gordita-Black.otf);
}

.fw-normal {
  font-family: "DM Serif Display", serif;
  font-weight: 500 !important;
}

.fw-normal1 {
  font-family: "DM Serif Display", serif;
  font-weight: 300 !important;
}

.fw-3 {
  font-family: 'Gordita-Light', sans-serif;
}

.fw-4 {
  font-family: 'Gordita-Regular', sans-serif;
}

.fw-5 {
  font-family: 'Gordita-Medium', sans-serif;
}

.fw-7 {
  font-family: 'Gordita-Bold', sans-serif;
}

.fw-8 {
  font-family: 'Gordita-Black', sans-serif;
}

/* Color And Background-Color Use for Html  */
.primary-color-L {
  color: var(--primary-color);
}

.primary-bgcolor-L {
  background: var(--primary-color);
}
.semi-primary-color-L {
  color: var(--semi-primary-color);
}

.semi-primary-bgcolor-L {
  background: var(--semi-primary-color);
}

.primary2-color-L {
  color: var(--primary2-color);
}

.primary2-bgcolor-L {
  background: var(--primary2-color);
}

.primary-L-color-L {
  color: var(--primary-L-colorr);
}

.primary-L-bgcolor-L {
  background: var(--primary-L-color);
}

.secondary-color-L {
  color: var(--secondary-color);
}

.secondary-bgcolor-L {
  background: var(--secondary-color);
}

.blue-L-color-L {
  color: var(--blue-L-color);
}

.blue-L-bgcolor-L {
  background: var(--blue-L-color);
}

.label-color-L {
  color: var(--label-color);
}

.label-bgcolor-L {
  background: var(--label-color);
}

.title-color-L {
  color: var(--title-color);
}

.title-bgcolor-L {
  background: var(--title-color);
}

.subtitle-color-L {
  color: var(--subtitle-color);
}

.subtitle-bgcolor-L {
  background: var(--subtitle-color);
}

.border-color-L {
  color: var(--border-color);
}

.placeholder-color-L {
  color: var(--placeholder-color);
}

.placeholder-bgcolor-L {
  background: var(--placeholder-color);
}

.white-color-L {
  color: var(--white-color);
}

.white-bgcolor-L {
  background: var(--white-color);
}

.real-black-color-L {
  color: var(--real-black-color);
}

.real-black-bgcolor-L {
  background: var(--real-black-color);
}

.black-color-L {
  color: var(--black-color);
}

.black-bgcolor-L {
  background: var(--black-color);
}

.gray3-color-L {
  color: var(--gray3-color);
}

.gray3-bgcolor-L {
  background: var(--gray3-color);
}

.error-color-L {
  color: var(--error-color);
}

.error-bgcolor-L {
  background: var(--error-color);
}

.gray1-color-L {
  color: var(--gray1-color);
}

.gray1-bgcolor-L {
  background: var(--gray1-color);
}

.gray2-color-L {
  color: var(--gray2-color);
}

.gray2-bgcolor-L {
  background: var(--gray2-color);
}

.gray4-color-L {
  color: var(--gray4-color) !important;
}

.gray4-bgcolor-L {
  background: var(--gray4-color);
}

.success-color-L {
  color: var(--success-color);
}

.success-bgcolor-L {
  background: var(--success-bgcolor);
}

.saleText-color-L {
  color: var(--saleText-color);
}

.saleText-bgcolor-L {
  background: var(--saleText-color);
}

.green-color-L {
  color: var(--green-color-L);
}

.green-bgcolor-L {
  background: var(--green-color-L);
}

.green-lighcolor-L {
  color: var(--green-lighcolor-L);
}

.green-lighbgcolor-L {
  background: var(--green-lighcolor-L);
}

.notification-color-L {
  color: var(--notification-color);
}

.notification-bgcolor-L {
  background: var(--notification-color);
}

.payment-bgcolor {
  background: var(--payment-color);
}

.pending-bgcolor {
  background: var(--pending-bgcolor);
}

.pending-textcolor {
  color: var(--pending-textcolor);
}

.accept-bgcolo {
  background: var(--accept-bgcolo);
}

.accept-textcolor {
  color: var(--accept-textcolor);
}

/* 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;
  }
}
.home-nav-header-background{
  background: linear-gradient(0deg, rgba(110, 207, 178, 0.22) 8%, rgba(255, 255, 255, 0.14) 100%);
}

/* navbar section start  */
.navbar-motersDesign{
  box-shadow: 0px 4px 19.4px 0px #00000008;
  background: var(--white-color);
  border-radius: 60px;
  padding: 10px;
  z-index: 999;
  position: relative;
}
.navbar-ui li .nav-item:hover,
.navbar-ui li.active .nav-item{
  color: var(--primary-color);
}
.navbar-ui li .nav-item{
  color: var(--black-color);
  font-size: 14px;
  font-family: 'Gordita-Medium', sans-serif;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.btn-common-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--primary-color);
  padding: 9px 28px;
  border-radius: 60px;
  color: var(--white-color);
  background: var(--primary-color);
  font-family: 'Gordita-Medium', sans-serif;
  text-transform: capitalize;
  width: max-content;
  box-shadow: 0px 5px 10px 0px #10abc426;
  transition: all 0.3s;
}
.btn-common-btn:hover{
  color: var(--primary-color);
  background: transparent;
}
.btn-common-border{
     display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #adadad;
    padding: 9px 28px;
    border-radius: 60px;
    color: var(--title-color);
    background: var(--white-color);
    font-family: 'Gordita-Regular', sans-serif;
    width: max-content;
    transition: all 0.3s;
}
.btn-common-border:hover{
  color: var(--white-color);
  background: var(--title-color);
}
.navbar-motersDesign .brand-logo{
  width: 140px;
  outline: none;
  border: 0;
}
.comman-bg-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--primary-color);
  padding: 10px 28px;
  border-radius: 12px;
  color: var(--white-color);
  background: var(--primary-color);
  text-transform: capitalize;
  width: max-content;
  box-shadow: 0px 5px 10px 0px #10abc426;
  transition: all 0.3s;
}
.comman-bg-btn:focus,
.comman-bg-btn:hover{
  background: transparent;
  color: var(--primary-color);
}
.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-family: 'Gordita-Regular', sans-serif;
}
.common-dropdown-menu li .dropdown-item.active,
.common-dropdown-menu li .dropdown-item:hover{
  background: var(--secondary-color);
}
.notification-nav {
  background: transparent;
  border: 1px solid #00000012;
  padding: 4px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 500;
  height: 44px;
  width: 44px;
  min-width: 44px;
  justify-content: center;
  position: relative;
}
.notification-nav .count-notification {
  position: absolute;
  font-size: 10px;
  top: -8px;
  right: -2px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 2px 6px;
  border-radius: 40px;
  font-family: 'Gordita-Medium', sans-serif;
}
.afterlogin-sidelog {
  padding: 4px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 24px;
  color: var(--title-color);
  font-weight: 500;
}
.afterlogin-sidelog .user-img {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  min-width: 38px;
  object-fit: cover;
  background: linear-gradient(90deg,rgba(118, 105, 246, 1) 0%, rgba(174, 35, 223, 1) 50%, rgba(243, 159, 32, 1) 100%);
  padding: 2px;
}
.afterlogin-sidelog ~ .common-dropdown-menu {
  top: 52px !important;
  right: 0 !important;
  left: unset !important;
}
.notification-design .notification-menu-dropdown {
  position: absolute;
  border-radius: 12px;
  top: 52px;
  right: -54px;
  z-index: 991;
  transition: all 0.4s;
  background: var(--white-color);
  border: 1px solid #00000012;
  min-width: 420px;
  max-height: 480px;
  overflow: auto;
}
.notification-time::before {
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background: var(--white-color);
  border: 3px solid var(--primary-color);
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 5px;
}
.notification-listing li {
  border: 1px solid transparent;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}
.notification-listing li.unread, .notification-listing li:hover {
  background: #ffda7c38;
  border-bottom: 1px solid #ffda7c;
}
.notification-listing li:last-child {
  border: none;
}
.nav-info-btn{
    position: absolute;
    right: -80px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--title-color);
    top: 0;
    bottom: 0;
}

/* header section start  */
header .header-left-truly h1::before{
  content: "";
  background-image: url(../images/home-header-heading-after.png);
  background-size: 100% 100%;
  position: absolute;
  height: 50px;
    width: 50px;
  left: -8%;
  top: -21%;
}
.btn-crteate-header {
  background:#fff;
  color: var(--title-color) !important;
  padding: 10px 50px 13px 20px;
  display: inline-block; 
  border-radius: 100px;
  border: none;
  font-family: 'Gordita-Medium', sans-serif;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0px 10px 14.1px 0px #6ECFB226;
}
.btn-crteate-header::after {
  content: "\ebe6";
  font-family: boxicons !important;
  font-weight: 400;
  position: absolute;
  right: 4px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  width: 38px;
  rotate: 315deg;
  font-size: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-right-truly .header-cpl-img {
  width: 80%;
  z-index: 1;
  position: relative;
}
.header-right-truly .header-round-bg {
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.header-verify-profile {
  position: absolute;
  bottom: 26%;
  left: -41px;
  z-index: 2; 
}
.group-member-stories .meber-pr-sm {
  height: 35px;
  width: 35px;
  object-fit: cover;
  border-radius: 100%;
  margin: -6px;
  border: 1px solid var(--white-color);
}
.stories-viewers-box {
  position: absolute;
  top: 7%;
  right: -4%;
  z-index: 2;   
} 
.header-heart-box{
  height: 42px;
  width: 42px;
  position: absolute;
  top: 0%;
  left: 14%;
  background: #FF094E;
  box-shadow: 1.48px 5.91px 14.78px 0px #FF516E59;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 22px;
}


/* headaer-search section  */
.header-search-menue-container{ 
  margin: 0 auto;
  border-radius: 100px;
  background: var(--white-color);
  box-shadow: 0px 10px 14.1px 0px #6ECFB226;
  /* width: fit-content; */
  padding: 10px;
}
.custom-header-same-input-search .btn-search-header{
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Gordita-Regular', sans-serif;
  border-radius: 100px;
  padding: 5px 18px;
  background: var(--black-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
 select {
  outline: 0;
  border: 0 !important;
  color: #000000;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
 } 
 .select2-container .select2-selection--single {
  height: 40px;
  border: none !important;
  outline: none !important;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Gordita-Medium', sans-serif;
  border-radius: 100px;
  background: var(--gray1-color);
  padding: 7px 31px 7px 15px;
  margin: 0 2px;
 }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}  

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--subtitle-color) transparent transparent var(--subtitle-color);
  border-style: solid;
  border-width: 2px;
  height: 0;
  left: 80%; 
  position: absolute;
  top: 50%;
  width: 0;
  padding: 3px;
  transform: translateY(-40%) rotate(225deg);
  transition: all 0.3s ease;
} 
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: translateY(0%) rotate(45deg);
  border-color: var(--subtitle-color) transparent transparent var(--subtitle-color); 
  border-width: 2px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--primary-color); 
  color: #ffffff;
  font-weight: 700;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background: #40cfa44f;
  color: #000;
  border-bottom: unset;
}

/* trusted-simple-pay-section */
.trusted-simple-pay-section .border-L-1L{
  border-right: 1px solid var(--border-color);
}
.trusted-simple-pay-section .icon {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
}

/* home-how-work-section */
.home-how-work-section .icon-badge-div .icon{
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  border-radius: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-how-work-section .icon-badge-div .step{
  height: fit-content;
  right: -25px;
}
.home-how-work-section .dashed-border-work{
  position: absolute;
  border-bottom: 1px dashed var(--title-color);
  width: 54%;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
  right: -34%;
}

/* Happy success stories*/
.happy-success-Slider .single-Success-profile .success-user-name-img img{
  height: 200px;
  object-position: top;
}
.happy-success-Slider .single-Success-profile .success-hover-part{
  display: none; 
}
.happy-success-Slider .single-Success-profile:hover .success-hover-part{
  display: block;
}
.happy-success-Slider .single-Success-profile .success-hover-part h5{
  width: fit-content;
  height: fit-content;
}
.happy-success-Slider .slick-prev{
  font-size: 0;
  border: none;
  background: transparent;
  position: absolute;
  right: 54px;
  top: -64px;
}
.happy-success-Slider .slick-prev::before{
  content: "\e9b4";
  font-family: 'boxicons', sans-serif;
  font-size: 20px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
  border: 1px solid var(--title-color);
  border-radius: 100%;
}
.happy-success-Slider .slick-next{
  font-size: 0;
  border: none;
  background: transparent;
  position: absolute;
  right: 0;
  top: -64px;
}
.happy-success-Slider .slick-next::before{
  content: "\e9b4";
  font-family: 'boxicons', sans-serif;
  font-size: 20px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
  border: 1px solid var(--title-color);
  border-radius: 100%;
  transform: rotate(180deg);
}
.happy-success-Slider .slick-next:hover::before,
.happy-success-Slider .slick-prev:hover::before{
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}
.happy-success-Slider .slick-track{
  margin: 0;
}

/* Featured Profiles */ 
.LastProfileSlider .slick-slide img {
  display: block;
  height: 246px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  width: 100%;
}
.single-dashboard-profiles{
  background: var(--white-color);
  padding: 5px;
  box-shadow: 1px 4px 20px 0px #205C7D26;
  border-radius: 20px;
}
.LastProfileSlider .slick-prev,
.LastProfileSlider .slick-next {
  font-size: 0;
  border: none;
  background: transparent;
  position: absolute; 
  top: 0;
  bottom: 0;
  z-index: 999;
}
.LastProfileSlider .slick-prev{left: -6px;}
.LastProfileSlider .slick-next {right: -6px;}
.LastProfileSlider .slick-prev::before,
.LastProfileSlider .slick-next::before {
  content: "\e9b4";
  font-family: 'boxicons', sans-serif;
  font-size: 20px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  box-shadow: 0px 0px 19px -12px #000;
  color: var(--title-color); 
  border-radius: 100%;
} 
.LastProfileSlider .slick-next::before{
  content: "\e9b4"; 
  transform: rotate(180deg);
}
.LastProfileSlider .slick-next:hover::before,
.LastProfileSlider .slick-prev:hover::before{
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}
.LastProfileSlider .slick-track{
  margin: 0;
}


/* About Pro 2.0 Matrimonial */ 
.feature-common-btn{
  background: #E5F4FB;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
}
.feature-common-btn:nth-child(1){
  background: #FFF8F8;
}
.feature-common-btn:nth-child(2){
  background: #E4FCF9;
}
.feature-common-btn:nth-child(3){
  background: #E5F4FB;
}
.feature-common-btn:nth-child(4){
  background: #FFF9E6;
}
.feature-common-btn:nth-child(5){
  background: #F9EDFF;
}
.feature-common-btn:nth-child(6){
  background: #F0F9E0;
}
.feature-common-btn:nth-child(7){
  background: #FFF0F0;
}

/* < !-- coutry-language-count --> */
.count-home-section-home{
  background-color: #FDFCE7;
}
.count-home-section-home img{
  height: 48px;
  width: 48px;
  object-fit: contain;
}
 

/* .app away section start   */
.appwawysmaindivsdfer { 
  background: url(../images/index-best-way-bg.png) no-repeat 100%/contain,var(--secondary-color);
}
.whyappsiinnernai { 
  border-radius: 35px; 
}
.left_appsawaydivs .apcentersdfvf span {
  height: 12px;
  width: 2px;
  display: inline-block;
}
.apsiconGroupsdiv .appsplay-icon {
  width: 140px;
  margin-right: 12px;
}
.right_Appsmockups .screendesign {
  width: 100%;
}
.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;
}

/* ------browse matri start--- */
.browse-matri-new { 
  background: #F4F8F7;
  border-radius: 32px;
}
.section-titles h2 {
  font-size: 36px;
  font-family: "Outfit-SemiBold", sans-serif;
  color: #3e3e3e;
}
.browse-matri-new .matri-browse-tabs button.active,
.browse-matri-new .matri-browse-tabs button.active:hover,
.browse-matri-new .matri-browse-tabs button.active:focus {
  background: var(--primary-color);
  color: #ffffff;
}
.browse-matri-new .matri-browse-tabs button {
  border: none;
  background: transparent;
  padding: 8px 24px;
  border-radius: 100px;
  margin: 0px 2px;
  font-family: 'Gordita-Medium', sans-serif;
  color: var(--title-color);
  font-size: 15px;
}
.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: #5A5A5A;
  font-size: 15px;
  padding: 6px 3px;
  transition: all 0.4s ease-in-out;
  line-height: 1.7;
  font-family: 'Outfit-Regular', sans-serif;
  margin: 10px;
}
.new-footer-ul li .view_more-matri {
  color: var(--primary-color); 
  font-family: 'Outfit-Regular', sans-serif;
  width: 189px; 
}
.vl {
  border-left: 2px solid #a1a1a1;
  height: 10px;
  display: inline-block;
  margin: 0px 0px;
}


/* footer section start  */
.footerlist li{
  line-height: 20px;
}
.footer-main .footer-description{
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: auto;
}
.copy-right-footers{
  border-top: 1px solid var(--border-color);
}
.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-family: 'Gordita-Medium', sans-serif;
}
.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;
} 
.footer_linking-mng .footer-logo{
    width: 220px;
}