:root {
  --color-425151: #425151;
  --color-1e5542: #54c7f5;
  --color-6baf14: #0e1f3d;
  --color-6db27d: #6db27d;
  --color-deece1: #deece1;
  --color-f3f8f4: #54c7f524;
  --color-bdd79d: #bdd79d;
  --color-848484: #848484;
  --color-afb1b0: #afb1b0;
  --color-ffb58b: #ffb58b;
  --color-FFD4AE: #ffd4ae;
  --color-E4783B: #e4783b;
  --color-FAFAFA: #fafafa;
  --color-F07162: #f07162;
  --color-F4A417: #f4a417;
  --color-FF941B: #FF941B;
  --color-7F9090: #7F9090;
  --color-f1f1f1: #f1f1f1;
  --color-dfede3: #dfede3;
  --color-445353: #445353;
  --black-color: #000;
  --white-color: #fff;
  --font-Muli: 'Mulish', sans-serif;
  ;
  --font-Nunito: "Nunito", sans-serif;
  --font-Poppins: "Poppins", sans-serif;
}

body .select-arrow {
  display: none !important;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

b {
  font-weight: 800;
  font-family: var(--font-Muli);
}

ul {
  list-style: none;
}

button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

input:focus,
textarea:focus {
  outline: none;
}

html {
  font-size: 10px;
}

.round-circle {
  border-radius: 50%;
  object-fit: cover;
}

.toast-message,
.toast-item-wrapper {
  font-size: 14px !important;
}

@media (max-width: 425px) {
  html {
    font-size: 8px;
  }
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--color-f1f1f1);
}

html::-webkit-scrollbar-thumb {
  background: var(--color-1e5542);
}

html {
  scrollbar-width: auto;
  scrollbar-color: var(--color-f1f1f1);
}

body {
  margin: 0;
  width: 100%;
  height: auto;
  font-style: normal;
  overflow: hidden;
  overflow-y: auto;
  background: #fcfcfc;
}

.slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  background: var(--white-color);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  border: none;
  color: #312e33;
  font-size: 16px;
  transition: 0.3s;
}

.slick-arrow:hover {
  background: #fafafa;
}

.slick-prev:before {
  content: "" !important;
  background-image: url(../imgs/icons/arrow-slide-left.svg);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
}

.slick-next:before {
  content: "" !important;
  background-image: url(../imgs/icons/arrow-slide-right.svg);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
}

.tag {
  display: flex;
  padding: 8px 12px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  background: #F8F8F8;
  color: #54c7f5;
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

/*Accordion-*/
.accordion-button:not(.collapsed) {
  background: #f5f5f5;
  box-shadow: none;
  outline: 0;
  border-radius: 6px;
}

/*---------Loader---------*/
.loaderwait-home {
  position: fixed;
  background: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999999;
  flex-direction: column;
  font-family: var(--font-Nunito);
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}

.loaderwait-home img {
  width: 200px;
  object-fit: cover;
}

/*----------------Common Style For Buttons---------------*/
/* buttons */
.btn_primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 5px;
  background: var(--color-1e5542);
  border-radius: 12px;
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  color: var(--white-color);
  transition: 0.3s;
  border: none;
}

.btn_primary:hover {
  background: var(--color-f3f8f4);
  color: var(--color-1e5542);
}

.btn_primary:hover img {
  filter: brightness(100);
}

.btn_secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  background: var(--color-f3f8f4);
  border-radius: 12px;
  transition: 0.3s;
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: var(--color-1e5542);
  border: none;
  white-space: nowrap;
  border: none;
}

.btn_secondary.service_modal {
  background: rgba(109, 178, 125, 0.2);
  color: #6db27d;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
}

.btn_secondary:hover {
  background: var(--color-1e5542);
  color: var(--color-f3f8f4);
}

.btn_secondary:hover img {
  filter: grayscale(100%) brightness(100);
}

.btn_light {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--color-1e5542);
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border-radius: 16px;
  background: var(--v-02-cloudy, #F5F5F5);
  border: none;
}

.btn_light:hover {
  background: #425151;
  color: #fff;
}

.btn_light:hover img {
  filter: brightness(100);
}

/*----------------Common Style For Buttons End Here---------------*/
.tag {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 8px;
  border-radius: 12px;
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  text-transform: capitalize;
}

.tag-success {
  background: rgba(109, 178, 125, 0.2);
  color: var(--color-6db27d);
}

.tag-warning {
  background: rgba(244, 164, 23, 0.2);
  color: var(--color-F4A417);
}

/*----------------Forms Field Style Start From Here------------------*/
.form-group {
  margin-bottom: 16px;
}

.form-label-custom {
  font-family: var(--font-Nunito);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-848484);
  text-transform: capitalize;
  margin-bottom: 6px;
}

.input-cover .form-control {
  padding: 12px 14px;
  width: 100%;
  background: var(--color-FAFAFA);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: none;
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-425151);
  border: 1px solid #90a3a7 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #FAFAFA inset !important;
}

.signup-banner .select2-container--default .select2-selection,
.select2-container--default .select2-selection {
  border: 1px solid #90a3a7 !important;
}

.field-error {
  font-family: var(--font-Nunito);
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-F07162);
}

.multiselect-native-select .multiselect.dropdown-toggle,
.select2-container--default .select2-selection {
  background-image: url(../imgs/icons/form-arrow.svg) !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 10px) center !important;
  min-height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered[title="Select Month"],
.select2-container--default .select2-selection--single .select2-selection__rendered[title="Select Year"],
.select2-container--default .select2-selection--single .select2-selection__rendered[title="Relation with you?"] {
  color: #42515196;
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.multiselect[title="E.g. English, Spanish, French"],
.multiselect[title="E.g. English, Spanish"],
.multiselect[title="E.g. CBT, EMDR, Psychotherapy"],
.select2-selection__rendered[title="Min"],
button[title="Min"],
.select2-selection__rendered[title="Max"],
button[title="Max"],
.select2-selection__rendered[title="E.g. Price, Reviews"],
.select2-selection__rendered[title="Select Location"],
.select2-selection__rendered[title="Select Timezone"],
.select2-selection__rendered[title="Select Gender"],
.select2-selection__rendered[title="Day"],
.select2-selection__rendered[title="Month"],
.select2-selection__rendered[title="Year"],
.select2-selection__rendered[title="Select Country"],
.select2-selection__rendered[title="Select Languages"],
.select2-selection__rendered[title="E.g. Price, Review"],
.multiselect-native-select [title="E.g. Price, Review"],
.multiselect[title="E.g. Price, Review"],
button[title="E.g. Price, Review"],
.multiselect[title="Select Gender"],
.select2-selection__rendered[title="Select Relationship"],
.select2-selection__rendered[title="Select Service"],
.select2-selection__rendered[title="Select Your Topic"],
.select2-selection__rendered[title=Day],
.select2-selection__rendered[title=Max],
.select2-selection__rendered[title=Min],
.select2-selection__rendered[title=Month],
.select2-selection__rendered[title=Year],
button[title=Max],
button[title=Min],
.select2-selection__placeholder,
.form-control::-webkit-select-placeholder,
.form-control::placeholder {
  font-family: var(--font-Muli) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 24px !important;
  color: #afb1b0 !important;
}

.field-icon {
  position: absolute;
  right: 1px;
  background: none;
  border: none;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 48px;
  border-radius: 0px 8px 8px 0px;
  transition: 0.3s;
}

.field-icon:hover {
  background: #ededed;
}

.eye-open {
  display: none;
}

.custom-form-check {
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.custom-form-check .form-check-input {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background: var(--color-FAFAFA);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.custom-form-check .form-check-input:checked {
  background-color: var(--color-425151);
}

.custom-form-check .form-check-label {
  font-family: var(--font-Nunito);
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-848484);
  cursor: pointer;
}

.custom-form-check .form-check-label a {
  color: var(--color-1e5542);
}

.styled-anchor {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  background: #54c7f524;
  border-radius: 12px;
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: var(--color-1e5542);
  margin-top: 20px;
  text-wrap: nowrap;
}

.styled-anchor a {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: var(--color-1e5542);
}

.select2-search__field {
  box-shadow: 0 0 1px rgba(0, 0, 0, .1);
  background: #fafafa;
  border: 1px solid #00000026 !important;
  padding: 12px 14px !important;
  border-radius: 8px;
  font-size: 14px;
}

.iti__selected-flag {
  padding: 10px 8px 10px;
}

.iti__arrow {
  margin-top: 3px;
}

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

.iti.iti--allow-dropdown {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--font-Muli);
}

.iti__country .iti__country-name {
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-425151) !important;
  text-transform: capitalize;
}

.iti__country-list {
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.12)) drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.05));
  border: none;
  box-shadow: none;
  border-radius: 10px;
  white-space: normal;
}

.iti__country-list li {
  width: 100%;
}

.iti__country-list::-webkit-scrollbar {
  width: 5px;
}

.iti__country-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.iti__country-list::-webkit-scrollbar-thumb {
  background: var(--color-1e5542);
}

.iti__country-lis {
  scrollbar-width: thin;
  scrollbar-color: var(--color-1e5542) #f1f1f1 !important;
}

.iti__divider {
  display: none !important;
}

.iti__country-list li {
  display: flex;
  align-items: baseline;
}

.iti__flag-container:focus-visible,
.iti__selected-flag {
  border: none;
  box-shadow: none;
  outline: none;
}

input[type="tel"]#Country_Code {
  padding-right: 14px;
  padding-left: 55px;
}

/*-------------------Testimonia Code-------------------*/
.rating>label {
  color: #cfd0cd;
  float: none;
}

.rating>label.activelabel {
  color: #ed9227 !important;
}

.rating>label:before {
  margin: 0px 3px;
  font-size: 20px;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.testimonial_box {
  padding: 10px;
  width: 100%;
  max-width: 315px;
  height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial_box-text {
  font-family: var(--font-Muli);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4A5959;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical;
  overflow: hidden;
  height: 96px;
}

.testimonial_box-name {
  font-family: var(--font-Nunito);
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #7f9090;
  height: 20px;
}

/*-----------------------Header-------------------------*/
.landing-page-navbar {
  padding: 28px 0 10px;
  transition: 0.3s linear;
  height: 86px;
}

.landing-page-navbar.smHead {
  font-size: 15px;
  height: 70px;
  padding-bottom: 20px;
}

.landing-page-navbar .navbar-toggler {
  background: 0 0;
  border: none;
  padding: 0;
}

.landing-page-navbar .navbar-toggler span {
  color: #54c7f5;
  font-size: 20px;
}

.landing-page-navbar .navbar-nav,
.nav_btns {
  gap: 20px;
}

.landing-page-navbar .nav-link {
  font-family: var(--font-Nunito);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #7f9191;
  padding: 12px 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.landing-page-navbar .nav-link.active,
.landing-page-navbar .show>.nav-link,
.landing-page-navbar .nav-link:hover {
  color: var(--color-1e5542);
}

.nav-dropdown .dropdown-menu {
  width: 143px;
  min-width: fit-content;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, .05));
  border: none;
  padding: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, .1);
  border-radius: 12px !important;
  overflow: hidden;
}

.nav-dropdown .dropdown-menu .dropdown-item {
  background: #fff;
  padding: 8px 12px !important;
  color: var(--color-afb1b0);
  font-weight: 500;
  font-size: 12px;
}

.nav-dropdown .dropdown-menu .dropdown-item:hover {
  background: 0 0;
  color: var(--color-6db27d);
}

.dropdown-content li,
.nav-item:hover .dropdown-content {
  display: block;
}

.nav_btns {
  margin-left: 60px;
}

.nav-item.dropdown {
  position: relative;
}

.currency-dropdown .btn-dd {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: #fafafa;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-right: 5px;
  border: none;
}

.currency-dropdown .btn-dd span {
  font-family: var(--font-Nunito);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #7f9191;
}

.currency-dropdown .btn-dd img {
  margin-left: 8px;
}

.currency-dropdown .btn-dd img {
  margin-left: 8px;
}

.currency-dropdown .dropdown-menu {
  min-width: fit-content;
  max-width: 78px;
  width: 100%;
  padding: 0;
  max-height: 171px;
  overflow: hidden;
  overflow-y: auto;
}

.currency-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.currency-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: var(--color-f1f1f1);
}

.currency-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--color-1e5542);
}

.currency-dropdown .dropdown-menu {
  scrollbar-width: auto;
  scrollbar-color: var(--color-f1f1f1);
}

.currency-dropdown .dropdown-menu .dropdown-item {
  font-family: var(--font-Nunito);
  font-weight: 500;
  font-size: 16px !important;
  line-height: 24px;
  color: #7f9191;
  font-size: 12px;
  padding: 5px 8px;
}

.currency-dropdown .dropdown-menu .dropdown-item:focus,
.currency-dropdown .dropdown-menu .dropdown-item:active,
.currency-dropdown .dropdown-menu .dropdown-item:hover {
  background: #d1d1d1;
  color: var(--color-1e5542);
}

.landing-page-navbar .btn_primary {
  width: 104px;
  height: 48px;
}

/*---------------------Landing Page Style Start From Here----------------*/
.grey-bg-wrap {
  padding: 64px 0px;
  background: #FAFAFA;
}

.light-bg-wrap {
  padding: 64px 0px;
}

.heading-01 {
  color: #4A5959;
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.64px;
}

.heading-01 span {
  color: #FF941B;
}

.heading-02 {
  color: #4A5959;
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.48px;
}

.body-large {
  color: #576767;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.body-small {
  color: #576767;
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.caption-tag {
  color: #848484;
  font-family: var(--font-Muli);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.24px;
  text-transform: capitalize;
}

.subtitle {
  color: #848484;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

.prev-button {
  display: flex;
  padding: 8px;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  left: 25.5px;
  top: 17px;
  border-radius: 80px;
  background: #FFF;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.35);
}

/*------------Signup-----------*/
.landing-page-navbar {
  height: 86px;
}

.landing-page-navbar {
  padding: 28px 0 10px;
  transition: 0.3s linear;
}

.signup-screen .navbar {
  z-index: 1;
}

.headSet {
  padding-left: 45px !important;
  padding-right: 45px !important;
  padding-top: 20px;
}

.navbar-toggler {
  background: 0 0;
  border: none;
  padding: 0;
  color: #54c7f5;
  font-size: 20px;
}

.signup-screen .landing-page-navbar .navbar-nav,
.signup-screen .nav_btns {
  gap: 72px;
}

element.style {
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
}

.landing-page-navbar .nav-link.active,
.landing-page-navbar .show>.nav-link,
.landing-page-navbar .nav-link:hover {
  color: var(--color-1e5542);
}

.landing-page-navbar .nav-link.active,
.landing-page-navbar .nav-link:hover,
.landing-page-navbar .show>.nav-link {
  color: var(--color-1e5542);
}

.signup-screen .navbar-nav .nav-link {
  color: #f5f5f5 !important;
}

.landing-page-navbar .nav-link {
  font-family: var(--font-Nunito);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #7f9191;
  padding: 12px 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.landing-page-navbar .nav-link {
  font-family: var(--font-Nunito);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #7f9191;
  padding: 12px 16px;
  text-transform: capitalize;
  transition: .3s;
}

.ss-btn {
  font-family: var(--font-Nunito) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  line-height: 24px !important;
}

.inner-form-padding {
  padding: 120px 50px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.signup-inner-form {
  padding-right: 30px;
  padding-left: 30px;
}

.inner-form-padding.signup-inner-form {
  position: relative;
  z-index: 0;
}

.inner-form-padding-overflow {
  /* max-height: 530px; */
  overflow: hidden;
  overflow-y: auto;
}

.inner-form-padding-overflow::-webkit-scrollbar {
  width: 6px;
}

.inner-form-padding-overflow::-webkit-scrollbar-thumb {
  background: var(--color-1e5542);
  visibility: hidden;
}

.inner-form-padding-overflow:hover::-webkit-scrollbar-thumb {
  background: var(--color-1e5542);
  visibility: visible;
}

.inner-form-padding-overflow::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.inner-form-padding-overflow {
  scrollbar-width: auto;
  scrollbar-color: var(--color-1e5542) #f1f1f1 !important;
}

.signup-inner-form .inner-form-padding-overflow {
  padding: 10px 10px 30px;
}

.s-h1 {
  font-family: var(--font-Nunito);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--color-1e5542);
  margin: 0;
}

.signup-screen .forms {
  margin-top: 32px;
}

.signup-content h2 {
  color: var(--v-02-cloudy, #F5F5F5);
  text-align: center;
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 25px;
}

.signup-content h1,
.signup-content h2.heading2 {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #f5f5f5;
  margin: 57px 0 11px;
}

.signup-content p {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #f5f5f5;
  margin: 0;
}

.password-field-padding {
  padding: 12px 46px 12px 14px !important;
}

.signup-content::-webkit-scrollbar {
  width: 0;
}

.signup-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.signup-content::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.acknowledgeWrap .acknowledgeTxt {
  font-size: 14px;
  line-height: 22px;
  font-family: var(--font-Muli);
}

.acknowledgeWrap .acknowledgeTxt h2 {
  font-size: 20px;
  line-height: 25px;
}

.showAck {
  display: none;
}

.rightNw {
  background: #54c7f5;
}

.signup-content .sContent p {
  max-width: 750px;
  margin: auto;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 15px;
}

.signTags {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 750px;
  margin: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.signTags li {
  color: var(--v-01-background-06, #E9EDEA);
  font-family: var(--font-Nunito);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  border-radius: 43px;
  border: 1px solid var(--v-01-background-06, #E9EDEA);
  padding: 16px;
}

.appPopUp {
  display: inline-flex;
  padding: 12px;
  align-items: center;
  gap: 24px;
  border-radius: 12px;
  background: var(--v-01-background-07-bg, #FFF);
  color: #000;
  font-family: var(--font-Muli);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  max-width: 555px;
  margin-top: 50px;
}

.appContent {
  display: flex;
  gap: 10px;
}

.appIcons {
  display: flex;
  gap: 10px;
}

/*---Hero Banner Style Start---*/
.landing-page .hero-section {
  min-height: 824px;
  margin-top: 24px;
}

.landing-page .service-tag-head {
  margin-top: 80px;
  max-width: 634px;
}

.landing-page .services-tag {
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  gap: 12px;
  max-width: 634px;
  margin-inline: auto;
  width: 100%;
  background: var(--white-color);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35), 0px 65px 50px rgba(0, 0, 0, 0.07);
  border-radius: 80px;
  margin-bottom: 30px;
}

.img-15x20 {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.landing-page .services-tag p {
  text-transform: capitalize;
  color: #425151;
  margin-left: 12px !important;
}

.landing-page .divider {
  width: 2px;
  height: 20px;
  background: #7f9191;
}

.img-20x20 {
  height: 20px;
  width: 20px;
  object-fit: cover;
}

.landing-page .hero-heading {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 50px;
  line-height: 110px;
  text-align: center;
  color: var(--color-425151);
  text-transform: capitalize;
}

.landing-page .hero-para {
  text-align: center;
  color: #6A7A7A;
  margin: 0 auto !important;
  width: 50%;
}

.animate-charcter {
  animation-name: Color;
  animation-duration: 10s;
  animation-timing-function: linear;
  display: inline-block;
  animation-iteration-count: infinite;
}

@keyframes Color {
  0% {
    color: #425151;
  }

  20% {
    color: #FF941B;
  }

  40% {
    color: #425151;
  }

  60% {
    color: #FF941B;
  }

  80% {
    color: #425151;
  }

  100% {
    color: #FF941B;
  }
}

.landing-page .hero-heading span {
  color: #FF941B;
}

.nav-tabs.search-nav-tabs {
  border-bottom: 0;
  max-width: 658px;
  margin-inline: auto;
  flex-wrap: nowrap;
}

.nav-tabs.search-nav-tabs .nav-link {
  padding: 12px 10px;
  color: #425151;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background: rgba(235, 235, 235, 0.40);
  backdrop-filter: blur(3.5px);
  border-radius: 0;
}

.nav-tabs.search-nav-tabs .nav-link.active {
  background: #FFF;
}

.nav-tabs.search-nav-tabs .nav-item:not(:last-child) .nav-link {
  border-right: 1px solid #D3D3D3;
}

.nav-tabs.search-nav-tabs .nav-item:not(:first-child) .nav-link.nav-link.active {
  border-left: 0px;
}

.nav-tabs.search-nav-tabs .nav-item:first-child .nav-link {
  border-radius: 8px 0px 0px 0px;
}

.nav-tabs.search-nav-tabs .nav-item:last-child .nav-link {
  border-radius: 0px 8px 0px 0px;
}

.landing-page .hero-search {
  padding: 28px 24px;
  gap: 12px;
  height: 80px;
  background: var(--white-color);
  border-radius: 8px;
  position: relative;
  max-width: 658px;
  width: 100%;
  border-radius: 0px 8px 8px 8px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0px 65px 50px 0px rgba(0, 0, 0, 0.07);
}

#tagPopup .landing-page .hero-search {
  border-radius: 80px;
}

.landing-page .hero-search input {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-Muli);
  color: #7f9191;
}

.landing-page .hero-search input::-webkit-input-placeholder {
  color: #7F9090;
}

.landing-page .search-btn {
  color: var(--light-color);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.landing-page .hero-slider-box {
  margin-top: 57px;
}

.landing-page .slick-initialized.slick-slider {
  display: block;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.landing-page .hero-slider-box .hero-slider .slick-slide {
  margin-left: 7px;
  margin-right: 7px;
}

.landing-page .hero-card {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.landing-page .hero-card .hero-icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

.landing-page .hero-card-title {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  height: 40px;
  text-align: center;
  color: var(--color-425151);
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  overflow: hidden;
}

.landing-page .background-cirlce-img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  max-width: 823px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-page #ring-2 {
  animation: breathing_2 25s infinite linear;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes breathing_2 {
  0% {
    transform: scale(1) rotate(0deg);
  }

  25% {
    transform: scale(0.9) rotate(90deg);
  }

  50% {
    transform: scale(1) rotate(180deg);
  }

  75% {
    transform: scale(0.9) rotate(270deg);
  }

  100% {
    transform: scale(1) rotate(360deg);
  }
}

.landing-page #ring-1 {
  animation: breathing_1 25s infinite linear;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes breathing_1 {
  0% {
    transform: scale(1) rotate(360deg);
  }

  25% {
    transform: scale(0.9) rotate(270deg);
  }

  50% {
    transform: scale(1) rotate(180deg);
  }

  75% {
    transform: scale(0.9) rotate(90deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.landing-page .custom-slick-arrows {
  gap: 27px;
  margin-top: 23px;
}

.landing-page button.slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  background: var(--white-color);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  border: none;
  color: #312e33;
  font-size: 16px;
  transition: 0.3s;
}

.landing-page button.slick-arrow:focus,
.landing-page button.slick-arrow:hover {
  background: #fafafa;
}

/*---Hero Banner Style End---*/
.access-experts-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}

.access-experts-steps .steps .col-lg-4:not(:last-child) .step {
  border-right: 1px solid #EAEAEA;
}

.access-experts-steps .step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-inline: 20px;
}

.access-experts-steps .step .heading-02 {
  color: #445353;
}

.international-councils-slider .slick-list {
  padding-inline: 32px;
}

.international-councils-slider .slick-slide {
  margin: 40px 10px;
  max-width: 203px;
}

/*--speak-to-expert----*/
.speak-to-expert .container {
  border-top: 1px solid #EAEAEA;
  padding-top: 40px;
}

.speak-to-expert .green-box {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 36px;
  background: var(--color-1e5542);
}

.speak-to-expert .green-box .group-avatar {
  width: 300px;
  flex-shrink: 0;
}

.ptgroup-imgs-list>img {
  border: 2px solid #54c7f5;
  box-sizing: border-box;
  flex-shrink: 0;
  border-radius: 50%;
  width: 75px;
  height: 75px;
}

.ptgroup-imgs-list>img:not(:first-child) {
  margin-left: -30px;
}

.ptgroup-imgs-list .more-pt {
  right: 0px;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgb(0 0 0 / 0%) 100%), url(<path-to-image>), #d3d3d357 50% / cover no-repeat;
}

.expert-for-item {
  padding: 25px 0px;
}

.expert-for-item .btn_secondary {
  font-size: 16px;
  font-weight: 800;
  gap: 5px;
  padding: 8px 24px;
  width: 142px;
  height: 60px;
}

.expert-for-item:not(:last-child) {
  border-bottom: 1px solid #EAEAEA;
}

.green-box p.body-large {
  color: #EAEAEA;
}

.overly-illustration {
  position: absolute;
  bottom: 0;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 50%;
  width: 100%;
}

.speak-to-expert .expert-for h4.heading-02 {
  color: #445353;
}

/*---Explore Our Services----*/
.explore-our-services h2.heading-01 {
  margin-bottom: 56px;
}

.explore-our-services h4.heading-02 {
  color: #445353;
}

.services-for-item {
  padding: 20px;
  margin-bottom: 12px;
  border-radius: 20px;
}

.services-for-item:hover,
.services-for-item.active {
  background: #FAFAFA;
}

.service-for-img>div {
  display: none;
}

.services-tag-mb>div {
  display: none !important;
}

.services-tag-mb>div.active {
  display: flex !important;
}

.service-for-img>div.active {
  display: block;
  border-radius: 24px;
  width: 100%;
  height: 100%;
}

#services-banner1 {
  background-image: url(../imgs/services-banner1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#services-banner2 {
  background-image: url(../imgs/services-banner2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#services-banner3 {
  background-image: url(../imgs/services-banner3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#services-banner4 {
  background-image: url(../imgs/services-banner4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-for-img img.active {
  display: block;
  margin-inline: auto;
  max-width: 100%;
}

/*----Clients Trust Practitioner----*/
.client-trust-wrap {
  max-width: 911px;
  margin-inline: auto;
}

.client-trust-wrap h2.heading-01 {
  margin-bottom: 16px;
}

.client-trust {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid #EAEAEA;
  margin-bottom: 56px;
}

.client-trust-score {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-right: 8px;
  padding-top: 16px;
  flex: 1;
}

.client-trust-score:not(:last-child) {
  border-right: 1px solid #EAEAEA;
}

.client-trust h3 {
  color: #54c7f5;
  line-height: normal;
}

/*---Testimonial Slider---*/
.testimonial-slider .slick-slide {
  margin: 0 10px;
  opacity: 0.6;
  transition: all 0.3s;
}

.testimonial-slider .slick-slide.slick-current {
  opacity: 1;
}

.testimonial-slider .testimonial_box {
  height: 224px;
  border-radius: 24px;
  max-width: 400px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.09);
}

.testimonial-slider .testimonial_box fieldset {
  padding: 0.35em 0.75em 0.625em;
}

.testimonial-slider .testimonial_box .testimonial_box-text {
  color: var(--color-1e5542);
  height: 140px;
}

.testimonial-slider .testimonial_box .audioTestimonialAtag {
  position: relative;
  display: block;
}

.testimonial-slider .testimonial_box .audioTestimonialAtag>img {
  width: 100%;
  height: 100%;
  max-height: 140px;
  object-fit: cover;
  border: 1px solid #00000029;
  border-radius: 10px;
}

.testimonial-slider .testimonial_box .audioTestimonialAtag span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  margin: auto;
  width: 30px;
  height: 30px;
  background: #FF0000;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slider .testimonial_box .audioTestimonialAtag span svg {
  width: 70%;
  height: 70%;
}

.testimonial-slider .testimonial_box .audioTestimonialAtag span svg path:last-child {
  fill: #fff;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-dots li,
.slick-dots li button {
  width: 12px !important;
  height: 12px !important;
}

.slick-dots li button:before {
  width: 8px !important;
  height: 8px !important;
  flex-shrink: 0 !important;
  border-radius: 14px !important;
  background: #54c7f5 !important;
  content: "" !important;
  opacity: 0.2 !important;
}

.slick-dots li.slick-active {
  margin-right: 10px !important;
}

.slick-dots li.slick-active button {
  width: 15px !important;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  width: 15px !important;
}

/*---Signup Banner---*/
.signupbanner {
  display: flex;
  padding: 36px 56px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 36px;
  background: #54c7f5 url(../imgs/signupbanner.png) no-repeat right center;
  min-height: 200px;
  margin-bottom: 60px;
}

.signup-width {
  max-width: 603px;
}

.signupbanner h2 {
  color: #fff;
}

.signupbanner p {
  color: #EAEAEA;
}

.signupbanner .signup-width a {
  margin-top: 25px;
  border: 1px solid #54c7f524;
  background: #fff;
  font-size: 16px;
  padding: 16px 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px
}

.signupbanner .signup-width a:hover {
  background: var(--color-1e5542);
  color: var(--color-f3f8f4);
}

.signupbanner .overly-illustration {
  width: auto;
}

/*--------Strugling------*/
.struggling-with h2.heading-01 {
  margin-bottom: 56px;
}

.stuggling-width-ailment {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 24px;
  background: #FAFAFA;
  height: 100%;
}

.stuggling-width-ailment h3.heading-02 {
  color: #445353;
}

.stuggling-width-ailment p {
  color: #576767;
  margin: 0;
}

.stuggling-width-ailment a {
  color: #5C6C6C;
  font-family: var(--font-Nunito);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  text-transform: capitalize;
}

.stuggling-width-ailment a:last-child {
  color: #54c7f5;
}

.stuggling-width-ailment:hover h3.heading-02 {
  color: #fff;
}

.stuggling-width-ailment:hover p {
  color: #EAEAEA;
}

.stuggling-width-ailment:hover a {
  color: #EAEAEA;
}

.stuggling-width-ailment:hover {
  background: var(--Primary, #54c7f5);
}

.stuggling-width-ailment:hover a img,
.check-well-bening-temp .stuggling-width-ailment:hover img {
  filter: grayscale(100%) brightness(100);
}

.stuggling-width-ailment:hover .imgs img:first-child {
  display: none;
}

.stuggling-width-ailment .imgs img:last-child {
  display: none;
}

.stuggling-width-ailment:hover .imgs img:last-child {
  display: block;
}

.strugling-more-condition {
  max-width: 625px;
  margin-inline: auto;
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
}

.strugling-more-condition a {
  width: max-content;
  margin-inline: auto;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  color: #54c7f524;
}

.strugling-more-condition p {
  color: #506060;
}

/*-------------Mobile Frame Slide Section--------------*/
.frame-slider-title {
  max-width: 650px;
  margin-bottom: 56px;
  margin-inline: auto;
}

.frame-slider-title p {
  color: #6A7A7A;
}

.frame-slider-aside {
  max-width: 315px;
  gap: 60px;
}

.mobile-frame {
  position: relative;
  max-width: 264px;
  margin-inline: auto;
}

.mobile-frame .mobile-frame-img {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.mobile-slider-wrap {
  max-width: 240px;
  height: 520px;
  position: absolute;
  top: 7px;
  left: 12px;
  z-index: 0;
}

.mobile-slider-cont {
  border-radius: 40px;
  overflow: hidden;
}

.iphone-node-img {
  position: absolute;
  transform: translateX(-50%);
  top: 15px;
  left: 50%;
  z-index: 1;
}

.mobile-slider-wrap .slick-dots {
  bottom: -45px;
}

.mobile-slider {
  height: 100%;
  margin: 0 !important;
  border-radius: 30px;
}

.mobile-slider-wrap .slick-slide {
  width: 240px;
  border-radius: 30px;
}

.mobile-slider-wrap .slick-slide img {
  height: 520px;
  width: 100%;
}

.frame-aside-item ul li {
  list-style-type: disc;
}

.frame-aside-item h3.heading-02 {
  color: #445353;
}

/*-----Check Well Being Temprature------*/
.check-well-bening-temp .check-temp-title {
  max-width: 650px;
  margin-bottom: 56px;
  margin-inline: auto;
}

.check-temp-title p {
  color: #6A7A7A;
}

/*-------Article Section---*/
.articles-group-wrap .hero-title-text h2 {
  font-weight: 800;
  line-height: 44px;
  color: var(--color-425151);
  margin: 0;
}

.articles-group-wrap .hero-title-text p {
  margin: 8px 0 0;
  line-height: 26px;
  color: #7f9090;
  margin: 8px 0 0;
}

.articleWrap {
  position: relative;
  display: block;
}

.articleWrap .articleimgWrap {
  position: relative;
}


.articleWrap .articleimgWrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .2);
  border-radius: 25px;
}

.col-lg-6 .articleWrap .articleimgWrap img {
  border-radius: 25px;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.articletitleWrap {
  position: absolute;
  top: 15px;
  left: 15px;
}

.articletitleWrap h2 {
  color: var(--v-01-background-05, #fff);
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.articleRead {
  color: #fff;
  font-family: var(--font-Muli);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 20px;
}

.articleWrapSm.articleWrap,
.articleWrapSm.articleWrap .articleimgWrap {
  height: 100%;
}

.articleWrap .articleimgWrap img {
  border-radius: 25px;
  width: 100%;
}

.articleWrapSm.articleWrap .articleimgWrap img,
.articleWrapSmOp.articleWrap img {
  height: 100%;
  object-fit: cover;
}

.articleWrapSm.articleWrap .articletitleWrap h2,
.articleWrapSmOp.articleWrap h2 {
  font-size: 24px;
  line-height: 32px;
}

.articleWrapSmOp.articleWrap {
  height: 75%;
}

.articleWrapSmOp.articleWrap .articleimgWrap {
  height: 100%;
}

.articleRm {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 16px;
  background: var(--v-01-primary-04, #54c7f5);
  color: #fff;
  font-family: var(--font-Nunito);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  height: calc(25% - 15px);
  margin-top: 15px;
  transition: .2s all linear;
}

.articleRm img {
  width: 20px;
  height: 20px !important;
}

.articleRm:hover {
  background: #54c7f591;
  color: #fff;
}

/*---------------Video Card Section----------*/
.expert-insights h2.heading-01 {
  margin-bottom: 30px;
  padding-top: 30px;
}

.video-card {
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto;
  max-width: 343.29px;
  width: 100%;
  max-height: 445px;
  position: relative;
}

.video-card .d-flex>img.img-fluid {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-play-btn {
  cursor: pointer;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  transition: 0.3s linear;
  z-index: 1;
}

/*-----Faq Section---*/
.hero-content-duel-tone h1,
.hero-content-duel-tone h2 {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 32px;
  line-height: 44px;
  color: var(--color-425151);
  margin: 0;
}

.hero-content-duel-tone h1 span,
.hero-content-duel-tone h2 span {
  color: #FF941B;
}

.hero-content-duel-tone p {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #7f9090;
  margin: 4px 0 0;
}

.faq-section-index .body-large {
  color: #7f9090;
}

.faq-section-index .accordion-item {
  border-top: 1px solid #eaeaea !important;
  border-bottom: none;
}

.faq-section-index .accordion-button {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--color-425151) !important;
  outline: none;
  box-shadow: none !important;
  background: none !important;
  padding: 20px 0 17px;
}

.faq-inner-text {
  z-index: 1;
  padding-right: 45px !important;
}

.faq-section-index .accordion-button::after {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.11), 0px 17px 25px rgba(0, 0, 0, 0.04);
  background-color: #fff;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50% !important;
  top: -22px;
  right: -4px;
  position: absolute;
  border: none;
  transform: rotate(0) !important;
  background-image: url(../imgs/icons/full-plus.svg);
  margin: 0 auto;
  background-size: cover;
  background-position: center;
}

.faq-section-index .accordion-button:not(.collapsed)::after {
  background-image: url(../imgs/icons/full-minus.svg);
}

.accordion-index .accordion-item .accordion-item {
  border-top: 1px solid #eaeaea !important;
  padding: 0;
}

.accordion-index .accordion-item .accordion-item .accordion-button {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--color-425151) !important;
  outline: none;
  box-shadow: none !important;
  background: none !important;
  padding: 20px 0 17px;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 0;
}

.accordion-index .accordion-item .accordion-item .accordion-body {
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 400;
  color: #7f9090;
  font-size: 16px;
  line-height: 26px;
  padding: 10px 0;
}

/*---------------------Landing Page Style End Here----------------*/
/*--------------------Meet Practitioner Style Start From Here----------------*/
.header-filter-slider-cover {
  padding-right: 50px;
}

.stickmenu {
  position: sticky;
  top: 20px;
  z-index: 1000;
}

.topTitle {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 40px;
  color: #54c7f5;
}

.header-filter-slider-cover .slick-arrow {
  z-index: 1;
}

.header-filter-slider-cover .slick-prev {
  left: 0;
}

.header-filter-slider-cover .slick-list {
  margin: 0 10px 0 40px;
}

.header-filter-slider {
  text-align: center;
  padding: 6px 10px;
  transition: 0.3s;
  height: 62px;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  max-width: 122px;
}

.header-filter-slider.active {
  border-color: var(--color-1e5542);
}

.header-filter-slider .img {
  max-width: 24px;
  min-width: 24px;
  height: 24px;
  margin: 0 auto;
  filter: grayscale(10);
}

.header-filter-slider.active .img {
  filter: grayscale(0);
}

.header-filter-slider h1,
.header-filter-slider h2 {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-afb1b0);
  margin: 6px 0 0;
  text-transform: capitalize;
  white-space: nowrap;
}

.header-filter-slider-cover .slick-next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

#search_form_btn .btn_primary:hover img {
  filter: brightness(0);
}

.drop-down-filter-box {
  padding: 8px 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  position: sticky;
  top: 136px;
  z-index: 999;
}

#search_form>.row {
  position: relative;
  z-index: 0;
}

.drop-down-filter-box .input-cover {
  display: flex;
  gap: 15px;
}

/* new filter */
.multiselect-native-select .multiselect.dropdown-toggle {
  padding: 10px 14px;
  width: 100%;
  /* width: 267.5px; */
  /* height: 48px; */
  background: var(--color-FAFAFA);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid #90a3a7 !important;
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-425151);
  text-align: left !important;
}

.multiselect-container.dropdown-menu {
  width: 100%;
  padding: 0 12px;
  background: #fafafa;
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-height: 270px;
  overflow: hidden !important;
  overflow-y: scroll !important;
  scrollbar-width: thin !important;
  scrollbar-color: var(--color-1e5542) #f1f1f1 !important;
  -webkit-overflow-scrolling: touch;
  -webkit-overflow-scrolling: auto;
}

.multiselect-container.dropdown-menu::-webkit-scrollbar {
  -webkit-overflow-scrolling: touch;
  -webkit-overflow-scrolling: auto;
}

.multiselect-native-select .btn-group {
  width: 100%;
}

.multiselect-container .multiselect-filter>input.multiselect-search {
  padding: 10px 14px !important;
  width: 100%;
  height: 44px;
  margin: 12px 0 12px !important;
  background: #fafafa;
  border: 1px solid #90a3a7 !important;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
}

.multiselect-filter svg {
  display: none;
}

.multiselect-container .multiselect-option,
.multiselect-container .multiselect-all {
  padding-left: 0 !important;
}

.multiselect-container .form-check-label {
  font-family: var(--font-Nunito);
  font-family: "Nunito";
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #000000;
}

.multiselect-container .form-check-input:checked {
  background-color: var(--color-425151);
  border-color: var(--color-425151);
}

.multiselect-container.dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.multiselect-container.dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.multiselect-container.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--color-1e5542);
}

.multiselect-option.disabled.active {
  background-color: transparent !important;
  color: #afb1b0 !important;
}

.multiselect-container .form-check-label {
  display: block;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
  max-width: 255px;
}

.multiselect-container.dropdown-menu {
  padding: 0 10px 10px;
}

.multiselect-option.dropdown-item {
  padding: 9.5px 0.25rem !important;
}

.filterBtns {
  display: flex;
  gap: 5px;
}

#search_form .resfix {
  display: block;
}

#search_form .resfix>.row {
  width: auto;
}

/*--Practitioner Card--*/
.instructor-card {
  padding: 12px;
  min-height: 338.5px;
  width: 100%;
  min-height: 303px;
  background: var(--white-color);
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  display: block;
}

.session-rate {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 20px;
  color: var(--color-1e5542);
  display: flex;
  align-items: flex-end;
}

.session-rate pre {
  font-size: 12px;
  margin: 0 0 0 2px;
  padding: 0;
  display: inline-block;
  top: 2px;
  position: relative;
}

.instructor-card .img {
  max-width: 140px;
  min-width: 140px;
  width: 100%;
  height: 140px;
  margin: 0 auto;
}

.instructor-card .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* max-width: max-content !important; */
}

.text-lg {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-1e5542);
  margin-top: 5px;
}

.text-lg.name {
  line-height: 27px;
  font-size: 16px;
  margin-top: 0 !important;
}

.instructor-card .text-lg.name {
  line-height: 23px;
}

.text-block {
  margin-top: 8px;
}

.instructor-card .text-lg.name,
.instructor-card .small-text.post {
  max-width: 160px;
  margin: 0 auto !important;
}

.small-text {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: var(--color-848484);
  text-transform: capitalize;
}

.instructor-card .total-no-sub {
  max-width: calc(100% - 20px);
}

.instructor-card .des {
  margin: 10px 0 0;
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-1e5542);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
}

.search-result-btns-box {
  min-height: 42.5px;
}

.instructor-card .divider {
  margin: 0 7px;
}

.pagination-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.pagination {
  display: flex;
  border-radius: 35px;
  background-color: #eee;
  width: max-content;
}

.page-numbers {
  display: block;
  padding: 5px 13px;
  transition: 400ms ease;
  color: #595959;
  font-size: 16px;
}

.page-numbers {
  display: block;
  padding: 5px 13px;
  transition: 400ms ease;
  color: #595959;
  font-size: 16px;
}

.page-numbers:hover,
.page-numbers.current {
  background-color: var(--color-1e5542);
  color: #fff;
}

/*--------------------Meet Practitioner Style End  Here----------------*/

/*--------------------Practitioner Profile Style Start Here----------------*/
.float_btn.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  visibility: visible;
}

.float_btn {
  border-radius: 0 !important;
  bottom: -100px;
  transition: .2s all linear;
  position: relative;
  display: none;
  text-align: center;
}

.profile-side-menu {
  padding: 16px 12px;
  isolation: isolate;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  position: sticky;
  top: 60px;
  min-width: auto;
}

.back-anchor {
  margin-top: -10px;
  font-size: 18px;
}

.profile-side-menu .img {
  max-width: 83px;
  min-width: 83px;
  width: 100%;
  height: 83px;
  margin: 0 auto;
}

.profile-side-menu.instructor-card .text-lg.name {
  max-width: fit-content;
  margin: 0 !important;
  line-height: 18px !important;
}

.detail-profile .profile-side-menu .text-lg {
  line-height: 20px;
}

.detail-profile .profile-side-menu .divider {
  width: 1px;
  height: 20px;
  background: #e1e1e1;
  margin: 0 7px;
}

.profile-side-menu .text-block {
  margin-top: 16px;
}

.h1-md {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--color-1e5542);
}

.detail-profile .col-lg-9 .instructor-details {
  padding: unset;
  display: initial;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
}

.detail-profile .col-lg-9 .instructor-details .d-nav {
  padding: 8px 0px 0px;
  background: #fcfcfc;
  border-radius: 16px 16px 0px 0px;
  top: 52px;
  gap: initial;
}

.detail-profile .col-lg-9 .instructor-details .d-nav a {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  text-transform: capitalize;
  color: #6f6d70;
  padding: 6px 10px;
  display: inline-block;
  border-bottom: 1.5px solid transparent;
  margin: 0;
  transition: 0.3s;
}

.detail-profile .col-lg-9 .instructor-details .d-nav a:hover,
.detail-profile .col-lg-9 .instructor-details .d-nav a.active {
  color: var(--color-1e5542);
  border-color: var(--color-1e5542);
}

.detail-profile .col-lg-9 .instructor-details .cover {
  padding: 12px;
  background: #fcfcfc;
  border-radius: 0px 0px 16px 16px;
  display: block;
}

.instructor-des {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-1e5542);
  margin: 10px 0 0;
}

.masonry-slider-for {
  /* max-width: 321px; */
  width: 100%;
}

.masonry-slider {
  width: 100%;
}

.masonry-slider-for .slick-track {
  margin-left: 0;
  margin-right: 0;
}

.blog-card {
  max-height: 494px;
  height: 100%;
  min-height: 237px;
  border-radius: 25px;
  overflow: hidden;
}

.masonry-slider-card .blog-card {
  overflow: hidden;
  max-width: 321px;
  min-width: auto;
  width: 100%;
  height: 280px;
  min-height: auto;
  margin: 0 auto;
  display: block;
  position: relative;
}

.masonry-slider-card .blog-card:before,
.blog-card:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000057;
}

.blog-card .blog-img {
  height: 100%;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.blog-card .blog-img img {
  /* object-fit: cover; */
  object-fit: fill;
  width: 100%;
  height: 100%;
  object-position: center;
  /* object-position: right bottom; */
}

.blog-card .content {
  top: 12px;
  left: 12px;
  right: 12px;
}

.blog-card .dtl {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  text-transform: capitalize;
  color: #ffffff;
  margin-top: 6px;
}

.instructor-details .blog-card .dtl {
  font-size: 13px;
  line-height: 20px;
}

.blog-card .seenby {
  font-family: var(--font-Muli);
  font-weight: 900;
  font-size: 10px;
  line-height: 20px;
  color: #ffffff;
  margin-top: 12px;
  display: flex;
}

/*--------------------Practitioner Profile Style End Here----------------*/
.term-condition-page .section--slider-mobile {
  margin-block: 47px;
}

/*-header-filter-slider-cover-*/

/*--Breadcrumbs--*/
.breadcrumb-custom {
  background: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
  padding: 12px 59px;
}

.breadcrumb-custom .breadcrumb-item {
  font-family: var(--font-Poppins);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
  color: #90a3a7;
}

.breadcrumb-custom .breadcrumb-item a {
  color: #90a3a7;
}

/* .breadcrumb-custom .breadcrumb-item.active {
  color: var(--color-1e5542) !important;
} */

/*---------------------Practitioner Detail Page Style Start From Here----------------*/
.profile-banner {
  display: flex;
  padding: 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background-image: url(../imgs/ptprofile-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 24px;
  position: relative;
}

.pt-profile-img img:first-child {
  width: 140px;
  height: 140px;
}

.profile-banner .heading-02 {
  color: #54c7f5;
}

.profile-status {
  position: absolute;
  right: 3.001px;
  bottom: 7.002px;
}

.pt-country {
  border-radius: 2px;
}

.about-pt-grid {
  display: flex;
  padding: 12px 4px;
  align-items: center;
  border-radius: 24px;
  background: #FAFAFA;
}

.grid-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0px 20px;
  position: relative;
}

.grid-item:not(:last-child):after {
  position: absolute;
  content: '';
  width: 1px;
  height: 20px;
  background: #E1E1E1;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.grid-item p {
  color: #848484;
  font-family: var(--font-Muli);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  margin: 0;
}

.grid-item h3 {
  color: #54c7f5;
  font-family: var(--font-Nunito);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.about-pt-grid .grid-item {
  text-align: center;
}

.about-pt-grid .grid-item h3 {
  justify-content: center;
}

/*--Instructor Detail--*/
/*-Instructor Nav-*/
.instructor-details nav {
  padding: 8px 0px 8px;
  background: #fff;
  top: 52px;
  display: flex;
  padding-top: 8px;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  overflow-x: auto;
  z-index: 1;
}

.instructor-details nav a {
  text-transform: capitalize;
  transition: 0.3s;
  color: #54c7f5;
  font-family: var(--font-Nunito);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  padding: 6px 10px;
  white-space: nowrap;
}

.instructor-details nav a.active {
  border-bottom: 1.5px solid #54c7f5;
}

.instructor-details {
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  border-radius: 0px 0px 16px 16px;
  box-sizing: border-box;
  max-width: 873px;
  margin-inline: auto;
}

.instructor-details .cover {
  display: flex;
  padding-inline: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  border-radius: 0px 0px 16px 16px;
}

.instructor-details .cover h2 {
  color: #54c7f5;
  font-family: var(--font-Nunito);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
  text-transform: capitalize;
}

.overview-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  position: relative;
}

.assesment-section h3 {
  color: #425151;
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 34px
}

.assesment-section {
  width: 100%;
}

.assesment-section-slider .slick-slide {
  margin: 4px 4px;
}

.assesment-card-item {
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 24px;
  background: #FFF;
  align-items: stretch;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  min-height: 147px;
}

.assesment-card-item span {
  color: #54c7f5;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
}

.assesment-card-item h4 {
  color: #54c7f5;
  font-family: var(--font-Nunito);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.assesment-card-item p {
  color: #848484;
  font-family: var(--font-Muli);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.assesment-section .custom-slick-arrows {
  margin-top: 0px;
}

.assesment-card-item span.d-block {
  font-family: var(--font-Nunito);
  font-size: 13px;
  line-height: 20px;
}

.pt-about p.body-small {
  color: #54c7f5;
  margin: 0;
}

.pt-tags-list {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 12px 12px;
  align-self: stretch;
  flex-wrap: wrap;
}

.pt-tags-list .pt-tag {
  display: flex;
  padding: 8px 12px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  background: #F8F8F8;
  color: #54c7f5;
}

.therapeutic-approach-list {
  color: #54c7f5;
}

.pt-book-session {
  border-radius: 12px;
  background: #54c7f5;
  display: flex;
  box-shadow: 0px 9px 17px 0px rgba(30, 85, 66, 0.20);
  min-width: 159px;
  min-height: 54px;
  padding: 0px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: fixed;
  right: 10%;
  bottom: 10%;
  border: 1.5px solid #fff;
  z-index: 9;
}

.pt-book-session:before {
  content: "";
  background: linear-gradient(45deg, #54c7f5 0%, #F4A417 25%, #fff 50%, #F4A417 75%, #54c7f5 100%);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .3s ease-in-out;
  border-radius: 12px
}

.pt-book-session:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #54c7f5;
  left: 0;
  top: 0;
  border-radius: 10px
}

@keyframes glowing {
  0% {
    background-position: 0 0
  }

  50% {
    background-position: 400% 0
  }

  100% {
    background-position: 0 0
  }
}

.pt-book-session:hover {
  background: #54c7f5;
}

.pt-book-session span {
  color: #54c7f524;
  font-family: var(--font-Nunito);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.12px;
}

/*--Review Tabs--*/
.reviews-section {
  width: 100%;
}

.reviews-tab {
  margin-top: 10px;
  padding: 0 30px 10px;
}

.reviews-tab .slick-prev {
  transform: scale(0.5);
  top: -4px;
  left: -10px;
  z-index: 9;
  background: #e1e1e1 !important;
}

.reviews-tab .slick-next {
  transform: scale(0.5);
  top: -4px;
  right: -10px;
  z-index: 9;
  background: #e1e1e1 !important;
}

.slick-prev:hover,
.slick-next:hover {
  background: #e1e1e1;
}

.reviews-tab .nav-link {
  background: var(--white-color);
  border: 1px solid var(--color-1e5542);
  border-radius: 6px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-1e5542);
  text-transform: capitalize;
  font-family: var(--font-Nunito);
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 6px 16px;
  height: 32px;
  white-space: nowrap;
}

.reviews-tab .nav-link.active,
.reviews-tab .show>.nav-link {
  color: var(--color-1e5542);
  background: #eff3f2;
}

.review-card {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.review-card .img {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
}

.review-card .img img {
  object-fit: cover;
  max-width: fit-content;
}

.review-card-cover .review-card .p-detail {
  border-bottom: 1px solid #e9edea;
  padding-bottom: 12px;
}

.review-card .name {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-1e5542);
}

.review-card .name .date {
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: #6f6d70;
  margin: 5px 0 0 8px;
  position: relative;
  padding-left: 12px;
}

.review-card .name .date::before {
  position: absolute;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  background: #6f6d70;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.review-card p {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-848484);
  margin: 0;
}

/*---Experience and Education--*/
.experience-education-sect {
  width: 100%;
}

.detail-listing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.detail-listing-item:not(:last-child) {
  padding-bottom: 24px;
}

.detail-listing-item:not(:last-child):before {
  content: '';
  position: absolute;
  width: 1px;
  height: 24px;
  background: #54c7f5;
  left: 19px;
  bottom: -2px;
}

.detail-listing-item .img-wrap {
  width: 40px;
  text-align: center;
}

.detail-listing-item p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-listing-item p {
  color: #54c7f5;
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 0px;
}

.detail-listing-item p span {
  color: #848484;
  font-family: var(--font-Muli);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
}

/*-----Blogs Slider------*/
.articles-section {
  max-width: 100%;
}

.articles-section .slick-slide {
  margin: 0 5px;
}

.article-card {
  max-width: 193px;
  width: 100%;
  height: 264px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles-page .article-card .img,
.articles-page .article-card {
  max-width: 100%;
}

.overlay-img {
  width: 50px !important;
  height: 50px !important;
  top: 5px;
  left: 5px;
}

.press-release-articel .overlay-img {
  z-index: 2;
  border-radius: 5px;
}

.article-card:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

.article-card .img {
  max-width: 193px;
  width: 100%;
  height: 100%;
}

.article-card .img img {
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  object-fit: cover;
}

.article-card:hover .img img {
  transform: scale(1.1);
}

.article-card .overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.76) 100%);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.press-release-articel .article-card .overlay {
  background: linear-gradient(180deg, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 85%) 100%);
}

.article-card .content {
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px;
}

.article-card .badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 8px;
  max-width: 86px;
  width: 100%;
  height: 20px;
  background: rgba(109, 178, 125, 0.6);
  backdrop-filter: blur(3.5px);
  border-radius: 12px;
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 10px;
  line-height: 20px;
  color: #fff;
  text-transform: capitalize;
}

.article-card h2,
.article-card h3 {
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  height: 40.2px;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card p {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: #b5b5b5;
  margin: 4px 0;
  height: 36.5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .blog-read-btn {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  text-decoration-line: underline;
  color: var(--white-color);
  margin: 4px 0 0;
}

/*---Soundbite Slider--*/
.soundbites-section {
  max-width: 100%;
}

.soundbites-section>div {
  max-width: 100%;
  margin-inline: auto;
}

.soundbites-section .slick-slide {
  margin: 0px 5px;
}

.profile-card {
  max-width: 188px;
  width: 100%;
  height: 235px;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.35));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.3s;
}

.famous-name-cover .profile-card {
  padding: 12px;
  width: 193px;
  height: 264px;
  background: #61b986;
  border-radius: 25px;
}

.famous-name-cover .profile-card {
  padding: 12px;
  width: 193px;
  /* width: 100%; */
  height: 264px;
  background: #61b986;
  border-radius: 25px;
  /* display: block; */
}

.blue-sw {
  right: -12px;
  top: 54px;
  z-index: 1;
}

.absolute-img {
  width: 152px;
  height: 178.5px;
  bottom: 0;
  border-radius: 0px 0px 50% 50%;
}

.famous-name-cover img,
.famous-name-cover2 img {
  object-fit: cover;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orange-blue img {
  width: auto;
  height: auto;
  object-fit: unset;
}

.famous-name-cover .profile-card .img-sm {
  min-width: 152px;
  max-width: 152px;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.img-bg-round {
  min-width: 152px;
  max-width: 152px;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
}

.absolute-name {
  position: absolute;
  bottom: 12px;
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  text-transform: capitalize;
  max-width: 170px;
  margin: 0 auto;
}

.profile-card2 {
  width: 100%;
  max-width: 193px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

.profile-card2-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
}

.profile-card2-img img {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover !important;
}

.profile-card2 .title {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: var(--black-color);
  /* position: absolute; */
  right: 10px;
  bottom: 10px;
  margin: 0;
  text-transform: capitalize;
}

/*---Response Forun--*/
.forumResponses-section {
  width: 100%;
}

.response-faq .accordion-button::after {
  filter: brightness(0);
}

.response-faq .accordion-item {
  border: none;
  border-bottom: 1px solid #e9edea;
  background: 0 0;
  padding-bottom: 12px;
}

.response-faq .accordion-button {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-1e5542);
  padding: 12px 0 0;
  border: none;
  background: 0 0;
  box-shadow: none;
}

#ForumResponses .accordion-button:not(.collapsed) {
  background: 0 0;
}

.response-faq .accordion-body {
  padding: 0;
}

.response-faq .accordion-body .dated {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  margin-top: 3px;
  color: var(--color-848484);
  text-transform: capitalize;
  margin-bottom: 12px;
}

.response-faq .accordion-body p {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-848484);
}

/*--Profile Footer--*/
.profile-social-footer {
  margin: 16px 0;
}

.profile-social-footer {
  width: 100%;
}

.profile-social-footer p,
.profile-social-footer .report-profile {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-1e5542);
}

/*---------------------Practitioner Detail Page Style End Here----------------*/
/*------Fitness Well Being Style Start From Here-----*/
.dLandingPage .bannerTitle {
  max-width: 1100px;
  margin: auto auto 60px auto;
}

.dLandingPage .bannerTitle h1 {
  font-family: var(--font-Nunito);
  font-size: 56px;
  font-weight: 800;
  line-height: 73px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 0;
}

.dLandingPage .bannerTitle h1 span {
  color: #FF941B;
}

.dLandingPage .bannerTitle p {
  color: #7f9090;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.dBannerWrap {
  margin-bottom: 120px;
  position: relative;
}

.dBannerWrap .leftCorner .dTitle {
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 75px;
}

.dBannerWrap .leftCorner .dTitle span {
  font-family: var(--font-Muli);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  display: block;
  color: #7f9090;
}

.dBannerWrap .leftCorner .arrowDesign {
  text-align: left;
}

.dBannerWrap .leftCorner .arrowDesign span {
  color: #425151;
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  text-transform: capitalize;
  display: block;
  text-align: left;
  margin-top: 20px;
}

.dBannerWrap .centerCorner .joinParts {
  position: relative;
  max-width: 630px;
  width: 100%;
}

.dBannerWrap .centerCorner .joinParts .iParts {
  position: absolute;
  -webkit-animation: flip-diagonal-1-bl 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
  animation: flip-diagonal-1-bl 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

.dBannerWrap .centerCorner .joinParts .part1 {
  top: 0;
  left: 40px;
  width: 162px;
  height: 148px;
  animation-delay: 0.04s;
}

.dBannerWrap .centerCorner .joinParts .part1.fit1 {
  top: 20px;
}

.dBannerWrap .centerCorner .joinParts .part2 {
  top: 0;
  left: 212px;
  width: 204px;
  height: 281px;
  animation-delay: 0.07s;
}

.dBannerWrap .centerCorner .joinParts .part3 {
  top: 0;
  left: 426px;
  width: 111px;
  height: 147px;
  animation-delay: 0.02s;
}

.dBannerWrap .centerCorner .joinParts .part3.fit3 {
  top: 40px;
}

.dBannerWrap .centerCorner .joinParts .part4 {
  top: 158px;
  left: 0;
  width: 203px;
  height: 211px;
  animation-delay: 0.01s;
}

.dBannerWrap .centerCorner .joinParts .part4.fit4 {
  top: 178px;
}

.dBannerWrap .centerCorner .joinParts .part5 {
  top: 291px;
  left: 212px;
  width: 204px;
  height: 156px;
  animation-delay: 0s;
}

.dBannerWrap .centerCorner .joinParts .part6 {
  top: 157px;
  left: 426px;
  width: 151px;
  height: 176px;
  animation-delay: 0.03s;
}

.dBannerWrap .centerCorner .joinParts .part6.fit6 {
  top: 197px;
}

.dBannerWrap .centerCorner .joinParts .part7 {
  top: 379px;
  left: 40px;
  width: 162px;
  height: 236px;
  animation-delay: 0.05s;
}

.dBannerWrap .centerCorner .joinParts .part7.fit7 {
  top: 400px;
}

.dBannerWrap .centerCorner .joinParts .part8 {
  top: 457px;
  left: 212px;
  width: 204px;
  height: 207px;
  animation-delay: 0.06s;
}

.dBannerWrap .centerCorner .joinParts .part9 {
  top: 343px;
  left: 426px;
  width: 203px;
  height: 235px;
  animation-delay: 0.08s;
}

.dBannerWrap .centerCorner .joinParts .part9.fit9 {
  top: 383px;
}

.cmBack {
  position: absolute;
  bottom: -90px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.grey_btn {
  display: flex;
  padding: 12px 43px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #54c7f5;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border-radius: 16px;
  background: var(--v-02-cloudy, #F5F5F5);
}

.grey_btn:hover {
  background: #425151;
  color: #fff;
}

.rightCorner {
  text-align: left;
}

.dicoverBtn a {
  display: block;
  margin-bottom: 100px;
}

.arrowDesignMob {
  display: none !important;
}

.doctorListRating .testimonial_box {
  height: 185px;
}

.dWorkSpace {
  padding: 80px 60px;
  background: #FAFAFA;
}

.dLandingPage p {
  color: #7f9090;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.dHalImg {
  margin-top: 40px;
}

.imgdsk {
  display: block;
}

.half1 img,
.half2 img,
.half3 img {
  max-width: 100%;
}

.dWorkSpace img {
  max-width: 100%;
}

.imgmob {
  display: none;
}

.half1 div,
.half2 div,
.half3 div {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.half1 div h3 {
  color: #FFF;
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 10px;
}

.half1 div span {
  color: #FFF;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}

.half2 div {
  color: #FFF;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}

.dWorkSpace img {
  max-width: 100%;
}

.half2 div h3 {
  font-size: 24px;
  line-height: 32px;
}

.half2 div span {
  display: block;
  margin-top: 20px;
}

.half2 {
  margin-bottom: 20px;
}

.half1,
.half2,
.half3 {
  position: relative;
}

.half3 div {
  color: #FFF;
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 34px;
  text-transform: capitalize;
}

.half3 div.sm {
  font-size: 16px;
  line-height: 20px;
}

.half3 div.sm h3 {
  color: #FFF;
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 34px;
  text-transform: capitalize;
}

.dWorkSpace ul {
  padding: 0;
  margin: 0;
}

.dWorkSpace ul li {
  color: #7f9090;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-left: 30px;
  margin-bottom: 15px;
  list-style: none;
  background: url(../imgs/icons/pinico.svg) no-repeat 0 12px;
  padding-left: 25px;
}

.dWorkSpace p {
  margin-left: 30px;
}

.signWrapp {
  background: #fafafa;
  padding-bottom: 60px;
}

.signWrapp .row .col {
  flex: 1 0 20%;
}

.symtonsIco {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid #EAEAEA;
}

.symtonsIco:hover {
  background: #fff;
}

.symtonsIco span {
  display: block;
  font-family: var(--font-Nunito);
  ;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0em;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #7f9090;
}

.threecards {
  margin-left: 30px;
  margin-top: 50px;
}

.dLandingPage .user-step-img {
  border-radius: 12px;
}

.sliderLG {
  display: flex;
  padding: 60px 60px 0;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #FAFAFA;
}

.sliderSpacing {
  max-width: 1016px;
  margin: auto;
}

.col3data {
  margin-top: 55px;
}

.col3data .col3list span {
  color: #7f9090;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: block;
  margin-bottom: 60px;
  background: url(../imgs/icons/doneico.svg) no-repeat 0 5px;
  padding-left: 40px;
}

.sbys {
  margin-bottom: 30px;
}

.sbys .col-lg-6 {
  padding: 0;
}

.sbys .sbysContent {
  padding: 50px;
}

.sbys .sbysContent h3 {
  color: #425151;
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px;
}

.icoUl {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  display: flex;
  gap: 45px;
}

.sbys ul {
  margin-left: 0;
  padding-left: 0;
}

.icoUl li {
  background: none !important;
  font-size: 16px;
  padding-left: 0 !important;
}

.sbys ul li {
  color: #7f9090;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 15px;
  list-style: none;
  background: url(../imgs/icons/pinico.svg) no-repeat 0 8px;
  padding-left: 25px;
  padding-bottom: 5px;
}

.icoUl li span {
  display: block;
  height: 35px;
  width: 35px;
  margin-bottom: 8px;
}

.sbys .sbysimg {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.lrCombo {
  margin-top: 60px;
}

.sbys {
  margin-bottom: 30px;
}

.sliderLG.lfcoachslider .slick-slide img {
  max-width: 562px;
  margin: auto;
}

/*-------------Chearful For Client----------*/
.joinus-hero-sec .text {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #7f9090;
  margin: 8px 0 24px;
}

.join-us-landing-page .joinus-hero-sec .hero-search {
  padding: 28px 24px;
  gap: 12px;
  background: var(--white-color);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 80px;
  width: 100%;
  height: 56px;
  margin: 0 auto !important;
  max-width: 595px !important;
}

.colored-tags {
  margin-top: 16px;
  column-gap: 8px;
  row-gap: 12px;
  overflow: hidden;
  padding-bottom: 10px;
}

.colored-tags .tg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  gap: 10px;
  height: 28px;
  background: #ffffff;
  border-radius: 42px;
  border: 1px solid transparent;
  text-transform: capitalize;
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-425151);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 7px 0px;
}

.showFullTags {
  transform: rotate(90deg);
}

.arrow-btn {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-FAFAFA);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  border: none;
}

.rotate-chevr {
  transition: all 0.3s linear;
  transform: rotate(-90deg) !important;
}

.mask-img-sec {
  margin-top: 24px;
}

.mask-img-sec .slick-slide {
  margin: 0 16px;
}

.masking {
  mask-repeat: no-repeat;
  overflow: hidden;
  border-radius: 32px;
  position: relative;
}

.masking-sm.masking-left {
  -webkit-mask-image: url(../imgs/left-cut-sm.svg);
  mask-image: url(../imgs/left-cut-sm.svg);
}

.masking img {
  object-fit: cover;
}

.masking-btn {
  padding: 6px 6px 6px 11px !important;
}

.masking-btn {
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-425151) !important;
  bottom: 7px;
  height: 68px;
  gap: 18px;
  left: 5px;
  right: 5px;
  padding: 6px;
  border-radius: 32px;
}

.mskBtn1 {
  background: #fff7ce;
  transition: 500ms all linear;
}

.masking-card-contant {
  z-index: 1;
  top: 50px;
  /* max-width: 164px; */
  left: 16px;
  right: 16px;
}

.masking-card-contant h1,
.masking-card-contant h2 {
  font-family: var(--font-Nunito);
  font-weight: 900;
  font-size: 32px;
  line-height: 32px;
  color: var(--color-425151);
  margin: 0;
}

.masking-card-contant p {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-425151);
  margin: 17px 0 0;
}

.arrow-link {
  margin-top: 20px;
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff !important;
  height: 93px;
  background: #425151;
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  padding: 8px;
}

.masking-lg.masking-left {
  -webkit-mask-image: url(../imgs/left-cut-lg.svg);
  mask-image: url(../imgs/left-cut-lg.svg);
}

.to-align-bottom {
  display: flex;
  align-items: flex-end;
}

.mskBtn2 {
  background: #ddffc2;
}

.masking-lg.masking-right {
  -webkit-mask-image: url(../imgs/right-cut-lg.svg);
  mask-image: url(../imgs/right-cut-lg.svg);
}

.mskBtn3 {
  background: #fffb9b;
}

.join-us-landing-page .our-best {
  margin: 120px 0;
}

.landing-page .our-best {
  margin-top: 50px;
}

.landing-page .features-box {
  margin-top: 20px;
}

.features-box .hero-content-duel-tone h1,
.features-box .hero-content-duel-tone h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: 44px;
  font-family: var(--font-Nunito);
}

.features-box .ft-card p {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  margin-top: 4px !important;
}

.benefits-sec-new {
  margin-bottom: 64px;
}

.long-card {
  overflow: hidden;
  border-radius: 16px;
  max-width: 427px;
  width: 100%;
  max-height: 877px;
}

.long-card .content {
  top: 59px;
  padding: 0 32px;
  text-align: center;
}

.long-card .content h1,
.long-card .content h2 {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 56px;
  line-height: 73px;
  color: var(--color-425151);
  margin: 0;
}

.long-card .content p {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #7f9090;
  margin: 32px 0 0;
}

.benefits-sec-new .long-card .content p {
  color: #425151;
  opacity: 0.7;
}

.benefits-list {
  padding-bottom: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.benefits-list:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.benefits-list .list-header {
  margin-bottom: 20px;
}

.benefits-list h1,
.benefits-list h3 {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--color-425151);
  margin-bottom: 4px 0 0;
}

.benefits-list p {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  color: #7f9090;
}

.benefits-sec-new .benefits-list img.rounded-circle {
  min-width: 27px;
  max-width: 27px;
  width: 100%;
}

.landing-practitioners-section {
  margin-top: 64px;
  margin-bottom: 60px;
}

#p1-tab-pane {
  margin-top: 50px;
}

#image-container {
  max-height: 384px;
  overflow: hidden;
  transition: 0.3s linear;
}

.landing-practitioners-section .tab-content .tab-pane #image-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.landing-practitioners-section .tab-content .tab-pane #image-container .col-lg {
  flex: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Practitioners_Card {
  max-width: 150px;
  min-width: 150px;
  width: 100%;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}

.Practitioners_Card .img {
  max-width: 56px;
  min-width: 56px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

.Practitioners_Card .img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.Practitioners_Card .text {
  margin: 8.8px 0 0;
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: var(--color-425151);
  text-transform: capitalize;
  height: 48px;
}

.expert-video-slider {
  margin-top: 100px;
}

.swiper-container-video {
  width: 100%;
  max-width: 632px;
  margin: 0 auto;
}

.swiper-container-video .swiper-slide .video-card {
  height: 445px;
}

.swiper-slide-shadow,
.swiper-slide-shadow-right,
.swiper-slide-shadow-left {
  display: none !important;
}

.swiper-container-video .swiper-slide .video-card::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.3s linear;
  z-index: 1;
}

.swiper-container-video .swiper-slide.swiper-slide-visible.swiper-slide-active .video-card::before {
  width: 0;
  height: 0;
  background: transparent;
  visibility: hidden;
  transition: 0.3s;
}

.swiper-container-video .swiper-slide.swiper-slide-visible.swiper-slide-active .video-card .video-play-btn {
  visibility: visible;
}

.swiper-container-video .swiper-slide .video-card .video-play-btn {
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%);
  bottom: 75px;
  visibility: hidden;
  transition: 0.3s linear;
}

/*---Chearful For SChool--*/
.programWrap {
  margin-top: 125px;
  margin-bottom: 60px;
}

.programDetails {
  margin-top: 32px;
  border: 1px solid #F1F1F1;
  border-radius: 25px;
}

.progTitle {
  background: #F5F5F5;
  display: flex;
  padding: 24px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  margin: 0 -8px 15px;
}

.programDetails .col-lg-4:first-child .progTitle {
  -webkit-border-top-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  border-top-left-radius: 25px;
}

.progTitle h3 {
  color: #000;
  font-family: var(--font-Muli);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 0;
}

.progTitle span {
  color: #000;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.pgDetailWrap {
  margin: 0 -20px;
}

.pgDetailWrap ul {
  margin: 0;
  list-style: none;
  width: 100%;
}

.pgDetailWrap ul li {
  color: #000;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #F1F1F1;
}

.pgDetailWrap ul li:last-child {
  border: none;
  padding-bottom: 0;
}

.pgDetailWrap ul li span {
  background: url(../imgs/icons/doneico.svg) no-repeat 0 3px;
  padding-left: 37px;
  display: block;
  margin-left: 15px;
  padding-bottom: 2px;
  color: #7f9090;
}

.pgDetailWrap ul li.notdoneico span {
  background: url(../imgs/icons/notdoneico.svg) no-repeat 0 3px;
}

.resultStats {
  margin-bottom: 60px;
}

.resultPer {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pchart.pc-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

#result1Pecentage {
  height: 250px;
  width: 250px;
  margin: auto;
}

.pchart.pc-container svg.pc-chart {
  display: block;
  height: 100%;
}

.pchart.pc-container svg.pc-chart path.pc-bg {
  fill: none;
  stroke: #d8d6d6;
  stroke-width: 4;
  stroke-dasharray: 100, 100;
}

#result1Pecentage .pc-bg {
  stroke: #EAEAEA;
}

.pchart.pc-container svg.pc-chart path.pc-fill {
  fill: none;
  stroke-width: 4;
  stroke: black;
  stroke-dasharray: 0, 100;
  -webkit-transition: stroke-dasharray 1s linear;
  transition: stroke-dasharray 1s linear;
}

#result1Pecentage .pc-fill {
  stroke: #4EE39C;
}

.pchart.pc-container div.pc-text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 98%;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#result1Pecentage .pc-text {
  color: black;
}

.pchart.pc-container div.pc-text .pc-num {
  min-height: 1px;
  margin-top: 8%;
  height: 25% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.pchart.pc-container div.pc-text .pc-num {
  margin-top: 0;
}

.pchart.pc-container div.pc-text .pc-num #pc-percent {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.075rem !important;
  position: absolute;
  left: 50%;
  opacity: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.pchart.pc-container div.pc-text .pc-num #pc-actual {
  font-size: 1.3rem;
  font-weight: bold;
  left: 50%;
  opacity: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  letter-spacing: 0.075rem !important;
  position: absolute;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.pchart.pc-container div.pc-text .pc-num #pc-percent,
.pchart.pc-container div.pc-text .pc-num #pc-actual {
  color: #425151;
  text-align: center;
  font-family: var(--font-Nunito);
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: capitalize;
}

.pchart.pc-container div.pc-text #pc-unit {
  letter-spacing: 0.075rem !important;
  font-size: .6rem;
}

.resultPer h5 {
  color: #425151;
  font-family: var(--font-Muli);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
}

#result2Pecentage {
  height: 250px;
  width: 250px;
  margin: auto;
}

#result2Pecentage .pc-bg {
  stroke: #EAEAEA;
}

#result2Pecentage .pc-fill {
  stroke: #BFEA88;
}

/*---------------------Sopport Page Style Start From Here----------------*/
/*--Sopport Page Banner--*/
.sport-page-banner {
  padding-block: 48px;
}

.sport-page-banner .bannerTitle {
  max-width: 1100px;
  margin: auto auto 60px auto;
}

.sport-page-banner .bannerTitle h1 {
  font-family: var(--font-Nunito);
  font-size: 76px;
  font-weight: 700;
  line-height: 106px;
  letter-spacing: 0.76px;
  text-align: center;
  margin-bottom: 0;
  color: #4A5959;
}

.sport-page-banner .bannerTitle h1 span {
  color: #FF941B;
}

.sport-page-banner .bannerTitle p {
  color: #6A7A7A;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.sports-banner-wrap {
  position: relative;
}

.sports-banner-wrap .left-aside p {
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 75px;
  color: #54c7f5;
}

.sports-banner-wrap .left-aside p span {
  font-family: var(--font-Muli);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  display: block;
  color: #6A7A7A;
  text-transform: capitalize;
}

.sports-banner-wrap .left-aside .arrowDesign span {
  color: #54c7f5;
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.64px;
  text-transform: capitalize;
  display: block;
  text-align: left;
  margin-top: 20px;
}

.sports-banner-wrap .center-aside {
  text-align: center;
}

.sports-banner-wrap .center-aside .sports-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 15px;
  position: absolute;
  bottom: -20px;
  transform: translateX(-50%);
  left: 50%;
}

.sports-banner-wrap .center-aside .sports-banner-btns a {
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.48px;
  font-weight: 700;
  text-transform: capitalize;
  width: 199px;
}

.sports-banner-wrap .right-aside .dicoverBtn a {
  display: block;
  margin-bottom: 50px;
}

.sports-banner-wrap .right-aside .arrowDesignMob {
  display: none;
}

.doctorListDetails .dDocImages {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;

}

.styled-anchor {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  background: #54c7f524;
  border-radius: 12px;
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: var(--color-1e5542);
  margin-top: 20px;
}

.doctorListDetails .dDocImages a {
  color: var(--color-7F9090);
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

.doctorListDetails .dDocImages a img {
  width: 56px;
  height: 56px;
  border-radius: 56px;
}

.doctorListDetails h2 {
  color: #425151;
  font-family: var(--font-Nunito);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 0.64px;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.doctorListRating .dRatingDetail {
  color: var(--color-1e5542);
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
}

/*----------------Practitioners Internation Certified Section----*/
.practitioner-section {
  background: #fafafa;
  padding-block: 64px;
}

.term-condition-page .practitioner-section {
  background: unset;
  padding-block: unset;
  margin-bottom: 84px;
}

.term-condition-page .section--slider-mobile {
  margin-top: 0;
}

.hero-content-duel-tone h1 span,
.hero-content-duel-tone h2 span {
  color: #FF941B;
}

.practitioner-logo {
  padding: 16px;
  max-width: 203px;
  width: 100%;
  height: 101px;
  background: #fafafa;
  box-shadow: 0 0 1px rgba(0, 0, 0, .11), 0 17px 25px rgba(0, 0, 0, .02);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: .3s;
}

.international-councils-slider .practitioner-logo {
  background: var(--light-50, #FFF);
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.11);
}

.practitioner-logo img {
  filter: grayscale(100%);
}

.practitioner-logo:hover img {
  filter: grayscale(0%);
}

/*-------------------Center Banner-------------------------*/
.centerBanner {
  background: url(../imgs/support-centerbanner.png) no-repeat 0 0;
  height: 334px;
  background-size: cover;
  display: flex;
  align-items: center;
}

.centerBanner.coachBanner {
  background: url(../imgs/coachcenterbanner.png) no-repeat 0 0;
}

.centerBanner.well-being {
  background: url(../imgs/weellbeingcenterbanner.png) no-repeat 0 0;
}

.centerBanner.for-companies,
.centerBanner.for-scools {
  background: url(../imgs/companies-centerbaner.png) no-repeat 0 0 / cover;
}

.centerBanner h2 {
  color: #FFF;
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.64px;
  margin-bottom: 10px;
}

.centerBanner p {
  color: #FFF;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.centerBanner.coachBanner p,
.centerBanner.well-being p,
.centerBanner.for-companies p,
.centerBanner.for-scools p {
  font-size: 24px;
  line-height: 26px;
}

.centerBanner .btn_primary {
  display: inline-block;
  padding: 16px 68px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
}

/*--------------------How Government--------------*/
.governement-org-wrap {
  padding-block: 60px;
  background: #FAFAFA;
}

.dualhead {
  font-weight: 700;
  color: var(--color-1e5542);
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  line-height: 48px;
  text-transform: capitalize;
  margin-inline: auto;
}

.governement-org-wrap .dualhead {
  color: #4A5959;
  font-family: var(--font-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.64px;
  text-transform: capitalize;
}

.dualhead span {
  color: #FF941B;
}

.governement-org-wrap p.suprt-par {
  color: #6A7A7A;
  text-align: center;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.governement-org-wrap h3.sub-heading {
  color: #445353;
  font-family: var(--font-Nunito);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.4px;
}

.pinstyle-list li {
  position: relative;
  color: #576767;
  padding-left: 25px;
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  list-style: none;
  text-align: left;
}

.pinstyle-list li::before {
  content: url(../imgs/icons/pin-icon.svg);
  position: absolute;
  top: 2px;
  left: 0;
}

.pinstyle-list li:not(:last-child) {
  margin-bottom: 8px;
}

/*-------------------Center Banner End-------------------------*/

/*-------------------Grey Background Practitioner List------------------*/
.greyBanner {
  padding: 40px 20px;
  border-radius: 26px;
  background: var(--v-02-cloudy, #F5F5F5);
}

.landing-page .user-card {
  max-width: 760px;
  width: 100%;
  height: auto;
  background: #fcfcfc;
  border: 1px solid #f2f2f2;
  border-radius: 16px;
  padding: 14px 20px;
}

.landing-page .user-card .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109, 178, 125, 0.2);
  border-radius: 1.2rem;
  font: 1rem/2rem "Mulish", sans-serif;
  font-weight: 600;
  color: #6db27d !important;
  text-transform: capitalize;
  width: auto;
  padding: 1px 10px;
}

.landing-page .user-card .card-body .name {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-1e5542);
}

.wrap-name {
  color: var(--color-1e5542) !important;
}

.landing-page .user-card .card-body .name .designation {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
  color: #3a6a59;
}

.landing-page .user-card .card-img {
  min-width: 83px;
  max-width: 83px;
  height: 83px;
  overflow: hidden;
}

.landing-page .user-card .card-img img {
  min-width: 83px;
  max-width: 83px;
  height: 83px;
  width: 83px;
  object-fit: contain;
}

.landing-page .user-card .small-text {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: var(--color-848484);
  text-transform: capitalize;
}

.landing-page .user-card .text-lg {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--color-1e5542);
  text-transform: capitalize;
}

.landing-page .user-card .text-lg span {
  font: 12px/20px "Nunito", sans-serif !important;
  font-weight: 700 !important;
  text-transform: lowercase;
  color: var(--secondary-color);
}

.selection-badge {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-1e5542);
  text-decoration: none;
  padding: 0;
  display: inline-block;
  background: none;
  border: none;
  text-align: left;
}

.inner-drop .selection-badge {
  display: inline-block;
  font-weight: 600;
  font-family: var(--font-Nunito);
  font-size: 12px;
  line-height: 12px;
  color: var(--color-425151);
  padding: 3px 2px;
  text-align: left;
  background: lightgrey;
  border-radius: 5px;
  text-align: left;
}

.selection-badge.dropdown-toggle {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-1e5542);
  background: #80808017;
  border: none;
  border-radius: 20px;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-toggle::after {
  display: none;
}

.total-no-sub .dropdown-menu.show[x-placement="top-start"],
.details-col .dropdown-menu.show[x-placement="top-start"] {
  top: auto !important;
  bottom: 0 !important;
  transform: translateY(-30px) !important;
}

.total-no-sub .dropdown-menu.inner-drop {
  max-height: 120px;
  overflow-y: auto;
  scrollbar-width: 0px;
  scrollbar-width: none;
}

.total-no-sub .dropdown-menu.inner-drop::-webkit-scrollbar {
  display: none !important;
  scrollbar-width: 0px;
  scrollbar-width: none;
}

.dropdown-menu.inner-drop.show {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.total-no-sub .dropdown-menu.show,
.details-col .dropdown-menu.show {
  background: #f8f8fb;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.06), inset 0px 0px 1px rgba(0, 0, 0, 0.25);
  border: none;
  padding: 8px;
  max-width: max-content;
  width: auto;
  float: none;
  min-width: 200px;
  left: auto !important;
  right: 0;
  z-index: 998;
}

.total-no-sub {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 23px;
  max-width: 250px;
  box-sizing: border-box;
}

.instructor-card .total-no-sub {
  max-width: calc(100% - 20px);
}

.landing-page .user-card .divider {
  width: 1px;
  height: 20px;
  background: #e1e1e1;
  margin: 0 10px;
}

.landing-page .divider:first-child {
  display: none;
}

.landing-page .user-card .more {
  height: 2.4rem;
  border: 1px solid #e9edea;
  border-radius: 1.1rem;
  font: 1rem/2rem "Nunito", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--secondary-color);
  background: var(--white-color);
  align-items: center;
  justify-content: center;
  display: inline-block;
  padding: 1px 0.43rem;
}

.landing-page .user-card .btn_light {
  padding: 12px;
  border-radius: 12px;
}

.icon-12 {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .user-card .des {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-1e5542);
}

.user-card .morelink {
  text-decoration: underline;
}

.landing-page .morecontent span {
  display: none;
}

.landing-page .text-hide {
  height: 40px;
  overflow: hidden;
}

.landing-page .text-show {
  height: auto !important;
  overflow: auto !important;
  transition: all 0.3s linear;
}

.landing-page .sub-heading {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--color-425151);
  margin-left: 20px;
}

.landing-page .parent-div {
  align-items: flex-end;
}

.landing-page .time-table {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 10px 20px 20px;
  gap: 12px;
  max-width: 536px;
  width: 100%;
  height: 250px;
  background: var(--white-color);
  border-radius: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-1e5542) #f1f1f1 !important;
  overflow: hidden;
  justify-content: center;
}

.landing-page .time-table::-webkit-scrollbar {
  height: 5px;
}

.landing-page .time-table::-webkit-scrollbar-track {
  background: var(--color-f1f1f1);
}

.landing-page .time-table::-webkit-scrollbar-thumb {
  background: var(--color-1e5542);
}

.landing-page .time-table li ul li p {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: #3a4046;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  white-space: nowrap;
}

.landing-page .time-table li ul li p:hover {
  background: var(--color-dfede3);
}

.landing-page .time-table .slider-btn-li {
  width: 89.6px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.practition-info .slider-inner-list {
  width: 89.6px;
}

.landing-page .time-table .header-li {
  border-top: 2px solid #689782;
  padding: 7.5px 0;
  margin-bottom: 0;
}

.landing-page .time-table li h1,
.landing-page .time-table li h2 {
  font-family: var(--font-Nunito);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #3a4046;
}

.landing-page .time-table .selected {
  font-family: var(--font-Muli);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 2px !important;
  background: var(--color-dfede3);
  border-radius: 11px;
  border: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: var(--secondary-color);
  width: 100%;
}

.landing-page .time-table .more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px !important;
  background: none;
  border: none;
  border-radius: 0;
  width: 100%;
  color: #312e33;
  height: auto;
  margin-top: 0px !important;
  min-width: auto;
  max-width: fit-content;
  cursor: pointer;
  z-index: 1;
  box-shadow: none;
  border-radius: 10px;
  padding: 10px !important;
  transition: 0.3s linear;
}

.landing-page .time-table .more-btn:hover {
  background: #ededed;
}

.landing-page .user-des {
  border-bottom: 1px solid rgba(234, 234, 234, 0.6);
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.landing-page .user-des:last-child {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.landing-page .practition-info {
  margin-top: 56px;
}

.landing-page .greyBanner .user-card .btn_light {
  background: rgba(109, 178, 125, 0.2);
  color: #6db27d;
}

.landing-page .greyBanner .user-card .btn_light:hover {
  background: var(--color-1e5542);
  color: #fff;
}

.time-list-slider {
  max-height: 102px;
  overflow: hidden;
}

.practition-info .user-des .slick-arrow.slick-disabled {
  visibility: hidden !important;
}

/*-------------------Grey Background Practitioner List End------------------*/

/*------------------Sport Sychology Section-------------*/
.sport-psychology h3 {
  color: #445353;
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.48px;
}

.sport-psychology p,
.sport-psychology ul li {
  color: #576767;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.sport-psychology ul li {
  list-style-type: disc;
}

/*------------------Sport Sychology Section-------------*/

/*---------------------Sign UP Banner-------------------*/
.signup-banner,
.landingSign {
  background: #FAFAFA;
  border: 1px solid #F2F2F2;
  border-radius: 15px;
  margin-bottom: 30px;
}

.signup-banner>.row>.formbg:first-child,
.landingSign>.row>.formbg:first-child {
  background: var(--color-1e5542);
  border-radius: 20px 0px 0 20px;
}

.signup-banner img.sbysimg,
.landingSignUp img.sbysimg {
  width: 100%;
  -webkit-border-top-left-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-topleft: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  height: 100%;
  object-fit: contain;
}

.signup-banner>.row>.col-lg-6:last-child,
.landingSignUp .container>.landingSign>.row>.col-lg-6:last-child {
  padding: 20px 25px 20px 25px;
}

.signup-banner h2,
.landingSignUp h2 {
  margin-bottom: 20px;
  color: var(--color-1e5542);
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
}

.landingSignUp textarea.form-control {
  height: 150px;
}

.zInd1 {
  z-index: 1;
}

.signup-inner-form .inner-form-padding-overflow form .row .form-group .input-cover .position-relative {
  z-index: 1;
}

.signup-screen .input-cover .form-control,
.signup-screen .select2-container--default .select2-selection {
  border: 1px solid #90a3a7 !important;
}

#login-form .input-cover .form-control,
#myForm .input-cover .form-control {
  font-size: 16px;
}

.signup-ft-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
}

.signup-ft-links a {
  font-family: var(--font-Nunito);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #7f9191;
  position: relative;
}

.signup-ft-links a::after {
  content: "";
  position: absolute;
  right: -14.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background: #7f9191;
}

.signup-screen .right-side {
  justify-content: center;
  display: flex;
  align-items: center;
  background: #54c7f5;
}

.signup-content {
  margin-top: 0;
}

/*-------------Notice-------------------*/
.notice {
  background: #e9edea;
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-1e5542);
  padding: 10px;
  margin-bottom: 10px;
}

.fnotice .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.fnotice .container>span.d-flex {
  margin-top: 3px;
}

.notice a {
  color: var(--color-6baf14);
}

/*------------------------Footer Styles Start From Here---------------------*/
.footer {
  padding: 12px;
  background: var(--color-deece1);
  border-radius: 12px;
  margin-bottom: 60px;
}

.ft-title {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--color-425151);
}

.ft-note {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-425151);
  padding: 10px;
  max-width: 199px;
  width: 100%;
  height: 52px;
  background: var(--white-color);
  border-radius: 16px;
}

.ft-points {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-425151);
  margin-bottom: 8px;
}

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

.copy-text input {
  position: relative;
  padding: 10px;
  max-width: 280px;
  min-width: 280px;
  width: 100%;
  height: 48px;
  background: #fcfcfc;
  border-radius: 12px;
  font-family: var(--font-Nunito);
  font-size: 13px;
  line-height: 20px;
  color: #312e33;
  border: none;
}

.copy-text button {
  padding: 10px;
  background: #5784f5;
  color: #fff;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
}

.copy-text button:active {
  background: #809ce2;
}

.copy-text button:before {
  content: "Copied";
  position: absolute;
  top: -45px;
  right: 0px;
  background: #5c81dc;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 15px;
  display: none;
}

.copy-text button:after {
  content: "";
  position: absolute;
  top: -20px;
  right: 25px;
  width: 10px;
  height: 10px;
  background: #5c81dc;
  transform: rotate(45deg);
  display: none;
}

.copy-text.active button:before,
.copy-text.active button:after {
  display: block;
}

.copy-text button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  max-width: 61px;
  min-width: 61px;
  height: 48px;
  width: 100%;
  background: var(--color-1e5542);
  border-radius: 12px;
  font-family: var(--font-Nunito);
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: var(--white-color);
  border: none;
  text-transform: capitalize;
  transition: 0.3s;
}

.copy-text button:hover {
  background: var(--white-color);
  color: var(--color-1e5542);
}

.ft-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ft-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border-radius: 12px;
  transition: 0.3s;
}

.ft-icons a:hover {
  background: var(--color-1e5542);
}

.ft-icons a:hover img {
  filter: brightness(2);
}

/* land-page-footer */
.land-page-footer {
  padding: 50px 0;
}

.qr-code {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 8px 0;
}

.qr-code img {
  object-fit: cover;
  width: 100px;
  max-width: 100%;
}

.about-chearful-footer p {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.018em;
  color: #7f9090;
  margin: 8px 0;
}

.about-chearful-footer .contact-widget p {
  margin-top: 0px;
}

.about-chearful-footer a {
  font-family: var(--font-Nunito);
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-decoration-line: underline;
  color: var(--color-1e5542);
}

.ft-list {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-list li p {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-transform: capitalize;
  margin: 0;
  color: var(--color-425151);
}

.ft-list li a {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.018em;
  color: #7f9090;
  transition: 0.3s;
}

.ft-list li a:hover {
  color: var(--color-6baf14);
}

.ft-list .input-group .form-control {
  padding: 12px;
  width: 100%;
  max-width: 285px;
  height: 48px;
  background: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
  border-radius: 80px 0px 0px 80px;
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.018em;
  color: var(--color-1e5542);
}

.ft-list .input-group .form-control::placeholder {
  color: #7f9191;
}

.ft-list .input-group .btn_primary {
  padding: 12px;
  width: 78px;
  height: 48px;
  border-radius: 0px 80px 80px 0px;
}

.footer-social-icons {
  margin-top: 30px;
}

.list-row {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.list-row li p {
  margin: 0;
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #7f9090;
}

.list-row li a {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.018em;
  color: #7f9090;
}

.list-row li a:hover {
  color: var(--color-6baf14);
}

.list-row li {
  border-right: 1px solid #DADADA;
  padding-right: 10px;
}

.list-row li:last-child {
  border-right: none;
  padding-right: 0;
}

.iti.iti--allow-dropdown {
  width: 100%;
}

.contact-widget {
  display: flex;
  margin-top: 20px;
}

.contact-widget>div a {
  margin: 8px;
  flex-shrink: 0;
}

.contact-widget>div:first-child {
  padding-right: 20px;
  border-right: 1px solid #EAEAEA;
}

.contact-widget>div:last-child {
  padding-left: 20px;
}

.footer-widget-label {
  color: #7C8D8D;
  font-family: var(--font-Muli);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  /* 133.333% */
  letter-spacing: 0.24px;
  text-transform: capitalize;
  margin-top: 0;
}

.footer-app-icons {
  margin-top: 20px;
}

/*------------------------Footer Styles End From Here---------------------*/
.custom-modal {
  padding: 0 15px;
  z-index: 1051;
}

.custom-modal .modal-dialog {
  margin: 100px auto 30px;
  max-width: 698px;
  width: 100%;
  height: auto;
  border: 1px solid #f2f2f2;
  border-radius: 16px;
}

.custom-modal-sm .modal-dialog {
  max-width: 388px !important;
}

.custom-modal .modal-dialog .modal-title {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--color-1e5542);
}

.custom-modal .modal-dialog .modal-des {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #848484;
  margin-bottom: 20px;
}

.custom-modal .modal-dialog .btnclose {
  position: absolute;
  right: 10px;
  font-size: 16px;
  top: 17px;
  width: 40px;
  height: 40px;
  background: #54c7f524 !important;
  border-radius: 12px;
  justify-content: center;
  z-index: 1;
}

.schedule-session-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 12px 14px;
  gap: 10px;
  width: 100%;
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}

.schedule-session-card .left {
  position: unset;
  overflow: unset;
  padding: unset;
}

.schedule-session-card .schedule-session-time {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 16px;
  line-height: 12px;
  color: var(--color-1e5542);
}

.schedule-session-card .text-lg {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-1e5542);
  margin-top: 5px;
}

.schedule-session-card .small-text {
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: var(--color-848484);
  text-transform: capitalize;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  overflow: hidden;
}

.schedule-session-card .img-16x16 {
  height: 16px;
  width: 16px;
  object-fit: cover;
}

.schedule-session-card .text {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-1e5542);
  text-transform: capitalize;
  white-space: nowrap;
}

.schedule-session-card .img-24x24 {
  height: 24px;
  width: 24px;
  object-fit: cover;
}

#selectRoleModal.custom-modal-sm .modal-dialog {
  max-width: 388px !important;
}

#selectRoleModal .selecotr-item {
  position: relative;
}

#selectRoleModal .selector-item_label {
  position: relative;
  transition-duration: .5s;
  transition-property: transform, color, box-shadow;
  transform: none;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #7f9090;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
}

#selectRoleModal .selector-item_label:hover {
  background: #54c7f5;
  color: #fff;
}

#selectRoleModal .selector a .selector-item_label img {
  min-width: 45px;
  height: 45px;
}

#selectRoleModal .selector a .selector-item_label img {
  min-width: 45px;
  height: 45px;
}

#selectRoleModal .selector-item_label:hover img {
  filter: invert(1) brightness(2);
}

#selectRoleModal .selector-item_label .role {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--color-425151);
}

#selectRoleModal .selector-item_label:hover .role {
  color: #fff;
}

/*-------Thank You Interest Modal------*/
.thankyouinterest .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.thankyouinterest .btnclose {
  right: 10px;
  font-size: 16px;
  top: 17px;
  width: 40px;
  height: 40px;
  background: #54c7f524 !important;
  border-radius: 12px;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

.thankyouNote {
  text-align: center;
}

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

.thankyouNote h2 {
  color: var(--v-01-primary-04, #54c7f5);
  text-align: center;
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  margin: 20px 0;
}

.thankyouNote p {
  color: #000;
  text-align: center;
  font-family: var(--font-Muli);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 50px;
}

.thankyouinterest .modal-dialog {
  border-radius: 16px;
}

/*--Journal Modals--*/
#journalListModal .modal-title {
  font-weight: 700;
  font-size: 16px;
}

.journalListModalClient p.m-0 {
  color: #425151;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}

.searchNotes input {
  padding: 10px 12px;
  background: #f5f5f5;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--font-Nunito);
  color: #312e33;
}

.searchNotes form img {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.journalListModalClient .searchNotes input {
  width: 323px !important;
}

#journalListModal .searchNotes input {
  color: #54c7f5 !important;
}

.overflowyScroll {
  height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
}

.overflowyScroll::-webkit-scrollbar {
  width: 5px;
}

.overflowyScroll::-webkit-scrollbar-track {
  background: #54c7f5;
}

.journalSearchList .row {
  margin-left: -8px;
  margin-right: -8px;
}

.journalSearchList .row .col-12 {
  padding-left: 8px;
  padding-right: 8px;
}

.journalSearchList .jourList {
  padding: 0;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  transition: .3s all linear;
  gap: 10px;
  position: relative;
}

.journalSearchList .jourList>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.journalSearchList .jourList .jourListTitle {
  position: absolute;
  top: 20px;
  left: 16px;
  width: 100%;
}

.journalSearchList .jourList h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #54c7f5;
}

.journalSearchList .jourList p {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #54c7f5;
  opacity: .7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 50%;
}

/*--Pen In A Journal Entry Modal--*/
.card {
  position: relative;
  background: var(--white-color);
  padding: 12px;
  height: auto;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.createJournalWrap .journalQuestion form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.createJournalWrap .journalQuestion .jquestions {
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 20px;
  color: #425151;
  margin-bottom: 10px;
}

.createJournalWrap .journalQuestion .janswer {
  margin-bottom: 20px;
}

.createJournalWrap .journalQuestion .janswer input,
.createJournalWrap .journalQuestion .janswer textarea,
.createJournalWrap .journalQuestion .janswer select {
  padding: 6px 10px;
  border: 1px solid #F5F5F5;
  border-radius: 6px;
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #848484;
  height: 80px;
}

.createJournalWrap .journalQuestion .janswer label span {
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #848484;
  padding: 6px 10px;
  border: 1px solid #F5F5F5;
  border-radius: 6px;
  display: block;
  cursor: pointer;
}

.createJournalWrap .journalQuestion .janswer label input:checked~span {
  background: #F5F5F5;
}

.createJournalWrap .journalQuestion .janswer label input {
  position: absolute;
  visibility: hidden;
}

.createJournalWrap {
  max-height: calc(100vh - 120px) !important;
  overflow-y: auto;
  position: relative;
  overflow-x: hidden;
}

.createJournalWrap::-webkit-scrollbar {
  width: 5px;
}

.createJournalWrap::-webkit-scrollbar-track {
  background: var(--color-f1f1f1);
}

.createJournalWrap::-webkit-scrollbar-thumb {
  background: var(--color-1e5542);
}

.journalAction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
}

.actionBottom {
  margin-top: auto;
  left: 15px;
  right: 15px;
  bottom: 15px;
}

.journalAction div {
  display: flex;
  gap: 15px;
}

.createJournalWrap .journalQuestion form .row.text-center {
  margin-top: auto;
}

.doctorAction {
  display: flex;
  justify-content: space-between;
}

.setpopbtn {
  position: relative;
  right: -15px;
}

.entryModalClnt .btn_light,
#journal-post-question-form-no-auth .btn_light,
#MoodsModal .left-div .btn_primary,
#entryCreatedModal .btn_light,
#saveModel .btn_light,
#saveShareModel .btn_light,
#cancelModel .btn_light,
#cancelMoodsModel .btn_light,
#shareAssessment .doctorAction .btn_primary,
#shareSuccessModalActionDiv .btn_light,
#saveNoAuthMoodModel .btn_light {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  background: var(--color-f3f8f4);
  border-radius: 12px;
  transition: 0.3s;
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: var(--color-1e5542);
  border: none;
  white-space: nowrap;
}

.entryModalClnt .btn_light:hover,
#journal-post-question-form-no-auth .btn_light:hover,
#MoodsModal .left-div .btn_primary:hover,
#entryCreatedModal .btn_light:hover,
#saveModel .btn_light:hover,
#saveShareModel .btn_light:hover,
#cancelModel .btn_light:hover,
#cancelMoodsModel .btn_light:hover,
#shareAssessment .doctorAction .btn_primary:hover,
#shareSuccessModalActionDiv .btn_light:hover,
#saveNoAuthMoodModel .btn_light:hover {
  background: var(--color-1e5542);
  color: var(--color-f3f8f4);
}

.entryModalClnt .btn_secondary,
#journal-post-question-form-no-auth .btn_secondary,
#MoodsModal .btn_secondary,
#saveModel .btn_secondary,
#saveShareModel .btn_secondary,
#shareAssessment .doctorAction .btn_secondary,
#cancelModel .btn_secondary,
#cancelMoodsModel .btn_secondary,
#shareSuccessModalActionDiv .btn_secondary,
.heading-bg .btn_secondary,
#saveNoAuthMoodModel .btn_secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 5px;
  background: #54c7f5;
  border-radius: 12px 11px;
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  color: white;
  transition: 0.3s;
}

.entryModalClnt .btn_secondary:hover,
#journal-post-question-form-no-auth .btn_secondary:hover,
#MoodsModal .btn_secondary:hover,
#saveModel .btn_secondary:hover,
#saveShareModel .btn_secondary:hover,
#shareAssessment .doctorAction .btn_secondary:hover,
#cancelModel .btn_secondary:hover,
#cancelMoodsModel .btn_secondary:hover,
#shareSuccessModalActionDiv .btn_secondary:hover,
.heading-bg .btn_secondary:hover,
#saveNoAuthMoodModel .btn_secondary:hover {
  background: #54c7f524;
  color: #54c7f5;
}

.doctorAction .btn_secondary {
  padding: 8px 50px !important;
}

/*--Share Modal--*/
#sharemodal .modal-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #54c7f5;
  padding-right: 40px;
}

#sharemodal p.modal-title {
  color: #848484;
  font-family: var(--font-Nunito);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  text-transform: initial;
}

.sharemodalClient .modal-body {
  min-height: 120px;
}

.selectDoctor .doctorSel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  min-height: 250px;
}

.selectDoctor .doctorSel div {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #c7c7c7;
}

.share-modal-style h4 {
  color: #425151;
  text-align: center;
  font-family: var(--font-Nunito);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.share-modal-style p {
  color: #848484;
  text-align: center;
  font-family: var(--font-Nunito);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}


/*--Save Modal--*/
.popWrap {
  text-align: center;
  padding: 40px 0;
}

.popWrap h2 {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #425151;
}

.popWrap p {
  font-family: var(--font-Nunito);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #848484;
}

.popWrap .doctorAction {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
}

.doctorAction .btn_light {
  padding: 8px 32px;
  display: flex;
  gap: 5px;
}

.popWrap .doctorAction .btn_light,
.popWrap .doctorAction .btn_secondary {
  padding: 8px 12px;
  max-width: 150px;
  width: 100%;
  white-space: nowrap;
}

/*--Auth Modals--*/
#signUpModalClient2 .modal-header p,
#signInModal2 .modal-header p {
  color: #7F9090;
  font-family: 'Mulish';
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.anchor-link {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-1e5542);
}

.signIn-btns {
  margin-top: 32px;
}

.signIn-btns button,
.signIn-btns a {
  text-align: center;
  width: 50%;
}

.signIn-btns a {
  color: #848484;
}

.signIn-btns a span {
  color: #54c7f5;
}

.signIn-btns a:hover span.gry {
  color: #54c7f524 !important;
}

/*--Mood Modals--*/
.moodSlider {
  padding: 4px 0 60px 0;
  overflow: hidden;
  display: none;
  margin: 0 0 15px 0;
}

.moodSlider .slick-initialized .slick-slider {
  margin: 0 auto;
}

.moodSlider .slick-list,
.moodSelect .slick-list {
  position: relative;
}

.moodSlider .slick-prev,
.moodSlider .slick-next,
.moodSelect .slick-prev,
.moodSelect .slick-next {
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  z-index: 999;
  cursor: pointer;
}

.moodSelect .slick-prev,
.moodSelect .slick-next {
  transform: translateY(30%);
}

.moodSlider .slick-prev,
.moodSelect .slick-prev {
  left: 50%;
  margin-left: -45px;
}

.moodSlider .slick-next,
.moodSelect .slick-next {
  left: 50%;
  margin-left: 0px;
}

.moodSlider .slick-slide {
  margin: 0 4px;
}

.moodSlider .moodsico img {
  transition: 100ms all linear;
}

.moodSlider .moodsico:hover img {
  transform: translateY(-4px);
}

.moodTitle {
  text-align: center;
}

.moodTitle h3 {
  color: #54c7f5;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 13px;
}

.moodTags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.moodTags a {
  display: flex;
  padding: 4px 10px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  background: var(--v-01-background-06, #E9EDEA);
  backdrop-filter: blur(1.5px);
  color: var(--v-01-typography-body, #6F6D70);
  font-family: var(--font-Muli);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: 0 3px 5px 0;
}

.moodTags a:hover,
.moodTags a.active {
  background: rgba(107, 175, 20, 0.08);
  color: #0e1f3d;
}

.labelCls {
  color: #000;
  font-family: var(--font-Nunito);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}

.moodSelect {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  margin-top: 15px;
}

/* .moodSelect.slick-initialized {
    margin-bottom: 75px;
} */
.moodSelect span.moodDiary {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 0 0;
  border-radius: 12px;
  background: var(--v-02-cloudy, #F5F5F5);
  margin: 0 5px;
}

.moodSelect span.moodDiary.active {
  background: #E0ECD1;
}

.moodSelect span.moodDiary span {
  color: var(--Primary, #54c7f5);
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.moodSelect span.moodDiary img {
  height: 40px;
  width: 41px;
  object-fit: cover;
}

/* SLIDER */
.moodsRangeSlider {
  margin: 0 10px;
}

.range-slider {
  position: relative;
  width: 100%;
  height: 16px;
  border-radius: 30px;
  background-color: #ccc;
  margin-bottom: 25px;
}

.range-slider .slider-thumb {
  position: absolute;
  top: -15px;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background-image: url('../assets_v3/imgs/moods/happy1.svg');
  background-size: cover;
  cursor: grab;
}

.range-slider .slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(-270deg, #e6ffc7 0%, rgb(107 175 20 / 49%) 100%);
}

.numbers {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.numbers .number {
  margin-left: 10px;
  color: var(--v-02-gray, #848484);
  font-family: var(--font-Nunito);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

.moodsico {
  border-radius: 12px;
  background: var(--v-02-cloudy, #F5F5F5);
  display: flex !important;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 0 0;
  min-height: 96px;
  width: 100%;
}

.moodCompo .card-header .heading {
  color: var(--Primary, #54c7f5);
  font-family: var(--font-Nunito);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.moodCompo .card-header .heading.mainhead {
  color: #425151;
  text-align: center;
  font-family: var(--font-Nunito);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
}

.moodsico span {
  color: var(--Primary, #54c7f5);
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
}

/*----OTP Modal--*/
.successSession {
  max-width: 700px;
  margin: auto;
  padding: 30px 20px;
  background: #FAFAFA;
  border-radius: 12px;
  text-align: center;
}

.successSession h2 span {
  color: #0e1f3d;
}

.successSession p {
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: #848484;
}

.otpForm .otpInput {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.otpForm .otpInput input {
  height: 50px;
  width: 50px;
  border: none;
  background: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

.otpForm .otpInput input[type="number"] {
  -moz-appearance: textfield;
}

.otpForm button,
.otpForm button:hover {
  border: none;
}

/* Chrome, Safari, Edge, Opera */
.otpForm .otpInput input::-webkit-outer-spin-button,
.otpForm .otpInput input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
/* .otpForm .otpInput input[type="number"] {
  -moz-appearance: textfield;
} */

.otpForm .otpInput {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.resendotp {
  font-size: 14px;
  text-decoration: underline;
}

/*---Save Modal--*/
.inputDropdowWrap {
  position: relative;
}

.dataPlaceholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #425151;
  position: absolute;
  top: 7px;
  left: 15px;
}

.topUl {
  padding: 8px 12px;
  background: #fafafa;
  border-radius: 13px;
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
}

.topui-search-icon {
  background: #fafafa url(../imgs/icons/searchIcon.svg) no-repeat calc(100% - 15px) center !important;
  padding-right: 40px !important;
}

.divDropdown {
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.sharemodalClient .reltv-dropdown {
  position: relative;
  z-index: 2;
}

.divDropdown ul {
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 220px;
  overflow-y: scroll;
}

ul.shared_journal_list {
  max-height: 270px;
}

.divDropdown ul::-webkit-scrollbar {
  width: 5px;
}

.divDropdown ul::-webkit-scrollbar-thumb {
  background: #6DB27D;
  border-radius: 5px;
}

.divDropdown ul::-webkit-scrollbar-track {
  background: #fff;
}

.divDropdown ul li {
  margin-bottom: 10px;
  padding: 8px;
  cursor: pointer;
  border: 1px solid #fff;
}

.divDropdown ul li:hover {
  border-radius: 8px;
  border-color: #E9EDEA;
  background: #FAFAFA;
}

.doctorList {
  display: flex;
  gap: 15px;
}

.divDropdown ul li .doctorList .listImg img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 48px;
}

.doctorList .docRating,
.doctorList .docnameService,
.doctorList .docnameSpec {
  margin-bottom: 5px;
}

.doctorList .docnameSpec span {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #54c7f5;
  font-family: var(--font-Nunito);
}

.doctorList .docRating,
.doctorList .docnameService,
.doctorList .docnameSpec {
  margin-bottom: 5px;
}

.doctorList .docnameService span {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #54c7f5;
  font-family: var(--font-Nunito);
}

.docnameService span.span-dot:not(:last-child)::after {
  content: url(../imgs/icons/dotIco.svg);
  display: inline-block;
  margin-inline: 10px;
}

.docRating {
  display: flex;
  gap: 13px;
}

.doctorList .docRating span {
  font-weight: 700;
  font-size: 10px;
  line-height: 20px;
  color: #54c7f5;
}

.docRating img {
  margin-right: 6px;
}

#client-detail-div .divDropdown {
  display: block !important;
}

#SharemodalSuccess .docImgIco,
#SharemodalSuccess .docImgIco+.doctorAction {
  margin-top: 24px;
}

.docImgIco img {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  margin-bottom: 10px;
}

.docImgIco p {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #425151;
  margin-bottom: 0;
}

#SharemodalSuccess .docImgIco,
#SharemodalSuccess .docImgIco+.doctorAction {
  margin-top: 24px;
}

/*--30 x 30 chalenge--*/
.bannerwrap h1 {
  color: var(--Primary, #54c7f5);
  font-family: var(--font-Nunito);
  font-size: 56px;
  font-style: normal;
  font-weight: 800;
  line-height: 72.8px;
  margin-bottom: 12px;
  margin-top: .67em;
}

.bannerwrap h1 span {
  color: var(--Primary, #f4a417);
}

.bannerwrap p {
  color: #000;
  text-align: center;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.challengeWrap .bannerwrap p {
  color: #7f9090;
}

.thirty-day-landing .signupbanner {
  padding: var(--medium-spacing-9-x, 40px) 60px;
  background: #efefef url(../imgs/thirtysignupbanner.png) no-repeat right center;
  min-height: 200px;
  margin-bottom: 60px;
}

.regbtnsetposi {
  position: relative;
  bottom: -50px;
}

.bannerwrap .btn_primary {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
}

.challengeImg {
  padding-bottom: 30px;
}

.challengeImg>.row {
  align-items: flex-end;
}

.challengeImg .btext {
  position: relative;
}

.challengeImg .btext img {
  max-width: 100%;
}

.challengeImg .btext div {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
}

.challengeImg .btext div h3 {
  color: #000;
  font-family: var(--font-Nunito);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: .48px;
  margin-bottom: 10px;
}

.challengeImg .btext div p {
  color: #000;
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
}

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

.contentWrap .dualhead {
  color: #54c7f5;
  line-height: 48px;
}

.dubaiimg {
  max-width: 630px;
  margin: auto;
}

.grycontent {
  display: flex;
  padding: var(--medium-spacing-4-x, 16px);
  flex-direction: column;
  align-self: stretch;
  border-radius: var(--medium-spacing-5-x, 20px);
  background: var(--suraface-02, #fafafa);
  margin-bottom: 10px;
  justify-content: flex-start;
}

.grycontent h3 {
  color: var(--Primary, #54c7f5);
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: .48px;
  margin-bottom: 10px;
}

.grycontent p {
  color: #445353;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.grycontent ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  padding: 4px 8px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  background: #fff;
}

.grycontent ul li {
  color: #425151;
  font-family: var(--font-Muli);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  position: relative;
  padding-left: 50px;
  min-height: 47px;
  align-items: center;
  display: flex;
}

.grycontent ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.thirty-day-landing .signupbanner h2 {
  max-width: 700px;
  color: var(--Primary, #54c7f5);
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: .48px;
}

.thirty-day-landing .signupbanner p {
  color: #000;
  font-family: var(--font-Muli);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.stepmargin {
  margin-bottom: 60px;
}

.landing-page .user-step-section {
  background: #fafafa;
  padding: 64px 60px 65px;
}

.challengeWrap .hero-content-duel-tone h2 {
  color: #54c7f5;
  font-weight: 700;
}

.landing-page .para {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #7f9090;
}

.landing-page .user-step-section .para {
  margin: 20px 0 30px;
}

.landing-page .user-step-img {
  max-width: 423px;
  width: 100%;
  height: 192px;
  margin-bottom: 50px;
}

.landing-page .ft-card {
  border-top: 1px solid #eaeaea;
  padding-top: 24px;
  width: 100%;
}

.landing-page .user-step-section .ft-card {
  max-width: 100%;
}

.thirty-day-landing .landing-page .sub-heading {
  font-size: 20px;
  color: var(--color-425151);
}

.landing-page .ft-card p {
  margin-top: 20px !important;
}

.our-best.thirty-challeng {
  margin-block: 50px;
}

.challengeWrap .hero-content-duel-tone h2 {
  color: #54c7f5;
  font-weight: 700;
}

.our-best li,
.our-best p {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #7f9090;
}

.our-best ul li {
  list-style: disc;
}

.our-best ul>ul li {
  list-style: circle;
}

.btmBanner {
  position: relative;
  margin-bottom: 60px;
}

.btmBanner img {
  max-width: 100%;
}

.btmBanneabslt-sect {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 731px;
}

.btmBanneabslt-sect h5 {
  color: #54c7f5;
  text-align: center;
  font-family: var(--font-Nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: .48px;
}

.btmBanneabslt-sect p {
  color: #000;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 32px;
}

/*--Terms And Conditions--*/
.term-condition-page {
  margin-top: 22px;
}

.h1-lg {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-1e5542);
  margin: 0.67em 0;
}

.v-pills-tab .nav-link {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--color-1e5542);
  text-align: left;
  border: 1px solid transparent;
  padding: 9px 10px;
  background: #ffffff;
  border-radius: 25px;
}

.v-pills-tab .nav-link.active,
.v-pills-tab .show>.nav-link {
  background: #f5f5f5;
  border: none;
  border-radius: 0;
  color: var(--color-1e5542);
  border-left: 4px solid #54c7f5;
}

.tcBtn {
  background: #ffffff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #54c7f5;
  width: 100%;
  padding: 12px;
  border: none;
  text-align: left;
}

.tcBtn:after {
  right: 15px;
  position: absolute;
  top: 20px;
  background: url(../imgs/icons/arrow-down.svg) no-repeat right center;
  width: 12px;
  height: 8px;
  border: none;
}

.term-condition-page .hero-content-des {
  margin-top: 33px;
}

.hero-content-des h1,
.hero-content-des h2 {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--color-1e5542);
}

.term-condition-page .hero-content-des h2 {
  font-size: 18px;
}

.hero-content-des p,
.hero-content-des ul li,
.hero-content-des ol li {
  font-family: var(--font-Muli);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.018em;
  color: var(--color-1e5542);
  margin: 8px 0 0;
}

.term-condition-page .hero-content-des p {
  color: var(--bs-body-color);
  margin: 8px 0 15px;
}

.term-condition-page .hero-content-des ul li,
.term-condition-page .hero-content-des ol li {
  color: var(--bs-body-color);
  list-style: unset;
}

.term-condition-page .hero-content-des ol li {
  list-style: auto;
}

.term-condition-page .hero-content-des ul li {
  list-style: disc;
}

.term-condition-page .hero-content-des ul>ul li {
  list-style: circle;
}

/*--Faq Page--*/
.wrapper-sections {
  max-width: 684px;
  width: 100%;
  margin: 0 auto 10px;
}

.faq-title {
  font-family: var(--font-Nunito);
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: var(--color-425151);
  margin: 27px 0;
}

.faq-custom-pills {
  gap: 16px;
}

.faq-custom-pills .nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px;
  gap: 4px;
  width: 217.33px;
  height: 112px;
  background: #fff;
  box-shadow: 22px 14px 30px rgba(0, 0, 0, .03);
  border-radius: 5px;
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: var(--color-425151);
}

.faq-custom-pills .nav-link.active,
.faq-custom-pills .show>.nav-link {
  border: 1px solid #0e1f3d;
  box-shadow: 22px 14px 30px rgba(0, 0, 0, .03);
  background: #fff;
  color: var(--color-425151);
}

.faq-section {
  box-shadow: 0 0 1px rgb(0, 0, 0, .1);
  border-radius: 16px;
  overflow: hidden;
}

.custom-accordion .accordion-body {
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #7f9090;
  padding: 0;
}

.custom-accordion .accordion-item {
  margin-bottom: 10px;
}

.custom-accordion .accordion-button {
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-1e5542);
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  background: 0 0;
  box-shadow: none;
  border: none;
  padding: 0;
}

.custom-accordion .accordion-button::before {
  content: "";
  width: 100%;
  background: #eaeaea;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.custom-accordion .accordion-button:after {
  background-image: url(../imgs/icons/full-plus.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  box-shadow: 0 0 1px rgba(0, 0, 0, .11), 0 17px 25px rgba(0, 0, 0, .04);
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: rotate(0);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../imgs/icons/full-minus.svg);
  transform: rotate(0);
}

.heading-bg {
  background-image: url(../imgs/heading-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 88px;
  padding: 12px;
}

.heading-bg .title {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  color: var(--color-425151);
  margin: 0;
}

/*--Emergency Contact--*/
.emergency-contact {
  margin-top: 50px;
  margin-bottom: 100px;
}

.h-filter-search {
  max-width: 237px;
  width: 100%;
  height: 44px;
  background: #fafafa;
  border: 1px solid #90a3a7;
  box-shadow: 0 0 1px rgba(0, 0, 0, .1);
  border-radius: 8px;
}

.emerContactSearch.h-filter-search {
  max-width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.h-filter-search input {
  padding: 10px 40px 10px 10px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-425151);
}

.h-filter-search img {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.emergency-contact-list .qus {
  text-transform: capitalize;
}

.contact-details {
  padding: 0 58px;
  margin-top: 5px;
}

.contact-details p {
  font-family: var(--font-Nunito);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: #90a3a7;
  margin: 0;
}

.contact-details h5 {
  font-family: var(--font-Nunito);
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  color: #54c7f5;
  margin: 0;
}

/*--Seo Content--*/
.seo-content h3 {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 40px;
  color: #54c7f5 !important;
  text-transform: capitalize;
}

.seo-content p {
  margin: 10px 0 0;
  font-family: var(--font-Muli);
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-1e5542);
}

.seo-faqs {
  margin: 10px 0 0;
}

.seo-faqs .accordion-item {
  border: 0;
  background: #e9edea4a;
  border-radius: 8px;
}

.seo-faqs button.accordion-button {
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 700 !important;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-1e5542) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  background: 0 0;
  box-shadow: none;
  border: none;
}

.seo-faqs button.accordion-button span {
  z-index: 1;
  padding-right: 45px !important;
}

.seo-faqs .accordion-body p {
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #7f9090;
  padding: 0;
}

/*-----------------Session Booking Calender----------------*/
.heading.titleBig {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-425151);
  margin: 0;
  font-family: var(--font-Nunito);
}

.bookCalendar .calendarWrap .card {
  background: #FCFCFC;
  border: 1px solid #F2F2F2;
  border-radius: 16px;
  padding: 12px;
}

.calendarWrap .calendarTitle {
  position: relative;
  border-bottom: 1px solid #F2F2F2;
  padding-bottom: 13px;
}

.calendarWrap .calendarTitle {
  z-index: 5;
}

.calendarWrap .calendarTitle a {
  position: absolute;
  height: 36px;
  width: 36px;
  top: -10px;
  bottom: 0;
  margin: auto;
  transition: 300ms all linear;
}

.calendarWrap .calendarTitle a.weekPrev {
  left: 0;
}

.calendarWrap .calendarTitle h2 {
  font-weight: 800;
  font-size: 20px;
  line-height: 32px;
  color: #54c7f5;
  font-family: var(--font-Nunito);
  text-align: center;
  margin-bottom: 0;
}

.calendarWrap .calendarTitle a.weekNext {
  right: 0;
  transform: rotate(180deg);
}

.calendarWrap .calendarTitle a.weekNext {
  z-index: 1;
}

.calendarDateWrap {
  position: relative;
}

.calendarWrap .calendarDateWrap::-webkit-scrollbar {
  width: 2px;
}

.calendarWrap .calendarDateWrap::-webkit-scrollbar-thumb {
  background: var(--color-6db27d);
}

.calendarWrap .calendarDateWrap:hover::-webkit-scrollbar-thumb {
  visibility: visible;
  transition-delay: 0s;
}

.calendarWrap .calendarDateWrap {
  scroll-behavior: smooth;
}

.calendarWrap .calendarDateWrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  max-height: 400px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.calendarWrap .dateCol {
  flex-basis: calc(100% / 7);
  max-width: calc(100% / 7);
  box-sizing: border-box;
  /* padding: 10px 5px; */
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #3A4046;
}

.daysWrap {
  position: sticky;
  top: 0;
}

.calendarWrap .dateCol .daysWrap {
  margin-bottom: 30px;
  background: #fff;
  padding: 10px 5px;
}

.bookSessionOne .calendarWrap .dateCol .daysWrap {
  background: #FCFCFC;
}

.calendarWrap .dateCol .daysWrap span {
  display: block;
}

.calendarWrap .dateCol .daysWrap span {
  white-space: nowrap;
}

.calendarWrap .dateCol .slotWrap a {
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  display: block;
  text-align: center;
  color: #3A4046;
  margin-bottom: 20px;
  transition: 300ms all linear;
  padding: 5px 10px;
  border-radius: 11px;
  line-height: 15px;
  text-transform: lowercase !important;
}

.calendarWrap .dateCol .slotWrap a.selected,
.calendarWrap .dateCol .slotWrap a:hover {
  background: #DFEDE3;
  color: #54c7f5;
}

.calendarBtnWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}


.docImage {
  max-width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.docImage img {
  max-width: 48px;
  min-width: 48px;
  height: 48px;
  object-fit: cover;
}

#booking_form .form-group {
  position: relative;
  z-index: 1;
}

#booking_form .custRadio .checkmark:after {
  top: 6px !important;
  left: 6px !important;
}

/*---Payment Page---*/
.stripePayment {
  display: flex;
  align-items: self-start;
  gap: 10px;
  justify-content: space-between;
}

.textFor {
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #848484;
}

.compPayment .textFor {
  display: flex;
  gap: 5px;
  align-items: center;
}

.bookSessionTwo .input-cover .form-control,
.bookSessionTwo .select2-container--default .select2-selection {
  background: #fff;
}

.btn_primary.disabled {
  pointer-events: none !important;
  cursor: not-allowed;
  background: #d8d8d8 !important;
  position: relative;
}

.bookDocDetails {
  background: #fcfcfc;
  border: 1px solid #f2f2f2;
  border-radius: 16px;
  padding: 12px;
}

.bookDocDetails .docSession {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.bookDocDetails .docSession .doctorName h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #54c7f5;
}

.bookDocDetails .docSession .doctorName p {
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: #848484;
}

.bookDocDetails .docOnline {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #848484;
}

.bookDocDetails .docOnline .sessionMin {
  font-weight: 600;
  font-size: 15px;
  line-height: 16px;
  color: #54c7f5;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}

.editBtnSession {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.bookDocDetails .docOnline .sessionMin span {
  display: flex;
  gap: 6px;
  align-items: center;
}

.paymentDetailsDiv .payDetails {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  color: #6f6d70;
  font-family: var(--font-Muli);
}

.paymentDetailsDiv .payPrice {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  color: #54c7f5;
  font-family: var(--font-Muli);
}

.paymentDetailsDiv .payDetails {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  color: #6f6d70;
  font-family: var(--font-Muli);
}

.paymentDetailsDiv .payDetails.text-danger,
.paymentDetailsDiv .payPrice.text-danger {
  color: #f07162 !important;
}

.opacity {
  filter: blur(5px);
}

.payTotal p {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: right;
  color: #54c7f5;
  font-family: var(--font-Nunito);
}

/*---------------Learn And Grow----------------*/
.well-being-page .card {
  background: var(--white-color);
  box-shadow: none;
  border-radius: 0;
}

.res-tabs {
  min-height: 129px;
  background-image: url(../imgs/learn-and-grow-new.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px 25px 0 0;
  z-index: 2;
  position: sticky;
  top: 86px;
  transition: 0.2s linear;
}

.res-tabs .title {
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--color-425151);
  margin: 30px 0 32px;
  padding: 0 12px;
}

.res-nav-tabs {
  padding: 0 12px;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  border-radius: 16px 16px 0px 0px;
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
}

.res-nav-tabs .nav-link {
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  padding: 6px;
  color: var(--color-afb1b0);
  border: none;
  border-bottom: 1.5px solid transparent !important;
  background: none !important;
  border-radius: 0;
  white-space: nowrap;
}

.list-text h1,
.list-text h2 {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--color-425151);
  margin-bottom: 12px;
}

.learn-grow-landing-page .res-tabs .nav-link {
  color: rgba(30, 85, 66, 0.6);
}

.card .card-body {
  padding: 12px;
}

.list-text p,
.list-text li span,
.list-text p span,
.list-text span,
.list-text ul li {
  font-family: var(--font-Muli) !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  color: var(--color-848484) !important;
}

.hero-title-text h1,
.hero-title-text h2 {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 32px;
  line-height: 44px;
  color: var(--color-425151);
  margin: 0;
}

.hero-title-text p {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #7f9090;
  margin: 8px 0 0;
}

.side_menu-title-lg {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-1e5542);
  margin: 0;
}

.side_menu-input-cover {
  width: 100%;
  height: 44px;
  margin-top: 10px;
}

.side_menusearch-bar {
  padding: 10px 30px 10px 14px;
  width: 100%;
  height: 44px;
  border: 1px solid var(--color-1e5542);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  font-family: var(--font-Nunito);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-425151);
}

.side_menu-search-btn {
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
}

.side_menu-search-tag {
  gap: 8px;
  margin-top: 10px;
  transition: 0.3s linear;
}

.side_menu-tags {
  padding: 5.5px 10px;
  width: auto;
  display: inline-block;
  /* height: 36px; */
  border: 1px solid #e9edea;
  border-radius: 43px;
  font-family: var(--font-Nunito);
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: var(--color-1e5542);
  transition: 0.3s;
  transition: 0.3s linear;
}

.side_menu-tags:hover {
  background: var(--color-f3f8f4);
  color: var(--color-1e5542);
}

.side_menu-divider {
  background: #eaeaea;
  height: 1px;
  width: 100%;
  margin: 24px 0;
}

.side_menu-articles-block {
  gap: 24px;
}

.side_menu-article-card {
  gap: 12px;
}

.side_menu-article-card-img {
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side_menu-article-card-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.side_menu-article-card-content h1,
.side_menu-article-card-content h3 {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: black;
  margin: 6px 0 0;
}

.side_menu-article-card-content .postedBy {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #90a3a7;
  margin: 4px 0 0;
}

.side_menu-article-card-content .postedBy span {
  color: black
}

.res-tabs.sticky-top.scrolled {
  top: 52px;
  border-radius: 0;
  transition: 0.2s linear;
}

#image-block-container {
  max-height: 572px;
  overflow: hidden;
}

.show-all-imgs {
  max-height: unset !important;
  overflow: unset !important;
  transition: 0.3s linear;
}

/*-------------Blog DEtail Page Style Start From Here-----*/
.blog-details-card .blog-title {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-1e5542);
  text-transform: capitalize;
  margin: 0;
}

.author-details .blog-dtl-header {
  margin-bottom: 20px;
  margin-top: 12px;
}

.author-img {
  gap: 16px;
}

.img-40x40 {
  height: 40px;
  width: 40px;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-1e5542);
  text-transform: capitalize;
}

.author-name .likes {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 10px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--color-afb1b0);
}

.date-posted {
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  font-family: var(--font-Nunito);
  color: var(--color-afb1b0);
}

.social {
  gap: 15px !important;
}

.img-17x17 {
  height: 17px;
  width: 17px;
  object-fit: cover;
}

.tagsWrap ul {
  display: flex;
  list-style: none;
  gap: 5px;
  padding: 0;
  margin: 0 0 15px 0;
  flex-wrap: wrap;
}

.tagsWrap ul li a {
  background: #f4f4f4;
  color: var(--color-425151);
  display: block;
  padding: 3px 7px;
  font-size: 11px;
  border-radius: 20px;
}

.tagsWrap ul li a:hover {
  background: var(--color-1e5542);
  color: #fff;
  display: block;
  padding: 3px 7px;
  font-size: 11px;
  border-radius: 20px;
}

.blog-banner {
  border-radius: 5px;
  overflow: hidden;
  height: 390px;
}

.blog-banner img {
  object-fit: cover;
  width: 100%;
}

.blog-des p,
.blog-des p span,
.blog-des span,
.blog-des strong,
.blog-des ol li,
.blog-des ul li {
  /* font-family: var(--font-Muli) !important; */
  /* font-weight: 500 !important; */
  font-size: 16px !important;
  /* line-height: 24px !important; */
  /* color: var(--color-1e5542) !important; */
  /* margin: 0 0 15px 0 !important; */
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.blog-ft-left-side {
  display: flex;
  align-items: center;
  gap: 28px;
}

.social {
  gap: 15px !important;
}

.show-all-tags {
  background: none;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  font-family: var(--font-Nunito);
  color: var(--color-1e5542);
  text-transform: capitalize;
  width: auto;
  display: inline-block;
  align-items: center;
  justify-content: end;
  white-space: nowrap;
  padding: 5px 10px;
  border: 1px solid #54c7f5;
  border-radius: 43px;
}

/*---------Soundbites----------*/
.landing-soundbites-detail-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popShowMob {
  display: none;
}

.soundbites-profile-card-cover {
  display: flex;
  /* align-items: center; */
  gap: 16px;
}

.soundbites-profile-card-cover .profile-card {
  min-width: 188px;
}

.soundbites-profile-card-cover .profile-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.soundbites-profile-details h1,
.soundbites-profile-details h2 {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--color-425151);
}

#soundbites-des {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #7f9090;
  margin: 8px 0 0;
}

.soundbites-profile-details p {
  font-family: var(--font-Muli);
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #7f9090;
  margin: 8px 0 0;
  height: 116px;
  overflow: hidden;
}

.soundbites-profile-details .show-more,
.soundbites-profile-details .show-less {
  background: none;
  border: none;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-Nunito);
  color: var(--color-1e5542);
  text-transform: capitalize;
  width: 100%;
  align-items: center;
  justify-content: end;
  display: none;
}

.w-max-content {
  width: max-content;
}

.dc-emptydetails {
  margin-bottom: 15px;
  margin-top: 15px;
}

.dc-emptydetails span {
  display: block;
  text-transform: capitalize;
}

.no-messages .dc-emptydetails span {
  color: rgba(0, 0, 0, 0.40);
  text-align: center;
  font-family: var(--font-Muli);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 12px;
}

/*-----------------Community Style Start From Here----------*/
.form-header-lg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 16px;
  min-height: 176px;
  background-image: url(../imgs/form-header-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 16px;
}

.form-header-lg h1 {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-1e5542);
  text-transform: capitalize;
  margin: 0;
}

.form-header-lg p {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-1e5542);
  text-transform: capitalize;
  margin: 8px 0 24px;
}

.contributor-profiles {
  gap: 16px;
  margin-top: 24px;
}

.contributor-profile-card {
  gap: 12px;
}

.img-48x48 {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 48px;
}

.contributor-profile-card h1,
.contributor-profile-card h2 {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-1e5542);
  text-transform: capitalize;
  margin: 0;
}

.contributor-profile-card p {
  font-family: var(--font-Muli);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #90a3a7;
}

.contributor-profile-card p span {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-1e5542);
}

.question-box {
  padding: 16px 12px;
  border-bottom: 1px solid #e9edea;
}

.question-box:first-child {
  padding-top: 0;
}

.h1-qus {
  font-family: var(--font-Nunito);
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--color-1e5542);
  margin: 0;
}

.question-box .question .date {
  font-family: var(--font-Muli);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  line-height: 20px;
  color: #90a3a7;
}

.question-box .answer,
.question-box .answer p {
  font-family: var(--font-Muli);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.018em;
  color: var(--color-1e5542);
  margin: 8px 0 0;
}

.clients-question .question-box .answer,
.clients-question .question-box .answer p {
  margin-top: 0 !important;
}

.contriShow {
  display: none;
}

.resources-section .card-header,
.article-section .card-header,
.video-profile-section .card-header,
.famous-name-section .card-header,
.famous-name-section2 .card-header {
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
}

.resources-sectio .heading,
.article-section .heading,
.video-profile-section .heading,
.famous-name-section .heading,
.famous-name-section2 .heading {
  font-family: var(--font-Nunito);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-425151);
  margin: 0;
}

.resources-card-cover .slick-slide {
  margin: 0 5px;
}

.resources-card {
  max-width: 102px;
  min-width: 102px;
  width: 100%;
  height: 124px;
  padding: 12px 0;
  transition: 0.3s;
  display: block;
}

.resources-card .img {
  width: 48px;
  height: 48px;
}

.resources-card .img img {
  width: 100%;
}

.resources-card .img img {
  transition: all 0.4s linear;
}

.resources-card .title {
  font-family: var(--font-Muli);
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  text-transform: capitalize;
  color: var(--color-425151);
  margin-top: 8px !important;
}

.resources-card-cover.slick-slider .resources-card .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  overflow: hidden;
}

.article-section .slick-slide,
.video-profile-section .slick-slide,
.famous-name-section .slick-slide,
.famous-name-section2 .slick-slide {
  margin: 0 8px;
}

.clients-question .question-box .question p.h1-qus,
.clients-question .question-box .question p.h1-qus a {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-Nunito);
  margin-bottom: 10px;
  color: var(--bs-body-color);
}

.questioner-profile {
  display: flex;
  gap: 12px;
}

.questioner-img {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
}

.result-from-tag {
  font-family: var(--font-Nunito);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: #c7c7c7;
}

.result-from-tag .searched-tag {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--color-425151);
}

/*-----------------Resposiveness Start From Here-------------*/
@media (min-width: 1199px) and (max-width: 1400px) {
  .nav_btns {
    margin-left: 0 !important;
  }

  .landing-page-navbar .nav-link {
    font-size: 14px !important;
  }

  .practition-info .slick-vertical .slick-slide,
  .landing-page .time-table .slider-btn-li,
  .practition-info .slider-inner-list {
    max-width: 65px;
  }

  .dWorkSpace .threecards .user-step-img img {
    /* max-height: 146px; */
    width: 100%;
    object-fit: cover;
  }
}

@media (min-width: 991.98px) and (max-width: 1399.98px) {
  .search-results .row .col-lg-4 {
    width: 50%;
  }
}

@media (min-width: 1199px) and (max-width: 1400px) {
  .nav_btns {
    margin-left: 0 !important;
  }

  .landing-page-navbar .nav-link {
    font-size: 14px !important;
  }

  .practition-info .slick-vertical .slick-slide,
  .landing-page .time-table .slider-btn-li,
  .practition-info .slider-inner-list {
    max-width: 65px;
  }
}

@media (min-width:992px) and (max-width: 1200px) {
  .greyBanner .time-table {
    justify-content: center;
    margin-inline: auto;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    white-space: nowrap;
    font-size: 12px;
  }

  .contact-widget>div a {
    margin: 4px;
  }
}

@media (min-width:992px) {
  .signup-screen .signup-inner-form {
    padding-right: 10px;
  }

  .signup-screen .signup-inner-form .inner-form-padding-overflow {
    padding-right: 20px;
  }

  .rightNw {
    height: 100vh;
  }

  .masonry-slider {
    gap: 12px;
    display: flex;
  }

  .fullH {
    height: 100%;
  }

  .fullH .half1 {
    height: 100%;
  }

  .fullH .half1 img,
  .fullH .half2 img,
  .fullH .half3 img {
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
  }

  .fullH .half2,
  .fullH .half3 {
    height: calc(50% - 10px);
  }

  .col3data .col3list {
    min-height: 125px;
  }

  .inner-form-padding.signup-inner-form:before {
    content: "";
    position: absolute;
    background: #fcfcfc;
    z-index: 9999;
    right: 0;
    width: 20px;
    right: 8px;
    height: 105px;
  }

  .signup-content {
    overflow-y: auto;
    height: 100vh;
    padding-bottom: 30px;
    /* overflow: visible; */
    scrollbar-width: none;
  }
}

@media (min-width:767px) {
  .contact-details .row {
    margin-left: -20px;
    margin-right: -20px;
  }

  .leftCenter .masking-btn span {
    position: relative;
    left: 20px;
  }

  .leftCenter .masking-card-contant {
    top: 30px;
  }

  .centerWrap .masking-btn span {
    position: relative;
    left: 7px;
  }

  .centerWrap .masking-card-contant {
    top: 25px;
  }

  .rightCenter .masking-card-contant {
    top: auto;
    bottom: 20px;
  }

  .rightWrap .masking-btn span {
    position: relative;
    left: 12px;
  }

  .help2 {
    display: none;
  }

  .dWorkSpace h2.conth2,
  .dWorkSpace a.btn_secondary {
    margin-left: 0;
  }
}

@media (min-width:767px) and (max-width: 991px) {
  .landing-page .services-tag {
    margin-bottom: 15px;
  }

  .speak-to-expert .green-box {
    border-radius: 16px;
    min-height: 152px;
    flex-direction: row;
  }

  .speak-to-expert .green-box>div {
    flex: 1;
  }

  .access-experts-steps .step {
    padding-inline: 10px !important;
  }

  .speak-to-expert .green-box .heading-01 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
  }

  .speak-to-expert .green-box .body-large {
    font-size: 14px;
    line-height: 22px;
  }

  .ptgroup-imgs-list img.img-fluid:last-child,
  .ptgroup-imgs-list img.img-fluid:nth-last-child(2) {
    display: none;
  }

  .expert-for {
    display: flex;
    align-items: stretch;
    gap: 32px;
  }

  .expert-for>div {
    flex: 1;
  }

  .landing-page .service-tag-head {
    margin-top: 90px;
  }

  .expert-for .expert-for-item .btn_secondary {
    margin-top: auto;
    width: 100%;
  }

  .speak-to-expert .expert-for .expert-for-item h4.heading-02 {
    min-height: 72px;
  }

  .expert-for-item:not(:last-child) {
    border-bottom: unset;
  }

  .service-for-img img {
    height: 100%;
  }

  .about-chearful-footer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .about-chearful-footer>div {
    max-width: 314px;
  }

  .mobile-frame {
    max-width: 257px;
  }

  .mobile-slider-wrap {
    max-width: 220px;
    left: 2px;
  }

  .mobile-slider-wrap .slick-slide {
    width: 225px;
  }

  .mobile-slider-wrap .slick-slide img {
    height: 440px;
  }

  .signupbanner {
    background: #54c7f5 url(../imgs/signupbanner-tab.png) no-repeat right center;
  }
}

@media (max-width:1499px) {
  .pt-book-session {
    right: 6%;
  }
}

@media (max-width:1399px) {
  .doctorListDetails .dDocImages {
    margin-bottom: 50px;
  }

  .speak-to-expert .green-box .group-avatar {
    width: 250px;
  }

  .ptgroup-imgs-list>img,
  .ptgroup-imgs-list .more-pt {
    width: 70px;
    height: 70px;
  }

  .signupbanner {
    background-size: 450px 265px;
  }

  .dubaiimg {
    max-width: 100%;
  }

  .arrowDesign img {
    max-width: 50%;
  }

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

  .joinParts {
    transform: scale(0.75) translate(-40px, 0px);
  }

  .joinParts {
    transform: scale(0.75) translate(-40px, 0px);
  }

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

  .testimonial-slider .testimonial_box .testimonial_box-text {
    height: 130px;
  }

  .testimonial-slider .testimonial_box .audioTestimonialAtag>img {
    height: 130px;
  }
}

@media (max-width:1199px) {
  .mask-img-sec {
    margin-top: 24px;
  }

  .masking {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    width: 100%;
    border-radius: 12px !important;
    height: 180px;
  }

  .msk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .masking-btn {
    display: flex;
    background: none;
    height: auto;
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    text-decoration-line: underline;
    color: #425151;
    bottom: 16px;
    left: 12px;
  }

  .masking-btn img {
    display: none !important;
  }

  .masking-card-contant {
    top: 16px;
  }

  .masking-card-contant h1,
  .masking-card-contant h2 {
    font-weight: 800;
    font-size: 20px;
    line-height: 32px;
    text-align: left;
  }

  body .join-us-landing-page .our-best {
    margin: 40px 0 30px;
  }

  .masking-card-contant p {
    font-weight: 700;
    font-size: 16px !important;
    line-height: 24px;
  }

  .arrow-link {
    display: none;
  }

  /*Center Banner*/
  .signupbanner {
    background-size: 350px 310px;
  }

  .signup-width {
    max-width: 540px;
  }

  .landing-page-navbar .navbar-nav,
  .nav_btns {
    gap: 15px;
  }

  .nav_btns {
    margin-left: 0;
  }

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

  .speak-to-expert .green-box .group-avatar {
    width: 190px;
  }

  .breadcrumb-custom {
    padding: 12px 0 !important;
  }

  .pt-book-session {
    right: 2%;
  }

  .ptgroup-imgs-list>img,
  .ptgroup-imgs-list .more-pt {
    width: 58px;
    height: 58px;
  }

  /*--30 day challenge--*/
  .regbtnsetposi {
    bottom: 0;
  }

  .challengeImg {
    margin-top: 30px;
  }

  .challengeImg>.row {
    align-items: baseline;
  }

  .challengeImg .btext img {
    width: 100%;
    max-height: 232px;
    object-fit: cover;
    border-radius: 20px;
  }

  .challengeImg .btext div {
    bottom: 30px;
  }

  .testimonial-slider .testimonial_box .testimonial_box-text {
    height: 115px;
  }

  .testimonial-slider .testimonial_box .audioTestimonialAtag>img {
    height: 115px;
  }
}

@media (max-width:991.98px) {
  .speak-to-expert .green-box .group-avatar {
    width: 300px;
  }

  /*Hero Banner*/
  .landing-page .hero-heading {
    font-size: 48px;
  }

  /*Clint Trust*/
  .client-trust {
    gap: unset;
    justify-content: center;
  }

  .client-trust-score {
    flex: unset;
    width: calc(50% - 0px);
  }

  .client-trust-score:nth-last-child(-n+2) {
    border-top: 1px solid #EAEAEA;
  }

  .client-trust-score:not(:last-child) {
    border-right: unset;
  }

  .client-trust-score:nth-child(odd) {
    border-right: 1px solid #EAEAEA;
  }

  .client-trust-score:nth-child(even) {
    padding-left: 8px;
    padding-right: 0px;
  }

  /*---Access Expert----*/
  .access-experts-steps .step {
    flex-direction: column;
    margin-bottom: 16px;
    gap: 8px;
  }

  /*Mobile Slider*/
  .mobile-frame {
    margin-block: 30px;
  }

  /*Article Group*/
  .articletitleWrap h2 {
    font-size: 16px !important;
    line-height: 25px !important;
    margin-bottom: 5px;
  }

  .articleWrap .articleimgWrap>img,
  .articleWrapSm.articleWrap .articleimgWrap>img,
  .articleWrapSmOp.articleWrap>img {
    height: 250px;
  }

  .articleRm {
    top: 15px !important;
    position: relative;
  }

  .articleWrapSmOp.articleWrap .articleimgWrap {
    height: auto;
  }

  /*Viseo Card Slider*/
  .video-card-slider .slick-list {
    padding: 0 10% 0 0 !important;
  }

  .video-card-slider .slick-slide {
    margin-inline: 8px;
  }

  .video-card-slider .video-card {
    width: 100%;
  }

  a.articleWrap.articleWrapSm .articleimgWrap img,
  a.articleWrap.articleWrapSmOp .articleimgWrap img {
    max-height: 260px;
  }

  .articleWrapSm.articleWrap,
  .articleWrapSm.articleWrap .articleimgWrap {
    max-height: 260px;
  }

  .dualhead {
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
  }

  #navbarSupportedContent {
    position: absolute;
    background: #fff;
    min-width: fit-content;
    width: 100%;
    left: 0;
    right: 0;
    top: 69px;
    padding: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: all 0.5s linear;
  }

  .sport-page-banner .bannerTitle {
    margin: auto auto 40px auto;
  }

  .sports-banner-wrap .left-aside p,
  .sports-banner-wrap .left-aside p span,
  .sports-banner-wrap .right-aside .dicoverBtn a {
    text-align: center;
  }

  .sport-page-banner .bannerTitle h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .testimonial-slide.doctorListRating {
    display: none;
  }

  .arrowDesignMob {
    display: block !important;
  }

  .arrowDesignMob span {
    color: #425151;
    font-family: var(--font-Nunito);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 125% */
    text-transform: capitalize;
  }

  .arrowDesignMob span small {
    color: var(--color-7F9090);
    font-family: var(--font-Muli);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
    display: block;
    margin-bottom: 10px;
  }

  .sports-banner-wrap .col-xl-6,
  .arrowDesign,
  .doctorListDetails {
    display: none;
  }

  .sport-page-banner {
    padding-bottom: 0;
  }

  /*---Center-Banner---*/
  .signupbanner {
    padding: 30px;
    background-size: 330px 370px;
  }

  .signup-width {
    max-width: 306px;
  }

  .centerBanner {
    text-align: center;
  }

  .centerBanner h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .centerBanner p {
    line-height: 19.2px;
    font-size: 16px;
    font-weight: 400;
  }

  .centerBanner.coachBanner,
  .centerBanner.well-being,
  .centerBanner.for-companies,
  .centerBanner.for-scools {
    height: 285px;
  }

  .centerBanner.coachBanner p,
  .centerBanner.well-being p,
  .centerBanner.for-companies p,
  .centerBanner.for-scools p {
    line-height: 19.2px;
    font-size: 16px;
  }

  .centerBanner.coachBanner {
    background: url(../imgs/coachcenterbanner-mob.png) no-repeat 0 0/cover;
  }

  /*---Grey Banner---*/
  .landing-page .time-table {
    margin: 0;
    max-width: 100%;
  }

  .landing-page .time-table .list-unstyled {
    flex: 1;
  }

  /*-------Notice------------*/
  .notice {
    align-items: start !important;
    line-height: 18px;
  }

  .list-row li a,
  .list-row li p {
    font-size: 13px;
    line-height: 16px;
  }

  .access-experts-steps .step {
    padding-inline: unset;
  }

  .access-experts-steps .steps .col-lg-4:first-child .step {
    border-right: 1px solid #EAEAEA;
  }

  /*--Pt Profile--*/
  .pt-book-session {
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    visibility: visible;
    border-radius: 0;
    text-align: center;
  }

  .pt-book-session span {
    min-width: calc(100% - 12px);
    margin-inline: auto;
  }

  .ptgroup-imgs-list>img,
  .ptgroup-imgs-list .more-pt {
    width: 66px;
    height: 66px;
  }

  /*--30 Day Challenge--*/
  .contentWrap .dualhead {
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
    color: #425151;
  }

  .dubaiimg {
    margin-bottom: 30px;
  }

  .challengeWrap .grycontent h3 {
    font-size: 20px;
  }

  .challengeWrap .grycontent p {
    font-size: 14px;
  }

  .challengeWrap .signupbanner h2 {
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
  }

  .challengeWrap .signupbanner p {
    font-size: 14px;
  }

  .challengeWrap .hero-content-duel-tone h2 {
    font-weight: 800;
  }

  .dLandingPage .bannerTitle {
    margin: auto auto 40px auto;
  }

  .dLandingPage .bannerTitle h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .dBannerWrap {
    margin-bottom: 0;
  }

  .leftCorner {
    margin-bottom: 45px;
  }

  .dBannerWrap .leftCorner .dTitle {
    margin-bottom: 25px;
  }

  .dBannerWrap .leftCorner .dTitle,
  .dBannerWrap .leftCorner .dTitle span,
  .dicoverBtn a {
    text-align: center;
  }

  .dBannerWrap .col-xl-6,
  .arrowDesign,
  .doctorListDetails,
  .doctorListRating {
    display: none;
  }

  .rightCorner {
    margin-bottom: 30px;
  }

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

  .arrowDesignMob {
    display: block !important;
    text-align: left;
  }

  .dWorkSpace {
    padding-left: 0;
    padding-right: 0;
  }

  .dWorkSpace {
    padding: 30px 16px;
    background: #FAFAFA;
  }

  .dWorkSpace>.container {
    padding: 0;
  }

  .dWorkSpace .dualhead {
    font-size: 24px;
    line-height: 32px;
  }

  .half1 img {
    width: 100%;
    max-height: 192px;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 10px;
  }

  .imgmob {
    display: block;
  }

  .imgdsk {
    display: none;
  }

  .half1 div h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .half1 div span.smtxtpara {
    font-size: 12px;
    line-height: 20px;
  }

  .half2 {
    margin-bottom: 10px;
  }

  .half2>img {
    max-height: 192px;
    width: 100%;
    border-radius: 50px;
    border-radius: 35px;
    object-fit: cover;
  }

  .half2>div img {
    max-width: 17%;
  }

  .half2 div span {
    margin-top: 0;
  }

  .half3 {
    margin-bottom: 20px;
  }

  .half3>img {
    width: 100%;
    max-height: 192px;
    object-fit: cover;
    border-radius: 24px;
  }

  .dWorkSpace ul li {
    margin-left: 0px;
  }

  .signWrapp {
    padding-bottom: 30px;
  }

  .dLandingPage .signWrapp .dualhead {
    font-size: 18px;
    line-height: 22px;
  }

  .signWrapp .row .col {
    flex: 1 0 33%;
  }

  .threecards {
    margin-left: 0;
  }

  .dLandingPage .threecards .user-step-img img {
    width: 100%;
  }

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

  .programWrap {
    margin-top: 45px;
    margin-bottom: 0;
  }

  .dLandingPage .programWrap .dualhead {
    font-size: 24px;
    line-height: 32px;
  }

  .programDetails {
    border: none;
  }

  .programDetails .col-lg-4 {
    margin-bottom: 30px;
  }

  .programDetails .col-lg-4 .progTitle {
    border-radius: 12px 12px 0px 0px;
  }

  .sliderLG {
    padding: 30px 0 30px;
  }

  .sliderLG .slick-slide img {
    width: 100%;
  }

  .col3data .col3list span {
    margin-bottom: 16px;
  }

  .centerBanner.for-companies,
  .centerBanner.for-scools {
    background: url(../imgs/companies-centerbaner-mb.png) no-repeat 0 0 / cover;
  }

  .sbys .sbysOrder {
    order: 2;
  }

  .sbys .col-lg-6 {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .sbys .sbysContent {
    padding: 25px 0 0;
  }

  .sbys .sbysContent h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .sbys .sbysContent p {
    font-size: 12px;
    line-height: 20px;
    text-align: left;
  }

  .dWorkSpace p,
  .dWorkSpace h2.conth2,
  .dWorkSpace a.btn_secondary {
    margin-left: 0;
  }

  .resultStats {
    margin-bottom: 0;
  }

  .resultPer {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .resultPer h5 {
    font-size: 18px;
    line-height: 22px;
  }

  .resultPer p {
    font-size: 12px;
    line-height: 20px;
  }

  .icoUl li span .imgdsk {
    display: block !important;
  }

  .Practitioners_Card {
    min-width: auto;
  }

  .landing-practitioners-section .tab-content .tab-pane #image-container .col-lg {
    flex: inherit;
  }

  #image-block-container .article-card {
    height: auto;
  }

  .thankyouNote img {
    margin-top: 0;
  }

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

  .article-card .img img {
    max-height: 169px;
  }

  .redpadd {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width:767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .heading-01 {
    font-size: 24px;
    line-height: 36px;
  }

  .heading-02 {
    font-size: 20px;
    line-height: 30px;
  }

  .body-large {
    font-size: 14px;
    line-height: 22px;
  }

  .body-small {
    font-size: 12px;
    line-height: 16px;
  }

  .light-bg-wrap,
  .grey-bg-wrap {
    padding: 32px 0px;
  }

  /*Hero Banner*/
  .landing-page .hero-section {
    margin-top: 0px;
    min-height: auto;
  }

  .landing-page-main-div {
    display: none;
  }

  .landing-page .services-tag {
    flex-direction: column;
    padding: 8px 0px;
    border-radius: 11px;
    border: 1px solid #EAEAEA;
    box-shadow: unset;
    margin-bottom: 0px;
  }

  .landing-page .services-tag .bx_1 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .landing-page .services-tag .bx_1:not(:last-child) {
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 8px;
  }

  .landing-page .services-tag.services-tag-mb .bx_1 {
    padding: 8px 0px;
  }

  .landing-page .services-tag.services-tag-mb .bx_1:not(:last-child) {
    border-bottom: none;
  }

  .landing-page .services-tag .divider {
    display: none;
  }

  .landing-page .hero-heading {
    font-size: 32px;
    line-height: 40px;
    margin: 24px 0 0 !important;
  }

  .nav-tabs.search-nav-tabs .nav-link {
    font-size: 12px;
    line-height: 16px;
    height: 100%;
  }

  /*--Search--*/
  .landing-page .hero-search {
    border-radius: 80px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
    margin: 16px auto 0;
    padding: 10px 16px;
    height: 40px;
  }

  .landing-page .hero-search input {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
  }

  .landing-page .hero-search .search-btn {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .landing-page .hero-search .search-btn img {
    width: 16px;
    height: 16px;
  }

  .landing-page .tab-content .hero-search {
    box-shadow: 0px 65px 50px 0px rgba(0, 0, 0, 0.07);
    height: 80px;
    margin: unset;
    padding: 16px 12px;
    border-radius: 0px 0px 8px 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0px 65px 50px 0px rgba(0, 0, 0, 0.07);
  }

  .landing-page .tab-content .hero-search input {
    font-size: 12px;
  }

  /*---Access Expert----*/
  .access-experts-steps {
    gap: 24px;
  }

  /*---Expert Items---*/
  .speak-to-expert .container {
    padding-top: 10px;
  }

  .expert-for-item .btn_secondary {
    width: 100%;
    max-width: 100%;
  }

  .speak-to-expert .green-box {
    min-height: 383px;
    padding: 16px 12px;
    border-radius: 24px;
  }

  .access-experts-steps .steps .col-lg-4:first-child .step {
    border-right: unset;
  }

  /*---Services For---*/
  .explore-our-services h2.heading-01 {
    margin-bottom: 24px;
  }

  .explore-our-services .services-for {
    margin-top: 24px;
  }

  .explore-our-services .services-for-item {
    padding: 8px;
    margin-bottom: 16x;
    border-radius: 12px;
  }

  /*--Signup Banner--*/
  .signupbanner {
    margin-bottom: 24px;
  }

  .signupbanner {
    background: #54c7f5;
  }

  .signup-width {
    max-width: 100%;
  }

  /*--Struggling With--*/
  .struggling-with h2.heading-01 {
    margin-bottom: 24px;
  }

  .stuggling-width-ailment {
    gap: 16px;
    padding: 12px;
    border-radius: 16px;
  }

  /*--Frame Slider--*/
  .frame-slider-title {
    margin-bottom: 24px;
  }

  .frame-slider-aside {
    gap: 16px;
  }

  /*--Check Well Being Temp--*/
  .check-well-bening-temp .check-temp-title {
    margin-bottom: 24px;
  }

  /*Article Group*/
  .articles-group-wrap {
    padding: 32px 16px;
  }

  .articles-group-wrap .hero-title-text {
    text-align: center;
  }

  .landing-page .hero-title-text h1,
  .landing-page .hero-title-text h2 {
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
  }

  .hero-content-duel-tone h1,
  .hero-content-duel-tone h2 {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
  }

  .practitioner-logo {
    margin-inline: 10px;
  }

  .flickity-page-dots {
    display: none;
    font-size: 24px;
    line-height: 32px;
  }

  /*---Grey Banner--*/
  .landing-page .user-card {
    padding: 0;
    max-width: 100%;
  }

  .landing-page .user-card .card-img {
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    margin: 0 auto;
  }

  .landing-page .user-card .card-body .name {
    flex-direction: column;
    gap: 12px !important;
  }

  .landing-page .practition-info {
    margin-top: 24px;
  }

  /*FAQ*/
  .faq-section-index .btn_primary {
    padding: 12px 12px;
    font-size: 16px;
  }

  .faq-section-index .accordion-button::after {
    min-width: 28px;
    max-width: 28px;
    height: 28px;
  }

  .faq-section-index .accordion-body {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
  }

  /*--Footer--*/
  .footer-social-icons {
    margin-top: 10px;
    justify-content: center;
  }

  .ft-list,
  .about-chearful-footer {
    text-align: center;
  }

  .ft-list .input-group .form-control {
    max-width: 100%;
  }

  .list-row {
    flex-direction: column;
    text-align: center;
  }

  .list-row li {
    padding-right: 0;
    border: none;
  }

  .strugling-more-condition {
    margin-top: 24px;
  }

  .strugling-more-condition a {
    width: 100%;
    font-size: 14px !important;
  }

  /*-Auth Modal--*/
  .signIn-btns {
    flex-direction: column;
  }

  .signIn-btns button,
  .signIn-btns a {
    width: 100%;
  }

  /*--Mood Modal--*/
  .moodsico {
    max-width: 104px;
  }

  .moodSlider {
    margin: 0 -12px;
    padding-bottom: 15px;
  }

  .moodCompo .card-header .heading {
    margin-bottom: 0;
  }

  .moodsRangeSlider {
    padding-top: 10px;
  }

  .moodCompo .card-header .heading.mainhead {
    margin-bottom: 16px;
  }

  .moodCompo .card-header .heading.mainhead {
    font-size: 16px;
    line-height: 24px;
  }

  .moodSelect span.moodDiary {
    max-width: 107px;
    width: 100%;
  }

  .moodSelect.slick-initialized {
    margin-bottom: 25px;
  }

  /*--Journal Modal--*/
  .journalListModalClient .modal-header {
    padding-right: 1rem !important;
  }

  .journalListModalClient .searchNotes {
    width: 100%;
  }

  .journalListModalClient .searchNotes input {
    width: 100% !important;
  }

  /*--Pt Profile--*/
  .prev-button {
    left: 12px;
    top: 13px;
  }

  .pt-profile-img img:first-child {
    width: 77px;
    height: 77px;
  }

  .profile-status {
    width: 20px;
    height: 19px;
  }

  .subtitle {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
  }

  .grid-item h3 {
    font-size: 12px;
  }

  .about-pt-grid {
    padding: 12px 0px;
  }

  .grid-item {
    padding: 0px 12px;
  }

  .overview-section {
    gap: 16px;
  }

  .assesment-section-slider .slick-list {
    padding: 0px 20% 0px 0px;
  }

  .pt-about p.body-small {
    font-size: 14px;
    line-height: 22px;
  }

  .pt-tags-list {
    gap: 8px;
  }

  .detail-listing-item p {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-social-footer {
    margin-top: 0px;
    margin-bottom: 16px;
  }

  .ptgroup-imgs-list>img,
  .ptgroup-imgs-list .more-pt {
    width: 60px;
    height: 60px;
  }

  .service-for-img {
    min-height: 350px;
  }

  .landing-page .service-tag-head {
    margin-top: 10px;
  }

  /*--30 Day Challenge--*/
  .challengeWrap .bannerwrap h1 {
    font-size: 32px;
    line-height: 50px;
  }

  .challengeImg .btext div h3 {
    font-size: 20px;
    line-height: 22px;
  }

  .thirty-day-landing .signupbanner,
  .thirty-day-landing-ar .signupbanner {
    border-radius: 12px !important;
    background: rgba(30, 85, 66, .08) !important;
    padding: 16px !important;
    gap: unset;
  }

  .thirty-day-landing .signupbanner a {
    display: block;
    width: 100%;
  }

  .thirty-day-landing .landing-page .user-step-section {
    background: #fafafa !important;
  }

  .landing-page .user-step-section {
    padding: 40px 0;
  }

  .user-step-section .col-lg-4>div {
    display: flex;
    flex-direction: column;
  }

  .landing-page .user-step-section .user-step-img {
    order: 2;
    margin-bottom: 20px;
  }

  .thirty-day-landing .landing-page .user-step-section .ft-card {
    order: 2 !important;
  }

  .landing-page .user-step-section .ft-card {
    padding-top: 15px;
  }

  .landing-page .user-step-section .ft-card p {
    margin-top: 0;
    margin-bottom: 15px;
  }

  .contact-details {
    padding: 15px 0 0;
  }

  /*--Meet Practitioner--*/
  .header-filter-slider-cover {
    padding-right: 0px;
  }

  .header-filter-slider h1,
  .header-filter-slider h2 {
    white-space: normal;
  }

  .header-filter-slider-cover .slick-next {
    right: 0px;
  }

  .header-filter-slider-cover .slick-prev {
    left: 0px;
  }

  .h-filter-search {
    max-width: 100%;
  }

  #search_form_btn {
    margin-bottom: 10px;
  }

  .session-rate {
    font-size: 20px;
  }

  .instructor-card .img {
    width: 79px;
    height: 79px;
    min-width: 79px;
    max-width: 79px;
    border-radius: 79px;
  }

  .instructor-card .total-no-sub {
    max-width: 100%;
  }

  .search-result-btns-box button {
    width: 50%;
    max-width: 50%;
  }

  .page-numbers {
    padding: 3px 10px;
    font-size: 14px;
  }

  .user-step-section {
    margin-top: 60px;
  }

  .profile-side-menu {
    top: 0;
  }

  .float_btn {
    display: block;
    visibility: hidden;
  }

  .signWrapp .row .col {
    flex: 1 0 50%;
  }

  .symtonsIco span {
    font-size: 16px;
    line-height: 24px;
  }

  .join-us-landing-page .slick-list {
    padding: 0 10% 0 0 !important;
  }

  .landing-page .our-best {
    text-align: center;
  }

  .join-us-landing-page .features-box .hero-content-duel-tone>h1,
  .join-us-landing-page .features-box .hero-content-duel-tone>h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0 !important;
  }

  .join-us-landing-page .features-box .ft-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .long-card {
    max-width: 100%;
    max-height: 450px;
    margin-bottom: 30px;
  }

  .long-card-img {
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 450px;
  }

  .long-card-img img {
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
  }

  .help1 {
    display: none;
  }

  .help2 {
    display: block;
  }

  .long-card .content {
    top: 26px;
    padding: 0 24px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    width: 100%;
  }

  .long-card .content h1,
  .long-card .content h2 {
    font-weight: 800;
    font-size: 32px;
    line-height: 44px;
  }

  .join-us-landing-page .long-card .content p {
    display: block;
    margin-top: 10px;
  }

  .join-us-landing-page .benefits-list p {
    margin-bottom: 25px;
  }

  .join-us-landing-page .benefits-list .col-lg-6:last-child p {
    margin-bottom: 0;
  }

  .practitioner-section {
    margin: 30px 0 0;
    padding: 30px 0 0;
    background: #fff;
  }

  .swiper-container-video .swiper-slide .video-card {
    width: 100%;
    height: 550px;
    max-width: 435px;
  }

  .card {
    border-radius: 0;
    padding: 20px 12px;
  }

  .card-header .task-status,
  .card-header .btn_secondary {
    padding: 6px 8px;
    border-radius: 15px;
    font-size: 14px;
    width: 100%;
  }

  .resources-card {
    min-width: auto;
  }

  .custom-slick-arrows {
    width: 100%;
    justify-content: space-between !important;
  }

  .blog-details-card .blog-title {
    font-size: 20px;
    line-height: 30px;
  }

  .author-details .blog-dtl-header {
    flex-direction: column;
    gap: 16px !important;
    align-items: flex-start !important;
  }

  .social {
    justify-content: flex-start !important;
    width: 100%;
  }

  .blog-banner {
    height: auto;
    min-height: 166px;
  }

  .blog-footer {
    flex-direction: column;
    gap: 8px;
  }

  .popShowMob {
    display: block;
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .soundbites-profile-card-cover {
    flex-direction: row !important;
    margin-bottom: 25px;
  }

  .soundbites-profile-card-cover .profile-card img,
  .soundbites-profile-card-cover .profile-card {
    min-width: 78px;
    max-width: 78px;
    height: 130px;
  }

  .soundbites-profile-details h1,
  .soundbites-profile-details h2 {
    margin-top: 0;
  }

  .PopHideMob {
    margin-bottom: 30px;
  }

  .PopHideMob .popular-search-section,
  .PopHideMob .popular-search-section+.side_menu-divider {
    display: none;
  }

  .soundbites-profile-details p {
    height: 20px;
  }

  .blog-banner {
    height: auto;
    min-height: 166px;
  }

  .soundbites-detail-landing-page .side_menu-articles-block {
    padding-bottom: 30px;
  }

  .contriHide {
    display: none;
  }

  .contriShow {
    display: block;
    margin-bottom: 40px;
  }

  .copy-text input {
    position: relative;
    padding: 10px;
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }

  .copy-text button {
    max-width: 104px;
    min-width: auto;
  }
}

@media (max-width: 540px) {
  .landing-page .container {
    padding-inline: 16px;
  }

  .nav-tabs.search-nav-tabs .nav-item {
    flex-grow: 1;
  }

  .nav-tabs.search-nav-tabs .nav-link {
    padding: 8px 8px;
    text-align: center;
  }

  .nav-tabs.search-nav-tabs .nav-link {
    width: 100%;
  }

  .landing-page-navbar {
    padding: 18px 0 10px;
  }

  .signupbanner {
    min-height: 600px;
    padding: 12px;
    gap: 41px;
    background: #54c7f5 url(../imgs/signupbanner-mb.png) no-repeat bottom center;
    background-size: 100%;
  }

  .speak-to-expert .green-box .group-avatar {
    width: 246px;
  }

  /*Testimonila*/
  .testimonial_box,
  .testimonial-slider .testimonial_box {
    height: auto;
    max-width: 234px;
  }

  .testimonial_box-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
  }

  /*FAQs*/
  .landing-page .faq-section-index .para {
    margin-top: 8px !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }

  .faq-section-index .btn_primary {
    margin-bottom: 24px !important;
  }

  .faq-section-index .faq-inner-text {
    max-width: 310px;
  }

  .faq-section-index .accordion-button::after {
    top: 50%;
    transform: translateY(-50%) rotate(0) !important;
    z-index: 1;
  }

  .faq-section-index .accordion-body {
    padding: 10px;
  }

  .accordion-index .accordion-item .accordion-item .accordion-button {
    font-size: 12px;
    line-height: 18px;
  }

  .accordion-index .accordion-item .accordion-item .accordion-button .faq-inner-text {
    max-width: 265px;
  }

  .accordion-index .accordion-item .accordion-item .accordion-body {
    font-size: 12px;
    line-height: 18px;
    padding-top: 0px;
  }

  /*--Notice--*/
  .notice {
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    padding: 15px 16px;
    gap: 14px;
    text-align: center;
  }

  .fnotice .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .list-row li {
    padding: 12px 0;
  }

  .list-row li:not(:last-child) {
    border-bottom: 1px solid #dadada;
  }

  .service-for-img {
    min-height: 298px;
  }

  /*--30 Day Challenge--*/
  .landing-page .user-step-section {
    padding: 20px 0 30px !important;
    background: #fff;
  }

  .landing-page .user-step-section .para {
    margin: 8px 0 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
  }

  .landing-page .user-step-img {
    height: auto;
    max-width: 100%;
  }

  .landing-page .ft-card .sub-heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
  }

  .landing-page .ft-card p {
    margin-top: 4px !important;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }

  /*--Meet Practioner--*/
  .session-rate {
    font-size: 15px !important;
  }

  .search-result-btns-box button {
    width: 100%;
    max-width: 100%;
  }

  .page-numbers {
    padding: 2px 8px;
  }

  .landing-page .our-best {
    margin-top: 30px;
  }

  .landing-page .para {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
  }

  .landing-page .ft-card p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }

  #image-container {
    max-height: 310px;
  }

  .Practitioners_Card {
    max-width: 72px;
    height: 88px;
  }

  .Practitioners_Card .img {
    max-width: 32px;
    min-width: 32px;
    width: 32px;
    height: 32px;
  }

  .Practitioners_Card .img img {
    width: 32px;
    height: 32px;
    object-fit: cover;
  }

  .Practitioners_Card .text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    height: 32px;
    word-break: break-word;
  }

  .landing-page .expert-video-slider {
    margin-top: 50px;
  }

  .swiper-container-video .swiper-slide .video-card {
    height: 470px;
    max-width: 378px;
    width: 100%;
  }

  .swiper-container-video {
    margin-top: 14px;
    max-width: 100%;
  }

  .expert-video-slider .bottom-nav {
    justify-content: center;
    margin-bottom: 10px;
    display: none !important;
  }

  .landing-page .learn-grow-page .hero-title-text p,
  .expert-video-slider .hero-content-duel-tone p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }

  .expert-video-slider .hero-content-duel-tone p {
    display: none;
  }

  .resources-card-cover.slick-slider .resources-card {
    height: auto;
  }

  .resources-card .img {
    width: 32px;
    height: 32px;
  }

  .resources-card-cover.slick-slider .resources-card .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block !important;
  }
}

@media (max-width: 425px) {
  .swiper-container-video .swiper-slide .video-card {
    max-width: 280px;
    height: 350px;
    width: 100%;
  }

  .resources-card .title {
    font-size: 10px;
    line-height: 16px;
  }
}

@media (max-width: 380px) {
  .swiper-container-video .swiper-slide .video-card {
    height: 300px;
    max-width: 234px;
  }
}

@media only screen and (max-width: 325px) {
  .swiper-container-video .swiper-slide .video-card {
    max-width: 188px;
  }
}