@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Bold.woff2") format("woff2"), url("../fonts/SharpSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
header {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  padding-top: 40px;
}
@media (max-width: 992px) {
  header {
    padding-top: 20px;
  }
}
header .desktop-header {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s all;
}
header .desktop-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation-duration: 0.5s;
  animation-name: smooth;
  background-color: #a27154;
  padding: 10px 35px;
  z-index: 100;
}
@keyframes smooth {
  from {
    top: 5%;
  }
  to {
    top: 0%;
  }
}
header .desktop-header .main-logo {
  max-width: 20%;
  flex: 0 0 20%;
  text-align: center;
}
header .desktop-header .main-logo .navbar-brand {
  margin-right: 0;
}
header .desktop-header .main-logo .navbar-brand img {
  width: 125px;
}
header .desktop-header .navbar-left {
  max-width: 80%;
  flex: 0 0 80%;
}
header .desktop-header .navbar-nav {
  justify-content: center;
}
header .desktop-header .navbar-nav .nav-item {
  margin-right: 60px;
}
header .desktop-header .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
header .desktop-header .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
header .desktop-header .navbar-nav .nav-item .nav-link.active {
  color: #E1E667;
}
header .desktop-header .navbar-nav .nav-item .nav-link.active.dark {
  color: #DF854F !important;
}
header .desktop-header .navbar-nav .nav-item .nav-link:hover {
  color: #E1E667;
  text-decoration: underline;
}
header .mobile-header {
  position: absolute;
  left: 0;
  top: -20px;
  background: #004750;
  width: 100%;
  padding: 15px;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.3s all ease;
}
header .mobile-header .close {
  position: absolute;
  right: 15px;
  top: 10px;
}
header .mobile-header .close a {
  color: #fff;
  text-decoration: none;
}
header .mobile-header.hide {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
}
header .mobile-header.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .navbar-nav {
    padding-top: 100px;
    text-align: center;
  }
  .navbar-nav .nav-link {
    font-size: 35px;
    color: #fff !important;
    font-family: "Sharp Sans";
  }
  .navbar-toggler {
    padding: 5px 8px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .mobile-actions .navbar-brand {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin-right: 0;
  }
  .mobile-actions .navbar-brand img {
    width: 60%;
  }
}
.content-wrapper .main-banner {
  background-image: url(../images/bg-home.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 800px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner {
    min-height: 600px;
  }
}
.content-wrapper .main-banner__content {
  max-width: 55%;
  margin: 15px auto 0;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 50px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner__content {
    max-width: 100%;
    padding-top: 100px;
  }
}
.content-wrapper .main-banner__content__heading {
  font-size: 80px;
  color: #fff;
  line-height: 80px;
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner__content__heading {
    font-size: 40px;
    line-height: normal;
  }
}
.content-wrapper .main-banner__content__text {
  font-size: 16px;
  color: #fff;
  max-width: 75%;
  margin: 0 auto 56px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner__content__text {
    max-width: 100%;
  }
}
.content-wrapper .main-banner__content__btn {
  margin-bottom: 19px;
  border-radius: 36px;
  padding: 8px 25px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner__content__btn {
    padding: 8px 20px;
  }
}
.content-wrapper .main-banner__content .btn-actions-group .main-banner__content__btn {
  margin-bottom: 0;
}
.content-wrapper .main-banner__content .btn-actions-group .main-banner__content__btn:first-child {
  margin-right: 12px;
}
.content-wrapper .main-banner.services {
  background-image: url(../images/services-bg.png);
  background-position: bottom;
  min-height: 520px;
  padding-bottom: 60px;
}

.content-wrapper .main-banner.services::after {
    content: '';
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.15;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.services {
    background-color: rgba(0, 0, 0, 0.5607843137);
    min-height: 420px;
    padding-bottom: 0px;
  }
}
.content-wrapper .main-banner.services .main-banner__content {
  max-width: 760px;
  padding-top: 120px;
  padding-bottom: 40px;
      position: relative;
    z-index: 1;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.services .main-banner__content {
    max-width: 100%;
    padding-top: 90px;
  }
}
.content-wrapper .main-banner.services .main-banner__content__heading {
  color: #E1E667;
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.services .main-banner__content__heading {
    font-size: 24px;
    line-height: 1.35;
  }
}
.content-wrapper .main-banner.services .main-banner__content__text {
  max-width: 80%;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.services .main-banner__content__text {
    max-width: 100%;
  }
}
.content-wrapper .main-banner.events {
  min-height: 640px;
}
.content-wrapper .main-banner.events .main-banner__content {
  max-width: 70%;
}
.content-wrapper .main-banner.events .main-banner__content__heading {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.content-wrapper .main-banner.events .main-banner__content__text {
  font-size: 20px;
  line-height: 1.55;
  max-width: 85%;
  margin-bottom: 0;
  color: #fff;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.events {
    min-height: 480px;
  }
  .content-wrapper .main-banner.events .main-banner__content {
    max-width: 100%;
  }
  .content-wrapper .main-banner.events .main-banner__content__heading {
    font-size: 40px;
  }
  .content-wrapper .main-banner.events .main-banner__content__text {
    font-size: 16px;
    max-width: 100%;
  }
}
.content-wrapper .main-banner.team {
  background-color: #FEFFEA;
  background-image: url(../images/team-bg.png);
  background-position: bottom;
}
.content-wrapper .main-banner.team .main-banner__content {
  max-width: 60%;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.team .main-banner__content {
    max-width: 100%;
    padding-top: 100px;
  }
}
.content-wrapper .main-banner.team .main-banner__content__text {
  max-width: 100%;
}
.content-wrapper .main-banner.self-help {
  background-image: url(../images/b1.png);
  background-position: bottom;
}
.content-wrapper .main-banner.self-help .main-banner__content {
  max-width: 65%;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.self-help .main-banner__content {
    max-width: 100%;
  }
}
.content-wrapper .main-banner.self-help .main-banner__content__heading {
  color: #E1E667;
}
.content-wrapper .main-banner.self-help .main-banner__content__text {
  margin-bottom: 0;
}
.content-wrapper .depth-section {
  padding-top: 0;
}
@media (max-width: 992px) {
  .content-wrapper .depth-section {
    padding-top: 30px;
  }
}
.content-wrapper .depth-section__main {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 992px) {
  .content-wrapper .depth-section__main {
    display: block;
  }
}
.content-wrapper .depth-section__left {
  padding-right: 40px;
}
.content-wrapper .depth-section__right {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .content-wrapper .depth-section__content {
    margin: 0 15px;
    padding: 30px 0;
  }
}
.content-wrapper .depth-section__content .logo-mark {
  margin-bottom: 35px;
}
.content-wrapper .depth-section__content__heading {
  color: #004750;
  font-size: 56px;
  line-height: 67.2px;
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .content-wrapper .depth-section__content__heading {
    font-size: 42px;
    line-height: normal;
  }
}
.content-wrapper .depth-section__content__text {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #004750;
}
.content-wrapper .img-text-main {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main {
    padding: 80px 0;
  }
}
.content-wrapper .img-text-main .container {
  max-width: 1140px;
}
.content-wrapper .img-text-main__image {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main__image {
    margin-bottom: 15px;
  }
}
.content-wrapper .img-text-main__image img {
  max-width: 80%;
  margin: 0 auto;
}
.content-wrapper .img-text-main__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main__content {
    align-items: center;
  }
}
.content-wrapper .img-text-main__content__heading {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 37px;
  color: #004750;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main__content__heading {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
.content-wrapper .img-text-main__content__heading span {
  color: #DF854F;
  font-family: "Sharp Sans";
}
.content-wrapper .img-text-main__content__text {
  font-size: 14px;
  line-height: 21px;
  color: #004750;
  max-width: 72%;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main__content__text {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v2 {
    padding-top: 0 !important;
  }
}
.content-wrapper .img-text-main.v2 .img-text-main__content {
  margin-left: 100px;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v2 .img-text-main__content {
    margin-left: 0;
    text-align: center;
  }
}
.content-wrapper .img-text-main.v2 .img-text-main__content__text {
  max-width: 98%;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v2 .img-text-main__content__text {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v3 {
    padding-bottom: 0 !important;
  }
}
.content-wrapper .img-text-main.v3 .img-text-main__content__text {
  max-width: 83%;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v3 .img-text-main__content__text {
    max-width: 100%;
    text-align: center;
  }
}
.content-wrapper .mini-banner {
  background-image: url(../images/6.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 51px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner {
    padding-top: 0;
  }
}
.content-wrapper .mini-banner::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -14.58%, #00464F 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.content-wrapper .mini-banner__main {
  max-width: 50%;
  flex: 0 0 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 65px;
  position: relative;
  z-index: 100;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__main {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) -14.58%, #00464F 100%);
  }
}
.content-wrapper .mini-banner__content {
  z-index: 1;
  position: relative;
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__content {
    margin-bottom: 0;
    padding: 50px 0;
  }
}
.content-wrapper .mini-banner__content__heading {
  font-size: 80px;
  line-height: 96px;
  color: #004750;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__content__heading {
    font-size: 40px;
    color: #fff;
    line-height: normal;
  }
}
.content-wrapper .mini-banner__content__text {
  font-size: 16px;
  line-height: 24px;
  color: #004750;
  max-width: 83%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__content__text {
    max-width: 100%;
    color: #fff;
    padding: 0 15px;
  }
}
.content-wrapper .mini-banner__actions {
  z-index: 1;
  position: relative;
  padding-bottom: 73px;
}
.content-wrapper .mini-banner__actions .logo-mark {
  margin-bottom: 35px;
}
.content-wrapper .mini-banner__main-img {
  z-index: 1;
  position: absolute;
  max-width: 100%;
  flex: 0 0 100%;
  right: -23%;
  height: 100%;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__main-img {
    right: 0;
  }
}
.content-wrapper .mini-banner__main-img img {
  height: calc(100% - 51px);
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrapper .mini-banner__wrapper {
  display: flex;
}
.content-wrapper .tool-section {
  padding: 167px 0;
}
@media (max-width: 992px) {
  .content-wrapper .tool-section {
    padding: 80px 0;
  }
}
.content-wrapper .tool-section .container {
  max-width: 1120px;
}
@media (max-width: 992px) {
  .content-wrapper .tool-section__content {
    margin-bottom: 30px;
    text-align: center;
  }
}
.content-wrapper .tool-section__content__heading {
  font-size: 56px;
  line-height: 67.2px;
  color: #004750;
  margin-bottom: 47px;
}
@media (max-width: 992px) {
  .content-wrapper .tool-section__content__heading {
    font-size: 36px;
    line-height: normal;
    margin-bottom: 20px;
  }
}
.content-wrapper .tool-section__content__text {
  font-size: 14px;
  line-height: 21px;
  color: #004750;
  margin-bottom: 20px;
  max-width: 73%;
}
.content-wrapper .tool-section__content__text + .tool-section__content__text {
  margin-top: 6px;
}
.content-wrapper .tool-section__content__text:last-of-type {
  margin-bottom: 28px;
}
@media (max-width: 992px) {
  .content-wrapper .tool-section__content__text {
    max-width: 100%;
  }
}
.content-wrapper .tool-section__imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.content-wrapper .tool-section__imgs .secondary-img {
  position: absolute;
  right: 0;
  bottom: -110px;
}

.main-services .container {
  max-width: 1120px;
}
.main-services__main-items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #ffffff;
  padding: 30px;
}
.main-services__main-items:first-child {
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.main-services__main-items:last-child {
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
@media (max-width: 992px) {
  .main-services__main-items {
    display: block;
  }
}
.main-services__main-items__item {
  max-width: calc(50% - 83.5px);
  flex: 0 0 calc(50% - 83.5px);
  margin-bottom: 67px;
}
@media (max-width: 992px) {
  .main-services__main-items__item {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}
.main-services__main-items__item__heading {
  font-size: 47px;
  line-height: 57.6px;
  color: #004750;
  margin-bottom: 29px;
}
@media (max-width: 992px) {
  .main-services__main-items__item__heading {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
.main-services__main-items__item__heading.small {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.main-services__main-items__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #DF854F;
}
.main-services__main-items__item__action {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.main-services__main-items__item__action__btn {
  margin-bottom: 19px;
  border-radius: 36px;
  padding: 8px 25px;
}
@media (max-width: 992px) {
  .main-services__main-items__item__action__btn {
    padding: 8px 20px;
  }
}

.sec-section {
  background-image: url(../images/s2.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 800px;
}
@media (max-width: 992px) {
  .sec-section {
    min-height: 600px;
  }
}
.sec-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 117px;
}
.sec-section__content .logo-mark {
  margin-bottom: 35px;
}
.sec-section__content__btn {
  margin-bottom: 19px;
  border-radius: 36px;
  padding: 8px 25px;
}
@media (max-width: 992px) {
  .sec-section__content__btn {
    padding: 8px 20px;
  }
}
.sec-section__text {
  text-align: center;
}
.sec-section__text p {
  max-width: 40%;
  margin: 0 auto 42px;
}
@media (max-width: 992px) {
  .sec-section__text p {
    max-width: 100%;
  }
}

.main-team {
  background-color: #FEFFEA;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}
@media (max-width: 992px) {
  .main-team {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}
.main-team__content {
  text-align: center;
}
.main-team__content .logo-mark {
  margin-bottom: 35px;
}
.main-team__content__heading {
  font-size: 56px;
  line-height: 67.2px;
  color: #004750;
}
@media (max-width: 992px) {
  .main-team__content__heading {
    font-size: 36px;
    line-height: normal;
  }
}
.main-team__members-main {
  display: flex;
  justify-content: center;
  margin-top: 108px;
}
@media (max-width: 992px) {
  .main-team__members-main {
    display: block;
    margin-top: 50px;
  }
}
.main-team__members-main__item {
  max-width: 33.33%;
  flex: 0 0 33.33%;
  text-align: center;
  margin-bottom: 152px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .main-team__members-main__item {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 50px;
  }
}
.main-team__members-main__item__img {
  margin-bottom: 39px;
}
.main-team__members-main__item__img img {
  width: 374px;
  border-radius: 50%;
  height: 374px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-team__members-main__item__img img.j-head {
  -o-object-position: 0 -10px;
     object-position: 0 -10px;
}
.main-team__members-main__item__heading {
  font-size: 35px;
  line-height: 40px;
  color: #DF854F;
  text-align: center;
}
@media (max-width: 992px) {
  .main-team__members-main__item__heading {
    font-size: 30px;
    line-height: normal;
  }
}
.main-team__members-main__item .verif-badge {
  display: flex;
  justify-content: center;
}

.therapist-about {
  margin: 125px 0 0;
}
.therapist-about__main-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .therapist-about__main-about {
    display: block;
    text-align: center;
  }
}
.therapist-about__main-about__img {
  max-width: calc(50% - 57px);
  flex: 0 0 calc(50% - 57px);
    display: flex;
    justify-content: center;
}

.therapist-about__main-about__img img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 992px) {
  .therapist-about__main-about__img {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.therapist-about__main-about__details {
  max-width: calc(50% - 57px);
  flex: 0 0 calc(50% - 57px);
}
@media (max-width: 992px) {
  .therapist-about__main-about__details {
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 30px;
  }
}
.therapist-about__main-about__details__name {
  font-size: 56px;
  line-height: 67.2px;
  color: #004750;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .therapist-about__main-about__details__name {
    font-size: 36px;
    line-height: normal;
  }
}
.therapist-about__main-about__details__designation {
  font-size: 32px;
  color: #DF854F;
  line-height: 38.4px;
  font-weight: 700;
  margin-bottom: 36px;
}
.therapist-about__main-about__details__about {
  font-size: 16px;
  line-height: 1.65;
  color: #004750;
  max-width: 85%;
  margin-bottom: 30px;
}
.therapist-about__main-about__details__about p {
  margin: 0 0 1.25em;
}
.therapist-about__main-about__details__about p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .therapist-about__main-about__details__about {
    max-width: 100%;
  }
}
.therapist-about__content__cards-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .therapist-about__content__cards-main {
    display: block;
  }
}
.therapist-about__content__cards-main .right-cards {
  max-width: calc(50% - 57px);
  flex: 0 0 calc(50% - 57px);
}
@media (max-width: 992px) {
  .therapist-about__content__cards-main .right-cards {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.therapist-about__content__cards-main .right-cards .therapist-about__content__card {
  margin-bottom: 79px;
}
@media (max-width: 992px) {
  .therapist-about__content__cards-main .right-cards .therapist-about__content__card {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.therapist-about__content__card {
  background-color: #FEFFEA;
  padding: 40px 30px;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .therapist-about__content__card {
    padding: 40px 20px;
  }
}
.therapist-about__content__card.left-card {
  margin-top: 67px;
  max-width: calc(50% - 57px);
  flex: 0 0 calc(50% - 57px);
}
@media (max-width: 992px) {
  .therapist-about__content__card.left-card {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.therapist-about__content__card__heading {
  font-size: 32px;
  line-height: 38.4px;
  margin-bottom: 24px;
  color: #004750;
}
.therapist-about__content__card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #004750;
  margin-bottom: 25px;
}
.therapist-about__content__card__text p {
  margin: 0 0 1.25em;
}
.therapist-about__content__card__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .therapist-about__content__card__text {
    font-size: 16px;
    line-height: 1.65;
  }
}
.therapist-about__content__card__text:last-child {
  margin-bottom: 0;
}
.therapist-about__content__card__text .f-14 {
  font-size: 14px;
  line-height: 25px;
}
.therapist-about__content__card #therapist-email {
  color: #004750;
}
.therapist-about__content__card__lists {
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
}
.therapist-about__content__card__lists__list-item {
  max-width: 50%;
  flex: 0 0 50%;
  font-size: 16px;
  line-height: 30px;
  color: #004750;
}
@media (max-width: 992px) {
  .therapist-about__content__card__lists__list-item {
    font-size: 16px;
    line-height: normal;
  }
}

.carrers-main header .desktop-header .navbar-nav .nav-item .nav-link {
  color: #004750;
}
@media (max-width: 992px) {
  .carrers-main .navbar-toggler {
    color: #000;
    border-color: #000;
  }
}
.carrers-main .navbar-toggler-icon {
  filter: brightness(0);
}
.carrers-main .content-wrapper .main-carrers {
  background-color: #FEFFEA;
  padding-top: 220px;
  margin-bottom: 89px;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers {
    padding-top: 100px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}
.carrers-main .content-wrapper .main-carrers__heading {
  font-size: 80px;
  line-height: 80px;
  color: #004750;
  font-weight: 700;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__heading {
    font-size: 60px;
    text-align: center;
  }
}
.carrers-main .content-wrapper .main-carrers__content {
  padding-bottom: 82px;
}
.carrers-main .content-wrapper .main-carrers__content__info__heading {
  font-size: 40px;
  line-height: 48px;
  color: #DF854F;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__heading {
    font-size: 36px;
    line-height: normal;
    text-align: center;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg {
  margin-bottom: 39px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg {
    text-align: center;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg.side-by-side {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg.side-by-side {
    display: block;
    text-align: center;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg.side-by-side .main-carrers__content__info__msg__text {
  font-size: 16px;
  line-height: 24px;
  color: #004750;
  max-width: calc(100% - 334px);
  flex: 0 0 calc(100% - 334px);
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg.side-by-side .main-carrers__content__info__msg__text {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg__founder {
  max-width: 215px;
  flex: 0 0 215px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg__founder {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg__text {
  max-width: 92%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg__text {
    max-width: 100%;
  }
}
.carrers-main .content-wrapper .main-carrers__open-positions {
  margin-bottom: 110px;
}
.carrers-main .content-wrapper .main-carrers__open-positions img {
  padding-right: 47px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__open-positions img {
    padding-right: 0;
  }
}
.carrers-main .content-wrapper .main-carrers__open-positions__heading {
  font-size: 80px;
  line-height: 80px;
  color: #004750;
  margin-bottom: 59px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__open-positions__heading {
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 30px;
  }
  .carrers-main .content-wrapper .main-carrers__open-positions__heading br {
    display: none;
  }
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__open-positions__content {
    margin-top: 30px;
  }
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__main-heading {
  font-size: 40px;
  line-height: 48px;
  color: #004750;
  margin-bottom: 36px;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__main-heading.orange {
  color: #DF854F;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__open-positions__content__main-heading {
    font-size: 32px;
    line-height: normal;
  }
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__heading {
  font-size: 24px;
  line-height: 28.8px;
  color: #004750;
  margin-bottom: 23px;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__heading.orange {
  color: #DF854F;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content ul {
  padding-left: 18px;
  margin-bottom: 25px;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content ul li {
  color: #004750;
  font-size: 16px;
  line-height: 24px;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__text {
  color: #004750;
}

.main-self-help__heading {
  font-size: 80px;
  line-height: 80px;
  color: #004750;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .main-self-help__heading {
    font-size: 56px;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
  }
}
.main-self-help__main-items-wrapper {
  max-width: 1120px;
  margin: 0 auto;
}
.main-self-help__main-items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .main-self-help__main-items {
    display: block;
    margin-bottom: 15px;
  }
}
.main-self-help__main-items__item {
  max-width: calc(50% - 83.5px);
  flex: 0 0 calc(50% - 83.5px);
}
@media (max-width: 992px) {
  .main-self-help__main-items__item {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.main-self-help__main-items__item__heading {
  font-size: 40px;
  line-height: 48px;
  color: #DF854F;
}
@media (max-width: 992px) {
  .main-self-help__main-items__item__heading {
    font-size: 32px;
    line-height: normal;
  }
}
.main-self-help__main-items__item__text {
  padding-left: 20px;
}
.main-self-help__main-items__item__text li {
  font-size: 16px;
  line-height: 24px;
  color: #004750;
}
.main-self-help__tools {
  background-color: #D3ECE3;
  padding: 97px 0 50px;
}
@media (max-width: 992px) {
  .main-self-help__tools {
    padding: 50px 0;
  }
}
.main-self-help__tools__heading {
  font-size: 56px;
  line-height: 67.2px;
  color: #004750;
  margin-bottom: 52px;
}
@media (max-width: 992px) {
  .main-self-help__tools__heading {
    font-size: 32px;
    text-align: center;
    line-height: normal;
  }
}
.main-self-help__tools__items-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .main-self-help__tools__items-main {
    display: block;
  }
}
.main-self-help__tools__items {
  max-width: calc(50% - 83.5px);
  flex: 0 0 calc(50% - 83.5px);
  text-align: center;
}
@media (max-width: 992px) {
  .main-self-help__tools__items {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 50px;
  }
}
.main-self-help__tools__items__img {
  margin-bottom: 31.15px;
}
.main-self-help__tools__items__label {
  font-size: 40px;
  line-height: 48px;
  color: #004750;
}
@media (max-width: 992px) {
  .main-self-help__tools__items__label {
    font-size: 32px;
    line-height: normal;
  }
}
.main-self-help__tools__items__link {
  color: #DF854F;
  font-size: 16px;
  line-height: 24px;
}
.main-self-help__tools__items__link:hover {
  color: #004750;
}

.contact-us header .desktop-header .navbar-nav .nav-item .nav-link {
  color: #004750;
}
@media (max-width: 992px) {
  .contact-us .navbar-toggler {
    color: #000;
    border-color: #000;
  }
}
.contact-us .navbar-toggler-icon {
  filter: brightness(0);
}
.contact-us .main-contact {
  background-color: #FEFFEA;
}
.contact-us .main-contact__heading {
  font-size: 80px;
  color: #004750;
  line-height: 80px;
}
@media (max-width: 992px) {
  .contact-us .main-contact__heading {
    font-size: 56px;
    margin-bottom: 50px;
    text-align: center;
    line-height: normal;
  }
}
.contact-us .main-contact__content {
  padding-top: 238px;
  padding-bottom: 67px;
}
@media (max-width: 992px) {
  .contact-us .main-contact__content {
    padding-top: 100px;
  }
}
.contact-us .main-contact__form .form-group {
  margin-bottom: 27px;
}
.contact-us .main-contact__form .form-control:not(textarea) {
  height: 56px;
}
.contact-us .main-contact__form .form-control {
  background-color: #D3ECE3;
  border-color: #D3ECE3;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #004750;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 1024px) {
  .contact-us .main-contact__form .form-control {
    font-size: 14px;
    line-height: normal;
  }
}
.contact-us .main-contact__form .form-control::-moz-placeholder {
  color: #004750;
}
.contact-us .main-contact__form .form-control::placeholder {
  color: #004750;
}
.contact-us .main-contact__form .form-control:focus {
  box-shadow: none;
}
.contact-us .main-contact__form .btn-primary {
  background-color: #E1E667;
  border-color: #E1E667;
  color: #004750;
  font-size: 16px;
  font-weight: 400;
  border-radius: 36px;
  transition: 0.2s all ease;
}
.contact-us .main-contact__form .btn-primary:hover {
  background-color: #dae12a;
  border-color: #dae12a;
  color: #004750;
}
.contact-us .footer-main {
  padding-top: 78px;
}

.footer-main {
  margin-bottom: 67px;
}
@media (max-width: 769px) {
  .footer-main {
    margin-top: 67px;
    margin-bottom: 20px;
  }
}
.footer-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #004750;
  margin-bottom: 19px;
}
@media (max-width: 769px) {
  .footer-main-wrapper {
    display: block;
  }
}
.footer-main__content {
  display: flex;
  align-items: center;
}
@media (max-width: 769px) {
  .footer-main__content {
    justify-content: space-between;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .footer-main__content {
    display: block;
  }
}
.footer-main__content__label {
  color: #004750;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .footer-main__content__label {
    margin-bottom: 15px;
    text-align: center;
  }
  .footer-main__content__label br {
    display: none;
  }
}
.footer-main__content ul {
  display: flex;
  align-items: center;
  color: #004750;
  margin-left: 45px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .footer-main__content ul {
    justify-content: center;
    margin-left: 0;
  }
}
.footer-main__content ul li {
  margin-right: 45px;
}
.footer-main__content ul li a {
  color: #004750;
  font-size: 26px;
}
.footer-main__content ul li:last-child {
  margin-right: 0;
}
.footer-main__quick-links ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 769px) {
  .footer-main__quick-links ul {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer-main__quick-links ul {
    display: block;
  }
}
.footer-main__quick-links ul li {
  margin-right: 5px;
}
@media (max-width: 1024px) {
  .footer-main__quick-links ul li {
    margin-right: 12px;
  }
}
.footer-main__quick-links ul li:last-child {
  margin-right: 0;
}
.footer-main__quick-links ul li a {
  color: #004750;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  line-height: 18px;
  background-color: transparent;
  border-color: transparent;
  padding: 8px 25px;
  border-radius: 36px;
}
@media (max-width: 1024px) {
  .footer-main__quick-links ul li a {
    padding: 8px 8px;
  }
}
@media (max-width: 769px) {
  .footer-main__quick-links ul li a {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 3px;
    display: inline-block;
  }
}
.footer-main__quick-links ul li a:hover {
  background-color: #E1E667;
  border-color: #E1E667;
}
.footer-main .copyright-main {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .footer-main .copyright-main {
    display: block;
    text-align: center;
  }
}
.footer-main .copyright-main .copyright-text {
  color: #004750;
  font-size: 12px;
  line-height: 14.52px;
  margin-bottom: 0;
}
.footer-main.services {
  background-color: #D3ECE3;
  margin-bottom: 0;
  padding: 67px 0;
}
@media (max-width: 992px) {
  .footer-main.services {
    padding: 30px 0;
    margin-top: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
*::after {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: #FEFFEA;
}
body.bg-blue {
  background-color: #D3ECE3;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sharp Sans";
}

.btn-primary {
  background-color: #E1E667;
  border-color: #E1E667;
  color: #004750;
  font-size: 16px;
  font-weight: 400;
  transition: 0.2s all ease;
}
@media (max-width: 992px) {
  .btn-primary {
    font-size: 14px;
  }
}
.btn-primary:hover {
  background-color: #dae12a;
  border-color: #dae12a;
  color: #004750;
}
.btn-primary:focus, .btn-primary:active {
  background-color: #dae12a;
  border-color: #dae12a;
  box-shadow: none;
  color: #004750;
  outline: none;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0E1117;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ffa804;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Hide loader when content is loaded */
body.loaded .loader-wrapper {
  display: none;
}

.content {
  display: none;
}

body.loaded .content {
  display: block;
}

/* Client edits A.2 — single-column services */
.main-services--single .main-services__main-items--single {
  display: block;
  padding: 24px 30px;
}
.main-services--single .main-services__main-items__item--full,
.main-services--single .main-services__main-items__item {
  max-width: 100%;
  flex: 0 0 100%;
  margin-bottom: 28px;
}
.main-services__subsection-heading {
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0 20px;
  color: #1a3a4a;
}

/* Available Groups callout */
.main-services__groups-box {
  margin: 12px 0 8px;
  padding: 28px 30px 20px;
  border-radius: 24px;
  background: #FEFFEA;
  border: 1px solid rgba(223, 133, 79, 0.28);
  box-shadow: 0 8px 24px rgba(0, 71, 80, 0.05);
}
.main-services__groups-box__heading {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #DF854F;
  margin: 0 0 18px;
}
.main-services__groups-box .main-services__main-items__item {
  margin-bottom: 0;
}
.main-services__groups-box .main-services__main-items__item__heading.small {
  color: #004750;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}
@media (max-width: 992px) {
  .main-services__groups-box {
    padding: 22px 18px 16px;
    border-radius: 18px;
  }
  .main-services__groups-box__heading {
    font-size: 26px;
  }
}

/* Services FAQ accordion */
.main-services-faq {
  padding: 48px 0 40px;
}
.main-services-faq__heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a3a4a;
}
.cip-faq__item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.cip-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1a3a4a;
  cursor: pointer;
}
.cip-faq__question i {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cip-faq__item.is-open .cip-faq__question i {
  transform: rotate(180deg);
}
.cip-faq__answer {
  display: none;
  padding: 0 20px 18px;
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}
.cip-faq__item.is-open .cip-faq__answer {
  display: block;
}
.cip-faq__answer p:last-child {
  margin-bottom: 0;
}

/* Self-Help blog list */
.main-self-help__blog {
  padding: 40px 0 20px;
}
.main-self-help__blog-list__item {
  margin-bottom: 12px;
}
.main-self-help__blog-list__link {
  font-size: 20px;
  font-weight: 600;
  color: #DF854F;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.main-self-help__blog-list__link:hover {
  color: #c45c26;
}

/* Contact intro */
.main-contact__intro {
  margin-top: 20px;
  max-width: 420px;
  line-height: 1.6;
}
.main-contact__intro a,
.main-contact__intro .main-contact__email,
a.main-contact__email {
  color: #DF854F !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.main-contact__intro a:hover,
.main-contact__intro .main-contact__email:hover {
  color: #c45c26 !important;
}

/* Events page */
.main-events {
  padding: 48px 0 20px;
}
.main-events .container {
  max-width: 960px;
}
.main-events__panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 28px;
  box-shadow: 0 8px 28px rgba(0, 71, 80, 0.06);
}
@media (max-width: 992px) {
  .main-events__panel {
    padding: 28px 22px;
    border-radius: 18px;
  }
}
.main-events__heading {
  font-size: 42px;
  line-height: 1.15;
  color: #004750;
  margin: 0 0 14px;
}
@media (max-width: 992px) {
  .main-events__heading {
    font-size: 30px;
  }
}
.main-events__subheading {
  font-size: 28px;
  line-height: 1.2;
  color: #004750;
  margin: 0 0 22px;
}
@media (max-width: 992px) {
  .main-events__subheading {
    font-size: 24px;
  }
}
.main-events__intro {
  font-size: 16px;
  line-height: 1.6;
  color: #DF854F;
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 640px;
}
.main-events__actions {
  margin-bottom: 20px;
}
.main-events__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 36px;
  padding: 10px 26px;
}
.main-events__btn i {
  font-size: 13px;
}
.main-events__upcoming {
  margin-top: 8px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #FEFFEA;
  border: 1px solid rgba(225, 230, 103, 0.7);
}
.main-events__upcoming-text {
  margin: 0;
  color: #004750;
  font-size: 15px;
  line-height: 1.55;
}
.main-events__embed {
  margin-top: 18px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.main-events__embed iframe {
  width: 100% !important;
  max-width: 100%;
  border: 0;
  border-radius: 16px;
  background: #f7f7f2;
}
.main-events__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-events__link-list li {
  margin: 0 0 12px;
}
.main-events__past-item {
  margin: 0 0 28px !important;
}
.main-events__past-item:last-child {
  margin-bottom: 0 !important;
}
.main-events__past-desc {
  margin: 12px 4px 6px;
  color: #004750;
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}
.main-events__past-location {
  margin: 0 4px;
  color: #DF854F;
  font-size: 14px;
  font-weight: 600;
}
.main-events__link-list li:last-child {
  margin-bottom: 0;
}
.main-events__link-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  background: #FEFFEA;
  border: 1px solid rgba(0, 71, 80, 0.08);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.main-events__link-card:hover {
  background: #f7fadb;
  box-shadow: 0 6px 18px rgba(0, 71, 80, 0.08);
  transform: translateY(-1px);
}
.main-events__link-card__label {
  grid-column: 1;
  grid-row: 1;
  color: #004750;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}
.main-events__link-card__meta {
  grid-column: 1;
  grid-row: 2;
  color: #DF854F;
  font-size: 13px;
  font-weight: 500;
}
.main-events__link-card i {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #004750;
  font-size: 14px;
}
.main-events__videos {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.main-events__video {
  width: 100%;
  max-width: 540px;
}
.main-events__video-caption {
  margin: 0 0 12px;
  color: #004750;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.main-events__video-link {
  display: inline-block;
  margin-bottom: 12px;
  color: #004750;
  font-weight: 600;
  text-decoration: underline;
}
.main-events__video-link:hover {
  color: #DF854F;
}
.main-events__instagram {
  display: flex;
  justify-content: center;
}
.main-events__instagram .instagram-media {
  margin: 0 auto !important;
  max-width: 540px !important;
  width: 100% !important;
  min-width: 0 !important;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 71, 80, 0.08);
}

/* Blog single */
.single-blog_article .main-banner.self-help .main-banner__content {
  max-width: 820px;
}
.single-blog_article .main-banner.self-help .main-banner__content__eyebrow {
  margin: 0 0 12px;
  color: #E1E667;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.single-blog_article .main-banner.self-help .main-banner__content__heading {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .single-blog_article .main-banner.self-help .main-banner__content__heading {
    font-size: 28px;
  }
}

.cip-blog-single {
  padding-bottom: 20px;
}
.cip-blog-article {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 48px 52px 52px;
  margin: 28px 0 70px;
  box-shadow: 0 10px 36px rgba(0, 71, 80, 0.07);
  border: 1px solid rgba(0, 71, 80, 0.05);
}
.cip-blog-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, #E1E667 0%, #DF854F 55%, #004750 100%);
}
@media (max-width: 992px) {
  .cip-blog-article {
    padding: 32px 20px 36px;
    border-radius: 20px;
    margin-top: 16px;
  }
  .cip-blog-article::before {
    left: 18px;
    right: 18px;
  }
}

.cip-blog-article__content {
  color: #2a454c;
  font-size: 17px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}
.cip-blog-article__content > *:first-child {
  margin-top: 0;
}
.cip-blog-article__content > p:first-of-type {
  font-size: 19px;
  line-height: 1.75;
  color: #004750;
  font-weight: 500;
  padding: 18px 20px;
  margin: 0 0 28px;
  background: #FEFFEA;
  border-left: 4px solid #E1E667;
  border-radius: 0 14px 14px 0;
}

.cip-blog-article__content h3 {
  font-family: "Sharp Sans", sans-serif;
  font-size: 24px;
  line-height: 1.3;
  color: #004750;
  margin: 44px 0 16px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(254, 255, 234, 0.95) 0%, rgba(254, 255, 234, 0.35) 100%);
  border-radius: 14px;
  border: 1px solid rgba(225, 230, 103, 0.55);
  position: relative;
}
.cip-blog-article__content h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: #DF854F;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
@media (max-width: 992px) {
  .cip-blog-article__content {
    font-size: 16px;
  }
  .cip-blog-article__content > p:first-of-type {
    font-size: 17px;
    padding: 14px 14px;
  }
  .cip-blog-article__content h3 {
    font-size: 20px;
    padding: 14px 14px;
    margin-top: 34px;
  }
}

.cip-blog-article__content h4 {
  font-family: "Sharp Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #DF854F;
  margin: 26px 0 8px;
}

.cip-blog-article__content p {
  margin: 0 0 16px;
}
.cip-blog-article__content strong {
  color: #004750;
  font-weight: 700;
}

.cip-blog-article__content ul,
.cip-blog-article__content ol {
  margin: 0 0 20px;
  padding: 14px 18px 14px 22px;
  list-style: none;
  background: rgba(0, 71, 80, 0.03);
  border-radius: 14px;
}
.cip-blog-article__content ul li,
.cip-blog-article__content ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #004750;
}
.cip-blog-article__content ul li:last-child,
.cip-blog-article__content ol li:last-child {
  margin-bottom: 0;
}
.cip-blog-article__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E1E667;
  box-shadow: 0 0 0 3px rgba(225, 230, 103, 0.28);
  transform: translateY(-50%);
}
.cip-blog-article__content ol {
  counter-reset: cip-blog-ol;
}
.cip-blog-article__content ol li {
  counter-increment: cip-blog-ol;
}
.cip-blog-article__content ol li::before {
  content: counter(cip-blog-ol);
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #004750;
  color: #E1E667;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.cip-blog-article__content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid #DF854F;
  background: #FEFFEA;
  border-radius: 0 14px 14px 0;
  color: #004750;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.cip-blog-article__content a {
  color: #004750;
  text-decoration: underline;
  text-decoration-color: rgba(225, 230, 103, 0.9);
  text-underline-offset: 3px;
}
.cip-blog-article__content a:hover {
  color: #DF854F;
}

.cip-blog-article__disclaimer {
  max-width: 680px;
  margin: 40px auto 0;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(0, 71, 80, 0.04);
  border: 1px solid rgba(0, 71, 80, 0.08);
  font-size: 14px;
  font-style: italic;
  color: #4d6368;
  line-height: 1.6;
}
.cip-blog-article__back {
  max-width: 680px;
  margin: 28px auto 0;
  text-align: left;
}
.cip-blog-article__back .btn {
  border-radius: 36px;
  padding: 10px 26px;
}
/*# sourceMappingURL=main.css.map */