@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*  Basic Css  */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a,
a:focus {
  text-decoration: none;
  -webkit-text-decoration: none;
}

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: "DM Sans", sans-serif;
  background: var(--white-color);
}
::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}
::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

:root {
  --primary-color: #980000;
  --secondary-color: #000000;
  --title-color: #1e1e1e;
  --subtitle-color: #586169;
  --border-color: #dde2e5;
  --black-color: #000000;
  --white-color: #ffffff;
  --hero-bg: #fff9f5;
}

/* 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);
  }
}

.fw-3 {
  font-weight: 300;
}
.fw-4 {
  font-weight: 400;
}
.fw-5 {
  font-weight: 500;
}
.fw-6 {
  font-weight: 600;
}
.fw-7 {
  font-weight: 700;
}
.fw-8 {
  font-weight: 800;
}

/* Color And Background-Color Use for Html  */
.primary-color-L {
  color: var(--primary-color);
}
.primary-bgcolor-L {
  background: var(--primary-color);
}
.secondary-color-L {
  color: var(--secondary-color);
}
.secondary-bgcolor-L {
  background: var(--secondary-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);
}
.white-color-L {
  color: var(--white-color);
}
.white-bgcolor-L {
  background: var(--white-color);
}
.black-color-L {
  color: var(--black-color);
}
.black-bgcolor-L {
  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-pro-matrimony {
  background: var(--white-color);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 8;
}
.navbar-pro-inner {
  min-height: 60px;
  position: relative;
}
.navbar-pro-inner .brand-logo {
  width: 120px;
  border-radius: 100%;
}
.nav-brand-center {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: var(--white-color);
  border-radius: 100%;
  padding: 6px;
}
.navbar-pro-inner .navbar-ui li .nav-item {
  color: var(--title-color);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  transition: all 0.3s;
}
.navbar-pro-inner .navbar-ui li .nav-item .nav-icon {
  font-size: 22px;
}
.navbar-left-links {
  padding-right: 70px;
}
.navbar-right-links {
  padding-left: 70px;
}
.navbar-pro-inner .navbar-ui li .nav-item:hover,
.navbar-pro-inner .navbar-ui li .nav-item.active {
  color: var(--primary-color);
  background: rgb(210 83 83 / 12%);
}
.navbar-ui .btn-login {
  background: #b20000;
  color: var(--white-color);
  border-radius: 40px;
  padding: 6px 8px 6px 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: none;
  transition: all 0.3s;
}
.navbar-ui .btn-login-arrow {
  height: 41px;
  width: 41px;
  border-radius: 100%;
  background: var(--black-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.navbar-ui .btn-login:hover {
  background: var(--primary-color);
}
@media only screen and (max-width: 1199px) {
  .navbar-left-links {
    padding-right: 45px;
  }
  .navbar-right-links {
    padding-left: 45px;
  }
}

/* header section start */
.main-header-bg {
  background: var(--hero-bg) !important;
  background-size: cover !important;
  position: relative;
  background-repeat: no-repeat !important;
}
.main-header-section {
  padding-bottom: 34px;
}
.pro-header-left-contents {
  max-width: 680px;
}
.hero-top-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e7c5c5;
  color: var(--primary-color);
  border-radius: 50px;
  padding: 10px 24px;
  letter-spacing: 2px;
  background: #fdecea;
}
.hero-main-title {
  line-height: 1.08;
}
.hero-accent-word {
  color: var(--primary-color);
}
.hero-cta-btn {
  width: max-content;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50px;
  padding: 8px 8px 8px 30px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hero-cta-arrow {
  height: 48px;
  width: 48px;
  border-radius: 100%;
  background: var(--black-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.hero-visual-wrap {
  position: relative;
  min-height: 680px;
}
.hero-circle-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 100%;
  background: #f59b1e;
  top: 44px;
  left: 110px;
}
.hero-couple-img {
  position: absolute;
  width: 646px;
  max-width: none;
  right: -56px;
  bottom: -34px;
  z-index: 2;
}
.hero-stats-card {
  position: absolute;
  z-index: 3;
  background: var(--white-color);
  border-radius: 48px;
  padding: 11px 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  color: #3a3a3a;
}
.stats-dot {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background: #d13f2f;
  display: inline-block;
}
.stats-top {
  top: 145px;
  left: -50px;
}
.stats-bottom {
  right: -24px;
  bottom: 168px;
}
.hero-heart {
  position: absolute;
  font-size: 72px;
  color: var(--primary-color);
  z-index: 1;
  transform: rotate(31deg);
}
.heart-top {
  top: 146px;
  right: -36px;
}
.heart-bottom {
  left: -86px;
  bottom: 124px;
  color: var(--black-color);
  transform: rotate(-35deg);
}
/* register form start   */
.search-forms-section {
  position: relative;
  width: 100%;
  z-index: 20;
  background-color: var(--secondary-color);
}
.inner-search-section {
  background: var(--black-color);
  padding: 18px 24px;
  width: 100%;
  border-radius: 40px;
}
.common-search-single label {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}
.common-search-single {
  padding-left: 12px;
}
.search-col-divider {
  position: relative;
}
.search-col-divider::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 10px;
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.25);
}
.search-to-text {
  color: rgba(255, 255, 255, 0.65);
  min-width: 20px;
}
.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}
.custom-select {
  position: relative;
}
.custom-select-wrapper select {
  display: none;
  visibility: hidden;
  border: 0px;
}
.custom-select-trigger {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--white-color);
  line-height: 36px;
  cursor: pointer;
  padding: 0;
  font-weight: 500;
  background: transparent;
  border-radius: 0;
  border-bottom: none;
}
.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  top: 48%;
  right: 14px;
  margin-top: 0px;
  border-bottom: 2px solid var(--white-color);
  border-right: 2px solid var(--white-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: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  max-height: 153px;
  overflow: auto;
  overflow-x: hidden;
  margin: 0px 0;
  border: 1px solid #dedede;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
  background: #fff;
  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: 999;
}
.custom-select.opened {
  z-index: 1000;
}
.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 #ececec;
  font-size: 15px;
  font-weight: normal;
  color: #464646;
  line-height: 37px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.custom-option:first-of-type {
  border-radius: 0px 0px 0 0;
}
.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 0px 0px;
}
.custom-option:hover,
.custom-option.selection {
  background: #ececec;
}
.search-btn-form {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 6px 5px 24px;
  border-radius: 44px;
  gap: 8px;
}
.search-btn-icon {
  height: 48px;
  width: 48px;
  border-radius: 100%;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

/* How Does It Work section start */
.top-work-boxbg {
  animation: boxblink 2s ease-in-out infinite none;
  background: #c3488026;
  width: max-content;
  margin: auto;
  border-radius: 100%;
  padding: 8px;
}
@keyframes boxblink {
  0% {
    box-shadow: 0 0 0 0 #c3488012;
  }
  100% {
    box-shadow: 0 0 0 14px #c3487f10;
  }
}
.inner-box-workwhite {
  height: 80px;
  width: 80px;
  margin: auto;
  background: var(--white-color);
  border-radius: 100%;
  font-size: 42px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Last Added Profiles section start */
.last-added-section {
  background: #ffffff;
  padding: 80px 0px;
}
.single-dashboard-profiles {
  box-shadow: 0px 13px 17.6px 0px rgba(46, 219, 178, 0.08);
  border-radius: 15px;
  padding: 1px;
}
.single-dashboard-profiles.dimand {
  background: linear-gradient(
    185deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(167 240 223 / 17%) 45%,
    #2edbb2 100%
  );
}
.single-dashboard-profiles.Platinum {
  background: linear-gradient(
    185deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(313deg 71% 52% / 10%),
    #db2eb5 100%
  );
  box-shadow: 0px 13px 10.6px 0px rgba(216, 46, 219, 0.08);
}
.single-dashboard-profiles.Silver {
  background: linear-gradient(
    185deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(245deg 71% 52% / 10%),
    #3c2edb 100%
  );
  box-shadow: 0px 13px 17.6px 0px rgba(46, 63, 219, 0.08);
}
.single-dashboard-profiles.Gold {
  background: linear-gradient(
    185deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(51deg 71% 52% / 17%),
    #dbc02e 100%
  );
  box-shadow: 0px 13px 17.6px 0px rgba(219, 191, 46, 0.08);
}
.single-dashboard-profiles.Free {
  background: linear-gradient(185deg, #83838300 0%, #8383832b, #838383 100%);
  box-shadow: 0px 13px 17.6px 0px #8383831a;
}
.single-dashboard-profiles.DimandPlus {
  background: linear-gradient(
    185deg,
    rgb(247 132 173 / 0%) 0%,
    hsl(338.61deg 87.79% 74.31% / 28%),
    #f784ad 100%
  );
  box-shadow: 0px 13px 17.6px 0px rgb(247 132 173 / 12%);
}
.profile-box-whitebg {
  border-radius: 14px;
}
.profile-box-whitebg .tops_imagesdsd {
  display: inline-block;
  margin: auto;
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
}
.tops_imagesdsd .lastprofileimg {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  transition: all 0.4s;
}
.profile-dashboard-text p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.tops_imagesdsd:hover .lastprofileimg {
  transform: scale(1.2);
}
.tops_imagesdsd .commanbadge {
  position: absolute;
  left: 12px;
  bottom: 7px;
  background: #2edbb2;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  padding: 5px 14px;
  transition: all 0.3s;
  z-index: 2;
}
.tops_imagesdsd .commanbadge.dimand {
  color: #fff;
  background: #2edbb2;
}
.tops_imagesdsd .commanbadge.Platinum {
  color: #fff;
  background: #db2eb5;
}
.tops_imagesdsd .commanbadge.Silver {
  color: #fff;
  background: #3c2edb;
}
.tops_imagesdsd .commanbadge.Gold {
  color: #fff;
  background: #dbc02e;
}
.tops_imagesdsd .commanbadge.Free {
  color: #fff;
  background: #838383;
}
.tops_imagesdsd .commanbadge.DimandPlus {
  color: #fff;
  background: #f784ad;
}
.tops_imagesdsd:hover .commanbadge {
  margin-left: 20px;
}

/* Happy success stories*/
.inner-stories-borderbox {
  background: var(--hero-bg);

  border-radius: 16px;
  padding: 0px 10px;
}
.inner-stories-border {
  border-radius: 14px;
  background: url(../images/bg-design-common.png) no-repeat;
  background-position: 0% 100%;
  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(--black-color);
  border: 1px solid var(--black-color);
  padding: 10px 24px;
  display: inline-block;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  text-transform: uppercase;
}
.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(--primary-color);
  color: var(--white-color);
  border: none;
}
.successStoryArrows {
  background: black;
  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;
}

/* Reliable section */
.reliable-home-section {
  background: var(--white-color);
  overflow: hidden;
  padding: 80px 0px;
}
.reliable-title-wrap {
  max-width: 900px;
}
.reliable-main-image {
  border-radius: 32px;
  overflow: hidden;
  height: 360px;
}
.reliable-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.single-reliable-card {
  align-items: flex-start;
}
.reliable-iconbox {
  height: 86px;
  width: 86px;
  min-width: 86px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 4px white;
}
.reliable-iconbox i {
  font-size: 52px;
}
.reliable-text-part h4 {
  line-height: 1.2;
  margin-top: 6px;
}
.reliable-text-part p {
  line-height: 1.45;
  max-width: 340px;
}
.reliable-left-column {
  margin-left: -45px;
}
/* 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;
}

/* language cast cities contries section  */
.language-home-section {
  background: var(--white-color);
  padding-bottom: 80px;
}
.citie-language-img .langeages-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

/* Best way to manage section */
.manage-way-leftside h4 span {
  height: 12px;
  width: 2px;
  background: var(--white-color);
  display: inline-block;
  margin: 0px 24px;
}
.apps-playstore img {
  width: 190px;
}
.usersappsgroup .commanprofile {
  height: 46px;
  width: 46px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--white-color);
  margin-left: -28px;
}

/* community & about us section start  */
.single-community-str {
  background: #fff8f8;
  padding: 14px 24px;
  border-radius: 30px;
}
.single-community-str.clr-1 {
  background: #e4fcf9;
}
.single-community-str.clr-2 {
  background: #fff9e6;
}
.single-community-str.clr-3 {
  background: #f0f9e0;
}
.single-community-str.clr-4 {
  background: #f9edff;
}
.single-community-str.clr-5 {
  background: #fff0f0;
}
.single-community-str .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  color: var(--black-color);
  font-weight: 700;
}
.single-community-str .accordion-button::after {
  content: "\ebc0";
  font-family: "boxicons";
  background: transparent;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: unset;
  width: unset;
}
.accordion-button:not(.collapsed)::after {
  content: "\eb8b";
}
.matri-comunity-s .lvg {
  height: 10px;
  width: 1px;
  background: #495057;
  margin: 0px 10px;
}

/* footer section start  */
.footerlist li {
  line-height: 20px;
}
.comman_inputfield_main .send-now-btn {
  border-radius: 40px;
  border: none;
  outline: none;
  background: var(--title-color);
  color: var(--white-color);
  padding: 11px 40px;
  display: inline-block;
}
.copy-right-footers {
  border-top: 1px solid #dfdfdf;
}
.custom-tooltip {
  --bs-tooltip-bg: var(--secondary-color);
  --bs-tooltip-color: var(--white-color);
}
.social-footers-home a {
  height: 32px;
  width: 32px;
  background: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  box-shadow: 0px 4px 4px 0px #ad844a0f;
  transition: all 0.3s;
}
.social-footers-home a:hover {
  background: var(--black-color);
  color: var(--white-color);
}
.footer_linking-mng .footer-logo {
  width: 180px;
}
.footer-contact-suport i {
  height: 36px;
  width: 36px;
  background: var(--black-color);
  color: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.footer-contact-suport:hover i {
  background: var(--third-color);
}
.how-work-section {
  padding: 80px 0px;
  background-color: var(--hero-bg);
}
.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;
}
.manage-way-section {
  padding: 50px 0px;
  background-color: var(--primary-color);
}
.appusesesusermain {
  right: -133px;
  top: 150px;
}

/* About US Section Start */
.AboutUS_Section {
  padding: 80px 0px;
}
.AboutUSupperline {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  margin-bottom: 8px;
}
.lineside {
  height: 2px;
  width: 60px;
  background-color: var(--title-color);
}
.AboutUS_Section .photos_Videos_Experiance {
  position: relative;
}
.AboutUS_Section .photos_Videos_Experiance .topLeftimg {
  width: 200px;
  height: 200px;
  object-fit: cover;

  border-radius: 16px;
  position: absolute;
  left: 0px;
  top: 125px;
  z-index: 2;
}
.AboutUS_Section .photos_Videos_Experiance .centerimg {
  left: 60px;
  z-index: 1;
  width: 69%;
  margin-left: 63px;
}
.AboutUS_Section .photos_Videos_Experiance .bottomRightimg {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  object-position: 77% 0%;
  position: absolute;
  z-index: 2;
  bottom: 30px;
  right: 0;
}
.AboutUS_Section .photos_Videos_Experiance .experiance {
  position: absolute;
  rotate: -90deg;
  display: flex;
  right: -70px;
  top: 0px;
  bottom: 224px;
  height: fit-content;
  margin: auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.AboutUS_Section .photos_Videos_Experiance .experiance .text {
  font-size: 18px;
  color: #1f1f1f;
  font-family: "Poppins-Reguler", sans-serif;
  line-height: 24px;
}
.AboutUS_Section .photos_Videos_Experiance .experiance .text span {
  font-size: 36px;
  color: #a1a6b0;
  font-weight: 600;
}
.AboutUS_Section .photos_Videos_Experiance .experiance .years {
  font-size: 84px;
  color: #ad240c;
  font-weight: 600;
  rotate: 90deg;
}
.AboutUS_Section .titles_AboutUS p {
  font-size: 15px;
  font-weight: 400;
  color: #797e88;
}
.AboutUS_Section .titles_AboutUS .about-us-desc {
  max-width: 640px;
  line-height: 1.6;
  color: var(--title-color);
}
.AboutUS_Section .titles_AboutUS ul {
  list-style: none;
  display: flex;
  justify-content: left;
  gap: 0px 44px;
}
.AboutUS_Section .titles_AboutUS li {
  font-size: 16px;
  font-weight: 400;
  color: var(--title-color);
  display: flex;
  align-items: center;
  margin: 36px 0 0 0;
}
.AboutUS_Section .titles_AboutUS li i {
  font-size: 8px;
  color: var(--black-color);
  margin: 0px 10px 2px 0;
}
.AboutUS_Section .titles_AboutUS .login-btn-main {
  margin: 40px 0 0;
}
.playbtn {
  transition: 0.3s !important;
  border-radius: 50px;
  font-size: 60px;
  color: #fff !important;
  display: block;
  position: absolute;
  top: 43%;
  right: 0;
  left: 40%;
  bottom: 0;
  z-index: 99;
  height: 0;
  width: 0;
}
.text_Content {
  padding-left: 75px;
  margin-top: 18px;
}
.about-contact-btn {
  border-radius: 40px;
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s;
  padding: 12px 33px;
  width: fit-content;
  text-transform: uppercase;
  margin-top: 46px;
  transition: all 0.3s;
}
.about-contact-btn:hover {
  background: transparent;
  color: var(--primary-color);
}
.about-support-btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
  text-transform: none;
  padding: 6px 6px 6px 30px;
  gap: 24px;
}
.about-support-btn .about-contact-arrow {
  height: 46px;
  width: 46px;
  border-radius: 100%;
  background: var(--black-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.about-support-btn:hover {
  color: var(--white-color);
  border-color: var(--primary-color);
  background: var(--primary-color);
}
.close_one {
  position: absolute;
  right: -41px;
  top: -5px;
  z-index: 999;
  font-size: 20px;
  opacity: 1;
  background: #fff;
  height: 33px;
  width: 34px;
  border: 0;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}
.modal-content {
  border: none;
  border-radius: 0;
}
.modal-body {
  position: relative;
  padding: 0px;
}
.about-modal-video iframe {
  width: 100%;
  height: 330px;
  border: none;
}
.explore-community-main {
  padding: 80px 0px;
  background-color: var(--hero-bg);
}
.community-subtitle {
  max-width: 720px;
}
.single-community-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 20px 20px;
  box-shadow: 4px 7px 13px #00000005;
}
.community-card-icon {
  height: 70px;
  width: 70px;
  min-width: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-card-icon i {
  font-size: 38px;
}
.community-card-content h4 {
  line-height: 1.15;
}
.community-tags a {
  line-height: 1.2;
}

/* Redesigned footer */
.footer-main {
  background: var(--black-color);
  padding-top: 70px;
}
.footer-top-shell {
  background: linear-gradient(90deg, #2e2f34 0%, #141519 45%, #222327 100%);
  border-radius: 54px;
  padding: 18px 22px;
  position: relative;
  justify-content: end !important;
}
.footer-brand-circle {
  height: 118px;
  width: 118px;
  min-width: 118px;
  border-radius: 100%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  box-shadow: 0px 8px 26px #00000052;
  position: absolute;
  left: 0;
}
.footer-round-logo {
  width: 98px;
  height: 98px;
  object-fit: contain;
}
.footer-socials a {
  height: 49px;
  width: 49px;
  border-radius: 100%;
  background: var(--white-color);
  color: var(--black-color);
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.footer-col-block h4 {
  margin-bottom: 30px;
}
.footer-link-list li {
  line-height: 1.3;
  margin-bottom: 18px;
}
.footer-link-list li a {
  transition: all 0.3s;
}
.footer-link-list li a:hover {
  color: var(--primary-color);
}
.footer-contact-main a {
  transition: all 0.3s;
}
.footer-contact-main a:hover {
  color: var(--primary-color);
}
.footer-copyright-bar {
  background: linear-gradient(90deg, #242529 0%, #1a1b1f 45%, #2a2b2f 100%);
}
