@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --body-theme-color: #004E66;
  --body-theme-hover: #018aaa;
  --body-secondary-color: #FBAD18;
  --body-bg-theme: #f5f5f5;
  --body-pera-color: #4d4d4d;
  --body-bg-white: #fff;
  --body-bg-black: #000;
  --body-font-size: 16px;
  --body-button-size: 14px;
  --body-transition: all 400ms ease-in-out;
  --body-line-height: 20px;
  --body-font-family: "DM Sans", sans-serif;
  --body-radius: 50px;
  --body-default-radius: 16px;
  --body-box-shadow: 0px 21px 29px rgb(0 0 0 / 4%);
  --body-ftr-bg: #01303C;
  --body-box-padding: 40px 23px 39px;
}

html {
  overflow-x: hidden !important;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: var(--body-bg-white);
  color: var(--body-pera-color);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  transition: var(--body-transition);
  line-height: var(--body-line-height);
  overflow-x: hidden !important;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--body-transition);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--body-font-family);
  transition: var(--body-transition);
}

p {
  margin: 0;
  margin-bottom: 16px;
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  line-height: 26px;
  transition: var(--body-transition);
}

section {
  padding: 100px 0px;
}



h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
  margin-bottom: 14px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 41px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  font-weight: 700;
}

img {
  max-width: 100%;
  border: none;
}

.gapping {
  margin-bottom: 30px;
}

.bg-section {
  background: var(--body-bg-theme);
}

.bg-section2 {
  /* background: var(--body-theme-color); */
  background: radial-gradient(circle at 0% 0%, rgb(36 144 167 / 30%) 0%, transparent 50%), radial-gradient(circle at 100% 100%, rgb(36 144 167 / 40%) 0%, transparent 38%), #004E66;
}

:focus {
  box-shadow: inherit !important;
  transition: var(--body-transition) !important;
  border-color: var(--body-theme-color) !important;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.rounded-img {
  border-radius: var(--body-default-radius);
}

.comonbox {
  padding: var(--body-box-padding);
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--body-theme-hover);
  border-radius: 2px;
}

/* go to top */

#button {
  display: inline-block;
  background-color: var(--body-theme-hover);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: 2px solid #fff;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  line-height: 50px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: var(--body-theme-hover);
}

#button:active {
  background-color: var(--body-theme-hover);
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.accordion-body {
  padding: 0 0px !important;
}


/* menu-header css start */

.topbar {
  background: var(--body-theme-color);
  color: var(--body-bg-white);
  font-size: var(--body-font-size);
}

.topbar p {
  font-size: 14px;
}

.menu-header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 15px;
  background: var(--body-bg-white);
  box-shadow: 0px 0px 30px rgb(0 0 0 / 7%);
}

.menu-header.show {
  position: fixed;
  top: 0;
  z-index: 99;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.menu-header .item-left {
  flex: 0 0 16%;
}

.menu-header .logo a {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.menu-header .item-center {
  flex: 0 0 64%;
  text-align: center;
}

.menu-header .item-right {
  flex: 0 0 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* .menu-header .item-right .button-group a:nth-child(1) {
  background: #fff0;
  color: var(--body-pera-color);
  font-weight: 500;
} */

.menu-header .item-right .button-group a {
  background: var(--body-theme-color);
  color: var(--body-bg-white);
  font-size: var(--body-button-size);
  display: inline-block;
  padding: 12px 27px;
  text-transform: capitalize;
  border-radius: 8px;
  margin-left: 2px;
  font-weight: 400;
  transition: var(--body-transition);
}

.menu-header .item-right .button-group a:hover {
  background: var(--body-secondary-color);
  color: var(--body-bg-white);
}

.menu-header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555555;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.menu-header .menu>ul>li {
  padding: 0 13px;
  display: inline-block;
  line-height: 50px;
  margin-left: 0;
  position: relative;
}

.menu-header .menu>ul>li>a {
  font-size: 16px;
  font-weight: 500;
  color: var(--body-pera-color);
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.menu-header .menu>ul>li:nth-child(2)>a {
  text-transform: initial;
}

.menu-header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 50px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
}

@media(min-width: 992px) {
  .menu-header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }

  /* .menu-header .menu>ul>li.menu-item-has-children.theme-menu-active .sub-menu{
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
   .menu-header .menu>ul>li.menu-item-has-children.theme-menu-active a{
    color: var(--body-secondary-color);
 } */
  .menu-header .menu>ul>li .sub-menu .list-item .title:hover a {
    color: var(--body-secondary-color);
    transform: translateX(10px);
    transition: .3s ease-in;
  }
}

.menu-header .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
}

.menu-header .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.menu-header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}

.menu-header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1;
  display: block;
}

.menu-header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
  padding: 10px 0;
  display: block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-align: start;
}

.menu-header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 790px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4.column-2-menu>.list-item {
  flex: 0 0 33%;
}

.menu-header .header-item.item-center .menu ul>li:nth-child(2) .sub-menu.mega-menu-column-4 .list-item {
  flex: 0 0 100%
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 50%;
  padding: 0 15px;
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
  font-size: 16px;
  color: var(--body-theme-hover);
  font-weight: 500;
  line-height: 22px;
  padding: 9px 0;
  margin-bottom: 0;
  text-align: start;
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title a {
  color: var(--body-pera-color);
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}

.menu-header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.menu-header .menu>ul>li .sub-menu>ul>li>a:hover,
.menu-header .item-right a:hover,
.menu-header .menu>ul>li:hover>a,
.menu-header .menu>ul>li:hover span i {
  color: var(--body-secondary-color);
}

header.main-header .container {
  max-width: 1270px;
}

/* banner section */

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/* menu-header css end */

/* home banner css start */

.hero-section {
  background: var(--body-bg-theme) !important;
  color: var(--body-pera-color);
  padding: 40px 0;
}

.hero-heading-group p {
  font-size: 16px;
  margin-bottom: 15px;
}

p.comon-link-text {
  margin-top: 12px;
}

.main-home-image img {
  width: 80% !important;
}

.home .main-home-image img {
  width: 100% !important;
}

.hero-heading-group span {
  font-size: 14px;
  margin-bottom: 9px;
  display: block;
  color: var(--body-secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-heading-group h4 ,
.hero-heading-group p.hero-sub-heading {
  font-size: 19px;
  line-height: 31px;
  font-weight: 400;
  color: var(--body-theme-color);
}

a.comon-button-1 {
  background: var(--body-theme-color);
  color: var(--body-bg-white);
  font-size: var(--body-button-size);
  display: block;
  padding: 13px 27px;
  text-transform: capitalize;
  border-radius: var(--body-radius);
  margin-left: 2px;
  font-weight: 400;
  transition: var(--body-transition);
}

.hero-section .main-button-group>a.comon-button-1 {
  margin-left: 0;
}

a.comon-button-2 {
  background: transparent;
  color: var(--body-theme-color);
  font-size: var(--body-button-size);
  display: block;
  padding: 13px 27px;
  /* text-transform: capitalize; */
  border-radius: var(--body-radius);
  margin-left: 2px;
  font-weight: 600;
  transition: var(--body-transition);
  border: 1px solid var(--body-theme-color);
}

.contact-us-section a.comon-button-1 {
  text-transform: initial;
}

a.comon-button-1:hover,
a.comon-button-2:hover {
  background: var(--body-secondary-color);
  color: var(--body-bg-white);
  border-color: var(--body-secondary-color);
}

.main-button-group {
  display: inline-block;
  margin-top: 17px;
  text-align: center;
}

.comon-heading-color h1,
.comon-heading-color h2,
.comon-heading-color h3 {
  color: var(--body-theme-color);
  line-height: 1.3;
}

.pera-heading-color p {
  color: var(--body-theme-color);
}

.comon-heading span {
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  line-height: 26px;
  color: var(--body-secondary-color);
  text-transform: capitalize;
}

a.comon-link-text {
  margin-top: 12px;
  display: inline-block;
  font-size: 14px;
}

p.comon-link-text.required-text {
  font-style: italic;
  font-size: 13px;
}

.cta-bg-overlay a.comon-button-1:hover,
.cta-bg-overlay a.comon-button-2:hover {
  background: var(--body-secondary-color);
  color: var(--body-bg-white);
  border-color: var(--body-secondary-color);
}

.cta-bg-overlay a.comon-button-2:focus {
  border: 1px solid var(--body-bg-white) !important;
}

/* home banner css end */

/* about banner start css */

.box-service-option {
  padding: var(--body-box-padding);
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
  margin: 0 7px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: auto;
  height: 100%;
}

.home .box-service-option {
  margin: 0 8px;
}


.box-service-option h3,
.box-service-option p,
.box-service-option a {
  transition: var(--body-transition);
  line-height: 1.3;
}

.box-service-option img {
  transition: var(--body-transition);
}

.img-option img {
  width: inherit;
  margin-bottom: 20px;
  height: 50px;
}

.inner-specialization-img .img-option img {
  width: 61px;
  margin-bottom: 24px;
}

.box-service-option h3 {
  margin-bottom: 7px;
  color: var(--body-theme-color);
  font-size: 18px;
}

.box-service-option h4 {
  font-size: 14px;
  color: var(--body-secondary-color);
  margin-bottom: 23px;
  font-weight: 400;
}

.find-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
  color: var(--body-theme-color);
  margin-top: 10px;
  transition: var(--body-transition);
}

.find-link:hover {
  color: var(--body-secondary-color);
  transition: var(--body-transition);
}

.find-link:hover svg path {
  stroke: var(--body-secondary-color);
  transition: var(--body-transition);
}

.find-link i {
  font-size: 20px;
  vertical-align: middle;
  padding-top: 0px;
  display: inline-flex;
}

.box-service-option p {
  min-height: 117px;
  margin-bottom: 0;
  width: 100%;
  line-height: 24px;
}

.soyouneed-service-option.personality-section .box-service-option p {
  min-height: 92px;
}

/* about banner start end */

.where-to-start {
  padding: 32px 32px;
  background: var(--body-bg-white);
  border-radius: var(--body-default-radius);
  margin-top: 32px;
  box-shadow: var(--body-box-shadow);
}

.description-start h4 {
  margin-bottom: 14px;
  color: var(--body-theme-color);
}

.icon-info i {
  color: var(--body-theme-color);
}

.description-start p {
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 24px;
}

.contact-us-section .comon-heading h2 {
  padding-right: 26%;
  line-height: 41px;
  margin-bottom: 16px;
}

.contact-form-soyouneed {
  padding: 46px 46px;
  background: var(--body-bg-white);
  border-radius: var(--body-default-radius);
  box-shadow: var(--body-box-shadow);
  margin-left: 32px;
  position: relative;
}

.input-field label {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--body-theme-color);
  margin-bottom: 5px;
}

.input-field input {
  height: 46px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 300;
}

.input-field select {
  height: 46px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  color: #4D4D4D;
  font-size: 15px;
  font-weight: 400;
}

.input-field input::placeholder,
.input-field textarea::placeholder {
  color: #BFBFBF;
}

.input-field textarea {
  height: 124px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  color: #d1d1d1;
  width: 100%;
  font-size: 14px;
}

.input-field-button input[type="submit"] {
  background: var(--body-theme-color);
  color: var(--body-bg-white);
  font-size: var(--body-button-size);
  display: inline-block;
  padding: 13px 29px;
  text-transform: capitalize;
  border-radius: var(--body-radius);
  margin-left: 2px;
  font-weight: 400;
  transition: var(--body-transition);
  border: 1px solid var(--body-theme-color);
}

.input-field-button input[type="submit"]:hover {
  background: var(--body-secondary-color);
  color: var(--body-bg-white);
  border-color: var(--body-secondary-color);
}

.personality-section .box-service-option h3 {
  margin-bottom: 9px;
  /* color        : var(--body-theme-color); */
  min-height: 57px;
}

/* ------------------------------------- */


/* start */
/* ----------------------------------- */

.challenges-section .challanges-img img {
  padding-right: 3%;
  /* border-radius: var(--body-default-radius); */
  border-radius: 31px;
}

.list-life-challanges {
  margin-top: 36px;
}

.list-life-challanges ul li a {
  padding: 9px 11px;
  background: var(--body-bg-white);
  box-shadow: 0 13px 9px rgb(0 0 0 / 2%);
  border-radius: var(--body-radius);
  color: var(--body-theme-color);
  font-weight: 600;
  margin-bottom: 19px;
  transition: var(--body-transition);
}

.list-life-challanges ul li .icon {
  display: block;
  background: var(--body-secondary-color);
  color: var(--body-bg-white);
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  flex-shrink: 0;
}

.list-life-challanges ul li .icon svg {
  width: 22px !important;
}

.list-life-challanges ul li .find-link {
  gap: 7px;
}

.list-life-challanges ul li p {
  font-size: 16px;
  margin-left: 5px;
  font-weight: 700;
}

.list-life-challanges ul li a {
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  gap: 10px;
}

.list-life-challanges ul li a .item-group-heading {
  flex: 1;
  min-width: 0;
}

.list-life-challanges ul li .find-link span {
  flex: 1;
}

.list-life-challanges ul li .find-link i {
  flex-shrink: 0;
}

.yourself-section .box-service-option {
  min-height: auto;
  margin: 0;
}

.yourself-section .box-service-option h3 {
  margin-bottom: 17px;
}

.yourself-section a.find-link {
  margin-top: 17px;
}

.therapy-service-option .box-service-option p {
  min-height: 81px;
  flex-grow: 1;
}

.list-life-challanges ul li a:hover .find-link,
.list-life-challanges ul li a:hover {
  color: var(--body-secondary-color);
}


/* Personality start------------ */

.personality-section .container,
.real-support-section .container {
  max-width: 1300px;
}


/* end */
/* ------------------------------------------- */



/* start */
.find-therapist-section {
  padding: 150px 0 60px;
  z-index: 1;
  margin-bottom: 150px;
  position: relative;
}

.find-therapist-section .comon-heading h2 {
  color: var(--body-bg-white);
  font-weight: 600;
}

.find-therapist-section::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -11;
  background: var(--body-theme-color);
  opacity: 0.58;
}

/* search filter css */

section.find-therapist-section {
  padding: 159px 0 20px;
}

.filter-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 1px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgb(0 0 0 / 14%);
  width: 756px;
  height: 90px;
  margin: 30px auto -58px;
  border-bottom: 3px solid var(--body-theme-hover);
  position: relative;
}

.filter button:before {
  position: absolute;
  right: 0;
  content: "";
  height: 100%;
  background: #f1f1f1;
  width: 2px;
  top: 0;
}

.filter.gender-filter::before {
  display: none;
}


.filter-btn {
  background: none;
  border: none;
  font-size: 16px;
  padding: 3px 22px 3px 22px;
  text-align: start;
  color: var(--body-pera-color);
  font-weight: 500;
  position: relative;
}

.filter-dropdown {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 32px 10px;
  border-radius: 16px 16px 16px 16px;
  box-shadow: 0 6px 19px rgb(0 0 0 / 16%);
  z-index: 999;
  height: auto;
  overflow: auto;
  width: 100%;
}

.ther-tag {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.find-therapist-section .filter-dropdown input {
  width: inherit;
}

.filter-dropdown label {
  display: flex;
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  gap: 9px;
  align-items: center;
  cursor: pointer;
}

.filter-tabs input {
  width: 100%;
  font-size: 15px;
  border: none;
  padding: 0;
  outline: none;
  padding-right: 10px;
  font-weight: 400;
  margin-left: 17px;
  background-color: transparent;
}

.filter-tabs input::placeholder {
  color: #d6d6d6;
  opacity: 0.8;
}

.search-btn {
  background: #0b8dbb;
  color: #fff;
  border: none;
  border-radius: 50px;
  width: 170px;
  height: 57px;
  font-size: 25px;
  display: block;
  margin-right: 13px;
  line-height: 55px;
}

.find-therapist-section .filter-tabs .search-btn {
  width: 58px;
  height: 58px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.filter-tabs .filter:nth-child(1) button {
  border: none;
}

.filter:nth-child(4)::before {
  display: none;
}

.filter-tabs input:focus {
  box-shadow: initial !important;
}

.filter-dropdown input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #0b8dbb;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  border-color: #0b8dbb !important;
  background: #fff;
}

/* Checked State */
.filter-dropdown input[type="checkbox"]:checked {
  background: #0b8dbb;
  border-color: #0b8dbb;
}

/* Font Awesome Icon */
.filter-dropdown input[type="checkbox"]:checked::before {
  content: "\f00c";
  /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: -2px;
  left: 2px;
}

/* Hover effect */
.filter-dropdown input[type="checkbox"]:hover {
  border-color: #087299;
}


.comon-srvc .box-service-option p {
  min-height: 136px;
  margin-bottom: 0;
  width: 100%;
  line-height: 24px;
}

/* ----------------------------------------- */

/* slider */

section.real-support-section {
  padding: 100px 0px 60px;
}

.testimonial-item {
  padding: 47px 37px;
  background: var(--body-bg-white);
  box-shadow: 0px 11px 9px rgb(0 0 0 / 2%);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
  margin-bottom: 50px;
  height: 100%;
  min-height: 300px;
  height: calc(100% - 1.5rem);
}

.item-review h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  color: var(--body-theme-color);
}

.review-user {
  border-left: 3px solid var(--body-theme-color);
  padding: 6px 16px;
  margin-top: 50px;
}

.real-support-section .swiper-pagination-bullet-active {
  background: var(--body-theme-color) !important;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  width: 33px;
}

.real-support-section .swiper-pagination-bullet {
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid var(--body-theme-color);
  opacity: 1;
}

.real-support-section .swiper-button-prev {
  background: var(--body-bg-white);
  width: 33px !important;
  height: 33px !important;
  padding: 9px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  box-shadow: 0px 4px 13px rgb(0 0 0 / 5%) !important;
  color: var(--body-theme-color) !important;
}

.real-support-section .swiper-button-next {
  background: var(--body-bg-white);
  width: 33px !important;
  height: 33px !important;
  padding: 9px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  box-shadow: 0px 4px 13px rgb(0 0 0 / 5%) !important;
  color: var(--body-theme-color) !important;
}

.real-support-section .swiper {
  padding: 0px 10px;
}

.real-support-section .swiper-button-next,
.real-support-section .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%) !important;
}

.testimonial-content {
  cursor: pointer;
  transition: background 0.3s ease;
  line-height: 1.6;
}

.toggle-icon {
  font-size: 11px;
  color: #ff4d4d;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-content.expanded .toggle-icon {
  display: inline-block !important;
  opacity: 1;
}

.testimonial-content:hover {
  opacity: 0.8;
}

.info-box.text-center p {
  margin-bottom: 0;
}

.info-box.text-center {
  padding: 37px 40px;
  background: #01303c14;
  border-radius: var(--body-default-radius);
  border: 1px solid var(--body-theme-hover);
}

/* ----------------------------------------- */

/* slider */


/* cta start */

.cta-bg-overlay {
  /* background   : var(--body-theme-color); */
  color: var(--body-bg-white);
  border-radius: var(--body-radius);
  padding: 150px 250px;
  position: relative;
  /* background: radial-gradient(circle at 2% -2%, rgb(36 144 167) 0%, #005b6e 34%, #003d4a 100%); */
  background:
    radial-gradient(circle at 0% 0%, rgb(36 144 167 / 60%) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgb(36 144 167 / 40%) 0%, transparent 50%),
    #004E66;
  background-blend-mode: screen;
}

.cta-bg-overlay::before {
  background: url(../images/home/before-blur-left.png) no-repeat center;
  position: absolute;
  left: 0;
  content: "";
}

.cta-bg-overlay .comon-heading h2 {
  font-size: 60px;
  width: 100%;
  margin: 0 auto 23px;
  line-height: 73px;
}

.cta-bg-overlay .comon-heading p {
  font-size: 18px;
  font-weight: 400;
}

.cta-bg-overlay .main-button-group {
  margin: 25px auto 0;
  display: table;
}

.cta-bg-overlay a.comon-button-1 {
  background: var(--body-bg-white);
  color: var(--body-theme-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
  border: 1px solid transparent;
}

.cta-bg-overlay a.comon-button-2 {
  background: var(--body-theme-color);
  border: 1px solid var(--body-bg-white);
  color: var(--body-bg-white);
}

.cta-bg-overlay a.comon-button-1:hover {
  background: var(--body-secondary-color);
  color: var(--body-bg-white);
}

.cta-bg-overlay a.comon-button-1:hover span svg {
  color: var(--body-bg-white) !important;
}

.cta-bg-overlay a.comon-button-1 span,
.cta-bg-overlay a.comon-button-2 span {
  transform: rotate(-47deg);
  display: inline-block;
  font-size: 27px;
  vertical-align: middle;
}

.blank {
  min-height: 90px;
}

/* ---------------------------------- */

.accordion-button {
  font-weight: 500;
  color: var(--body-theme-color);
  padding: 24px 0px;
  font-size: 18px;
}

.faq-section {
  padding-bottom: 90px;
}

.faq-section .accordion-body p {
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: var(--body-pera-color);
  margin-bottom: 30px;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: initial;
  font-weight: 600;
}


.faq-section .accordion-item:first-of-type>.accordion-header .accordion-button.collapsed {
  font-weight: 700;
}

/* ----------------------- */

/* footer */

.footer-section {
  background: var(--body-ftr-bg);
  color: var(--body-bg-white);
  padding: 80px 0px 0;
}

.social-ftr-info a {
  background: #133d48;
  width: 42px;
  display: inline-block;
  text-align: center;
  height: 42px;
  line-height: 44px;
  border-radius: 100%;
  font-size: 17px;
}

.social-ftr-info a:hover {
  background: var(--body-theme-hover);
  color: var(--body-bg-white);
}

.social-ftr-info {
  display: flex;
  gap: 10px;
  margin-top: 21px;
}

.footer-info h5 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--body-secondary-color);
  margin-bottom: 20px;
}

.footer-section .row .col-xl-4 .footer-info {
  padding-right: 8%;
}

.footer-info ul li a,
.footer-info.ft-loction ul li {
  display: block;
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: 300;
  /* padding-right: 20px; */
  line-height: 24px;
  display: inline-block;
}

.footer-info ul li:last-child a {
  margin-bottom: 0;
}

.footer-info ul li span i {
  color: var(--body-secondary-color);
  font-size: 16px;
}

.footer-info ul li a:hover {
  color: var(--body-secondary-color);
}

.newsletter-info {
  display: flex;
  flex-direction: column;
}

.newsletter-info input {
  width: 100%;
  height: 45px;
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

.newsletter-info button {
  color: var(--body-bg-white);
  width: 100%;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--body-secondary-color);
  border-radius: 6px;
  outline: none;
  background: var(--body-secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 12px;
  transition: var(--body-transition);
  font-size: 14px;
}

.newsletter-info button:hover {
  background: var(--body-theme-hover);
  color: var(--body-bg-white);
  border-color: var(--body-theme-hover);
}

.newsletter-info {
  margin-top: 30px;
}

.copyright-bar {
  margin-top: 50px;
}

.copyright-bar p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.copyright-wrapper ul li>a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  display: inline-block;
}

.copyright-wrapper .lft-info li>a span>i {
  color: var(--body-secondary-color);
  font-size: 16px;
}

.copyright-wrapper .lft-info ul>li a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.copyright-wrapper .lft-info ul>li {
  float: left;
  margin-left: 18px;
}

.copyright-wrapper .lft-info ul>li:first-child {
  margin-left: 0px;
}

.list-ftr-address .item-address i {
  color: var(--body-secondary-color);
}

.copyright-wrapper .right-info .social-links a {
  margin: 0 5px;
}

.content-address a {
  font-size: 15px;
  margin-bottom: 17px;
  font-weight: 300;
  line-height: 23px;
  cursor: unset;
}

.footer-info p {
  font-size: 15px;
  margin-bottom: 17px;
  font-weight: 300;
}

.footer-info p.ft-desp {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 300;
  display: inline-block;
  line-height: 26px;
}

/* page-adhs-assesment */

.total-assesment-cost {
  padding: 40px 35px;
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
}

.total-assesment-cost span.price-cost {
  font-size: 56px;
  font-weight: 800;
  color: var(--body-theme-color);
  margin-top: 27px;
  display: block;
  padding: 8px 12px 26px;
  border-bottom: 1px solid #E0E2E7;
  padding-bottom: 43px;
  margin-bottom: 23px;
}

.cost-breakdown h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--body-theme-color);
}

.cost-breakdown ul li {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 13px;
}

.cost-breakdown ul li .therapist-name-price h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--body-theme-color);
}

.cost span {
  color: var(--body-secondary-color);
  font-size: 18px;
  font-weight: 600;
}

.assesment-item {
  padding: 40px 16px;
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
  height: 100%;
}

.note-description {
  background: var(--body-bg-theme);
  padding: 13px 13px;
  border-radius: 8px;
}

.note-description ul li p {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 0;
  border: none;
  padding: 0;
}

.note-description ul li {
  margin-bottom: 14px;
}

.note-description ul li:last-child {
  margin-bottom: 0;
}

.assesment-item img {
  border-radius: var(--body-default-radius);
}

.our-assesment-process-section {
  padding-bottom: 100px;
}

.support-lifestyle .content-assesment-info h3 {
  font-size: 24px;
}

.our-assesment-process-section .comon-heading,
.flexible-support .comon-heading,
.soyouneed-service-option .comon-heading,
.benefits-section .comon-heading,
.recognizing-section .comon-heading,
.choose-your-startingPoint .comon-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.our-assesment-process-section .comon-heading p.w-75 {
  width: 100% !important;
}

.adhd-services .benefits-section .comon-heading,
.adhd-assessment-diagnosis .benefits-section .comon-heading,
.adhd-coaching .benefits-section .comon-heading {
  max-width: 100%;
}

.pricing-therapy-coaching .comon-heading,
.system-processing-section .comon-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.home .soyouneed-service-option.focused-care .comon-heading{
  max-width: 900px;
}
/* ------------------------------ */


.ADHD-faq-section .accordion-item {
  background: transparent;
  border-color: #457787;
  color: var(--body-bg-white);
}

.ADHD-faq-section .accordion-item {
  background: transparent;
  border-color: #457787;
  color: var(--body-bg-white);
}

.ADHD-faq-section .accordion-button {
  font-weight: 500;
  padding: 17px 0px;
  font-size: 18px;
  background: transparent;
  color: var(--body-bg-white);
}

.ADHD-faq-section .accordion-button:not(.collapsed) {
  color: var(--body-bg-white);
  background-color: transparent;
  border-color: transparent !important;
  box-shadow: inherit !important;
}

.ADHD-faq-section .accordion-body p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.ADHD-faq-section .accordion-button::after {
  filter: brightness(0) invert(1) !important;
}

/* ----------------- */

.benefits-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.benefits-item {
  padding: 29px 22px;
  width: 100.3%;
  height: 100.3%;
}

/* .benefits-section .container {
  max-width: 1350px;
} */

.benefits-item p {
  margin-bottom: 0;
  /* min-height   : auto;
  max-height      : 110px; */
}

.benefits-item .icon-benefits {
  margin-bottom: 13px;
}

.benefits-item {
  border: 1px solid #E0E2E7;
}

.benefits-item:nth-child(1) {
  border: none;
  padding-left: 0;
}

.benefits-item:nth-child(3) {
  border: none;
  padding-right: 0;
}

.benefits-item:nth-child(2) {
  border-top: none;
}

.benefits-item:nth-child(4) {
  border-left: 0;
  border-bottom: 0;
  padding-left: 0;
}

.benefits-item:nth-child(5) {
  border-top: none;
  border-left: 0;
  border-bottom: 0;
}

.benefits-item:nth-child(6) {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding-right: 0;
}

.benefits-item h3 {
  margin-bottom: 12px;
  line-height: initial;
}

/* ------------------------------------ */

.support-lifestyle .assesment-item {
  padding: 60px 40px 40px;
  height: 100%;
}

.support-lifestyle .assesment-item .pera {
  min-height: 90px;
}

.support-lifestyle .note-description {
  background: transparent;
  padding: 0;
  margin: 0;
}

.support-lifestyle .note-description ul li p {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  line-height: 25px;
}

/* -------------------------------------------- */

.journey-section a.comon-button-1 {
  padding: 13px 23px;
}

.journey-section .assesment-item a.comon-button-1 span {
  display: block;
  text-align: center;
  line-height: 26px;
  font-weight: 200;
  color: var(--body-bg-white);
  margin-bottom: 0;
}

.journey-section .assesment-item .pera {
  min-height: 192px;
}

.journey-section .assesment-item .content-assesment-info span {
  font-weight: 600;
  color: var(--body-theme-color);
  display: block;
  margin-bottom: 9px;
}

.journey-section .content-assesment-info h3 {
  font-size: 24px;
  min-height: 36px;
  width: 100%;
  margin-bottom: 14px !important;
}

/* ----------------------------------- */


/* our service css */
/* -------------------------------- */

.our-service-banner .hero-heading-group h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.specialization .our-service-banner .hero-heading-group h1 {
  font-size: 48px;
}

.hero-section.our-service-banner {
  padding-top: 70px;
}

.our-service-banner .hero-heading-group span {
  margin-bottom: 10px;
}

.our-service-banner p {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 0px;
}

.our-service-banner h3 {
  color: var(--body-theme-color);
  font-size: 30px;
  line-height: 39px;
}

.our-service-banner .main-button-group {
  margin-top: 27px;
}

.service-models .box-service-option p {
  min-height: 116px;
  flex-grow: 1;
}

section.carrer-the-meets-section .comon-heading h3 {
  font-size: 31px;
  line-height: 41px;
  color: var(--body-theme-color);
  font-weight: 800;
}

.specialization-section .benefits-group {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

.specialization-section .benefits-group .benefits-item:nth-child(1) {
  /* border-bottom: 1px solid #E0E2E7; */
  border-top: 0;
  border-left: 0;
}

.specialization-section .benefits-group .benefits-item:nth-child(3) {
  border-right: 1px solid #E0E2E7;
}

.specialization-section .benefits-group .benefits-item:nth-child(4) {
  border: none;
  border-bottom: 1px solid #E0E2E7;
}

.specialization-section .benefits-group .benefits-item:nth-child(5) {
  border-left: 0;
  border-bottom: 0;
}

.specialization-section .benefits-group .benefits-item:nth-child(7) {
  border-bottom: none;
}

.specialization-section .benefits-group .benefits-item:nth-child(8) {
  border: none;
}

.specialization-section a.find-link {
  gap: 8px;
  margin-top: 27px;
}

.user-challenges {
  position: relative;
  top: 0px;
  margin-top: -20px;
  z-index: 2;
}

.benefits-section.bg-section.specialists-section .benefits-group {
  grid-template-columns: repeat(auto-fit, minmax(240px, 4fr));
}

.benefits-section.bg-section.specialists-section .benefits-item:nth-child(2) {
  border-top: none;
  border-bottom: 0;
}

.benefits-section.bg-section.specialists-section .benefits-item:nth-child(3) {
  border-right: 1px solid #E0E2E7;
}

.benefits-section.bg-section.specialists-section .benefits-item:nth-child(4) {
  border-left: 0;
  border-bottom: 0;
  border-top: 0;
  border-right: 0;
  padding-left: 22px;
}

/* ---------------------------------- */
/* service css end */


/* individual therapy css */

.Specialized-carrer .benefits-group {
  grid-template-columns: 1fr 1fr;
}

.Specialized-carrer .benefits-group .benefits-item:nth-child(1) {
  padding-left: 0;
  border-left: 0px;
  border-top: 0px;
  border-right: 0;
}

.Specialized-carrer .benefits-item:nth-child(2) {
  padding-left: 36px;
  border-right: 0;
  border-top: 0px;
}

.Specialized-carrer .benefits-item:nth-child(3) {
  border-left: 0px;
  border-top: 0px;
  border-right: 0px;
  border-bottom: 0px;
  padding-left: 0;
  padding-right: 30px;
}

.Specialized-carrer .benefits-item:nth-child(4) {
  padding-left: 36px;
  border-top: 0px;
  border-right: 0px;
  border-bottom: 0px;
}

.Specialized-carrer .benefits-item {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid #E0E2E7;
}

.Specialized-carrer .benefits-item:nth-child(3)::before {
  display: none;
}

.Specialized-carrer .benefits-item:nth-child(4)::before {
  display: none;
}

.Specialized-carrer .benefits-item:nth-child(1)::after {
  display: none;
}

.Specialized-carrer .benefits-item:nth-child(3)::after {
  display: none;
}

.grid-4-item .benefits-item {
  width: 100.4%;
  height: 100.2%;
  border-bottom: 0px;
}

.grid-4-item .benefits-group .benefits-item:nth-child(4) {
  padding-left: 28px;
  padding-right: 0;
  border-bottom: 0px;
}

.grid-4-item .benefits-group .benefits-item:nth-child(3),
.grid-4-item .benefits-group .benefits-item:nth-child(6) {
  padding-right: 28px;
}

.grid-4-item .benefits-group .benefits-item:nth-child(5) {
  padding-left: 0;
  border-left: 0px;
  border-top: 0px;
}

/* -------------------------------------------------- */
/* ---------------------------- */

.understanding-patterns-section .accordion-button:not(.collapsed) {
  color: var(--body-theme-color);
  background-color: transparent;
}

.understanding-patterns-section .accordion-body {
  background-color: transparent;
  color: var(--body-pera-color);
  border-radius: 11px;
  padding: 0px 21px !important;
}

.understanding-patterns-section .accordion-button {
  background-color: var(--body-bg-theme);
  color: var(--body-theme-color);
  padding: 30px 20px;
  margin-bottom: 0px;
  box-shadow: 0px 0px 29px rgb(0 0 0 / 3%);
}

.understanding-patterns-section .accordion-button {
  background-color: transparent;
  color: var(--body-theme-color);
  padding: 21px 20px;
  margin-bottom: 0px;
  box-shadow: inherit;
}

.understanding-patterns-section .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.understanding-patterns-section .accordion-item {
  margin-bottom: 26px;
  border-radius: 14px !important;
  background: #F5F5F5;
}

.understanding-patterns-section .accordion-item:first-of-type {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.understanding-patterns-section .accordion-item:not(:first-of-type) {
  border: 2px solid #e9e9e9;
}

.faq-section .accordion-item,
.faq-section .accordion .accordion-item {
  border-top: 0.7px solid transparent !important;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid #E0E2E7;
}

/* ---------------------------------------------- */

.system-processing-section {
  background: var(--body-theme-color);
  padding: 100px 0px;
}

.system-processing-section table.table tr td {
  padding: 25px 16px;
  vertical-align: middle;
  background: transparent;
  border-color: #326e81 !important;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 29px;
}

.system-processing-section table.table tr th {
  padding: 25px 18px;
  vertical-align: top;
  line-height: 29px;
  background: transparent;
  border-color: #326e81 !important;
  color: #fff;
}

.system-processing-section table.table thead tr th {
  text-transform: uppercase;
  font-weight: 600;
}

/* -------------------------------------------------------- */

/* team and approach */

.dedicated-internal-info {
  border-radius: var(--body-default-radius);
  box-shadow: var(--body-box-shadow);
}

.image-info-srvc img {
  border-radius: var(--body-default-radius) var(--body-default-radius) 0px 0px;
}

.accordion-item,
.accordion-button {
  background: transparent;
}

.approaches-section .benefits-item h3 {
  /* margin-bottom: 12px;
    line-height: initial; */
  min-height: 60px;
}

/* ------------------------------------------ */
/* ADHD Medication Support */

.medication-management-item {
  padding: 40px 30px;
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
  height: 100%;
}

.medication-management-item h3 {
  font-size: 24px;
  margin-bottom: 19px;
  color: var(--body-theme-color);
}

.medication-management-item h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.medication-management-item p {
  line-height: 1.6;
  color: var(--body-theme-color);
  margin-bottom: 32px;
}

.list-investment ul li b {
  font-size: 14px;
}

.list-investment h4 {
  margin-bottom: 15px;
}

.list-investment ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.list-investment ul li span {
  background: var(--body-secondary-color);
  color: var(--body-bg-white);
  width: 20px;
  text-align: center;
  height: 20px;
  line-height: 23px;
  border-radius: 100%;
  font-size: 14px;
  margin-bottom: 0;
}

.pricing-card .list-investment ul li span {
  background-color: transparent;
  color: initial;
  width: auto;
  height: auto;
  line-height: normal;
  font-size: initial;
}

.list-investment {
  margin-bottom: 20px;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 11px;
}

.how-you-receive h4 {
  margin-bottom: 12px;
}

.how-you-receive p {
  color: var(--body-pera-color);
  margin-bottom: 11px;
  font-size: 14px;
  line-height: 1.5;
}

.how-you-receive p b {
  text-transform: capitalize;
}

.option-list {
  margin-top: 19px;
}

.how-you-receive span {
  font-size: 10px !important;
}

.medication-management-item span.sub-heading {
  font-size: 15px;
  line-height: 14px;
  display: block;
  margin-bottom: 8px;
  color: var(--body-theme-color);
  font-weight: 600;
}

.starting-point-item {
  padding: 35px 30px;
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
  height: 100%;
}

.starting-point-item h3 {
  font-size: 24px;
  margin-bottom: 26px;
  color: var(--body-theme-color);
}

.starting-point-item h4 {
  margin-bottom: 13px;
  font-size: 16px;
}

.starting-point-item p {
  font-size: 15px;
  line-height: 1.6;
}

.starting-point-item ul {
  border-top: 2px solid #f3f3f3;
  margin-top: 25px;
  padding-top: 25px;
}

.starting-point-item ul li {
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 11px;
  align-items: center;
  gap: 6px;
}

.starting-point-item ul li p {
  margin-bottom: 0;
  font-size: 16px;
}

.starting-point-item ul li span {
  font-weight: 600;
  color: var(--body-theme-color);
}

.img-rounded-img img {
  width: 100%;
  border-radius: 100%;
  border: 5px solid #fff;
  box-shadow: var(--body-box-shadow);
}

.button-group-mobile a {
  font-size: 20px !important;
}

.button-group-mobile {
  display: flex;
  gap: 1px;
  display: none;
}

.button-group-mobile a:nth-child(1) {
  font-size: 22px !important;
}


.subscription-content-information .accordion-button {
  padding: 0 0;
  border: none !important;
  box-shadow: none !important;
  font-weight: 700;
  color: #4D4D4D !important;
  font-size: 16px;
}

.subscription-content-information .accordion-button:not(.collapsed) {
  background: transparent;
  border: none;
  box-shadow: inherit !important;
}

.subscription-content-information .accordion-item {
  border: none !important;
}

.subscription-content-information small {
  font-size: 11px;
}

.subscription-content-information .accordion-body h5 {
  padding: 0 0;
  border: none !important;
  font-weight: 700;
  color: #4D4D4D !important;
  font-size: 16px;
  margin-bottom: 10px;
}

.pera-medication-item {
  min-height: 101px;
}


/* consultation-section-------------- */

.consultation-section .pera-medication-item {
  min-height: auto;
}

.consultation-section .list-investment ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.consultation-section .list-investment ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  background: var(--body-bg-theme);
  padding: 18px 13px;
  border-radius: 9px;
}

.consultation-section .option-list p b {
  color: var(--body-theme-color);
}

.consultation-section .how-you-receive p {
  color: var(--body-pera-color);
  margin-bottom: 11px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* beyond section start css */

.beyond-section ul .content-title-info p {
  font-size: 15px;
  margin-bottom: 13px;
}

.beyond-section ul .content-title-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.wpcf7-spinner {
  position: absolute !important;
  left: 20px !important;
  margin-top: 13px !important;
}

.heading-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.therapy-service-option .heading-group h2,
.therapy-service-option .heading-group h3 {
  margin-bottom: 0 !important;
}

.therapist-card {
  padding: 20px 19px;
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: auto;
  height: 100%;
  border: 1px solid #f1f1f1;
}

.therapist-card img {
  border-radius: var(--body-default-radius);
  margin-bottom: 24px;
}

.therapist-card h4 {
  margin-bottom: 8px;
  color: #000;
}

.icon-therapist {
  background: var(--body-bg-white);
  box-shadow: 0 6px 12px rgb(24 39 75 / .12), 0 8px 24px rgb(24 39 75 / .08);
  padding: 5px 5px 6px 7px;
  border-radius: 50px;
  width: 216px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 49px;
  border: 1px solid #f0f0f0;
}

/* @keyframes pulse {
  0% {
    box-shadow: 0 0 var(--body-theme-hover);
  }

  70% {
    box-shadow: 0 0 0 7px #fff0;
  }

  100% {
    box-shadow: 0 0 #fff0;
  }

} */


.icon-therapist p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--body-theme-color);
  font-size: 14px;
}

.icon-therapist svg {
  background: var(--body-theme-hover);
  width: 34px;
  height: 34px;
  padding: 9px;
  border-radius: 100%;
}

.find-therapist {
  display: none;
}


/* blog section start */

.blog-section .inner-heading .list-item ul li a {
  border: 1px solid var(--body-theme-color);
  font-size: 14px;
  color: var(--body-theme-color);
  font-weight: 600;
}

.blog-section .inner-heading .list-item ul li.active-list a,
.blog-section .inner-heading .list-item ul li a:hover {
  background: var(--body-theme-color);
  color: var(--body-bg-white);
}


.blog-listing-item time {
  color: var(--body-secondary-color);
  margin-bottom: 9px !important;
}

.blog-listing-item {
  border: 1px solid #eeeeee;
  border-radius: 13px;
  overflow: hidden;
  height: 100%;
}


/*  */
/* commit sourav after client changes */
/*  */

.assesment-item .content-assesment-info {
  padding: 0px 12px;
}

.our-assesment-process-section .assesment-item {
  padding: 19px 15px;
}

.our-assesment-process-section.journey-section .assesment-item .content-assesment-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.our-assesment-process-section.journey-section .assesment-item .content-assesment-info .pera {
  flex: 1;
}

.assesment-item .content-assesment-info h3 {
  margin-bottom: 11px;
  padding: 0px 0px;
}

/* .benefits-wellbeing-management .benefits-item:nth-child(3) {
  border-bottom: 1px solid #E0E2E7 !important;
} */


.individual-meets-image .user-challenges img {
  width: 75% !important;
}

.individual-meets-image .user-challenges {
  margin-top: -70px;
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4.column-2-menu>.list-item h4 a {
  color: #7a7a7a;
  font-weight: 500;
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4.column-2-menu>.list-item h4 a:hover {
  color: var(--body-secondary-color);
  /* padding-left: 8px; */
}

.menu-header .menu>ul>li .sub-menu.mega-menu-column-4.custom-special-menu {
  flex-direction: column !important;
  width: 100% !important;
  max-width: 230px;
  padding: 12px 12px;
}

.menu-header .menu>ul>li:nth-child(2) .sub-menu.mega-menu-column-4.custom-special-menu,
.menu-header .menu>ul>li:nth-child(2) .sub-menu.mega-menu-column-4 {
  width: 200px !important;
}

.menu-header .menu>ul>li:nth-child(2) .sub-menu.mega-menu-column-4 {
  padding: 12px 12px;
}

/* .menu-header .menu>ul>li:nth-child(1) .sub-menu.mega-menu-column-4.custom-special-menu {
  width: auto !important;
} */

.menu-header .menu>ul>li:nth-child(3) {
  position: initial;
}


.therapist-results .therapist-card .btn-inner-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 23px;
}


.therapist-results .therapist-card a {
  display: flex;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  color: var(--body-theme-color);
  text-decoration: underline;
}

.therapist-results .therapist-card a.book-btn {
  color: var(--body-theme-color) !important;
  display: inline-block !important;
  padding: 8px 16px;
  border: 1px solid var(--body-theme-color);
  border-radius: var(--body-radius) !important;
  font-size: 14px !important;
  text-decoration: none !important;
}

.therapist-results .therapist-card a.book-btn:hover {
  background: var(--body-secondary-color) !important;
  color: var(--body-bg-white) !important;
  border-color: var(--body-secondary-color) !important;
}

.verfied-by img {
  height: 71px;
  border-radius: 10px;
}

.footer-icon {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.footer-icon li:not(:last-child) {
  margin-right: 10px;
}

.footer-icon li a {
  padding-right: 0 !important;
}

.footer-icon img {
  width: 100%;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

p.ftr-text {
  display: none;
}



/* specialization-section */

.recognizing-item {
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
  height: 100%;
}

.content-recognizing-item {
  padding: 22px 18px;
  min-height: 100%;
}

.content-recognizing-item h3 {
  margin-bottom: 12px;
  color: var(--body-theme-color);
}

.content-recognizing-item p {
  margin-bottom: 0;
}


.page-template-page-adhd-assesment-digonsis .ADHD-faq-section img,
.page-template-page-adhd-medication-support .beyond-section img {
  border-radius: 23px;
}

.img-recogzing-item img {
  border-radius: 16px 16px 0px 0px;
}


.specialization-section.our-service-main .benefits-group .benefits-item:nth-child(1) {
  border-bottom: 1px solid #E0E2E7;
}

.specialization-section.our-service-main .benefits-group .benefits-item:nth-child(4) {
  border-bottom: 1px solid #E0E2E7;
}

.privacy-policy-sec.bg-section h1.comon-heading {
  color: var(--body-theme-color);
}

.content-wrap.bg-white h2 {
  font-size: 25px;
  margin-bottom: 0px;
  color: var(--body-theme-hover);
}

.content-wrap.bg-white ol li {
  margin-bottom: 7px;
  list-style: disc;
}

.content-wrap.bg-white ol {
  padding-left: 17px;
  color: #999;
}

.our-assesment-process-section.bg-section.team-and-approach .img-item-process img {
  margin-bottom: 25px !important;
}

.our-assesment-process-section.bg-section.team-and-approach .content-assesment-info h3 {
  margin-bottom: 16px !important;
}

.our-assesment-process-section.bg-section.team-and-approach .content-assesment-info p {
  min-height: 180px;
}

.team-approach .our-assesment-process-section.bg-section.team-and-approach .content-assesment-info p {
  min-height: auto;
}

/* blog-details */
.breadcamp-wrappr .breadcrumb .breadcrumb-item a,
.breadcamp-wrappr .breadcrumb .breadcrumb-item {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  line-height: normal;
}

.breadcamp-wrappr .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(0, 0, 0, 0.45);
}

.breadcamp-wrappr {
  padding-top: 20px;
}

.breadcamp-wrappr .breadcrumb {
  padding: 0;
  margin: 0;
}

.breadcamp-wrappr .breadcrumb .breadcrumb-item.active {
  color: var(--body-theme-color);
}

.post-thumbnail-bnnerr {
  border-radius: 16px;
  overflow: hidden;
  max-width: 100%;
}

.blogpost-time-wrappr .breadcrumb li {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 13px;
  padding-left: 16px;
  position: relative;
}

.blogpost-time-wrappr .breadcrumb li::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.45);
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.blogpost-time-wrappr .breadcrumb li:first-child:before {
  display: none;
}

.blogpost-time-wrappr .breadcrumb li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.45);
}

.blogpost-time-wrappr .breadcrumb li:first-child {
  padding-left: 0px;
}

.blogpost-time-wrappr .breadcrumb {
  margin: 0;
  padding: 25px 0px 10px 0px;
}

.blog-left-panl .info-item p,
.blog-left-panl .info-item ol li,
.blog-left-panl .page-header p {
  color: var(--body-theme-color);
}

.blog-left-panl .info-item {
  margin-top: 25px;
}

.blog-left-panl .info-item ol {
  margin: 0;
  padding-left: 15px;
}

.blog-left-panl .info-item>span {
  color: var(--body-theme-color);
  margin-bottom: 14px;
  font-size: 22px;
  display: block;
  font-weight: 500;
}

.blog-left-panl .info-item ol li {
  list-style: decimal;
}

.blog-left-panl .page-header h1,
.blog-left-panl .info-item h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: var(--body-theme-color);
  margin-bottom: 14px;
}

.blog-left-panl .page-header h1 {
  margin-bottom: 0px;
}

.blog-left-panl .info-item ul li {
  margin-bottom: 10px;
  margin-left: 20px;
  color: var(--body-theme-color);
  font-size: 16px;
  line-height: 25px;
}

.blog-left-panl .info-item ul li {
  list-style: initial !important;
}

.blog-left-panl .info-item ul {
  margin-bottom: 24px;
}

.blog-left-panl .info-item span {
  font-size: 26px;
  display: block;
  margin-top: 35px;
  margin-bottom: 21px;
  font-weight: 600;
}

.blog-left-panl .info-item table {
  border-color: #cdcccc !important;
  border-radius: 22px !important;
}

.blog-left-panl .info-item table tbody {
  padding: 14px 14px;
  border-radius: 12px !important;
}

.blog-left-panl .info-item table tbody tr th {
  color: var(--body-theme-color);
}

.blog-left-panl .blog-details-faq {
  margin-top: 40px;
  margin-bottom: 60px;
}

.blog-left-panl .blog-details-faq h2 {
  font-weight: 700;
  color: var(--body-theme-color);
  margin-bottom: 28px;
}

.blog-left-panl .accordion-button:not(.collapsed) {
  background: transparent !important;
}

.blog-left-panl .accordion-body {
  padding: 25px 0px !important;
  line-height: 26px;
}

/* Container Structure */
.recent-articl-info .widget-container {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  border: 1px solid rgba(191, 191, 191, 0.45);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 15px;
}

.single-post .recent-articl-info .widget-container {
  max-width: max-content;
}

.recent-articl-info .widget-container h3 {
  color: var(--body-theme-color);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(191, 191, 191, 0.45);
}

.recent-articl-info .article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-thumbnail-bnnerr img {
  width: 100%;
}


/* Individual Article Item */
.recent-articl-info .article-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--body-transition);
  border-radius: 8px;
  padding: 8px;
  margin: -8px;
}

.recent-articl-info .image-wrapper {
  flex-shrink: 0;
  width: 90px;
  height: 94px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recent-articl-info .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recent-articl-info .article-item:hover img {
  transform: scale(1.1);
}

.recent-articl-info .content {
  flex-grow: 1;
}

.recent-articl-info .article-title {
  margin: 0;
  color: var(--body-theme-color);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  transition: color 0.2s ease;
}

.recent-articl-info .article-item:hover .article-title {
  color: #007a99;
}

.post-type-archive-therapist .find-therapist-section,
.therapist .find-therapist-section {
  margin-bottom: 0px;
}

.contact-us-section .input-field select[name="service"] option {
  color: var(--bs-body-color);
}


/* therapist-details page css */

.inner-therapist .profile-detail-sec h1.member-name {
  color: var(--body-theme-color);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1px;
}

.inner-therapist .profile-detail-sec h2.member-designation {
  color: var(--body-theme-color);
  font-size: 23px;
}

.inner-therapist .img-detail {
  display: flex;
  justify-content: start;
  gap: 16px;
  margin-top: 13px;
}

.inner-therapist .img-detail p.img-label {
  font-weight: 700;
  color: var(--body-theme-hover);
  margin-bottom: 0px;
}

.inner-therapist .img-detail p.img-label span {
  font-weight: 400;
}

.inner-therapist .sidebar-content-wrap h2.sidebar-main-heading {
  color: var(--body-theme-color);
  line-height: 1.3;
  font-weight: 700;
}

.inner-therapist .sec-inner-wrap .cert-boxes-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.inner-therapist .sec-inner-wrap .single-box {
  padding: var(--body-box-padding);
  background: var(--body-bg-white);
  box-shadow: var(--body-box-shadow);
  border-radius: var(--body-default-radius);
  transition: var(--body-transition);
  margin: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: auto;
  height: 100%;
}

.inner-therapist .sec-inner-wrap .inner-wrap img {
  width: inherit;
  margin-bottom: 24px;
}

.inner-therapist .sec-inner-wrap .single-box .inner-wrap img {
  width: 55px;
  min-height: 56px;
}

.inner-therapist .sec-inner-wrap .box-content h3 {
  margin-bottom: 7px;
  color: var(--body-theme-color);
  font-size: 18px;
  min-height: 25px;
}

.inner-therapist .sec-inner-wrap .box-content ul li {
  margin-bottom: 5px;
  font-size: 16px;
}

/* 404 error page css */

.error-404.not-found {
  text-align: center;
}

.error-404.not-found img {
  width: 28%;
  margin-bottom: 30px;
}

.error-404.not-found h1 {
  color: var(--body-theme-color);
  font-size: 29px;
  font-weight: 600;
}

/* ---------------------- */

/* thank you page */


.thankyou-wrapper {
  background: #fff;
  max-width: 750px;
  width: 100%;
  padding: 70px 0;
  text-align: center;
  border-radius: 8px;
  margin: 0 auto;
}

.thankyou-image-box {
  margin-bottom: 10px;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thankyou-image-box img {
  max-width: 200px;
  height: auto;
  display: block
}

.thankyou-label {
  font-size: 20px;
  font-family: "DM Sans", sans-serif;
  color: #004E66;
  margin-bottom: 12px;
  font-weight: 400
}

.thankyou-title {
  font-size: 36px;
  font-family: "DM Sans", sans-serif;
  color: #004E66;
  margin-bottom: 12px;
  font-weight: 800;
}

.thankyou-message {
  font-size: 14px;
  color: #004E66;
  margin-bottom: 30px;
  font-weight: 400
}

.thankyou-footer {
  padding-top: 20px;
  border-top: 1px solid #e5e7eb
}

.thankyou-support-label {
  font-size: 14px;
  color: #FBAD18;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 2px
}

.thankyou-contact {
  font-size: 14px;
  color: #004E66
}

.thankyou-contact a {
  color: #004E66;
  text-decoration: none;
  font-weight: 700
}

.thankyou-contact a:hover {
  text-decoration: underline
}

.therapist-card {
  z-index: inherit;
}

/* commit by Bibhas */
.therapist-results .therapist-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.therapist-results .therapist-card .btn-inner-tag {
  margin-top: auto;
}

.system-processing-section table.table tbody tr th {
  font-weight: 500;
  width: 15%;
}

.ther-tag {
  grid-gap: 12px;
}

.user-challenges {
  z-index: 9 !important;
}

.box-service-option h6 {
  color: var(--body-secondary-color);
}

.adhd-assessment-diagnosis .ADHD-faq-section .row {
  padding: 0 5%;
}

.blog-left-panl .info-item p,
.blog-left-panl .info-item ol li,
.blog-left-panl .page-header p {
  color: var(--body-theme-color);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

.blog-left-panl .info-item p>a,
.blog-left-panl .info-item ol li>a,
.blog-left-panl .page-header p>a {
  color: var(--body-secondary-color);
}

.list-investment ul li b,
.consultation-section .list-investment ul li {
  font-weight: 600;
}

/* blog-details-author */
.psychotherapist_image_content {
  display: flex;
  align-items: center;
  margin-top: 30px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0;
  gap: 24px;
}

.psychotherapist_image_in {
  width: 160px;
  height: 160px;
  line-height: 160px;
  position: relative;
  background: var(--body-theme-color);
  padding: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psychotherapist_content h5 {
  font-size: 20px;
  color: var(--body-theme-color);
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
}

.psychotherapist_content .social_pnl li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: var(--body-theme-color);
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  transition: 0.5s;
}

.psychotherapist_content .social_pnl {
  display: flex;
  gap: 4px;
}

.listing-blog-section h2 {
  color: var(--body-theme-color);
}

.blog-left-panl .table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.blog-left-panl .table {
  width: 100%;
  table-layout: fixed;
}

.blog-left-panl .table th:first-child,
.blog-left-panl .table td:first-child {
  padding: 12px 16px;
}

.blog-left-panl .table th:last-child,
.blog-left-panl .table td:last-child {
  padding: 12px 16px;
}

.blog-left-panl .info-item table tbody

/* Proper text behavior */
.blog-left-panl .table td,
.blog-left-panl .table th {
  text-align: left;
  vertical-align: top;
  padding: 12px 16px;
  word-break: normal;
  overflow-wrap: break-word;
}

.listing-blog-section .pagination-container a,
.listing-blog-section .pagination-container span {
  width: 32px;
  height: 32px;
  background: #F5F5F5;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: var(--body-theme-color);
  font-weight: 600;
}

.listing-blog-section .pagination-container .page-numbers.dots {
  background-color: transparent;
  width: auto;
  height: auto;
}

.listing-blog-section .pagination-container {
  gap: 10px;
}

.listing-blog-section .pagination-container span.current {
  background-color: var(--body-theme-color);
  color: var(--body-bg-white);
}

.inner-therapist .profile-detail-sec .col-lg-6 .detail-wrap .d-flex {
  align-items: center;
  gap: 20px;
}

.inner-therapist .profile-certifications-sec .sec-inner-wrap .adhd-list {
  flex-wrap: wrap;
  justify-content: flex-start !important;
}

.inner-therapist .profile-certifications-sec .sec-inner-wrap .adhd-list .certifications-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.inner-therapist .profile-certifications-sec .sec-inner-wrap .adhd-list .certifications-wrapper .inner-wrap {
  max-width: 80px;
  border: 1px solid #e5e5e5;
  background: var(--body-bg-white);
  padding: 5px;
  border-radius: 5px;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inner-therapist .profile-certifications-sec .sec-inner-wrap .adhd-list .certifications-wrapper .inner-wrap img {
  margin-right: 0;
}

.inner-therapist .profile-certifications-sec .sec-inner-wrap .adhd-list .certifications-wrappe .text-wrap {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.inner-therapist .profile-certifications-sec .sec-inner-wrap .adhd-list .certifications-wrapper .text-wrap p {
  color: var(--body-pera-color);
  font-size: 14px;
  line-height: 20px;
}

.inner-therapist .profile-certifications-sec .sec-inner-wrap .adhd-list .certifications-wrapper .text-wrap .main-heading {
  font-weight: 600;
}

.adhd .cta-section {
  padding-bottom: 0 !important;
}

.new-loader {
  top: 10px;
}

section.loader-btn,
section.sec-1,
section.sec-2,
section.sec-3 {
  padding: 0 0;
}

.inner-therapist .profile-detail-sec .detail-wrap .btn-wrap a {
  background: transparent;
}

.inner-therapist .today-psych a {
  margin-left: 0rem;
}

.inner-therapist .profile-certifications-sec .sec-inner-wrap .single-box {
  padding: 0px 0px 0px;
}

.inner-therapist .profile-certifications-sec .cert-boxes-wrap .single-box {
  margin: 0px 0px 0px;
}

.adhd-treatment-in-toronto .reasons-sec .reason-boxes .single-box .box-inner-wrap {
  height: 100%;
}

.adhd-treatment-in-toronto .contact-us-section {
  padding-top: 0;
}

.adhd-treatment-in-toronto .empower-sec .inner-col-two .img-wrap img {
  border-radius: var(--body-default-radius);
}

.adhd-treatment-in-toronto .empower-sec .inner-row {
  align-items: center;
}

.adhd-assessment-test {
  background: #004e66;
}

/* about */
.about .therapy-services-sec .card,
.about .about-us-sec .container .row .image img {
  border-radius: var(--body-default-radius);
  box-shadow: var(--body-box-shadow);
}

.about .content-wrap p {
  font-size: 16px;
  line-height: 26px;
  color: var(--body-pera-color);
}

.insurance .privacy-policy-sec .container .content-wrap {
  border-radius: var(--body-default-radius);
  box-shadow: var(--body-box-shadow);
  padding: 30px 30px;
}

.inner-therapist .profile-certifications-sec .cert-boxes-wrap .single-box .inner-wrap {
  padding: 20px 20px 20px;
}

.inner-therapist .profile-certifications-sec .cert-boxes-wrap .single-box .main-heading {
  margin-bottom: 20px;
}

.insurance .privacy-policy-sec .container .content-wrap h2 {
  font-size: 26px;
  line-height: 36px;
}

.family-therapy .specialization-section .benefits-group {
  grid-template-columns: repeat(3, 1fr);
}

.our-services .main-home-image img,
.specialization .main-home-image img,
.team-approach .main-home-image img,
.types-of-therapy .main-home-image img {
  width: 100% !important;
}

.family-therapy .grid-4-item .benefits-item {
  border-bottom: 1px solid #E0E2E7;
}

.family-therapy .specialization-section.our-service-main .benefits-group .benefits-item:nth-child(4),
.family-therapy .benefits-item:nth-child(6) {
  border-bottom: 0
}

.family-therapy .grid-4-item .benefits-group .benefits-item:nth-child(4) {
  padding-left: 0;
}

.family-therapy .grid-4-item .benefits-group .benefits-item:nth-child(5) {
  padding: 28px;
  border-left: 1px solid #E0E2E7;
}

.family-therapy .specialization-section .benefits-group .benefits-item:nth-child(3) {
  border-right: 0;
}

.family-therapy .specialization-section .benefits-group .benefits-item:last-child {
  border-top: 0;
}

.contact .comon-heading-color h1 {
  padding-right: 26%;
  line-height: 41px;
  margin-bottom: 18px;
  font-size: 32px;
}

.contact .description-start h2 {
  margin-bottom: 14px;
  color: var(--body-theme-color);
  font-size: 18px;
}

.contact .where-to-start .icon-info {
  margin-top: 10px;
}

.post-type-archive-therapist .therapist-search-form h1 {
  color: var(--body-bg-white);
  font-weight: 600;
  font-size: 32px;
}

.footer-info strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--body-secondary-color);
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
}

.home .cta-section .main-button-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-form-soyouneed form .row .input-field input,
.contact-form-soyouneed form .row .input-field select {
  height: 42px;
}

.contact-form-soyouneed form .row .input-field textarea {
  height: 120px;
}

.adhd-services .hero-section .main-button-group,
.hero-section .main-button-group,
.pricing-insurance-section .main-button-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.adhd-services .hero-section .main-button-group>a,
.hero-section .main-button-group>a,
.pricing-insurance-section .main-button-group>a {
  padding: 13px 27px;
  flex-shrink: 0;
  font-weight: 600;
}

.hero-section .main-button-group>a.comon-button-1 {
  border: 1px solid transparent;
}

.adhd-services .cta-section .main-button-group,
.adhd-assessment-diagnosis .cta-section .main-button-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.adhd-services .cta-section .main-button-group>a,
.adhd-assessment-diagnosis .cta-section .main-button-group>a {
  min-width: 270px;
}

.faq-section .accordion-body ol li {
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: var(--body-pera-color);
  margin-bottom: 8px;
  list-style: decimal;
}

.faq-section .accordion-body ol {
  padding-left: 20px;
}

.home section.faq-section,
.home section.cta-section,
.adhd-services section.faq-section {
  padding-top: 0 !important;
}

.ADHD-faq-section .accordion-body ul>li {
  list-style: disc;
  margin-bottom: 7px;
}

.ADHD-faq-section .accordion-body ul {
  padding-left: 16px;
}

.ADHD-faq-section .container .row .col-lg-6:first-child {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.hero-section {
  position: relative;
}

/* .hero-section .breadcamp-wrappr{
  position: absolute;
  top: 0px;
  left: 12%;
  content: "";
} */
.soyouneed-service-option .box-service-option {
  display: flex;
  flex-direction: column;
}

.soyouneed-service-option .box-service-option a {
  margin-top: auto;
  padding-top: 20px;
}

/* 11-05-2026 */
.pricing-card span.sub-heading {
  background: #E5F5FD;
  padding: 8px 16px;
  border-radius: var(--body-radius);
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
}

.medication-management-item.pricing-card p {
  font-size: 14px;
  line-height: 1.6;
}

.pricing-card .list-investment {
  border-top: 1px solid #E0E2E7;
  border-bottom: 1px solid #E0E2E7;
  padding: 20px 0px 6px 0px;
}

.pricing-card .list-investment h4 {
  font-size: 40px;
}

.pricing-card .list-investment h4>span {
  font-size: 14px;
}

.pricing-card .list-investment ul li span>i {
  color: var(--body-theme-color);
  font-size: 20px;
  font-weight: 700;
}

/* Remove Bootstrap default icon */
.pricing-card .accordion-button::after {
  display: none;
}

/* Base Button */
.pricing-card .accordion-button {
  position: relative;
  box-shadow: none !important;
}

/* Default Closed State = PLUS */
.pricing-card .accordion-button::before {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1;
  transition: 0.3s;
}

/* Open State = MINUS */
.pricing-card .accordion-button:not(.collapsed)::before {
  content: "−";
}

.pricing-card button:not(.collapsed)::before {
  content: "-";
}

.pricing-card .how-you-receive p {
  margin-bottom: 20px;
}

.pricing-card .how-you-receive ul li {
  font-size: 14px;
  background: #E5F5FD;
  border-radius: 4px;
  font-weight: 600;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.pricing-card .how-you-receive ul li>span {
  height: 20px;
}

.pricing-card .how-you-receive ul li>span i {
  font-size: 20px;
  font-weight: initial;
}

.pricing-card .accordion .accordion-item {
  border-top: transparent !important;
}

.pricing-card .accordion .accordion-item .accordion-header button {
  font-size: 14px;
  background: #E5F5FD;
  border-radius: 4px;
  font-weight: 600;
  padding: 12px 8px;
  line-height: normal;
}

.pricing-card .accordion .comon-button-1 {
  text-align: center;
  margin: 16px 0;
}

.pricing-card .pera-medication-item {
  min-height: fit-content;
}

.pricing-card .how-you-receive h4 {
  margin-bottom: 16px;
}

.medication-management-section .ft-note p {
  font-size: 14px;
  color: #4D4D4D;
  line-height: 24px;
}

.medication-management-section .ft-note p>a {
  color: var(--body-theme-color);
}

.medication-management-section .ft-note p.prefr-info {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}

.medication-management-section .ft-note {
  text-align: center;
  margin-top: 32px;
}

.pricing-card .list-investment ul li {
  gap: 7px;
}

.consultation-commitm-sec .medication-management-item {
  max-width: 890px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
}

.consultation-commitm-sec .medication-management-item .left h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.consultation-commitm-sec .medication-management-item .left h4 {
  margin-bottom: 30px;
  font-size: 14px;
}

.consultation-section.consultation-commitm-sec .pera-medication-item p {
  margin-bottom: 12px;
  font-size: 16px;
  color: #4D4D4D;
}

.consultation-commitm-sec .medication-management-item .right h3 {
  font-size: 40px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.consultation-commitm-sec .medication-management-item .right h3>span {
  font-size: 14px;
}

.consultation-commitm-sec .medication-management-item .right ul li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.consultation-commitm-sec .medication-management-item .right ul li>span {
  height: 20px;
  display: inline-block;
}

.consultation-commitm-sec .medication-management-item .right ul li>span i {
  color: var(--body-theme-color);
  font-size: 20px;
  font-weight: 700;
}

.consultation-commitm-sec .medication-management-item .right .comon-button-1 {
  margin-top: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.medicatn-supprt-point .starting-point-item ul li:last-child {
  margin-bottom: 0;
}

.medicatn-supprt-point .ft-note {
  margin-top: 20px;
  text-align: center;
}

.medicatn-supprt-point .ft-note .comon-button-1 {
  display: inline-block;
}

.choose-your-startingPoint.medicatn-supprt-point .ft-note .comon-button-1 {
  text-transform: initial;
}

.subscriptn-guidelines .accordion-item .accordion-header button {
  font-weight: 600;
}

.subscriptn-guidelines .accordion .accordion-item .accordion-header .iconn {
  margin: 0px 8px 5px 0px;
}

.adhd-medication-support .soyouneed-service-option .box-service-option {
  margin: 0 8px;
}

.adhd-medication-support .soyouneed-service-option.yourself-section .box-service-option {
  margin: 0 4px;
}

.adhd-medication-support .cta-section .main-button-group {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.medication-management-section .pricing-card .accordion-item .accordion-body {
  margin-top: 10px;
}

/* Table Styling */
.pricing-therapy-coaching .table-wrapper {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 848px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.pricing-therapy-coaching .ft-note {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 27px;
}

.pricing-therapy-coaching .pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-therapy-coaching .pricing-table thead {
  background: var(--body-theme-color);
  color: white;
}

.pricing-therapy-coaching .pricing-table th,
.pricing-therapy-coaching .pricing-table td {
  padding: 20px 30px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-therapy-coaching .service-name {
  font-weight: bold;
}

.pricing-therapy-coaching .price-range {
  color: var(--body-theme-color);
  font-weight: 600;
}

.pricing-therapy-coaching {
  background: var(--body-bg-theme);
}

.adhd-coaching .our-assesment-process-section .main-button-group,
.pricing-therapy-coaching .main-button-group,
.adhd-coaching .cta-section .main-button-group {
  justify-content: center;
  gap: 8px;
}

.subscriptn-guidelines .accordion-flush>.accordion-item {
  border-bottom: 1px solid #E0E2E7;
}

.subscriptn-guidelines .accordion .accordion-item:first-child {
  border-top: 0 !important;
}

.family-therapy .hero-section .hero-heading-group .main-button-group,
.individual-therapy .hero-section .hero-heading-group .main-button-group,
.couples-therapy .hero-section .hero-heading-group .main-button-group {
  flex-wrap: wrap;
  align-items: normal;
}

.family-therapy .hero-section .hero-heading-group.text-center,
.individual-therapy .hero-section .hero-heading-group.text-center,
.couples-therapy .hero-section .hero-heading-group.text-center {
  text-align: left !important;
}

.adhd-medication-support .medication-management-section .ft-note p>span {
  display: block;
}

.find-therapist-section .provider-mobile {
  display: none;
}

.find-therapist-section .provider-mobile .provider-mb-search,
.find-therapist-section .provider-mobile .provider-mb-filters-btn {
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
  min-height: 52px;
}

.find-therapist-section .provider-mobile .provider-mb-filters-btn {
  font-size: 15px;
  display: flex;
  justify-content: center;
  gap: 7px;
  outline: none;
  border: none;
  color: var(--body-theme-color);
  font-weight: 600;
}

.find-therapist-section .provider-mobile .provider-mb-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  box-shadow: none !important;
}

.find-therapist-section .provider-mobile .provider-mb-search .provider-mb-search-btn {
  background: #0b8dbb;
  color: #fff;
  border: none;
  border-radius: 50px;
  width: 38px;
  height: 38px;
  font-size: 25px;
  display: flex;
  line-height: 55px;
  align-items: center;
  justify-content: center;
  transition: var(--body-transition);
}

.find-therapist-section .provider-mobile .provider-mb-search .provider-mb-search-btn:hover {
  background: var(--body-theme-color);
}

.blog-details-page .blog-left-panl table thead tr th,
.blog-details-page .blog-left-panl table tbody tr td {
  border: 1px solid var(--body-theme-color);
  color: var(--body-theme-color);
}

/* blog-search */
.blog-search-wrapper {
  max-width: 420px;
  margin: 30px auto 0;
  position: relative;
}

.blog-search-wrapper input {
  width: 100%;
  height: 48px;
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  padding: 0 20px 0 50px;
  outline: none;
  font-size: 14px;
  background: #fff;
}

.individual-therapy .pricing-therapy-coaching {
  background: #fff;
}

.blog-search-wrapper button {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.blog-search-wrapper svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-suggestions {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 999;
  overflow: hidden;
  display: none;
}

.search-suggestions a {
  display: block;
  padding: 14px 18px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.search-suggestions a:last-child {
  border-bottom: none;
}

.search-suggestions a:hover {
  background: #f7f7f7;
}

.hero-section .breadcamp-wrappr {
  padding-left: 32px;
}

/* .adhd-medication-support .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed, */
.adhd-medication-support .pricing-card .accordion .accordion-item .accordion-header button {
  padding-right: 20px;
}

.adhd-coaching .benefits-section.pb-0 {
  padding-bottom: 100px !important;
}

.adhd-coaching .cta-section {
  padding-top: 0;
}

.hero-section .row .col-xl-6 .hero-heading-group.text-center {
  text-align: left !important;
}

.our-services .hero-section.our-service-banner .main-home-image,
.specialization .hero-section.our-service-banner .main-home-image {
  border-radius: 20px;
  overflow: hidden;
}

.cta-section .cta-bg-overlay .main-button-group>a {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.grid-4-item .benefits-group .benefits-item:nth-child(3),
.grid-4-item .benefits-group .benefits-item:nth-child(6) {
  padding-right: 22px;
}

.grid-4-item .benefits-group .benefits-item:nth-child(4) {
  padding-left: 22px;
}

/* comparison-mb-only */
.comparison-mb-only .compare-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--body-bg-white);
}

.comparison-mb-only .compare-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: space-between;
}

.comparison-mb-only .button-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.comparison-mb-only .comp-btn {
  border: 1px solid #4989A2;
  background: transparent;
  color: var(--body-bg-white);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  transition: .3s;
}

.comparison-mb-only button.comp-btn:focus:not(:focus-visible) {
  outline: 1px solid var(--body-bg-white);
}

.comparison-mb-only button.comp-btn:focus {
  outline: 1px solid var(--body-bg-white);
}

.comparison-mb-only .comp-btn.active {
  background: #4989A2;
  color: var(--body-bg-white);
  border: 1px solid var(--body-bg-white);
}

.comparison-mb-only .card-custom {
  border: .1px solid #e1e3e863;
  background: #004E66;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.comparison-mb-only .section-padding {
  padding: 16px;
  border-bottom: .1px solid #e1e3e863;
}

.comparison-mb-only .title-text {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--body-bg-white);
}

.comparison-mb-only .sub-label {
  opacity: .7;
  font-weight: 400;
  color: #94A3A8;
}

.comparison-mb-only .body-text {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  color: var(--body-bg-white);
}

.comparison-mb-only .highlight-yellow {
  color: var(--body-secondary-color);
}

.comparison-mb-only .placeholder-text {
  padding: 12px;
  text-align: center;
  font-size: 12px;
  opacity: .6;
  color: #94A3A8;
  border-bottom: .1px solid #e1e3e863;
}

.comparison-mb-only .card-footer-custom {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.comparison-mb-only .arrow-icon {
  border: solid var(--body-secondary-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-135deg);
  transition: .3s;
}

.collapsed .arrow-icon {
  transform: rotate(45deg);
}

.comparison-mb-only .data-bpd,
.comparison-mb-only .data-adhd,
.comparison-mb-only .data-addiction {
  display: none;
}

.show-bpd .data-bpd {
  display: block;
}

.show-adhd .data-adhd {
  display: block;
}

.show-addiction .data-addiction {
  display: block;
}

.comparison-mb-only .card-footer-custom>span {
  color: var(--body-bg-white);
  font-size: 12px;
}

.comparison-mb-only {
  display: none;
  visibility: hidden;
}

.specialization .benefits-section.bg-section.specialists-section .benefits-item:nth-child(4) {
  padding-right: 0px;
}

.specialization .benefits-section.bg-section.specialists-section .benefits-item:nth-child(3) {
  padding-right: 22px;
}

.bpd-therapist .faq-section,
.npd-therapy .faq-section,
.anger-management .faq-section,
.adult-asd-autism .faq-section,
.trauma-cptsd .faq-section,
.addiction-therapy .faq-section,
.adhd .faq-section,
.grief-therapist .faq-section {
  padding-top: 0 !important;
}

.bpd-therapist .soyouneed-service-option.inner-specialization-img .box-service-option,
.npd-therapy .soyouneed-service-option.inner-specialization-img .box-service-option,
.adult-asd-autism .soyouneed-service-option.inner-specialization-img .box-service-option,
.trauma-cptsd .soyouneed-service-option.inner-specialization-img .box-service-option,
.addiction-therapy .soyouneed-service-option.inner-specialization-img .box-service-option,
.adhd .soyouneed-service-option.inner-specialization-img .box-service-option,
.grief-therapist .soyouneed-service-option.inner-specialization-img .box-service-option {
  margin: 0 8px;
}

/* .adhd-medication-support .faq-section{
  padding-top: 0;
} */
.partnership-content-section .col-xl-6:last-child p {
  margin-bottom: 10px !important;
}

.team-approach .our-assesment-process-section.bg-section.team-and-approach .assesment-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
}

.team-approach .our-assesment-process-section.bg-section.team-and-approach .content-assesment-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.team-approach .our-assesment-process-section.bg-section.team-and-approach .content-assesment-info p {
  flex-grow: 1;
}

.individual-therapy .cta-section .cta-bg-overlay .comon-heading h2 {
  max-width: 600px;
}

.family-therapy .cta-section .cta-bg-overlay .comon-heading h2 {
  max-width: 700px;
}

.family-therapy .pricing-therapy-coaching,
.couples-therapy .pricing-therapy-coaching {
  background-color: transparent;
}

.benefits-section.specialization-section .benefits-group .benefits-item:nth-child(4) {
  padding-right: 22px;
}

.pricing-therapy-coaching p.pricing-box-para {
  font-style: normal;
  font-size: 15px;
  line-height: 27px;
  color: #4D4D4D;
  padding: 16px;
  border-radius: 8px;
  background: #F5F5F5;
  max-width: 700px;
  font-weight: 500;
}

.pricing-therapy-coaching p.pricing-box-para>a,
.pricing-therapy-coaching p.ft-note>a {
  font-weight: 600;
  color: var(--body-secondary-color);
}

#subscriptionSection .subscription-content-information {
  margin-top: 20px;
}

.integrate-section .integrate-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.integrate-group .integrate-item .int-num span {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--body-secondary-color);
}

.integrate-group .integrate-item .int-contentInfo h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.integrate-group .integrate-item .int-contentInfo p {
  margin-bottom: 0;
}

.integrate-group .integrate-item {
  display: flex;
  gap: 20px;
}

.pricing-insurance-section .text-start .note-box {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
  border-radius: 4px;
  background: #f2f6f6;
  border-left: 3px solid var(--body-theme-color);
}

.pricing-insurance-section .text-start .note-box>p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 22px;
}

.pricing-insurance-section .text-start .note-box>p strong {
  color: var(--body-theme-color);
}

.faq-section .accordion-body ul li {
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: var(--body-pera-color);
  margin-bottom: 8px;
  list-style: disc;
}

.faq-section .accordion-body ul {
  margin: 0px 0px 20px 20px;
}

.description-start strong {
  letter-spacing: .2px;
  margin-bottom: 10px;
  display: inline-block;
}

.pricing-therapy-coaching .pricing-table .price-range {
  color: var(--body-secondary-color);
}

.hero-section .breadcamp-wrappr.parent {
  padding: 0 !important;
  margin-bottom: 30px;
}

.breadcamp-wrappr.parent .breadcrumb {
  justify-content: center;
}

.our-approach .our-assesment-process-section.bg-section.team-and-approach .content-assesment-info p {
  min-height: auto;
}

.our-approach .hero-section .main-home-image img {
  width: 100% !important;
  border-radius: 20px;
}
.our-approach .hero-section .main-home-image img.team-approach-banner-mbonly{
  display: none !important;
}
.inner-therapist .profile-certifications-sec .sidebar-content-wrap .inner-wrap {
  margin-bottom: 0;
}

.inner-therapist .profile-certifications-sec .sidebar-content-wrap .inner-wrap img {
  margin-right: 10px;
}

/* .types-of-therapy .hero-section .main-home-image img,
.specialization .hero-section .main-home-image img,
.our-approach .hero-section .main-home-image img{
  aspect-ratio: 1180 / 420;
} */

.our-approach .focused-expertise.benefits-section.grid-4-item .benefits-group .benefits-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.our-approach .focused-expertise.benefits-section.grid-4-item .benefits-group .benefits-item p {
  flex-grow: 1;
}

.our-approach .focused-expertise.benefits-section.grid-4-item .benefits-group .benefits-item .find-link {
  margin-top: 0;
  padding-top: 10px;
}

.footer-section .row .ft-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  padding-left: 100px;
}

.footer-info.ft-loction ul li,
.footer-info.ft-loction ul li>a {
  display: flex;
  align-items: self-start;
  gap: 5px;
}
.footer-info.ft-loction ul li>a {
  margin: 0;
}
.footer-section .copyright-bar .copyright-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 32px;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-section .copyright-bar .copyright-wrapper {
  border-top: 1px solid #095E73;
}

.newsletter-section .right-item-contact form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #E0E2E7;
  border-radius: 99px;
  font-size: 15px;
  outline: none;
  background-color: var(--body-bg-white);
}

.newsletter-section .right-item-contact form input:focus {
  border: 1px solid var(--body-theme-color);
  box-shadow: 0px 3px 11px #004e66;
}

.newsletter-section .right-item-contact form {
  display: flex;
  gap: 12px;
}

.newsletter-section .right-item-contact button {
  background: var(--body-theme-color);
  padding: 14px 32px;
  color: var(--body-bg-white);
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--body-transition);
}
.newsletter-section .right-item-contact button:hover{
  color: var(--body-bg-white);
  background: var(--body-secondary-color);
}
.newsletter-section .right-item-contact .privacy-text {
  font-size: 12px;
  color: #7a8889;
  line-height: 1.5;
  margin-top: 20px;
}

.newsletter-section .container .row {
  align-items: center;
}

.types-of-therapy .hero-section .main-home-image img {
  border-radius: 20px;
}

/* .menu-header .menu>ul>li>a i{
  margin-left: 6px;
} */
.newsletter-section {
  padding: 80px 0;
}

.adhd-assessment-diagnosis .newsletter-section,
.adhd-medication-support .newsletter-section,
.adhd-coaching .newsletter-section,
.home .newsletter-section {
  padding-top: 0;
}

.hero-section .col-xl-6 p:first-child {
  margin-bottom: 10px;
}

.types-of-therapy .benefits-section.grid-4-item .benefits-group .benefits-item,
.individual-therapy .benefits-section.grid-4-item .benefits-group .benefits-item,
.couples-therapy .benefits-section.Specialized-carrer .benefits-group .benefits-item,
.family-therapy .benefits-section.grid-4-item .benefits-group .benefits-item {
  display: flex;
  flex-direction: column;
}

.types-of-therapy .benefits-section.grid-4-item .benefits-group .benefits-item>p,
.individual-therapy .benefits-section.grid-4-item .benefits-group .benefits-item>p,
.couples-therapy .benefits-section.Specialized-carrer .benefits-group .benefits-item>p,
.family-therapy .benefits-section.grid-4-item .benefits-group .benefits-item>p {
  flex-grow: 1;
}

.footer-icon-brand li>a img {
  height: 26px;
  border-radius: 5px;
  max-width: 100%;
}

.footer-section .footer-icon-brand {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.copyright-wrapper .right-info .social-links a:hover svg path {
  fill: var(--body-secondary-color);
  transition: var(--body-transition);
}

.footer-icon-brand li:first-child>a img {
  height: 36px;
}
.our-assesment-process-section .assesment-item .note-description>ul>li{
  font-size: 15px;
  line-height: 24px;
}
.adhd-assessment-diagnosis .our-assesment-process-section .assesment-item .note-description>ul>li,
.adhd-coaching .our-assesment-process-section .assesment-item .note-description>ul>li{
  list-style: disc;
  margin-left: 15px;
}
.archive footer .newsletter-section,
.therapist .newsletter-section,
.inner-therapist .newsletter-section{
  padding-top: 0;
}

@media (min-width: 901px) {
  .menu-header .menu ul.menu-main li>a i {
    padding-left: 4px;
  }

  /* Force the item to hide instantly if the attribute is removed or explicitly unset */
  .menu-item-has-children[data-force-open="false"]>.sub-menu.mega-menu,
  .menu-item-has-children[data-force-open="false"]>div.sub-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    margin: 0;
  }

  /* Sync layout attributes to ensure the dropdown responds directly to toggle-close states */
  .menu-item-has-children[data-force-open="true"]>.sub-menu.mega-menu,
  .menu-item-has-children[data-force-open="true"]>div.sub-menu {
    /* display: block !important; */
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* responsive css start */
@media (min-width: 1921px) and (max-width: 3200px) {
  .hero-section .breadcamp-wrappr {
    left: 5.5%;
  }
}

@media screen and (min-width: 1600px) {

  .main-home-image img {
    width: 100%;
  }

  .digonis-pages .main-home-image img {
    width: 80%;
  }

  .medication-support-section .main-home-image img {
    width: 85%;
  }
}

@media (min-width: 1501px) and (max-width: 1599px) {
  .hero-section .breadcamp-wrappr {
    left: 8%;
  }
}

@media screen and (max-width: 1500px) {
  .footer-section .row .ft-info-grid {
    padding-left: 40px;
  }

  .trauma-cptsd .hero-section .row,
  .grief-therapist .hero-section .row {
    display: flex;
    align-items: stretch !important;
  }

  .hero-section .breadcamp-wrappr {
    left: 8.5%;
  }

  .menu-header .item-left {
    flex: 0 0 16%;
  }

  .menu-header .item-center {
    flex: 0 0 64%;
    text-align: center;
  }

  .menu-header .item-right {
    flex: 0 0 20%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .menu-header .menu>ul>li>a {
    font-size: 14px;
  }

  /* .menu-header .menu>ul>li {
    padding: 0 14px;
  } */

}

@media screen and (max-width: 1366px) {

  .main-home-image img {
    width: 100% !important;
  }

  .cta-section .cta-bg-overlay {
    padding: 150px 100px;
  }
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .adult-asd-autism .hero-section .row>[class*="col-"] .main-home-image {
    height: 100%;
  }

  .adult-asd-autism .hero-section .row {
    display: flex;
    align-items: stretch !important;
  }
}

@media (min-width: 1200px) and (max-width: 1366px) {

  .adhd-services .journey-section .assesment-item .content-assesment-info {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .adhd-services .journey-section .assesment-item .pera {
    flex: 1;
  }

  .adhd-services .journey-section a.comon-button-1 {
    padding: 12px 52px;
  }
}

@media (min-width: 992px) and (max-width: 1365px) {
  .hero-section .breadcamp-wrappr.parent {
    margin-bottom: 0px;
  }

  .specialization .hero-section .breadcamp-wrappr.parent {
    margin-bottom: 26px;
  }

  .hero-section .hero-heading-group {
    padding: 16px;
    margin: 16px;
  }

  .our-services .hero-section .hero-heading-group,
  .specialization .hero-section .hero-heading-group,
  .team-approach .hero-section .hero-heading-group {
    padding: 0;
    margin: 0;
  }

  .hero-section .breadcamp-wrappr {
    left: 44px;
  }
}

/* @media screen and (max-width: 1360px) {
  .hero-section .breadcamp-wrappr {
    left: 12px !important;
  }
} */
@media screen and (max-width: 1200px) {
  .making-sense-section .container .row .col-xl-6 {
    width: 50%;
  }

  .hero-section .breadcamp-wrappr {
    position: static;
    padding-left: 32px;
  }

  /* .benefits-group {
    grid-template-columns: 1fr;
  } */


  /* .benefits-item, */
  /* .Specialized-carrer .benefits-item,
  .specialization-section .benefits-item {
    border: none;
    border-bottom: 1px solid #E0E2E7 !important;
    padding: 20px 0px;
  } */
  .recognizing-section .container .row .col-xl-4 {
    width: 33.333%;
  }

  .footer-section .row .ft-info-grid {
    padding-left: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .home .contact-us-section .contact-form-soyouneed {
    margin-left: 0;
  }

  .blog-details-page .col-lg-9 {
    width: 70%;
  }

  .blog-details-page .col-lg-3 {
    width: 30%;
  }

  .menu-header .item-left {
    flex: 0 0 12%;
  }

  .menu-header .item-center {
    flex: 0 0 70%;
    text-align: center;
  }

  .menu-header .item-right {
    flex: 0 0 18%;
  }

  .types-of-therapy .hero-section .hero-heading-group {
    padding-bottom: 0;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .menu-header .item-left {
    flex: 0 0 16%;
  }

  .menu-header .item-center {
    flex: 0 0 70%;
    text-align: center;
  }

  .menu-header .header-item.item-center .menu>ul>li {
    padding: 0 10px;
  }

  .menu-header .item-right {
    flex: 0 0 14%;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .trauma-cptsd .soyouneed-service-option.yourself-section .row .col-lg-4 {
    width: 25%;
  }

  .specialization .benefits-section.bg-section.specialists-section .benefits-group {
    grid-template-columns: repeat(auto-fit, minmax(200px, 4fr));
  }

  .specialization .soyouneed-service-option .container .row .col-lg-4 {
    width: 25%;
  }

  .footer-section .container .row .col-xl-4 {
    width: 100%;
  }

  .footer-section .row .col-xl-4 .footer-info {
    padding-right: 0;
  }

  .footer-section .container .row .col-xl-2 {
    width: 20%;
  }
}

@media (min-width: 651px) and (max-width: 1199px) {

  .bpd-therapist .soyouneed-service-option.yourself-section .row .col-lg-3,
  .npd-therapy .soyouneed-service-option.yourself-section .row .col-lg-4 {
    width: 33.333%;
  }
}

@media (min-width: 651px) and (max-width: 1024px) {
  .trauma-cptsd .soyouneed-service-option.yourself-section .row .col-lg-4 {
    width: 50%;
  }

  .recognizing-section .container .row .col-xl-4 {
    width: 33.333%;
  }

  .footer-section .container .row .col-xl-4 {
    width: 100%;
  }

  .footer-section .row .col-xl-4 .footer-info {
    padding-right: 0;
  }

  .adhd-services .benefits-section .benefits-group,
  .benefits-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 651px) and (max-width: 991px) {
.archive .therapist-results .therapist-card{
    height: auto;
  }
  .bpd-therapist .soyouneed-service-option.inner-specialization-img .box-service-option,
  .npd-therapy .soyouneed-service-option.inner-specialization-img .box-service-option,
  .anger-management .soyouneed-service-option.inner-specialization-img .box-service-option,
  .adult-asd-autism .soyouneed-service-option.inner-specialization-img .box-service-option,
  .trauma-cptsd .soyouneed-service-option.inner-specialization-img .box-service-option,
  .addiction-therapy .soyouneed-service-option.inner-specialization-img .box-service-option,
  .adhd .soyouneed-service-option.inner-specialization-img .box-service-option,
  .grief-therapist .soyouneed-service-option.inner-specialization-img .box-service-option {
    margin: 0 4px;
  }

  .adhd-coaching .soyouneed-service-option .row .col-lg-6,
  .adhd-medication-support .soyouneed-service-option .row .col-lg-6,
  .adhd-assessment-diagnosis .soyouneed-service-option .row .col-lg-6 {
    width: 50%;
  }

  .adhd-coaching .soyouneed-service-option .row .col-lg-6 .box-service-option,
  .adhd-medication-support .soyouneed-service-option .row .col-lg-6 .box-service-option,
  .adhd-assessment-diagnosis .soyouneed-service-option .row .col-lg-6 .box-service-option {
    margin: 0 4px;
  }
}

@media (max-width: 1024px) {
  .adhd-services .our-assesment-process-section.support-lifestyle.journey-section a.comon-button-1{
    padding: 13px 30px;
  }
  .family-therapy .specialization-section .benefits-group .benefits-item:nth-child(5) {
    border-left: 0;
  }

  .family-therapy .grid-4-item .benefits-group .benefits-item:nth-child(4) {
    padding-left: 20px;
  }

  .footer-section .row .ft-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-section .container .row .col-xl-4 {
    width: 100%;
  }

  .footer-section .row .col-xl-4 .footer-info {
    padding-right: 0;
  }

  .newsletter-section {
    padding: 64px 0;
  }

  .footer-section {
    padding: 64px 0px 0;
  }

  .family-therapy .soyouneed-service-option.yourself-section,
  .couples-therapy .soyouneed-service-option.yourself-section,
  .individual-therapy .soyouneed-service-option.yourself-section {
    padding-bottom: 0 !important;
  }

  .specialization .benefits-section.bg-section.specialists-section .benefits-item:nth-child(3) {
    border-right: 0;
  }

  .specialization .benefits-section.bg-section.specialists-section .benefits-group {
    grid-template-columns: 1fr 1fr;
  }

  section.find-therapist-section {
    padding: 80px 0 20px !important;
    margin-bottom: 120px;
  }

  .recognizing-section .container .row .col-xl-4 {
    width: 50%;
  }

  .benefits-section.grid-4-item .benefits-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-section.grid-4-item .benefits-group .benefits-item {
    border: 0;
    border-top: 1px solid #E0E2E7 !important;
    border-bottom: 1px solid transparent !important;
  }

  footer.footer-section .verfied-by img {
    height: 60px;
  }

  .hero-section .row .col-lg-12:first-child {
    padding: 0 24px;
  }

  .footer-section .container {
    padding: 0 24px;
  }

  .adhd-coaching .benefits-section.pb-0 {
    padding-bottom: 64px !important;
  }

  .benefits-item:nth-child(odd) {
    padding: 20px;
    padding-left: 0 !important;
  }

  .benefits-item:nth-child(even) {
    padding: 20px;
    padding-right: 0 !important;
  }

  .benefits-item,
  .benefits-item:nth-child(1) {
    border: 0;
    border-top: 1px solid #E0E2E7 !important;
    border-bottom: 1px solid transparent !important;
  }

  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(1),
  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(2) {
    border-top: 1px solid transparent !important;
  }

  section.contact-us-section .container,
  .challenges-section .container,
  .soyouneed-service-option.yourself-section .container,
  .cta-section .container,
  .faq-section .container,
  .footer-section .container,
  .making-sense-section .container,
  .recognizing-section .container,
  .system-processing-section .container {
    padding: 0 24px;
  }

  section {
    padding: 64px 0px !important;
  }

  footer.footer-section {
    padding-top: 64px;
  }

  footer.footer-section .copyright-bar {
    margin-top: 64px;
  }

  .personality-section .container,
  .real-support-section .container,
  section .container,
  .newsletter-section .container {
    max-width: 1300px;
    padding-left: 24px;
    padding-right: 24px;
  }

}

@media (min-width: 901px) and (max-width: 1199px) {
  .our-approach .our-assesment-process-section.team-and-approach .row .col-lg-4{
    width: 33.333%;
  }
  .family-therapy .carrer-the-meets-section .col-xl-7,
  .family-therapy .carrer-the-meets-section .col-xl-5 {
    width: 50%;
  }

  .adhd-assessment-diagnosis .our-assesment-process-section .row .col-lg-4,
  .team-approach .our-assesment-process-section .row .col-lg-4 {
    width: 33.333%;
  }

  .adhd-assessment-diagnosis .our-assesment-process-section .assesment-item .content-assesment-info {
    padding: 0 0;
  }

  .adhd-assessment-diagnosis .our-assesment-process-section .assesment-item .content-assesment-info>p,
  .team-approach .our-assesment-process-section.bg-section.team-and-approach .content-assesment-info p {
    font-size: 14px;
    line-height: 23px;
  }

  .hero-section .row .col-lg-12,
  .hero-section .row .col-xl-6,
  .partnership-content-section .container .row .col-xl-6,
  .adhd-assessment-diagnosis .pricing-insurance-section .container .row .col-lg-6 {
    width: 50%;
  }

  .hero-section .row .hero-heading-group h1 {
    font-size: 27px;
  }

  .hero-section .row {
    display: flex;
    align-items: stretch !important;
  }

  .home .hero-section .row {
    align-items: center !important;
  }

  .hero-section .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
  }

  .hero-section .row>[class*="col-"] .main-home-image img {
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-section .row>[class*="col-"] .main-home-image {
    height: 100%;
  }

  .types-of-therapy .hero-section .row>[class*="col-"] .main-home-image img {
    border-radius: 20px;
  }
}

/*responsive*/
@media(max-width: 991px) {
  .menu-header .header-item.item-center .menu>ul>li {
    padding: 0 7px;
  }

  .family-therapy .carrer-the-meets-section .col-xl-5 .comon-heading {
    text-align: left;
  }

  .adhd-medication-support .medication-management-section .container .row .col-lg-4 {
    width: 33.333%;
  }

  .carrer-the-meets-section .container .row .col-xl-7,
  .carrer-the-meets-section .container .row .col-xl-5,
  .anger-management .soyouneed-service-option.yourself-section .row .col-lg-3,
  .trauma-cptsd .soyouneed-service-option.yourself-section .row .col-lg-4 {
    width: 50%;
  }

  .carrer-the-meets-section .container .row .col-xl-7.order-2,
  .carrer-the-meets-section .container-fluid .row .col-xl-7.order-2 {
    order: 1 !important;
  }

  .carrer-the-meets-section .container .row .col-xl-5.order-1,
  .carrer-the-meets-section .container-fluid .row .col-xl-5.order-1 {
    order: 2 !important;
  }

  .adhd-assessment-diagnosis .ADHD-faq-section .col-lg-6,
  .adhd-medication-support .beyond-section .col-lg-6 {
    width: 50%;
  }

  .contact-us-section .contact-form-soyouneed {
    margin-left: 0;
  }

  .home .hero-section .hero-heading-group.text-center {
    text-align: left !important;
  }

  .family-therapy .specialization-section .benefits-group {
    grid-template-columns: 1fr;
  }

  .family-therapy .grid-4-item .benefits-group .benefits-item:nth-child(5) {
    padding: 20px 0px;
  }

  .adhd-assessment-diagnosis .ADHD-faq-section .row {
    padding: 0 0%;
  }

  .digonis-pages .hero-heading-group,
  .home .hero-section .hero-heading-group {
    padding: 26px 0px !important;
  }

  p.comon-link-text {
    margin-top: 12px;
    margin-bottom: 0 !important;
  }


  /* .digonis-pages {
    padding-bottom: 24px !important;
  } */

  .specialization-section .benefits-group {
    grid-template-columns: 1fr;
  }

  .cta-bg-overlay .comon-heading h2 {
    font-size: 58px;
    width: 100%;
  }

  .our-service-banner .hero-heading-group h1 {
    font-size: 46px;
  }

  .cta-bg-overlay {
    padding: 150px 90px;
  }

  br {
    display: none;
  }



  h1 {
    font-size: 34px;
  }

  .comon-heading-color h1,
  .comon-heading-color h2,
  .comon-heading-color h3 {
    line-height: 1.1;
  }

  .main-home-image img {
    width: 100%;
    margin: 0 auto;
  }

  .home-banner-image .main-home-image img {
    width: 100%;
  }

  section,
  .system-processing-section {
    padding: 45px 0px;
  }

  h2 {
    font-size: 27px;
    font-weight: 700;
  }

  .making-sense-section .comon-heading p:last-child {
    margin-bottom: 0;
  }

  .img-option img {
    /* width: 36px; */
    height: 40px;
    margin-bottom: 14px;
  }

  h3 {
    font-size: 17px;
  }

  .box-service-option p {
    min-height: auto;
  }


  .contact-us-section .comon-heading h2 {
    padding-right: 0;
    margin-bottom: 10px;
    line-height: 28px;
  }

  .footer-info ul li a,
  .footer-info.ft-loction ul li {
    margin-bottom: 8px;
  }

  .content-address a {
    font-size: 15px;
  }

  .footer-info h5 {
    font-size: 17px;
    letter-spacing: 0;
    margin-bottom: 17px;
  }

  .contact-form-soyouneed,
  .where-to-start {
    padding: 25px 15px;
    margin-left: 0;
    margin-top: 0;
  }

  .list-life-challanges {
    margin-top: 0px;
  }

  .cta-bg-overlay,
  .cta-section .cta-bg-overlay {
    padding: 50px 30px;
  }

  .cta-bg-overlay .comon-heading h2 {
    font-size: 26px;
    width: 100%;
    margin: 0 auto 15px;
    line-height: 1.2;
  }

  .cta-bg-overlay .main-button-group {
    margin: 23px auto 0;
  }

  .gapping {
    margin-bottom: 30px;
  }

  .accordion-button {
    padding: 21px 0px;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-info a img {
    width: 140px;
  }

  .verfied-by img {
    height: 57px;
    border-radius: 10px;
  }

  .menu-header {
    padding: 15px 3px;
  }

  header.main-header>.menu-header {
    padding: 15px 0;
  }

  header.main-header>.menu-header .container {
    padding: 0 20px;
  }

  .footer-info {
    padding-right: 0;
  }


  /* footer.footer-section {
    padding: 45px 0px 0 !important;
  } */

  .copyright-bar {
    margin-top: 45px;
  }

  .hero-heading-group span {
    font-size: 13px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    margin-bottom: 13px;
  }

  .hero-heading-group p {
    font-size: 15px;
    margin-bottom: 11px;
  }

  .making-sense-section .comon-heading p,
  .recognizing-section .comon-heading p,
  .content-recognizing-item p {
    font-size: 15px;
  }

  .content-recognizing-item {
    height: auto;
    padding: 17px 17px;
    min-height: auto;
  }

  .content-recognizing-item h3 {
    margin-bottom: 9px;
  }

  .total-assesment-cost {
    padding: 30px 21px;
  }

  .total-assesment-cost span.price-cost {
    font-size: 37px;
    margin-top: 9px;
    margin-bottom: 19px;
    line-height: inherit;
    padding: 0 0 31px;
  }

  .cost-breakdown h3 {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .cost-breakdown ul li .therapist-name-price h4 {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .cost-breakdown ul li {
    margin-bottom: 7px;
  }

  .cost span {
    font-size: 16px;
  }

  .w-75 {
    width: 100% !important;
  }

  .assesment-item {
    padding: 22px 22px;
  }

  .our-assesment-process-section {
    padding-bottom: 45px;
  }

  .ADHD-faq-section .accordion-button {
    padding: 20px 0px;
    font-size: 16px;
  }

  /* .benefits-group, */
  .Specialized-carrer .benefits-group {
    grid-template-columns: 1fr;
  }

  .individual-therapy .Specialized-carrer .benefits-group {
    grid-template-columns: 1fr 1fr;
  }

  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(odd) {
    padding-right: 20px !important;
  }

  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(even) {
    padding-left: 20px;
  }

  .specialization-section .benefits-group {
    grid-template-columns: 1fr;
    margin-top: 0px;
    /* margin-top: 40px; */
  }

  .pricing-insurance-section a.comon-link-text {
    text-align: center !important;
  }

  .Specialized-carrer .benefits-item::before,
  .Specialized-carrer .benefits-item::after {
    display: none;
  }

  .Specialized-carrer .benefits-item:nth-child(2),
  .Specialized-carrer .benefits-item:nth-child(4) {
    padding-left: 0;
  }


  .hero-heading-group h4,
  .hero-heading-group p.hero-sub-heading{
    font-size: 16px;
    line-height: 26px;
  }

  .support-lifestyle .assesment-item {
    padding: 20px 8px 20px;
    box-shadow: 0px 0px 7px rgb(0 0 0 / 8%);
  }

  .cta-bg-overlay .comon-heading p {
    font-size: 16px;
  }

  .servc-section-img .main-home-image img {
    width: 100%;
  }

  .journey-section .assesment-item .pera {
    min-height: auto;
  }

  .medication-management-item,
  .starting-point-item {
    padding: 30px 20px;
    box-shadow: 0px 0px 7px rgb(0 0 0 / 8%);
  }

  .starting-point-item ul {
    margin-top: 24px;
    padding-top: 16px;
  }

  .medication-management-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .medication-management-item p {
    margin-bottom: 23px;
  }

  h4 {
    font-size: 17px;
  }

  .user-challenges {
    margin-top: 0px;
  }

  section.carrer-the-meets-section .comon-heading h3 {
    font-size: 21px;
    line-height: 30px;
  }

  .specialization-section .benefits-group .benefits-item:nth-child(8) {
    border-bottom: 0px !important;
  }

  .hero-section.our-service-banner {
    padding-top: 29px;
  }

  .our-service-banner .hero-heading-group h1,
  .specialization .our-service-banner .hero-heading-group h1 {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 11px;
  }

  .hero-section.our-service-banner .main-home-image {
    margin-top: 0;
  }

  .review-user {
    margin-top: 30px;
  }

  .our-service-banner h3 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 3px;
    text-align: left;
  }

  .our-service-banner .main-button-group {
    margin: 16px auto 0;
    display: table;
    margin-left: 0;
  }

  .our-services .our-service-banner .main-button-group,
  .customize-support .our-service-banner .main-button-group,
  .specialization .hero-section .main-button-group,
  .our-approach .hero-section .main-button-group,
  .types-of-therapy .hero-section .main-button-group {
    display: flex;
    flex-wrap: wrap;
  }

  .our-service-banner p {
    text-align: left;
  }

  .faq-section {
    padding-bottom: 50px;
  }

  a.comon-button-1,
  a.comon-button-2 {
    padding: 13px 21px;
    font-size: 14px !important;
  }

  .support-lifestyle .content-assesment-info h3 {
    font-size: 19px;
    min-height: auto;
    margin-bottom: 11px !important;
  }

  .find-therapist-menu {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    padding: 21px;
    transition: all 500ms ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 40px;
    overflow: auto;
    height: 100vh !important;
  }

  .find-therapist-menu.show {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }

  .find-therapist-menu h3 {
    text-align: center;
    color: var(--body-theme-color);
    margin-bottom: 28px !important;
  }

  .find-therapist-menu input[type="search"] {
    width: 100%;
    height: 54px;
    padding: 9px 14px;
    border: 1px solid #f1f1f1;
    border-radius: 50px;
    outline: none;
    background: #fff;
    box-shadow: 0 6px 12px rgb(24 39 75 / .12), 0 8px 24px rgb(24 39 75 / .08);
    border: 1px solid #dee2e6;
    font-size: 15px;
  }

  .accordion-find-therapist {
    margin-top: 26px;
  }

  .filter-dropdown2 label,
  .filter-group label {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.3s;
    color: var(--bs-accordion-color);
  }

  .filter-dropdown2 label input {
    width: inherit;
    height: 31px;
  }

  .filter-dropdown2,
  .filter-group {
    min-height: auto;
    overflow: auto;
    padding: 13px;
    max-height: max-content;
    background: #fff;
    border: .25px solid gray;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 20px;
  }

  .accordion-button:not(.collapsed) {
    background: transparent !important;
  }

  .pricing-card .accordion .accordion-item .accordion-header button:not(.collapsed) {
    background: #E5F5FD !important;
  }

  .filter-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 121px;
    margin-top: 22px;
  }

  .filter-actions .btn-submit-therapist {
    margin-top: 0px;
  }

  .filter-actions button#clearFilters {
    color: var(--body-theme-hover);
    border: none;
    width: 100%;
    background: transparent;
    font-weight: 500;
    text-transform: lowercase;
    text-decoration: underline;
    padding: 0 0 !important;
  }

  .filter-actions button#clearFilters:first-child {
    text-transform: capitalize;
  }

  .btn-submit-therapist {
    background: var(--body-theme-color);
    color: var(--body-bg-white);
    font-size: var(--body-button-size);
    padding: 12px 29px;
    text-transform: capitalize;
    border-radius: var(--body-radius);
    margin-left: 2px;
    font-weight: 400;
    transition: var(--body-transition);
    border: 1px solid var(--body-theme-color);
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  span.close-icon {
    position: absolute;
    top: 38px;
    z-index: 99;
    left: 25px;
    background: transparent;
    color: #000000;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 23px;
    border-radius: 100%;
    border: 2px solid #737373;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  span.close-icon img {
    width: 10px;
    /* filter: brightness(0.5) invert(1); */
  }

}

@media screen and (max-width: 991px) {
  .family-therapy .benefits-section.grid-4-item .benefits-group .benefits-item:nth-child(even) {
    padding-left: 0px;
  }

  .hero-section .breadcamp-wrappr.parent {
    margin-bottom: 26px;
  }

  .contact-us-section .row .col-lg-5,
  .contact-us-section .row .col-lg-7 {
    width: 50%;
  }

  .addiction-therapy .soyouneed-service-option.yourself-section .row .col-lg-3 {
    width: 50%;
  }

  .cta-section .cta-bg-overlay .main-button-group.flex-column {
    flex-direction: row !important;
  }

  .individual-therapy .Specialized-carrer .benefits-group .benefits-item,
  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(1),
  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(2),
  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(3),
  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(4) {
    border: none;
    border-top: 1px solid #E0E2E7 !important;
    border-bottom: 1px solid transparent !important;
  }

  .our-assesment-process-section.journey-section .container .row .col-lg-4 {
    width: 33.333%;
  }

  .hero-section .breadcamp-wrappr {
    padding-left: 0;
  }

  /* .contact-us-section .container .row .col-lg-5,
  .contact-us-section .container .row .col-lg-7, */
  .adhd-coaching .our-assesment-process-section.support-lifestyle .container .row .col-lg-6 {
    width: 50%;
  }

  .home .soyouneed-service-option .box-service-option {
    margin: 0 4px;
  }

  .home .soyouneed-service-option.yourself-section .box-service-option {
    margin: 0 0px;
  }

  .find-therapist-section .filter-tabs .search-btn {
    width: 48px;
    height: 48px;
  }

  .challenges-section .container .row .col-lg-6 {
    width: 50%;
  }

  .consultation-commitm-sec .medication-management-item .left h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .adhd-medication-support .choose-your-startingPoint .starting-point-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .pricing-card .list-investment h4,
  .consultation-commitm-sec .medication-management-item .right h3 {
    font-size: 30px;
  }

  .consultation-commitm-sec .medication-management-item .right h3 {
    margin-bottom: 20px;
  }

  .consultation-commitm-sec .medication-management-item .left h4 {
    margin-bottom: 14px;
    font-size: 14px;
  }

  /*commit by bibhas */
  .hero-section .breadcamp-wrappr {
    padding-bottom: 0;
  }

  /* .hero-section .breadcamp-wrappr .breadcrumb li>a{
    line-height: 24px;
  } */

  .single-post .psychotherapist_image_content {
    border-bottom: 1px solid transparent;
  }

  .blog-details-page .col-lg-9 {
    width: 100%;
  }

  .blog-details-page .col-lg-3 {
    width: 100%;
  }

  .about .about-us-sec .container .row .image img {
    width: 100%;
  }

  .about .about-us-sec .content-wrap .main-desc {
    max-width: 100%;
  }

  .about section.contact-us-section {
    padding-top: 0;
  }

  /* .main-home-image img {
    width: 100% !important;
  } */

  .family-therapy .hero-section .main-button-group {
    justify-content: center;
    padding-bottom: 15px;
  }

  /* end */
  .our-assesment-process-section.bg-section.team-and-approach .content-assesment-info p {
    min-height: auto;
  }

  .benefits-item {
    padding: 15px 0px;
  }

  /* .grid-4-item .benefits-group .benefits-item:nth-child(4) {
    padding-left: 0;
  } */

  /* .benefits-item, */
  .Specialized-carrer .benefits-item,
  .specialization-section .benefits-item {
    border: none !important;
    border-bottom: 1px solid #E0E2E7 !important;
    padding-right: 0 !important;
  }

  .approaches-section .benefits-item h3 {
    min-height: auto;
  }


  .find-therapist {
    display: block;
    background: #f5f5f5;
    width: 100%;
    padding: 17px 0px;
    position: fixed;
    bottom: 0;
    z-index: 9999;
  }

  .filter-tabs {
    width: 90%;
    height: 66px;
  }

  .filter-btn {
    font-size: 14px;
    padding: 7px 14px;
    position: relative;
  }


  .filter-tabs input {
    font-size: 15px;
  }

  .search-btn {
    width: 138px;
    height: 44px;
    font-size: 21px;
  }

  .filter-dropdown {
    top: 80px;
    /* width: 250px;
    height: 140px; */
  }

  .find-therapist-section,
  .adhd-coaching section.find-therapist-section {
    padding: 69px 0 20px;
    margin-bottom: 80px;
    /* display: none; */
  }

  section.contact-us-section,
  section.challenges-section,
  .therapy-service-option,
  section.cta-section,
  section.faq-section {
    padding-left: 6px;
    padding-right: 6px;
  }

  .pera-medication-item {
    min-height: auto;
  }

  .consultation-section .list-investment ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .consultation-section .how-you-receive p {
    gap: 6px;
    flex-direction: column;
    align-items: start;
  }



  .individual-meets-image .user-challenges {
    margin-top: 0;
    margin: 0 auto;
    display: table;
    text-align: center;
  }

  .personality-section .box-service-option h3 {
    min-height: auto;
  }

  .yourself-section .box-service-option {
    box-shadow: 0px 0px 7px rgb(0 0 0 / 8%);
    padding: 19px 18px;
    /* border-color: #f5f5f5; */
  }

  .inner-specialization-img .img-option img {
    width: 47px;
    margin-bottom: 10px;
  }

  a.find-link {
    gap: 7px;
    font-size: 15px;
    margin-top: 15px;
  }

  a.find-link:hover {
    color: var(--body-secondary-color);
  }

  a.find-link i {
    font-size: 16px;
  }

  .box-service-option h4 {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .box-service-option h3 {
    margin-bottom: 1px;
  }

  .yourself-section .box-service-option h3 {
    margin-bottom: 8px;
  }

  .yourself-section a.find-link {
    margin-top: 15px;
  }

  .testimonial-item {
    min-height: auto;
    /* margin-bottom: 0; */
  }

  .real-support-section .swiper {
    padding: 0px 2px;
  }

  .box-service-option {
    box-shadow: 0px 0px 7px rgb(0 0 0 / 8%);
    padding: 24px 19px;
  }

  /* .main-home-image {
    margin-top: 20px;
  } */

  .main-button-group {
    /* display: inline-block; */
    margin-top: 7px;
    /* text-align: center; */
  }

  .team-approach section.real-support-section {
    padding: 45px 0px;
  }

  .team-approach section.real-support-section .testimonial-item {
    margin-bottom: 0;
  }

  .hero-section .row .col-lg-12:first-child {
    padding: 0 24px;
  }

  .footer-section .container {
    max-width: 1300px;
    padding: 0 24px;
  }
}

/* for mobile menu */
@media screen and (max-width: 900px) {

  /* commit by bibhas */
  .hero-section .main-home-image {
    border-radius: 20px;
    overflow: hidden;
    margin: 0 24px;
  }

  .adhd-assessment-diagnosis .ADHD-faq-section img,
  .adhd-medication-support .beyond-section .col-lg-6:first-child img,
  .making-sense-section .row .col-xl-6:first-child img {
    max-width: 420px;
    margin: 0 auto;
    /* aspect-ratio: 1 / 1; */
  }

  .our-assesment-process-section.support-lifestyle.journey-section a.comon-button-1 {
    margin-top: auto;
    width: fit-content !important;
  }

  .hero-section .main-home-image {
    background: #4989a2;
  }

  .home .hero-section .main-home-image {
    background: #4b879f;
  }

  .adhd-services .hero-section .main-home-image {
    background: #4a869e;
  }

  .adhd-assessment-diagnosis .hero-section .main-home-image {
    background: #4c88a2;
  }

  .adhd-medication-support .hero-section .main-home-image {
    background: #4a869d;
  }

  .adhd-coaching .hero-section .main-home-image {
    background: #4a869f;
  }

  .family-therapy .hero-section .main-home-image {
    background: #4b879f;
  }

  .adult-asd-autism .hero-section .main-home-image {
    background: #4b879e;
  }

  .anger-management .hero-section .main-home-image {
    background: #4b889f;
  }

  .specialization .hero-section .main-home-image,
  .types-of-therapy .hero-section .main-home-image,
  .our-approach .hero-section .main-home-image {
    background-color: transparent;
  }

  .team-approach .hero-section .main-home-image {
    background: transparent;
  }

  .hero-section .main-home-image img {
    height: 320px;
    width: auto !important;
  }

  .our-approach .hero-section .main-home-image img {
    width: 100% !important;
  }

  .our-approach .hero-section .main-home-image,
  .types-of-therapy .hero-section .main-home-image {
    border-radius: 20px;
    overflow: hidden;
  }

  .our-assesment-process-section.journey-section .container .row .col-lg-4 {
    width: 100%;
  }

  .list-life-challanges ul li .find-link span {
    flex: initial;
  }

  .menu-header .item-right .button-group a {
    font-size: 14px;
    padding: 9px 20px;
    margin-left: 0px;
  }


  .menu-header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .v-center {
    justify-content: space-between;
    align-items: center;
  }

  .menu-header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 29px;
    margin-left: 9px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .menu-header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }

  .menu-header .mobile-menu-trigger span:before,
  .menu-header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }

  .menu-header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .menu-header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .menu-header .item-right {
    flex: 0 0 80%;
  }

  .menu-header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .menu-header .menu.active {
    transform: translate(0%);
  }

  .menu-header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
    padding: 0;
    position: inherit;
  }

  .menu-header .menu>ul>li>a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: start;
  }

  .menu-header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .menu-header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }

  .menu-header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .menu-header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .menu-header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }

  .menu-header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }

  .menu-header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .menu-header .menu>ul>li .sub-menu.mega-menu,
  .menu-header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .menu-header .menu>ul>li:nth-child(2) .sub-menu.mega-menu-column-4.custom-special-menu,
  .menu-header .menu>ul>li:nth-child(1) .sub-menu.mega-menu-column-4.custom-special-menu {
    max-width: 100% !important;
    padding-top: 65px !important;
    width: 100% !important;
  }

  .menu-header .menu>ul>li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
  }

  .menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
  }

  .menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .menu-header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .menu-header .menu>ul>li .sub-menu>ul>li>a,
  .menu-header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
  }

  .menu-header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 15px;
    grid-template-columns: 1fr !important;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .home .soyouneed-service-option.personality-section .box-service-option {
    margin: 0 8px;
  }
}

@media (min-width: 651px) and (max-width: 1024px) {
  .adhd-medication-support .soyouneed-service-option.yourself-section .row .col-lg-3 {
    width: 50%;
  }

  .therapist-results .col-lg-4.mb-4 {
    width: 50%;
  }

  .home .soyouneed-service-option .container>.row .col-lg-4:nth-child(odd) .box-service-option {
    margin-left: 0;
  }

  .home .soyouneed-service-option .container>.row .col-lg-4:nth-child(even) .box-service-option {
    margin-right: 0;
  }

  .soyouneed-service-option .container>.row.g-3,
  .yourself-section .container>.row.g-4 {
    justify-content: center;
    --bs-gutter-y: 24px;
  }

  .soyouneed-service-option .container>.row .col-lg-4,
  .adhd .soyouneed-service-option.yourself-section .container .row .col-lg-3 {
    width: 50%;
  }

  .home .personality-section .box-service-option {
    margin: 0 4px;
  }

  .home .contact-us-section .main-button-group {
    width: fit-content;
  }
}

/* client-required-changes */
@media (max-width: 900px) {
      .menu-header .header-item.item-center .menu>ul>li {
        padding: 0 0px;
    }
  .family-therapy .carrer-the-meets-section .row .col-xl-5 .comon-heading {
    padding: 0 20px;
  }

  .hero-section.pb-0 {
    padding-bottom: 48px !important;
  }

  .our-approach .hero-section .main-home-image img,
  .types-of-therapy .hero-section .main-home-image img,
  .specialization .hero-section .main-home-image img {
    width: 100% !important;
    object-fit: cover;
  }

  .our-approach .hero-section .main-home-image,
  .types-of-therapy .hero-section .main-home-image,
  .specialization .hero-section .main-home-image {
    margin: 0;
  }

  .our-approach .breadcamp-wrappr.parent .breadcrumb,
  .types-of-therapy .breadcamp-wrappr.parent .breadcrumb,
  .specialization .breadcamp-wrappr.parent .breadcrumb {
    justify-content: left;
  }

  .our-approach .hero-heading-group.text-center,
  .types-of-therapy .hero-heading-group.text-center,
  .specialization .hero-heading-group.text-center {
    text-align: left !important;
  }

  .our-approach .hero-section .row .col-xl-12:nth-child(2),
  .types-of-therapy .hero-section .row .col-xl-12:nth-child(2),
  .specialization .hero-section .row .col-xl-12:nth-child(2) {
    order: 1;
  }

  .our-approach .hero-section.our-service-banner .main-button-group,
  .specialization .hero-section.our-service-banner .main-button-group {
    margin-bottom: 0;
  }

  /* ====== */
  .our-approach .our-assesment-process-section.bg-section.team-and-approach .img-item-process img {
    height: 210px;
    max-width: fit-content !important;
  }

  .consultation-commitm-sec .medication-management-item {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .contact-us-section .row .col-lg-5,
  .contact-us-section .row .col-lg-7 {
    width: 100%;
  }

  .our-service-banner h3,
  .our-service-banner p {
    text-align: center;
  }

  .our-services .our-service-banner h3,
  .our-services .our-service-banner p,
  .team-approach .our-service-banner h3,
  .team-approach .our-service-banner p,
  .specialization .our-service-banner h3,
  .specialization .our-service-banner p,
  .our-approach .our-service-banner p,
  .our-approach .our-service-banner h3,
  .types-of-therapy .our-service-banner h3,
  .types-of-therapy .our-service-banner p {
    text-align: left;
  }

  .our-service-banner .main-button-group {
    margin: 16px auto;
  }

  .family-therapy .carrer-the-meets-section .col-xl-5 .comon-heading {
    text-align: center;
  }

  .team-approach .hero-section .main-button-group {
    margin: 16px 0;
  }

  .couples-therapy .carrer-the-meets-section .user-challenges,
  .individual-therapy .carrer-the-meets-section .user-challenges,
  .family-therapy .carrer-the-meets-section .user-challenges,
  .our-services .carrer-the-meets-section .user-challenges,
  .team-approach .carrer-the-meets-section .user-challenges {
    max-width: 480px;
    margin: 0 auto;
  }

  .family-therapy .carrer-the-meets-section .user-challenges {
    margin-left: 0;
  }

  .carrer-the-meets-section .user-challenges {
    max-width: 480px;
    margin: 0 auto;
  }

  .adhd-assessment-diagnosis .our-assesment-process-section .assesment-item img,
  .team-approach .our-assesment-process-section.bg-section.team-and-approach .img-item-process img {
    height: 220px;
    width: fit-content !important;
  }

  .our-services .our-service-banner .main-button-group,
  .customize-support .our-service-banner .main-button-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .team-approach.customize-support .our-service-banner .main-button-group {
    justify-content: flex-start;
  }

  .our-services .our-service-banner .main-button-group {
    justify-content: flex-start;
  }

  .table-responsive {
    display: none;
  }

  .comparison-mb-only {
    display: block;
    visibility: visible;
  }

  .family-therapy .partnership-content-section .col-xl-6:first-child {
    margin-bottom: 16px;
  }

  .hero-section .hero-heading-group .main-button-group.flex-column {
    flex-direction: row !important;
    justify-content: flex-start;
  }

  .carrer-the-meets-section .container .row .col-xl-7,
  .carrer-the-meets-section .container .row .col-xl-5 {
    width: 100%;
  }

  section.carrer-the-meets-section .comon-heading h3 {
    text-align: center;
    margin-top: 16px;

  }

  .individual-therapy section.carrer-the-meets-section .comon-heading h3,
  .couples-therapy section.carrer-the-meets-section .comon-heading h3 {
    margin-top: 24px;
  }

  .challenges-section .challanges-img img {
    padding-right: 0;
  }

  .adhd-medication-support .medication-management-section .container .row .col-lg-4 {
    width: 100%;
  }

  .adhd-assessment-diagnosis .ADHD-faq-section .col-lg-6,
  .adhd-medication-support .beyond-section .col-lg-6,
  .making-sense-section .container .row .col-xl-6 {
    width: 100%;
  }

  .adhd-assessment-diagnosis .ADHD-faq-section .col-lg-6:first-child,
  .adhd-medication-support .beyond-section .col-lg-6:first-child,
  .making-sense-section .container .row .col-xl-6:first-child {
    text-align: center;
  }

  /* contact-us-section - clint-changes */
  /* .contact-us-section .container .row .col-lg-5,
    .contact-us-section .container .row .col-lg-7, */
  .challenges-section .container .row .col-lg-6 {
    width: 100%;
  }

  .challenges-section .list-life-challanges ul li>a .item-group-heading {
    width: calc(100% - 35%);
  }

  .challenges-section .list-life-challanges ul li>a .find-link {
    width: calc(100% - 80%);
    justify-content: flex-end;
  }

  .challenges-section .list-life-challanges ul li>a .item-group-heading .pera-heading p,
  .challenges-section .list-life-challanges ul li>a .find-link {
    font-size: 14px;
    gap: 3px;
  }
}

@media screen and (max-width: 767px) {
  .adhd-medication-support .choose-your-startingPoint .container .row .col-lg-6 {
    width: 50%;
  }

  /* contact-us-section - clint-changes */
  footer.footer-section .container {
    max-width: 1200px;
  }

  .contact-form-soyouneed form .row .col-md-6 {
    width: 100%;
  }

  .contact-form-soyouneed form .row .col-xl-6,
  .contact-form-soyouneed form .row .col-xl-12 {
    margin-top: 10px;
  }

  .contact-form-soyouneed form .row .col-xl-6:first-child {
    margin-top: 0;
  }

  .contact-form-soyouneed form .row .input-field textarea {
    height: 100px;
  }

  .contact-form-soyouneed form .row .input-field input,
  .contact-form-soyouneed form .row .input-field select {
    height: 36px;
  }


  /*commit-by bibhas*/

  .contact-form-soyouneed form .row.g-3 {
    --bs-gutter-y: 12px;
  }

  .about .about-us-sec .inner-row .inner-col-one,
  .about .therapy-services-sec .main-heading {
    margin-bottom: 20px;
  }

  .single-post .container {
    padding: 0 16px;
  }

  .insurance .about-us-sec .inner-row .inner-col-one {
    margin-bottom: 0;
  }

  .insurance .privacy-policy-sec {
    padding: 40px 0 50px;
  }

  .insurance .privacy-policy-sec .main-sec-heading {
    margin-bottom: 16px;
  }

  .insurance .privacy-policy-sec .container {
    padding: 0px 16px;
  }

  .about .therapy-services-sec .card {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .about .about-us-sec {
    padding: 30px 0px 50px 0;
  }

  .about .about-us-sec .content-wrap .main-desc {
    max-width: 100%;
  }

  .about .about-us-sec .container,
  .about .therapy-services-sec .container {
    padding: 0 16px;
  }

  .about .therapy-services-sec .container .row .inner-box {
    padding: 0;
  }

  .about .therapy-services-sec .boxes-row .inner-box {
    margin-bottom: 16px;
  }

  .about .therapy-services-sec .card .card-body .card-text {
    max-width: 100%;
    margin-bottom: 25px;
    height: auto;
  }

  .about .therapy-services-sec .card .card-body a {
    font-size: 14px;
  }

  .adhd-treatment-in-toronto .content-wrap p {
    text-align: justify;
  }

  .adhd-treatment-in-toronto .accordion-sec .inner-col-two .content-wrap {
    padding-top: 0;
  }

  .adhd-treatment-in-toronto .accordion-sec .content-wrap .main-heading {
    margin-bottom: 0;
  }

  .adhd-treatment-in-toronto .empower-sec.container,
  .adhd-treatment-in-toronto .therapy-services-sec .container {
    padding: 0px 16px;
  }

  .adhd-treatment-in-toronto .therapy-services-sec .boxes-row .inner-box {
    padding: 0 0;
  }

  .adhd-treatment-in-toronto .reasons-sec .reason-boxes .single-box {
    margin-bottom: 16px;
  }

  .adhd-treatment-in-toronto .reasons-sec .reason-boxes .single-box {
    padding: 0 16px;
  }

  .adhd-treatment-in-toronto .therapy-services-sec .card {
    padding: 0;
  }

  .inner-therapist .profile-certifications-sec .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--body-theme-color);

  }

  .inner-therapist .profile-certifications-sec {
    padding: 45px 0px;
  }

  .inner-therapist .profile-certifications-sec .sec-inner-wrap .cert-boxes-wrap {
    padding: 0px 0px 45px 0px !important;
    margin-bottom: 0px;
  }

  .inner-therapist .profile-detail-sec .detail-wrap .member-desc {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .inner-therapist .profile-certifications-sec .row.inner-row.g-5 {
    --bs-gutter-y: 1rem;
  }

  .inner-therapist .profile-detail-sec {
    margin-bottom: 0;
  }

  .footer-section .footer-icon {
    padding-bottom: 0;
  }

  .inner-therapist .profile-detail-sec .row.g-5 {
    --bs-gutter-y: 1rem;
  }

  .inner-therapist .inner-therapist .img-detail {
    gap: 10px;
  }

  .grief-therapist section.soyouneed-service-option,
  .anger-management section.soyouneed-service-option,
  .bpd-therapist section.soyouneed-service-option,
  .adult-asd-autism section.soyouneed-service-option,
  .addiction-therapy section.soyouneed-service-option,
  .trauma-cptsd section.soyouneed-service-option,
  .npd-therapy section.soyouneed-service-option,
  .adhd section.soyouneed-service-option {
    padding-bottom: 0;
  }

  .page-template-page-inner-specialization.grief-therapist section.soyouneed-service-option,
  .page-template-page-inner-specialization.anger-management section.soyouneed-service-option,
  .page-template-page-inner-specialization.bpd-therapist section.soyouneed-service-option,
  .page-template-page-inner-specialization.adult-asd-autism section.soyouneed-service-option,
  .page-template-page-inner-specialization.addiction-therapy section.soyouneed-service-option,
  .page-template-page-inner-specialization.trauma-cptsd section.soyouneed-service-option,
  .page-template-page-inner-specialization.npd-therapy section.soyouneed-service-option,
  .page-template-page-inner-specialization.adhd section.soyouneed-service-option {
    padding-bottom: 45px;
  }

  .privacy-policy-sec h1 {
    line-height: normal;
  }

  .privacy-policy-sec .content-wrap {
    border-radius: var(--body-default-radius);
    padding: 16px 18px !important;
  }

  .family-therapy .hero-heading-group .main-button-group {
    margin: 0px 0px 26px 0px !important;
  }

  .couples-therapy .hero-heading-group .main-button-group,
  .family-therapy .hero-heading-group .main-button-group,
  .individual-therapy .hero-heading-group .main-button-group {
    padding: 0 0 !important;
  }

  .faq-section .accordion-button {
    padding-right: 30px;
  }

  .faq-section .accordion-button::after {
    position: absolute;

    right: 0;
  }

  .home .hero-section .hero-heading-group {
    padding: 24px 0px 30px 0px !important;
  }

  header .menu-header .container {
    padding: 0 12px;
  }


  .home .soyouneed-service-option .container .row .col-lg-4 .box-service-option {
    margin: 0 4px;
  }

  .home .soyouneed-service-option.yourself-section .container .row .col-lg-4 .box-service-option {
    margin: 0 0;
  }

  section.contact-us-section,
  section.challenges-section,
  .therapy-service-option,
  section.cta-section,
  section.faq-section {
    padding-left: 0px;
    padding-right: 0px;
  }

  .challenges-section .challanges-img img {
    padding-right: 0;
  }

  .inner-therapist .sec-inner-wrap .cert-boxes-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .digonis-pages .hero-heading-group {
    text-align: left !important;
  }

  .medication-management-item .accordion .accordion-item .accordion-button {
    padding-right: 30px;
    margin-bottom: 15px;
  }

  .medication-management-item .accordion .accordion-item .accordion-button::after {
    position: absolute;
    right: 0;
  }

  .medication-management-item .accordion-body p {
    text-align: justify;
    padding-right: 15px;
  }

  .faq-section .accordion-item .accordion-header .accordion-button {
    font-weight: 500 !important;
    line-height: 26px;
  }

  .home .contact-us-section .input-field-button input[type="submit"] {
    width: fit-content;
  }

  .home .testimonial-item,
  .pricing-insurance-section .text-start p:last-child {
    margin-bottom: 0;
  }

  .pricing-insurance-section .col-lg-6:last-child,
  .adhd-coaching .our-assesment-process-section .col-lg-6,
  .medication-management-section .row.g-4 .col-lg-4 {
    margin-top: 20px;
  }

  .adhd-services .journey-section .row .col-lg-4:first-child,
  .our-assesment-process-section .col-lg-4:first-child,
  .adhd-coaching .our-assesment-process-section .col-lg-6:first-child,
  .medication-management-section .row.g-4 .col-lg-4:first-child {
    margin-top: 24px;
  }

  .ADHD-faq-section .container .row.g-3 {
    --bs-gutter-y: 20px;
  }

  .contact-form-soyouneed,
  .where-to-start,
  .total-assesment-cost,
  .our-assesment-process-section .assesment-item {
    box-shadow: 0px 0px 7px rgb(0 0 0 / 8%);
  }

  .assesment-item .content-assesment-info {
    padding: 0 0px;
  }

  .total-assesment-cost {
    padding: 20px 19px;
  }

  .cost-breakdown ul li:last-child .therapist-name-price p {
    margin: 0;
  }

  .our-assesment-process-section .assesment-item {
    padding: 19px 19px;
  }

  .assesment-item .content-assesment-info h3,
  .therapist-results .heading-group {
    margin-bottom: 16px !important;
  }

  .adhd-coaching .our-assesment-process-section .row,
  .therapist-results .col-lg-4.mb-4:last-child {
    margin-bottom: 0 !important;
  }


  .adhd-medication-support .beyond-section .row.g-5 {
    --bs-gutter-y: 2rem;
  }

  .adhd-medication-support .beyond-section ul.mt-5 {
    margin-top: 32px;
  }

  .adhd-medication-support .flexible-support .comon-heading p,
  .adhd-medication-support .medication-management-section .comon-heading h2 {
    margin-bottom: 0;
  }

  .medication-management-item p {
    margin-bottom: 18px;
  }

  .benefits-item:last-child,
  .Specialized-carrer .benefits-item:last-child {
    padding-bottom: 0;
  }



  /* end */
  /* .blog-section .list-item ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  } */

  .system-processing-section table.table tr th {
    padding: 18px 18px;
  }

  .system-processing-section table.table tr td {
    font-size: 16px;
    line-height: 26px;
    padding: 18px 14px;
  }

  .system-processing-section .table-responsive::-webkit-scrollbar {
    height: 7px;
    width: 7px;
  }

  .system-processing-section .table-responsive::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .system-processing-section .table-responsive::-webkit-scrollbar-thumb {
    background: var(--body-theme-hover);
    border-radius: 10px;
    transition: 0.3s ease;
  }

  .system-processing-section .table-responsive::-webkit-scrollbar-thumb:hover {
    background: var(--body-theme-hover);
  }

  .system-processing-section .table-responsive {
    scrollbar-width: thin;
    scrollbar-color: var(--body-theme-hover) rgba(255, 255, 255, 0.1);
  }

  .system-processing-section>.container,
  .system-processing-section .table-responsive {
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto;
  }

  .system-processing-section .table-responsive table {
    min-width: 800px;
  }

  .blog-left-panl .page-header h1,
  .blog-left-panl .info-item h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .blog-left-panl .info-item p,
  .blog-left-panl .info-item ol li,
  .blog-left-panl .page-header p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .blog-left-panl .info-item>span {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .team-approach .user-challenges {
    text-align: center;
  }

  .team-approach .user-challenges img {
    height: 350px;
  }

}

@media screen and (max-width: 650px) {
  .our-approach .hero-section .main-home-image img.team-approach-banner-mbonly{
  display: block !important;
}
  .our-approach .hero-section .main-home-image img:first-child{
  display: none !important;
}
  .hero-section.pb-0 {
    padding-bottom: 32px !important;
  }

  .hero-section .main-home-image {
    margin: 0 20px;
  }

  .types-of-therapy .hero-section .main-home-image img,
  .specialization .hero-section .main-home-image img,
  .our-approach .hero-section .main-home-image img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .footer-section .row .ft-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-info strong {
    margin-bottom: 16px;
  }

  .newsletter-section .right-item-contact form {
    flex-direction: column;
  }

  .newsletter-section {
    padding: 48px 0;
  }

  .footer-section {
    padding: 48px 0px 0;
  }

  .offcanvas.find-therapist-menu .accordion .accordion-item .accordion-collapse .accordion-body input {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #005670;
  }

  .offcanvas.find-therapist-menu .accordion .accordion-item .accordion-collapse .accordion-body label {
    display: flex !important;
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .offcanvas.find-therapist-menu .accordion .accordion-item button.accordion-button {
    padding-bottom: 16px;
  }

  .types-of-therapy .find-therapist-section {
    margin-bottom: 0;
  }

  .our-approach .hero-section .main-button-group>a,
  .types-of-therapy .hero-section .main-button-group>a {
    width: 100%;
  }

  .adhd-medication-support .choose-your-startingPoint.medicatn-supprt-point .row.g-4 {
    --bs-gutter-y: 20px;
  }

  .adhd-medication-support .choose-your-startingPoint.medicatn-supprt-point .row.g-4 .col-lg-6:first-child {
    margin-top: 0;
  }

  .contact .contact-us-section .row.g-4,
  .contact-us-section .row.g-4 {
    --bs-gutter-y: 20px;
  }

  .integrate-group .integrate-item {
    gap: 16px;
  }

  .integrate-group .integrate-item .int-num span {
    font-size: 1.5rem;
  }

  .integrate-group .integrate-item .int-contentInfo h3 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .integrate-section .integrate-group {
    grid-template-columns: repeat(1, 1fr);
  }

  .menu-header .item-left {
    flex: 0 0 20%;
  }

  .therapist-results .col-lg-4.mb-4 {
    margin-bottom: 20px !important;
  }

  .our-services .our-service-banner .main-button-group a,
  .customize-support .our-service-banner .main-button-group a,
  .specialization .our-service-banner .main-button-group>a {
    width: 100%;
  }

  .adhd-coaching section.find-therapist-section,
  .adhd-coaching section.find-therapist-section,
  .adhd-medication-support section.find-therapist-section {
    margin-bottom: 0;
  }

  .anger-management .soyouneed-service-option.yourself-section .row .col-lg-3,
  .addiction-therapy .soyouneed-service-option.yourself-section .row .col-lg-3,
  .trauma-cptsd .soyouneed-service-option.yourself-section .row .col-lg-4 {
    width: 100%;
  }

  .bpd-therapist .soyouneed-service-option.inner-specialization-img .box-service-option,
  .npd-therapy .soyouneed-service-option.inner-specialization-img .box-service-option,
  .anger-management .soyouneed-service-option.inner-specialization-img .box-service-option,
  .adult-asd-autism .soyouneed-service-option.inner-specialization-img .box-service-option,
  .trauma-cptsd .soyouneed-service-option.inner-specialization-img .box-service-option,
  .addiction-therapy .soyouneed-service-option.inner-specialization-img .box-service-option,
  .adhd .soyouneed-service-option.inner-specialization-img .box-service-option,
  .grief-therapist .soyouneed-service-option.inner-specialization-img .box-service-option,
  .adhd-coaching .soyouneed-service-option .row .col-lg-6 .box-service-option,
  .adhd-medication-support .soyouneed-service-option .row .col-lg-6 .box-service-option,
  .adhd-assessment-diagnosis .soyouneed-service-option .row .col-lg-6 .box-service-option {
    margin: 0 0px;
  }

  .specialization .benefits-section.bg-section.specialists-section .benefits-group {
    grid-template-columns: 1fr;
  }

  .specialization .benefits-section.bg-section.specialists-section .benefits-group .benefits-item:nth-child(even) {
    padding-left: 0;
  }

  section.find-therapist-section {
    padding: 48px 0px !important;
    margin-bottom: 48px;
  }

  /* .adhd-assessment-diagnosis .ADHD-faq-section img, 
  .adhd-medication-support .beyond-section .col-lg-6:first-child img,  */
  .making-sense-section .row .col-xl-6:first-child img {
    max-width: 100%;
    aspect-ratio: 0;
  }

  .recognizing-section .container .row .col-xl-4 {
    width: 100%;
  }

  .individual-therapy .Specialized-carrer .benefits-group,
  .benefits-section.grid-4-item .benefits-group {
    grid-template-columns: 1fr;
  }

  .grid-4-item .benefits-group .benefits-item:nth-child(4) {
    padding-left: 0;
  }

  .our-services .specialization-section .benefits-group {
    grid-template-columns: repeat(1, 1fr);
  }

  .adhd-coaching .our-assesment-process-section .main-button-group {
    margin-top: 20px !important;
  }

  footer.footer-section {
    padding-top: 48px !important;
  }

  footer.footer-section .copyright-bar {
    margin-top: 48px;
  }

  .adhd-coaching .benefits-section.pb-0 {
    padding-bottom: 48px !important;
  }

  .individual-therapy .Specialized-carrer .benefits-group .benefits-item:nth-child(even) {
    padding-left: 0;
  }

  /* 1. Force table to behave like a list of cards */
  .pricing-therapy-coaching .pricing-table,
  .pricing-therapy-coaching .pricing-table thead,
  .pricing-therapy-coaching .pricing-table tbody,
  .pricing-therapy-coaching .pricing-table th,
  .pricing-therapy-coaching .pricing-table td,
  .pricing-therapy-coaching .pricing-table tr {
    display: block;
    width: 100%;
  }

  .hero-section .row .col-lg-12:first-child {
    padding: 0 20px;
  }

  .footer-section .container {
    padding: 0 20px;
  }

  .pricing-therapy-coaching .pricing-table thead {
    display: none;
  }

  .pricing-therapy-coaching .pricing-table tr {
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
  }

  .pricing-therapy-coaching .pricing-table td {
    padding: 5px 0;
    border: none;
    text-align: left;
  }

  .pricing-therapy-coaching .service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #004b61;
    margin-bottom: 8px;
  }

  .pricing-therapy-coaching .pricing-table td:nth-child(2):before {
    content: "Length: ";
    color: #999;
    font-weight: 400;
  }

  .pricing-therapy-coaching .pricing-table td:nth-child(3):before {
    content: "Price: ";
    color: #666;
  }

  .pricing-therapy-coaching .price-range {
    display: inline-block;
    color: var(--body-secondary-color);
    font-weight: 700;
  }

  /* Muted text for the length */
  .pricing-therapy-coaching .pricing-table td:nth-child(2) {
    color: #666;
    font-size: 0.95rem;
  }

  /*  */
  .adhd-medication-support .choose-your-startingPoint .container .row .col-lg-6,
  .adhd-coaching .our-assesment-process-section.support-lifestyle .container .row .col-lg-6 {
    width: 100%;
  }

  .hero-section .main-button-group>a {
    margin-left: 0;
  }

  .adhd-services .benefits-section .benefits-group,
  .benefits-group {
    grid-template-columns: 1fr;
  }

  footer.footer-section .container .row .col-6 {
    width: 100%;
  }

  .benefits-item:nth-child(even),
  .benefits-item:nth-child(odd) {
    padding: 20px 0;
  }

  .our-assesment-process-section .col-lg-4 {
    margin-top: 20px;
  }

  .home .soyouneed-service-option .container .row .col-lg-4 .box-service-option {
    margin: 0;
  }

  section.contact-us-section .container,
  .challenges-section .container,
  .soyouneed-service-option.yourself-section .container,
  .cta-section .container,
  .faq-section .container,
  .footer-section .container,
  .making-sense-section .container,
  .recognizing-section .container,
  .system-processing-section .container {
    padding: 0 20px;
  }

  .home .soyouneed-service-option.yourself-section .row.g-4 {
    --bs-gutter-y: 20px;
  }

  .find-therapist-menu .offcanvas-header {
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }

  .find-therapist-menu .offcanvas-header h5 {
    text-align: center;
    color: var(--body-theme-color);
    font-size: 17px;
    margin: 0;
  }

  .offcanvas-header .btn-close {
    position: absolute;
    top: 38px;
    z-index: 99;
    left: 25px;
    color: var(--body-bg-black) !important;
    height: 22px;
    text-align: center;
    line-height: 23px;
    border-radius: 100%;
    border: 2px solid #737373;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    font-size: 10px;
  }

  .therapy-service-option .box-service-option p {
    min-height: auto;
  }

  .recognizing-section .container .row.g-4,
  .soyouneed-service-option .container .row.g-4,
  .soyouneed-service-option .row.g-3,
  .team-approach .soyouneed-service-option.yourself-section .row.g-4 {
    --bs-gutter-y: 20px;
  }

  .home .soyouneed-service-option .row.g-3 {
    --bs-gutter-y: 20px;
  }

  .find-therapist-section .filter-tabs {
    display: none;
  }

  .find-therapist-section .provider-mobile {
    max-width: 540px;
    margin: 0 auto;
    flex-direction: column;
    gap: 12px;
    display: flex;
    padding: 0 20px;
    margin-top: 30px;
  }

  .personality-section .container,
  .real-support-section .container,
  section .container {
    max-width: 1300px;
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 48px 0px !important;
  }

  /* contact-us-section - clint-changes */
  .contact-us-section .container .row .col-lg-5,
  .contact-us-section .container .row .col-lg-7 {
    width: 100%;
  }

  .hero-section .hero-heading-group .main-button-group,
  .adhd-assessment-diagnosis .cta-section .main-button-group {
    flex-wrap: wrap;
  }

  .adhd-services .cta-section .main-button-group,
  .home .cta-section .main-button-group {
    flex-direction: column;
  }

  .hero-section .hero-heading-group .main-button-group>a,
  .adhd-assessment-diagnosis .cta-section .main-button-group>a,
  .home .cta-section .main-button-group>a {
    flex-shrink: 0;
    width: 100%;
  }

  .cta-section .cta-bg-overlay .main-button-group {
    flex-wrap: wrap;
  }

  .cta-section .cta-bg-overlay .main-button-group a {
    min-width: 100%;
    padding: 13px 16px;
  }

  /* Table Wrapper */
  .pricing-therapy-coaching .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* .pricing-therapy-coaching .pricing-table{
    min-width: 600px;
    width: 100%;
} */

  .pricing-therapy-coaching .pricing-table td,
  .pricing-therapy-coaching .pricing-table th {
    white-space: nowrap;
  }

  .pricing-therapy-coaching .table-wrapper {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--body-theme-color) transparent;
  }

  /* Chrome, Edge, Safari */
  .pricing-therapy-coaching .table-wrapper::-webkit-scrollbar {
    height: 4px;
  }

  .pricing-therapy-coaching .table-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }

  .pricing-therapy-coaching .table-wrapper::-webkit-scrollbar-thumb {
    background: var(--body-theme-color);
    border-radius: 20px;
  }

  .pricing-therapy-coaching .pricing-table th,
  .pricing-therapy-coaching .pricing-table td {
    font-weight: 500;
  }

  .pricing-therapy-coaching .main-button-group,
  .our-assesment-process-section.support-lifestyle .main-button-group,
  .pricing-insurance-section .main-button-group {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .pricing-therapy-coaching .main-button-group>a,
  .our-assesment-process-section.support-lifestyle .main-button-group>a,
  .pricing-insurance-section .main-button-group>a {
    min-width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .copyright-wrapper .right-info .social-links a:first-child {
    margin-left: 0;
  }

  .comparison-mb-only .comp-btn {
    padding: 8px 14px;
  }

  .comparison-mb-only .compare-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .about .therapy-services-sec .main-heading {
    margin-bottom: 16px;
  }

  .gapping {
    margin-bottom: 20px;
  }

  .inner-therapist .sec-inner-wrap .cert-boxes-wrap {
    gap: 16px;
  }

  .inner-therapist .sec-inner-wrap .single-box {
    padding: 20px 16px;
  }

  .home .main-button-group {
    flex-wrap: wrap;
  }

  /* bibhas */
}

@media screen and (max-width: 480px) {

  .blog-details-page .blog-left-panl table thead tr th,
  .blog-details-page .blog-left-panl table tbody tr td {
    font-size: 14px;
  }

  .offcanvas.find-therapist-menu .filter-actions {
    justify-content: space-between;
    gap: 90px;
  }

  .home .main-button-group a {
    width: 100%;
  }

  .testimonial-item {
    padding: 36px 30px;
  }

  .main-home-image img {
    width: 100%;
    margin: 0 auto;
  }

  .menu-header .menu>ul>li .sub-menu.mega-menu-column-4.custom-special-menu {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 12px;
    height: 100vh;
    padding-top: 59px;
  }

  .menu-header .menu>ul>li:nth-child(2) .sub-menu.mega-menu-column-4.custom-special-menu {
    width: 100% !important;
    padding-top: 62px;
  }

  /* .testimonial-item {
    margin-bottom: 20px;
    min-height: auto;
  } */

  section.real-support-section {
    padding: 45px 0px 30px;
  }

  .list-item ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }


  h1 {
    font-size: 26px !important;
    line-height: 34px;
  }

  h2 {
    font-size: 24px !important;
    font-weight: 700;
    line-height: 31px;
  }

  .list-life-challanges ul li p {
    font-size: 13px;
    line-height: 18px;
    margin-left: 0;
  }

  .list-life-challanges ul li a.find-link {
    gap: 7px;
  }

  .list-life-challanges ul li a {
    margin-bottom: 0px;
  }

  .list-life-challanges ul li {
    padding: 5px 0px;
    margin-bottom: 2px;
  }

  .list-life-challanges ul li .icon svg {
    width: 16px !important;
  }

  .list-life-challanges ul li a.find-link span {
    display: none;
  }

  .list-life-challanges ul li .icon {
    width: 28px;
    height: 28px;
    line-height: 24px;
  }

  .faq-section .accordion-body p {
    font-size: 15px;
    line-height: 24px;
  }

  p {
    font-size: 15px;
    line-height: 23px;
  }

  .accordion-button {
    padding: 15px 0px;
    font-size: 16px;
    line-height: normal;
  }


  .accordion-find-therapist .accordion-button {
    padding: 15px 13px;
    font-size: 16px;
    line-height: normal;
    border: .25px solid gray;
    color: #58595b;
    border-radius: 10px !important;
    background: #fff;
  }

  .accordion-find-therapist .accordion-header {
    margin-bottom: 14px;
  }

  .accordion-find-therapist .accordion-button::after {
    display: none;
  }

  .accordion-find-therapist .accordion-item {
    border: none;
  }

  .real-support-section .swiper {
    padding: 0px 5px;
  }

  .team-approach .real-support-section .swiper {
    padding: 0px 0px;
  }

  .team-approach .faq-section {
    padding-top: 0;
  }

  .cta-bg-overlay {
    padding: 40px 18px;
  }

  .faq-section {
    padding-bottom: 45px;
    /* padding-top: 0; */
  }

  .starting-point-item h3 {
    margin-bottom: 6px;
    font-size: 21px;
  }

  .starting-point-item h4 {
    /* margin-bottom: 13px; */
    font-size: 14px;
  }


  .menu-header .item-right {
    flex: 0 0 65%;
  }

  .menu-header .item-left {
    flex: 0 0 35%;
  }

  .list-life-challanges ul li a.find-link {
    gap: 7px;
  }

  .menu-header .item-left {
    flex: 0 0 32%;
  }

  .menu-header .item-right {
    flex: 0 0 68%;
  }


  .list-life-challanges ul li .find-link span {
    display: none;
  }

}

@media screen and (min-width: 1366px) {

  /* .hero-heading-group{
    padding: 30px 0px 30px 105px !important;
    margin: 0 !important;
  } */
  .hero-section .breadcamp-wrappr {
    padding-left: 105px;
  }

  .digonis-pages .hero-heading-group {
    padding: 30px 0px 30px 105px;
  }

  .journey-section .assesment-item .pera {
    min-height: 216px !important;
  }

  .journey-section .content-assesment-info h3 {
    font-size: 24px;
    min-height: 62px;
    width: 100%;
    margin-bottom: 14px !important;
  }
}

/* ---- */
@media screen and (min-width: 1920px) {
  .main-home-image img {
    width: 90% !important;
  }
}

@media only screen and (min-width: 1800px) and (max-width: 1920px) {

  .digonis-pages .hero-heading-group,
  .family-therapy .hero-section .hero-heading-group,
  .hero-section .breadcamp-wrappr {
    padding-left: 30% !important;
  }

  .main-header .menu-header .container {
    max-width: 100%;
    padding: 0 10%;
  }

  .home .hero-section .hero-heading-group {
    padding-left: 20% !important;
  }
}

@media only screen and (min-width: 1599px) and (max-width: 1799px) {

  .digonis-pages .hero-heading-group,
  .family-therapy .hero-section .hero-heading-group,
  .hero-section .breadcamp-wrappr {
    padding-left: 25% !important;
  }

}

@media only screen and (min-width: 1399px) and (max-width: 1799px) {
  .main-header .menu-header .container {
    max-width: 100%;
    padding: 0 5%;
  }
}