.container {
  max-width: 100%;
  /* margin: 0 auto;
    padding: 0 10%; */
  width: 90% !important;
  margin-inline: auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10%;
  background: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
}
.custom-logo-link {
  width: 152px;
  height: auto;
}
.custom-logo-link img {
  display: block;
}
.main-nav {
  flex-basis: calc(100% - 200px);
}
.main_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  font-family: var(--aesthet-font);
}
.main_menu > li > a {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
}
.main_menu > li .menu_link a {
  text-decoration: none;
}
.main_menu > li.current-menu-item > a,
.main_menu > li.current-menu-ancestor > a {
  color: #637aff;
}
.main_menu .button {
  padding-left: 13px;
}
.main_menu .button a {
  background: var(--ocean-color) var(--arrow-white) no-repeat calc(100% - 27px)
    50% !important;
  color: #fff;
  padding: 15px 50px 15px 35px;
  border-radius: 50px;
  font-size: 20px;
}
.main_menu .sub-menu {
  position: absolute;
  top: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 200px;
  padding: 0;
  border-radius: 12px;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0);
  transition: 0.3s linear all;
  transform-origin: top;
  box-shadow: 0px 5px 10px -7px rgba(0, 0, 0.1);
  overflow: hidden;
}
.main_menu .columns .sub-menu {
  display: flex;
  flex-wrap: wrap;
  width: 400px;
}
.main_menu .columns .sub-menu li {
  flex-basis: 50%;
}
.main_menu .sub-menu a {
  text-decoration: none;
  padding: 12px 15px;
  display: block;
}
/* @media (max-width: 1200px){
	.main_menu .columns .sub-menu{
		display: block;
		width: 100%;
	}
	.main_menu .columns .sub-menu li {
		flex-basis: 100%;
		width: 100%;
	}
} */
.main_menu .sub-menu a:hover,
.main_menu .sub-menu li.current-menu-item > a {
  background: #f5d661;
}
.main_menu > li:hover .sub-menu {
  max-height: 600px;
  opacity: 1;
  transform: scaleY(1);
}
@media (max-width: 1200px) {
  .main_menu > li:hover .sub-menu {
    max-height: 0;
    opacity: 0;
    transform: scaleY(0);
  }
  .main_menu > li.active:hover .sub-menu {
    max-height: 600px;
    opacity: 1;
    transform: scaleY(1);
  }
}
.two_col {
  position: relative;
}
.two_col .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.two_col .heading {
  margin-bottom: 75px;
}
.two_col .col .heading {
  margin-bottom: 35px;
}
.two_col .container > .heading {
  flex-basis: 100%;
  text-align: center;
}
.two_col strong {
  font-family: var(--aesthet-font);
}
.two_col.eqm-1 .buttons {
  padding-bottom: 40px;
}
.how_it_works {
  position: relative;
  text-align: center;
}
.col_animation {
  background-image: url("../images/blue-wave-bg.avif");
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
}
.how_it_works .container {
  position: relative;
}
.how_it_works .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.36) 96.36%
  );
}
.how_it_works .card h3 {
  font-size: 32px;
  margin-bottom: 10px;
  position: relative;
  color: #fff;
}
.how_it_works .card p {
  color: #fff;
  position: relative;
  font-size: 18px;
}

.how_it_works .cards {
  display: flex;
  margin-bottom: 70px;
  text-align: left;
}
.how_it_works .card {
  flex: 1;
  height: 590px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.how_it_works .card_wrap {
  flex: 1;
}
.how_it_works .card_wrap:nth-child(1) .card {
  transform: rotate(-4.2deg);
}
.how_it_works .card_wrap:nth-child(2) .card {
  height: 580px;
}
.how_it_works .card_wrap:nth-child(3) .card {
  transform: rotate(4.2deg);
}
.how_it_works .headings {
  color: #fff;
  margin-bottom: 100px;
}
.how_it_works h2 {
  display: inline-block;
  position: relative;
  font-size: 54px;
}
.how_it_works .headings p {
  font-size: 28px !important;
  font-weight: 700;
  font-family: var(--aesthet-font) !important;
}
.how_it_works h2:after {
  content: "";
  width: 60px;
  height: 158px;
  position: absolute;
  bottom: -145px;
  right: -58px;
  background: url("../images/arrow_down.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.heading.ocean,
.ocean p {
  color: var(--ocean-color);
}
.heading.ruby,
.ruby p {
  color: var(--ruby-color);
}
.heading.sunshine,
.sunshine p {
  color: var(--sunshine-color);
}
.heading.white,
.white p {
  color: var(--white-color);
}
.heading.peach,
.peach p {
  color: var(--peach-color);
}
.heading.sage,
.sage p {
  color: var(--sage-color);
}
.heading.charcoal,
.charcoal p {
  color: var(--charcoal-color);
}

.two_col .col {
  flex: 1;
}
.buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  position: relative;
}
.btn {
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 100px;
  padding: 15px 28px 15px 28px;
  border: 1px solid var(--granite-color);
  text-decoration: none;
  font-family: var(--aesthet-font);
  color: var(--granite-color);
  line-height: 1em;
  display: inline-flex;
  align-items: center;
}
.btn.outline svg path {
  fill: #24261a;
}
.btn:visited {
  color: var(--granite-color);
}
.btn.bg:visited {
  color: var(--granite-color);
}
.btn svg {
  margin-left: 10px;
}
.btn.bg {
  background: var(--tangerine-color);
  border-color: var(--tangerine-color);
  color: var(--granite-color);
}
.btn.bg svg path {
  fill: var(--granite-color);
}
.three_cols {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}
.tag {
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  line-height: 15px;
  color: var(--granite-color);
  font-weight: 400;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  border-radius: 4px;
  background: #f5bc8f;
  margin-bottom: 10px;
}
.three_cols .col {
  flex: 1 1 calc((100% - 140px) / 3);
  text-align: left;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: 0.5s linear all;
}
.service_blurbs .three_cols .col:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 54.25%, #1e1e1e 100%);
  opacity: 0.9;
}
.service_blurbs .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 29px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.header_part {
  display: flex;
  gap: 100px;
  padding-bottom: 63px;
}
.header_part .col {
  flex: 1;
}
.service_blurbs .content h3 {
  color: #fff;
  font-size: 25px;
  line-height: 32px;
  margin: 0;
}
.service_blurbs .content a {
  color: #fff;
  text-decoration: none;
}
.service_blurbs .container > p {
  max-width: 700px;
  margin: 0 auto 50px;
}
.service_blurbs .top_arrow:before {
  content: "";
  position: absolute;
  inset: 0;
}
.top_arrow {
  width: 52px;
  height: 52px;
  border: 1px solid #fff;
  border-radius: 50%;
  flex: 0 0 52px;
  text-align: center;
  line-height: 52px;
  transform: rotate(-45deg);
}
.service_blurbs h3 {
  font-size: 22px;
  line-height: 125%;
  font-weight: 700;
}
.align_bottom {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}
.three_cols img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.three_cols .btn {
  align-self: flex-start;
}
.two_col.img-left .col:nth-of-type(1) {
  order: 2;
}
.site-main .eqm-1 img {
  /* max-width: 540px; */
  margin: 0 auto;
}
.two_col img {
  display: block;
  border-radius: 8px;
  width: 100%;
}
.languages {
  position: relative;
  text-align: center;
  overflow: hidden;
}
body:not(.home) .icon_boxes:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  height: 1200px;
  width: 500px;
  background-image: url(../images/bg_shape.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
.languages .swiper {
  overflow: hidden;
}
.languages .swiper-wrapper {
  display: flex;
  gap: 25px;
  will-change: transform;
}
.languages .icon_box {
  background: #f6f7f9;
  border-radius: 20px;
  padding: 80px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: auto;
  text-align: center;
  border: 1px solid transparent;
  flex: 0 0 500px;
}
.languages .icon_box > *:not(.btn):not(.icon) {
  flex: 0 0 100%;
}
.languages .icon_box:nth-child(1) {
  background: rgba(245, 237, 224, 0.5);
  border-color: #f5ede0;
}
.languages .icon_box:nth-child(2) {
  background: #edf1f8;
  border-color: #637aff;
}
.languages .icon_box:nth-child(3) {
  background: #fcf5d7;
  border-color: #f5d661;
}
.languages .icon_box:nth-child(4) {
  background: #fce6c6;
  border-color: #f29c1c;
}
.languages .icon_box:nth-child(5) {
  background: rgba(245, 188, 143, 0.3);
  border-color: #f5bc8f;
}
.languages .icon_box:nth-child(6) {
  background: rgba(146, 170, 116, 0.4);
  border-color: #92ab74;
}
.languages .icon_box:nth-child(7) {
  background: rgba(110, 5, 22, 0.1);
  border-color: #6e0516;
}
.languages .icon_box:nth-child(8) {
  background: rgba(245, 143, 107, 0.15);
  border-color: #f58f6b;
}
.languages .icon_box:nth-child(9) {
  background: rgba(180, 200, 225, 0.2);
  border-color: #b4c8e1;
}
.languages .icon_box:nth-child(1) .btn,
.languages .icon_box:nth-child(2) .btn,
.languages .icon_box:nth-child(9) .btn {
  background: #637aff;
  color: #fff;
}
.languages .icon_box:nth-child(3) .btn,
.languages .icon_box:nth-child(4) .btn {
  background: #f29c1c;
}
.languages .icon_box:nth-child(5) .btn {
  background: #f5bc8f;
}
.languages .icon_box:nth-child(6) .btn {
  background: #92ab74;
  color: #fff;
}
.languages .icon_box:nth-child(7) .btn {
  background: #6e0516;
  color: #fff;
}
.languages .icon_box:nth-child(8) .btn {
  background: #f58f6b;
}
.languages .icon_box:nth-child(1) .btn path,
.languages .icon_box:nth-child(1) .btn path,
.languages .icon_box:nth-child(2) .btn path,
.languages .icon_box:nth-child(6) .btn path,
.languages .icon_box:nth-child(7) .btn path,
.languages .icon_box:nth-child(9) .btn path {
  fill: #fff;
}
.languages .btn {
  display: inline-block;
  margin-top: auto;
  border: 0;
}
.languages > .btn {
  margin-top: 75px;
}
.languages h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
}
.languages h2 {
  margin-bottom: 35px;
}
.languages .container p {
  margin-bottom: 50px;
  max-width: 768px;
  margin: 0 auto 50px;
}
.icon_box .icon {
  margin-bottom: 60px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #eceff4;
  padding: 9px;
  box-sizing: border-box;
  flex: 0 0 60px;
}
.languages .icon_box p {
  margin-bottom: 35px;
}
.two_col ol li,
.two_col ul li {
  margin-bottom: 10px;
}
.faq_tabs {
  text-align: center;
}
.faq_tabs .btn {
  display: inline-block;
  line-height: 1.3em;
  margin-top: 75px;
}
.tabhead {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 55px;
  padding: 0;
  list-style: none;
  gap: 35px;
  font-size: 26px;
  font-weight: 300;
  line-height: 125%;
  font-family: var(--aesthet-font);
}
.tabhead li {
  cursor: pointer;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}
.tabhead li.active {
  border-color: #637aff;
  color: #637aff;
}
.tabs_wrapper {
  max-width: 924px;
  margin: 0 auto 0;
  text-align: left;
}
.tabs_wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.tabs_wrapper li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 30px 72px 30px 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.tabs_wrapper li.open {
  padding: 29px 72px 0 30px;
}
.tabs_wrapper .tab_pane:not(.active) {
  display: none;
}
.tabs_wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  color: #ba7324;
}
.tabs_wrapper .answer {
  max-height: 1200px;
  overflow: hidden;
  padding: 0 0;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  font-size: 20px;
  line-height: 26px;
}
.tabs_wrapper .answer p:last-child {
  margin-bottom: 0;
}
.tabs_wrapper li.open .answer {
  padding: 20px 0;
}
.tabs_wrapper li:before,
.tabs_wrapper li:after {
  content: "";
  width: 14px;
  height: 2px;
  background: #ba7324;
  position: absolute;
  right: 35px;
  top: 45px;
  border-radius: 10px;
  transition: 0.1s linear all;
}
.tabs_wrapper li:after {
  transform: rotate(90deg);
}
.tabs_wrapper li.open:after {
  transform: translateY(-100px) rotate(90deg);
}
.tabs_wrapper li:not(.open) .answer {
  max-height: 0;
  padding: 0 50px 0 0;
}
.cta .image {
  background-repeat: no-repeat;
  background-size: contain;
  padding: 75px 46% 75px 75px;
  border-radius: 35px;
  background-position: right bottom;
}
.cta ul {
  padding: 0 0 0 20px;
}
.cta .heading {
  display: inline-block;
  padding-bottom: 10px;
}
.cta .heading.ocean {
  border-color: var(--ocean-color);
}
.cta .heading.ruby {
  border-color: var(--ruby-color);
}
.cta .heading.sunshine {
  border-color: var(--sunshine-color);
}
.cta .heading.white {
  border-color: var(--white-color);
}
.form-tabs .gform_required_legend {
  display: none;
}
.form-tabs .tabhead {
  margin-bottom: 35px;
  justify-content: center;
}
.contact_us.two_col .container {
  align-items: flex-start;
}
.contact_us {
  background-size: contain;
  background-position: 50% 125%;
  background-repeat: no-repeat;
}
.contact_us .tabhead li:not(.active) {
  color: var(--charcoal-color);
}
.contact_us .heading {
  font-size: 36px;
  line-height: 125%;
  color: #486284;
}
.contact_us .small_heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.contact_us .wrap {
  background: #fff;
  display: flex;
  gap: 100px;
  padding: 100px;
  border-radius: 15px;
}
.contact_us .wrap .col {
  flex: 1;
}
.full_width_text_box .container {
  padding: 0;
}
.full_width_text_box p {
  line-height: 1.2em;
  font-family: "Aesthet Nova";
  font-weight: 300;
}
.service_blurbs .btn {
  display: none;
}
.col_slider .container {
  display: flex;
  align-items: center;
  gap: 120px;
}
.col_slider .container > * {
  flex: 1;
}
.col_slider .content {
  padding-right: 40px;
  font-family: var(--aesthet-font);
  font-size: 28px;
  line-height: 135%;
  font-weight: 700;
}
.col_slider .slider_wrap {
  position: relative;
  padding-right: 22px;
}
.col_slider.img-right .slider_wrap {
  padding: 0 0 0 22px;
}
.col_slider .slider {
  display: flex;
}
.col_slider .inner {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  width: 640px;
  height: 613px;
}
.col_slider .slider img {
  width: 100%;
  height: 622px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 5px;
}
.col_slider button {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5ede0;
  border: 1px solid var(--sunshine-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.col_slider.img-right button {
  right: unset;
  left: 0;
}
.col_slider button:disabled {
  opacity: 0.5;
}
.col_slider button svg {
  transform: scale(2);
}
.col_slider #prev svg {
  margin-bottom: 2px;
}
.col_slider #prev svg {
  margin-bottom: 2px;
}
.col_slider #prev {
  top: calc(50% - 54px);
  transform: rotate(180deg);
}
.col_slider #next {
  top: 50%;
}
.col_slider.img-right .container {
  flex-direction: row-reverse;
}
.hero {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(157deg, white 14%, transparent 23%);
  z-index: 1;
}
.hero_wrap {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.hero .heading {
  margin-bottom: 30px;
}
.team {
  text-align: center;
}
.team ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
}
.team li img {
  display: block;
  width: 265px;
  height: 265px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 30px;
}
.team h3 {
  color: var(--ruby-color);
  font-size: 26px;
  margin-bottom: 20px;
}
.team p {
  font-size: 18px;
}
.faq_tabs .heading + .tabs_wrapper {
  padding-top: 60px;
}
.col_boxes {
  padding: 130px 0 200px;
  color: #fff;
  text-align: center;
  background-position: 0 -280px;
  margin-bottom: -50px;
}
.col_boxes .cards {
  display: flex;
  gap: 35px;
  justify-content: center;
}
.col_boxes .card_wrap {
  flex: 0 0 350px;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
}
.col_boxes .sub.heading {
  font-size: 28px;
}
.default_page {
  padding-top: 100px;
}
.pricing {
  text-align: center;
}
.pricing .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}
.pricing .sub.heading {
  font-size: 20px;
  margin-bottom: 75px;
  font-weight: 300;
}
.pricing .heading {
  font-weight: 300;
  margin-bottom: 30px;
}
.session_cards .pract {
  gap: 30px;
  justify-content: center;
  display: none;
}
.session_cards .pract.active {
  display: flex;
}
.pricing .prctr_pill {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0 0 75px;
  list-style: none;
}
.pricing .prctr_pill li {
  cursor: pointer;
  border: 1px solid #ba7324;
  border-radius: 100px;
  color: #ba7324;
  padding: 20px 35px;
  font-size: 22px;
  font-weight: 500;
}

.pricing .prctr_pill li:hover,
.pricing .prctr_pill li.active {
  background: #ba7324;
  color: #fff;
}
.pricing .pract h3 {
  margin-bottom: 10px;
  font-weight: 500;
  color: #231f20;
}
.pricing .pract .time {
  margin-bottom: 35px;
  font-size: 14px;
}
.pricing .short_info {
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  text-align: center;
}
.pricing strong {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pricing .cards {
  padding: 30px 0 75px;
}
.pricing .bottom_text {
  margin: 0 0 50px;
  font-size: 26px;
  font-weight: 300;
  font-family: "Aesthet Nova";
}
.pricing .btn-default {
  display: inline-flex;
}
.session_cards svg {
  margin: 0 auto 30px;
}

.session_cards .card {
  background: #fbf8f3;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #f5bc8f;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 calc((100% - 60px) / 3);
  transition: 0.3s all ease;
}
.session_cards .card:hover {
  background: #f5d661;
  color: #000000;
}
.session_cards .card:hover h3 {
  color: #000000;
}
.session_cards .card:hover > svg path {
  fill: #000000;
  stroke: #000000;
}
.session_cards .card.couple > svg {
  transition: filter 0.3s ease;
}
/* .session_cards .card.couple:hover > svg {
  filter: brightness(0) invert(1);
} */
.session_cards .card.couple > svg {
  height: 46px;
  width: 53px;
}
.session_cards .pract a {
  margin-top: auto;
  background: #637aff;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.session_cards .cheveron_icon {
  background: #fff;
  width: 32px;
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.session_cards .cheveron_icon path {
  fill: #637aff;
}
.headings .sub.heading {
  font-size: 28px;
}
.card_sec .cards {
  display: flex;
  gap: 25px;
}
.card_sec .card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.card_sec .card .btn.bg {
  background: var(--ocean-color);
  color: #fff;
  border-color: var(--ocean-color);
}
.card_sec .card .btn.bg svg path {
  fill: #fff;
}
.card_sec .container > .btn {
  margin-top: 75px;
}
.card_sec .headings p.heading {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 75px;
}
.therapists {
  text-align: center;
}
.therapists .heading {
  margin-bottom: 75px;
}
.therapists .buttons {
  justify-content: center;
  padding-top: 75px;
}
.therapists .therpist_profiles {
  display: flex;
  gap: 30px;
}
.therapists .profile {
  flex: 1;
}
.therapists .profile img {
  display: block;
  width: 100%;
  border-radius: 50px;
}
.article .heading {
  margin-bottom: 68px;
  font-weight: 300;
}
.article .btn {
  margin-top: 45px;
}
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  text-align: center;
  display: none;
}
.popup .btn-default {
  max-width: unset;
  display: inline-flex;
  width: auto;
}
.popup .wrap {
  background: #637aff;
  padding: 50px 148px;
  width: 1286px;
  border-radius: 12px;
  position: relative;
  color: #fff;
}
.popup .close {
  position: absolute;
  width: 54px;
  height: 54px;
  right: -20px;
  top: -20px;
  background-color: #f29c1c;
  cursor: pointer;
  border-radius: 50%;
}
.popup .close:before,
.popup .close:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  border-radius: 10px;
  background: #fff;
  margin-left: 6px;
  top: 24px;
  right: 16px;
}
.popup .close:before {
  transform: rotate(45deg);
}
.popup .close:after {
  transform: rotate(-45deg);
}
.popup h2 {
  font-size: 44px;
  font-weight: 300;
  font-family: "Aesthet Nova";
  margin-bottom: 25px;
}
.popup p {
  margin-bottom: 35px;
}
.popup .btn-default {
  margin-bottom: 50px;
}
.popup .btn-default:last-child {
  margin-bottom: 0;
}
.popup .equana_logo {
  display: block;
  width: 182px;
  margin: 0 0 -30px -90px;
}
.popup .pop_data:not(:first-of-type) {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid #8295ff;
}
#map {
  border-radius: 30px;
  overflow: hidden;
}
.map_section .buttons {
  padding-top: 50px;
  justify-content: center;
}
.map_section {
  text-align: center;
}
.map_section .heading {
  margin-bottom: 50px;
}
.page-template-therapists,
.page-template-therapists section[class^="eqm-"] {
  background-color: #f5ede0;
}
.crisis_text {
  background-color: #f5bc8f;
  padding: 75px 15%;
}
.crisis_text p {
  margin: 0;
  font-family: "Aesthet Nova";
  font-size: 27px;
  line-height: 1.2em;
  color: #231f20;
  font-weight: 300;
  text-align: center;
}
.crisis_text a {
  font-weight: 500;
  text-decoration: underline;
}
.sunrise_color_pills {
  position: relative;
  background: linear-gradient(
    to bottom,
    #d2deee 0%,
    #d2deee 70%,
    #f5ede0 70%,
    #f5ede0 100%
  ) !important;
}
.sunrise_color_pills .container {
  display: flex;
  gap: 90px;
}
.sunrise_color_pills .container > div {
  flex: 1;
}
.sunrise_color_pills .top_row .heading {
  font-weight: 300;
  font-size: 44px;
  line-height: 50px;
}
.sunrise_color_pills .sunrise_bg {
  margin: -10% 0 -36%;
}
.nc_pills ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  max-width: 450px;
}
.nc_pills ul li {
  padding: 10px 25px;
  border-radius: 50px;
}
.sunrise_color_pills .bottom_row {
  position: relative;
  z-index: 3;
}
.sunrise_color_pills .btn-default{margin: 0 0 30px;}
.sunrise_color_pills .bottom_row p {
  color: #fff;
}
.faq_part .faq_small .heading,
.faq_part .faq_small p {
  text-align: left;
}
[dir="rtl"] .faq_part .faq_small .heading,
[dir="rtl"] .faq_part .faq_small p {
  text-align: right;
}
section.get_matched {
  background: #f5ede0 !important;
}
.single-languages .get_matched .heading {
  max-width: 980px;
  margin: 0 auto;
}
.lng_reasons .choose_item {
  border-radius: 10px;
  padding: 20px;
  background: #fbf8f3;
  margin-bottom: 14px;
}
.lng_reasons .choose_item h3 {
  color: #b97323;
  font-family: "Aesthet Nova";
  font-size: clamp(22px, 3vw, 32px);
  line-height: 125%;
  font-weight: 300;
  margin-bottom: 20px;
}
.single-languages .lng_reasons .choose_item p {
  color: #000 !important;
  font-family: "Oakes Grotesk" !important;
  font-size: clamp(16px, 4vw, 20px) !important;
  line-height: 130% !important;
}
.color_cards .heading {
  font-weight: 300;
  text-align: center;
}
.color_cards .heading + p {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.color_cards .cards {
  margin: 0;
  padding: 60px 0 60px;
  list-style: none;
  display: flex;
  gap: 20px;
}
.color_cards .btn-default{margin: 30px auto 0;}
.color_cards .cards li {
  flex: 1;
  border-radius: 20px;
  padding: 30px 26px;
}
.color_cards .cards h3 {
  font-weight: 200;
  font-size: 32px;
  font-family: var(--aesthet-font);
}
.color_cards .cards p {
  margin: 0;
}
.color_cards .cards + p {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.big_faq .btn_cta {
  padding-top: 60px;
  max-width: 768px;
  margin: 0 auto;
}
.big_faq .btn_cta h2 {
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.faq_part .col-img {
  padding-left: 0 !important;
  flex-basis: 40% !important;
}
.faq_part .col-text {
  flex-basis: 60% !important;
}
.single-languages .pricing_new:before {
  display: none;
}
.color_carousel .swiper-wrapper {
  display: flex;
  gap: 25px;
  will-change: transform;
}
.color_carousel .card {
  flex: 0 0 25%;
}
.faq_page {
  background: #f5ede0;
}
.simple_hero {
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
}
.simple_hero .heading {
  font-size: 44px;
  font-weight: 300;
}
.simple_hero .buttons {
  justify-content: center;
}
.color_carousel {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/textured-ocean-1.png);
}
.color_carousel:before,
.color_carousel:after {
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.color_carousel:before {
  background-image: url(../images/pills_top.png);
  height: 697px;
  top: -120px;
}
.color_carousel:after {
  background-image: url(../images/pills_bottom.png);
  height: 240px;
}
.color_carousel .card {
  padding: 60px 30px;
  text-align: center;
  border-radius: 20px;
}
.color_carousel .card h3 {
  font-size: 26px;
  font-weight: 500;
}
.color_carousel .card p {
  margin: 0;
}
.faq_small .container {
  background: #fff;
  border-radius: 20px;
  padding: 60px !important;
}
.color_box .box {
  margin: 0 auto;
  border-radius: 15px;
  padding: 35px 80px;
  position: relative;
  z-index: 2;
}
.color_box .box p:last-child {
  margin: 0;
}
.color_box .box p,
.color_box .box a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  line-height: 1.25em;
  font-family: "Aesthet Nova";
  font-weight: 300;
}
.contact_form,
.supp_sec .bg_div {
  position: relative;
  background: #6478ff url(../images/blue-background-image.avif) no-repeat
    center / cover;
}
.contact_form:before,
.contact_form:after,
.supp_sec .bg_div:before,
.supp_sec .bg_div:after {
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
}
.contact_form:before,
.supp_sec .bg_div:before {
  background-image: url(../images/pills_top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 697px;
  top: -120px;
}
.contact_form:after,
.supp_sec .bg_div:after {
  background-image: url(../images/pills_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 240px;
  bottom: 0;
}
.contact_form .form-tabs {
  max-width: 890px;
  margin: 0 auto;
  padding: 75px;
  background: #fbf8f3;
  border-radius: 15px;
  position: relative;
  z-index: 3;
}
.supp_sec {
  background: #f5ede0;
  text-align: center;
  padding: 120px 0 30px;
}
.supp_sec h1 {
  font-size: 44px;
  font-weight: 300;
  color: #6478ff;
  margin-bottom: 35px;
}
.supp_sec h1 + p {
  font-size: 20px;
  font-weight: 300;
  font-family: "Aesthet Nova";
  margin-bottom: 50px;
}
.supp_sec .container {
  max-width: 1140px;
  padding: 0 20px;
}
.supp_sec .multi_select {
  width: 300px;
  margin: 0 auto;
}
.supp_sec .select2-selection--single,
.language_form .select2-selection--single {
  border-color: #54524e !important;
}
.supp_sec .select2-selection--single,
.supp_sec .select2-selection__rendered,
.language_form .select2-selection--single,
.language_form .select2-selection__rendered {
  border-radius: 100px !important;
  height: 65px !important;
  align-items: center;
  background: transparent !important;
  font-size: 20px !important;
  font-weight: 500;

  font-family: "Aesthet Nova";
}
.language_form .select2-selection--single {
  background: #fff !important;
}
.supp_sec .select2-selection__placeholder,
.language_form .select2-selection__placeholder {
  color: #1e1e1e !important;
}
.supp_sec .select2-selection__rendered,
.language_form .select2-selection__rendered {
  padding: 0 25px !important;
}
.supp_sec .select2-selection__arrow,
.language_form .select2-selection__arrow {
  display: none;
}
.supp_sec .select2-selection:after,
.language_form .select2-selection:after {
  width: 15px;
  height: 15px;
  bottom: 28px;
  right: 25px;
  border-color: #54524e;
}
.supp_sec .select2-container--open .select2-selection:after,
.language_form .select2-container--open .select2-selection:after {
  bottom: 18px;
}
.supp_sec .select_2 {
  margin-bottom: 50px;
  z-index: 2;
}
.crisis_data {
  max-width: 1140px;
  margin: 0 auto;
  background: #fbf8f3;
  border-radius: 20px;
  padding: 50px 75px;
  position: relative;
  z-index: 1;
}
.crisis_data ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.crisis_data ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  color: #1e1e1e;
}
.crisis_data li p:last-child {
  margin-bottom: 0;
}
.crisis_data li strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 18px;
}
.crisis_data li a {
  text-decoration: none;
  color: #1e1e1e;
}
.crisis_data li p {
  font-size: 20px;
  font-family: "Aesthet Nova";
  font-weight: 300;
  line-height: 1em;
}
.crisis_data h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 500;
}
.supp_sec .bottom_info {
  max-width: 1140px;
  margin: 0 auto;
  padding: 82px 60px 0;
  font-family: "Aesthet Nova";
  font-size: 24px;
  font-weight: 300;
}
.supp_sec .updated_date {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}
.faq-load-more {
  background: #6478ff;
  color: #fff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 10px;
}
.gt_translate_wrapper {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 30px;
}

.get_matched_page.container {
  text-align: center;
  /* padding: 60px 0 160px; */
}
.get_matched_page {
  margin-bottom: 120px;
  padding: 0 30px;
}
.btns {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.step h1 {
  margin-bottom: 2rem;
}
.step h1 + p {
  margin-bottom: 40px;
}
.next_btn:not(p),
.prev_btn,
.matched_btn {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 6px;
  background: var(--tangerine-color);
  font-size: 18px;
  color: #000;
  text-decoration: none;
  margin-right: 5px;
  /* margin-top: 40px; */
}
.matched_btn {
  border: 1px solid #637aff;
  padding: 18px 40px;
  color: #637aff !important;
}
.matched_btn .cheveron_icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #637aff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-left: 5px;
  flex: 0 0 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btns.get-matched_btns {
  margin-block: 3rem !important;
}
.get-match-wrapper .get-match{
	min-width: 980px;
	padding-top: 160px;
}
.step .btns {
  margin-top: 2rem;
  margin-bottom: 10px;
}
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  padding: 0 10%;
  list-style: none;
  justify-content: center;
  max-width: 100%;
}
.options li {
  border: 1px solid #eee;
  padding: 15px 40px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: #f5d8ac;
}
.options li span {
  line-height: 1em;
  width: 100%;
}
.options li.active {
  background: #637aff;
  color: #fff;
}
.options li:hover {
  border-color: #637aff;
}
.step:not(:first-child) {
  display: none;
}
.matched_therapists #therapists_data {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  justify-content: center;
}
.matched_therapists .no-match-msg {
  flex: 0 0 100%;
}
.matched_therapists .therapist_item {
  flex: 0 0 calc((100% - 60px) / 3);
  display: block;
  background: #eee;
  border-radius: 12px;
  margin: 0;
}
.matched_therapists figure {
  height: 300px;
}
.matched_therapists figure img {
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.matched_therapists .buttons {
  padding: 0 30px;
  justify-content: center;
}
.progress {
  text-align: right;
  padding: 60px 30px 0;
  max-width: 980px;
  margin: 0 auto;
}
.progress .bar {
  width: 100%;
  height: 5px;
  background: #fff;
  margin-bottom: 15px;
  position: relative;
}
.progress .bar span {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  background: #f29c1c;
  width: 0%;
}
.options.select_2 {
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
}
p.error {
  margin: 0;
  padding: 30px 0 0;
  color: red;
}
.get_matched .texts {
  padding-top: 15px;
  max-width: 768px;
  margin: 0 auto;
}
.texts p {
  margin-bottom: 12px;
}

.get_matched_page .select_2 {
  max-width: 420px;
  margin: 0 auto;
}
.get_matched_page .select2-container .select2-selection--single {
  height: 50px !important;
  border-radius: 12px;
}
.get_matched_page span.select2-selection__rendered {
  height: 50px;
  line-height: 50px !important;
  padding-left: 20px !important;
}
.get_matched_page ul.select2-selection__rendered {
  display: flex;
  align-items: center;
}
.get_matched_page .select2-selection__arrow {
  display: none;
}
.get_matched_page .select2-selection:after {
  bottom: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
}
.get_matched_page .select2-container--open .select2-selection:after {
  bottom: 16px;
}
.get_matched_page .select2-selection__choice__display {
  font-size: 15px !important;
}
.skip_text {
  cursor: pointer;
}
.skip_text:hover {
  color: #637aff;
}
.connect_therapist {
  text-align: left;
}
.matched_therapists {
  margin-bottom: 30px;
}
.get_matched_page .select2-results__options li {
  font-size: 16px;
  padding: 10px 20px !important;
}
.get_matched_page .select2-results__options {
  text-align: left;
}
.get_matched_page .select2-selection--multiple {
  padding: 0;
}
.get_matched_page
  .select2-container
  .select2-search--inline
  .select2-search__field {
  height: 50px !important;
  line-height: 50px;
  font-size: 18px !important;
  margin: 0 !important;
}
.get_matched_page .select2-selection--single .select2-selection__clear {
  display: none;
}
.footer_pills.color_pills.color_pills-individual:before,
.footer_pills.color_pills.color_pills-individual:after {
  display: none;
}
.footer_pills.color_pills.color_pills-individual {
  min-height: auto;
  background: #f5ede0 !important;
  padding: 10px 20px;
}
.funding_option.rebate_prices {
  position: relative;
  background: #6478ff url(../images/blue-background-image.avif) no-repeat
    center/cover;
  overflow: hidden;
}
.bgshape {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
}
.bgshape.light {
  background-image: url(../images/blue-background-opacity-50.jpg);
}
.bgshape.dark {
  background-image: url(../images/blue-background-image.avif);
}
.bgshape > div {
  position: relative;
}
.funding_option.rebate_prices:before,
.funding_option.rebate_prices:after,
.bgshape:before,
.bgshape:after {
  content: "";
  left: 0;
  right: 0;
  background-repeat: repeat-x;
  height: 160px;
  width: 100%;
  position: absolute;
  background-size: cover;
}
.funding_option.rebate_prices:before,
.bgshape:before {
  background-image: url(../images/pills_top.png);
  background-repeat: no-repeat;
  background-position: top;
  height: 697px;
  top: -120px;
}
.funding_option.rebate_prices:after,
.bgshape:after,
.intro_with_image.languages-intro .intro_detail:after {
  background-image: url(../images/pills_bottom.png);
  background-repeat: no-repeat;
  background-position: top;
  height: 240px;
}
.sunrise_cta .buttons {
  justify-content: center;
}
body.slug-get-matched,
body.slug-get-matched #masthead {
  background: #f5ede0;
}
.more_languages {
  text-align: center;
  background: #f5ede0;
  padding: 60px 0;
}
.more_languages h1 {
  color: #6478ff;
  font-weight: 300;
  font-size: 44px;
  line-height: 1.3em;
  margin: 0 0 35px;
}
.language_form .wrap {
  max-width: 870px;
  margin: 0 auto;
}
.language_form form {
  margin-bottom: 35px;
}
.language_form .card {
  padding: 90px 30px;
  background: #fbf8f3;
  border-radius: 20px;
  box-shadow: 0px 0 10px 2px #0000000d;
}
.language_form .card p {
  margin: 35px 0 0;
  font-style: italic;
}
.language_form .card p a {
  text-decoration: none;
  color: #000;
  text-decoration: underline;
}
.language_form .select2-results__options {
  text-align: left;
}
.language_form .select2-results__options li {
  font-size: 18px;
}
.language_form .select2-results__option {
  padding: 10px 15px;
}
.all_lang {
  max-width: 1140px;
  margin: 0 auto;
}
.all_lang ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.all_lang li {
  flex: 0 0 30%;
}
.all_lang li a {
  background: #fbf8f3;
  border-radius: 20px;
  font-size: 23px;
  line-height: 1.25em;
  padding: 30px 20px;
  font-family: var(--aesthet-font);
  font-weight: 300;
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 11px 0px #00000012;
  border: 1px solid #0000001c;
}
.all_lang .cheveron_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}
.language_form h2 {
  font-size: 54px;
  font-weight: 300;
  margin-bottom: 35px;
}
.language_form .select2-selection__clear {
  display: none;
}
.more_languages > .container {
  margin-bottom: 60px;
}
.language_form {
  padding: 120px 20px;
}
.all_lang_pills {
  background: #f5ede0;
  padding: 20px 20px 120px;
}
.cards_with_icon .connect_wrap {
  display: flex;
  gap: 22px;
}
.cards_with_icon .connect_col {
  flex: calc(25% - 22px);
  border-radius: 20px;
  padding: 23px;
  display: flex;
  flex-wrap: wrap;
}
.cards_with_icon .connect_desc {
  margin-top: auto;
}
.cards_with_icon .connect_desc p {
  font-family: "Aesthet Nova";
  font-size: 32px;
  line-height: 40px;
  font-weight: 300;
  color: #000;
  margin: 0;
}
.cards_with_icon .connect_icon {
  margin-bottom: 40px;
}
.cards_with_icon {
  padding: 160px 20px;
}
.blog_detail + .connect_therapist {
  margin-bottom: 60px;
}
.meet_founders .image img {
  object-fit: cover !important;
}
.btn_grp {
  position: relative;
  z-index: 1;
}
.faq_intro .intro_detail-content {
  padding-bottom: 350px;
}
.all_lang h2 {
  font-weight: 300;
  text-align: center;
  color: #6478ff;
  font-size: 36px;
  margin-bottom: 35px;
}
.all_lang p {
  text-align: center;
  margin-bottom: 35px;
}
.therapy_reasons + section {
  position: relative;
}
.therapy_reasons + section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: #6478ff url("../images/pricing_top.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.rebate_block {
  padding: 560px 20px 160px;
  background: #d2deee;
}
.rebate_block .container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 100px;
}
.rebate_block .right {
  flex: 0 0 40%;
}
.rebate_block h2 {
  font-weight: 300;
  margin-bottom: 30px;
}
.repeated-blocak-wrapper .btn-default {
  margin: 0;
}
.matched_step .btns{
	flex-wrap: wrap;
	max-width: 300px;
	margin: 0 auto;
}
.matched_step .matched_btn{
	flex: 0 0 100%;
	order: -1;
	font-size: 24px;
	background: #F5D661;
}
.matched_step .matched_btn svg path{fill: #fff;}
.matched_step h2{margin-bottom: 50px;}
em#therapists{
	transform: translateY(-100px);
	display: block;
}
.single-languages .eqm-1.hero .buttons li:nth-child(3) a{
	background: #f29c1c;
	gap: 0;
}
.single-languages .eqm-1.hero .buttons li:nth-child(3) .cheveron_icon{
	opacity: 0;
	flex: 0 0 1px;
	width: 1px;
}
.sunrise_color_pills .extra_btn,
.color_cards .extra_btn{
	display: inline-block;
	background: #f29c1c !important;
}
.get_matched .extra_btn{background: #f29c1c !important;}
.single-languages .eqm-2.therapists{
	padding: 120px 0 !important;
}
.single-languages .eqm-2.therapists:before{display: none;}
.partner_image{width: 160px}
.therapist_item .medicare_logo{
	position: absolute;
	top: 240px;
	right: 0;
	left: 50%;
	text-align: left;
	transform: none;
	z-index: 2;
	background: transparent;
	padding: 0;
	height: auto;
}
.therapist_intro .medicare_logo{
	width: 140px
}
.therapist_item .medicare_logo img{
	max-width: 120px;
}
.new_doc_rebate{
	text-decoration: none;
	text-align: center;
	margin-right: 30px;
}
.new_doc_rebate p{
	margin-bottom: 0;
	color: #000;
}
.desc_msg{
	gap: 5px;
	background: #f48334;
	color: #fff;
	padding: 10px 15px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: max-content;
	margin: 0 auto;
}
.get-match .desc_msg{
	max-width: max-content;
	margin: 0 auto;
	display: block;
}

.single-therapist .desc_msg{
	position: absolute;
	right: 0;
	top: 0;
	text-align: right;
	display: block;
	max-width: 350px;
}
.desc_msg p{
	font-size: 18px !important;
	line-height: 1.2em !important;
	margin: 0 !important;
	display: inline;
}
.desc_msg p a{
	color: #fff !important;
	text-decoration: none;
}
.desc_msg p a:hover{text-decoration: underline;}

@media (max-width: 1600px) {
  .eqm-1.two_col .col:first-child {
    flex: 0 0 60%;
    width: 60%;
    padding: 60px 0;
  }
  .eqm-1.two_col .col:last-child {
    flex: 0 0 40%;
    width: 40%;
  }
  .three_cols {
    gap: 30px;
  }
  .contact_us .wrap {
    padding: 50px;
  }
  .site-main .eqm-1 img {
    max-width: 100%;
  }
  .two_col .container {
    gap: 40px;
    align-items: flex-end;
    padding: 0 10%;
  }
  .container,
  .site-footer .container {
    padding: 0 10%;
  }
  .tabs_wrapper {
    max-width: 100%;
  }
  .two_col.eqm-1 {
    padding-top: 0;
  }
  .two_col.eqm-1 .buttons {
    padding-bottom: 0;
  }
  .how_it_works .card {
    height: 540px;
  }
  .how_it_works .card:nth-child(2) {
    height: 530px;
  }
  .how_it_works .headings {
    margin-bottom: 60px;
  }
  .how_it_works {
    padding-top: 60px !important;
    background-size: cover;
    background-position: top;
  }
  .how_it_works .card_wrap:nth-child(1) .card,
  .how_it_works .card_wrap:nth-child(3) .card {
    height: 460px;
  }
  .how_it_works .card_wrap:nth-child(2) .card {
    height: 450px;
  }
  .col_slider .inner {
    width: 100%;
    height: 400px;
  }
  .col_slider .slider_wrap {
    width: 60%;
  }
  .col_slider .container {
    gap: 60px;
  }
  section.full_width_text_box {
    padding-left: 15%;
    padding-right: 15%;
  }
  .popup .wrap {
    max-width: 1024px;
  }
  .get-match-wrapper .get-match{padding-top: 60px;}
}
@media (max-width: 1240px) {
  .container {
    padding: 0 5%;
  }
  .cta .image {
    padding: 75px 30% 75px 100px;
  }
  section {
    padding: 80px 0;
  }
  .therapist_price{padding: 0 !important;}
  section.appointment_form{padding: 60px 0;}
  .therapist_intro .container{
	padding: 0 15px !important;
  }
  .single-therapist .therapists .container{
	max-width: 1312px;
	padding: 0 15px;
  }
  section.two_col {
    padding: 40px 0;
  }
  .two_col.eqm-1 {
    padding: 0 !important;
  }
  .how_it_works .headings {
    margin-bottom: 100px;
  }
  .how_it_works .card {
    height: 420px;
  }
  .how_it_works .card:nth-child(2) {
    height: 410px;
  }
  .contact_us .wrap {
    gap: 50px;
  }
  .footer_logo {
    width: 200px;
  }
  .pin-spacer + .two_col {
    padding-top: 100px;
  }
  .two_col .container {
    padding: 0 5%;
  }
  section.faq_tabs {
    padding: 60px;
  }
  .col_boxes .card_wrap {
    flex: 1;
  }
  section.full_width_text_box {
    padding: 60px 5%;
  }
  .pricing .cards .card {
    padding: 40px 20px;
  }
  .pricing h3 {
    font-size: 22px;
  }
  .pricing .sub.heading {
    margin-bottom: 30px;
  }
  .pricing .cards {
    padding-bottom: 30px;
  }
  section.pricing {
    padding: 60px 20px;
  }
  section.faq_tabs {
    padding: 60px 0 !important;
  }
  .faq_tabs .heading + .tabs_wrapper {
    padding-top: 20px;
  }
  .col_boxes {
    background-position: 0 -400px;
    padding: 60px 5% 80px;
    margin-bottom: 30px;
  }
  .col_boxes .sub.heading {
    margin-bottom: 40px;
  }
  .col_boxes .cards {
    gap: 20px;
  }
  .two_col .container {
    align-items: center;
  }
  .two_col .img {
    flex: 0 0 40%;
  }
  .eqm-1 .col.img {
    display: none;
  }
  .two_col .col .heading {
    margin-bottom: 20px;
  }
  .card_sec .cards {
    flex-wrap: wrap;
  }
  .card_sec .card {
    flex: 0 0 calc(50% - 12.5px);
  }
  section.languages {
    padding: 40px 0;
  }
  .therapists .therpist_profiles {
    gap: 15px;
  }
  section.therapists,
  section.article {
    padding: 60px 0;
  }
  .article .heading {
    margin-bottom: 30px;
  }
  .eqm-1.two_col .col.img {
    display: none;
  }
  section.eqm-1.two_col .col:first-child {
    flex: 0 0 100%;
    width: 100%;
  }
  .color_carousel .card {
    flex: 0 0 33%;
  }
  .popup .wrap {
    max-width: 80%;
    padding: 60px;
  }
  .popup .equana_logo {
    margin: 0 auto 50px;
  }
  .crisis_text {
    padding: 60px 5%;
  }
  .cards_with_icon .connect_wrap {
    flex-wrap: wrap;
  }
  .cards_with_icon .connect_col {
    flex: 0 0 calc((100% - 22px) / 2);
  }
}
@media (max-width: 1024px) {
  .rebate_block {
    padding: 70px 0;
    &::before {
      opacity: 0 !important;
    }
  }

  .two_col .container {
    column-gap: 30px;
  }

  .service_blurbs .content h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .how_it_works h2 {
    font-size: 48px;
  }
  .how_it_works .headings p {
    font-size: 20px !important;
  }
  .languages .icon_box {
    flex: 0 0 33%;
  }
  .pricing .cards {
    gap: 15px;
  }
  .pricing .cards .card {
    padding: 20px;
  }
  .color_carousel .card {
    flex: 0 0 45%;
  }
  .get-match-wrapper .get-match{min-width: 768px;}
  .sunrise_color_pills .left{padding-top: 80px;}
  .get-match-wrapper .get-match{padding-top: 0;}
  .slug-get-matched .eqm-1{padding-bottom: 0;}
  .slug-get-matched .eqm-2{padding-top: 0 !important;}
  .therapist_price .newdoc_logo{
		position: static !important;
		margin-top: 15px;
	}
}
@media (max-width: 980px) {
  .two_col .container {
    flex-wrap: wrap;
    row-gap: 30px;
    padding: 0 5%;
  }
  .container {
    padding: 0 5%;
  }
  .three_cols {
    display: block;
  }
  .three_cols .col:not(:last-child) {
    margin-bottom: 20px;
  }
  .cta .image {
    padding: 60px;
  }
  .site-footer .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  h2.heading {
    font-size: 32px;
  }
  h1.heading {
    font-size: 42px;
  }
  section.languages {
    padding: 60px 0;
  }
  .eqm-1.two_col .col {
    width: 100% !important;
  }
  .header_part {
    gap: 40px;
  }
  .service_blurbs .three_cols {
    display: flex;
  }
  .service_blurbs .three_cols .col {
    margin: 0;
  }
  .service_blurbs .content {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 15px;
  }
  .service_blurbs .top_arrow {
    display: block;
  }
  .two_col .col {
    flex: 0 0 100%;
  }
  .how_it_works .card h3 {
    font-size: 22px;
  }
  .contact_us .wrap {
    flex-wrap: wrap;
  }
  .contact_us .wrap .col {
    flex: 0 0 100%;
  }
  .contact_us {
    background-position: 50% 100%;
  }
  .eqm-1.two_col .container,
  .header_part {
    display: block;
  }
  .service_blurbs .three_cols {
    gap: 15px;
  }
  .two_col img {
    width: 50%;
  }
  .how_it_works .card {
    height: 360px;
  }
  .how_it_works .card:nth-child(2) {
    height: 350px;
  }
  .faq_tabs {
    padding-top: 20px !important;
  }
  .cta .image {
    padding: 60px 35% 60px 50px;
  }
  .how_it_works .card_wrap:nth-child(1) .card,
  .how_it_works .card_wrap:nth-child(3) .card {
    height: 360px;
  }
  .how_it_works .card_wrap:nth-child(2) .card {
    height: 350px;
  }
  .contact_us .heading {
    font-size: 30px;
  }
  .languages .icon_box {
    flex: 0 0 50%;
  }
  .col_slider .inner {
    height: 350px;
  }
  .two_col .col.img {
    order: -1;
  }
  .col_boxes .card_wrap {
    padding: 50px 25px;
  }
  .col_boxes {
    padding: 60px 0 80px;
  }
  section.headings {
    padding: 20px 5% 0;
  }
  .headings .sub.heading {
    font-size: 18px;
  }
  section.full_width_text_box {
    padding: 30px 5%;
  }
  section.pricing {
    padding: 30px 20px 60px;
  }
  .therapists .therpist_profiles {
    flex-wrap: wrap;
    gap: 20px;
  }
  .therapists .profile {
    flex: 0 0 calc(50% - 10px);
  }
  section.hero {
    background-size: 140%;
    background-position: 0 34%;
  }
  .pricing .prctr_pill li {
    font-size: 18px;
    padding: 12px 25px;
  }
  .session_cards .pract {
    gap: 15px;
  }
  .session_cards .card {
    flex: 0 0 0 0 calc((100% - 30px) / 3);
  }
  .pricing .short_info {
    max-width: 100%;
  }
  .pricing .cards,
  .pricing .prctr_pill {
    margin-bottom: 30px;
  }
  .popup .pop_data:not(:first-of-type) {
    padding-top: 30px;
    margin-top: 30px;
  }
  .cards_with_icon .container {
    padding: 0;
  }
  .get-match-wrapper .get-match{min-width: auto}
  .sunrise_color_pills .left{
		padding-top: 0;
		padding-bottom: 30px;
	}
	.therapist_intro .intro_wrap .intro_details .button_wrapper,
	.other_therapists{
		display: block !important;
		padding-top: 10px;
	}
	.therapists .other_therapists .therapist_item{
		width: 100%;
		max-width: 100%;
		display: grid !important;
		margin-bottom: 30px !important;
	}
	.therapist_intro .intro_wrap .intro_details{
		max-width: calc(100% - 321px);
		flex-basis: calc(100% - 321px) !important;
	}
	.page-therapists .eqm-1.article{
		position: relative;
		z-index: 4;
	}
}
@media (max-width: 768px) {
  .btns {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .main-nav {
    width: 90%;
  }
  section.service_blurbs,
  section.faq_tabs {
    padding: 60px 0;
  }
  .site-main .eqm-1 img {
    margin: 0 0 0 auto;
  }
  section.hero {
    padding: 60px 0;
  }
  .tabs_wrapper li {
    padding: 20px 60px 20px 20px;
  }
  .cta .image {
    background-size: 30%;
    padding: 60px 25% 60px 50px;
  }
  .contact_us .heading {
    font-size: 26px;
  }
  .how_it_works .cards {
    display: block;
    max-width: 400px;
    margin: 0 auto 50px;
  }
  .how_it_works {
    background-position: top center;
  }
  .site-footer .footer_middle .container {
    gap: 30px;
  }
  .service_blurbs .three_cols {
    flex-wrap: wrap;
  }
  .service_blurbs .three_cols .col {
    flex: 0 0 60%;
  }
  .service_blurbs .content {
    padding: 0 40px 40px;
  }
  .how_it_works .card {
    height: 280px !important;
  }
  .how_it_works .card:nth-child(1) {
    transform: rotate(4.2deg);
  }
  .how_it_works .card:nth-child(2) {
    margin-top: -15px;
  }
  .how_it_works .card:nth-child(3) {
    transform: rotate(4.2deg);
  }
  .tabs_wrapper h3 {
    font-size: 20px;
  }
  .tabs_wrapper li:before,
  .tabs_wrapper li:after {
    top: 35px;
    right: 20px;
  }
  /* .hero:before{background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 30%, transparent 100%);} */
  .languages .icon_box {
    flex: 0 0 50%;
  }
  .header_part {
    padding-bottom: 30px;
  }
  .col_slider .container {
    gap: 20px;
  }
  .team ul {
    max-width: 100%;
    gap: 40px;
    justify-content: center;
  }
  .team li img {
    width: 200px;
    height: 200px;
  }
  .team h3 {
    font-size: 22px;
  }
  .team p {
    font-size: 16px;
  }
  .pricing .cards .card,
  .col_boxes .card_wrap {
    flex: 0 0 100%;
  }
  .pricing .cards,
  .col_boxes .cards {
    flex-wrap: wrap;
  }
  .btn {
    font-size: 20px;
  }
  .pricing .buttons {
    flex-wrap: wrap;
  }
  .col_boxes {
    background-position: 0 0;
  }
  h3 {
    font-size: 26px;
  }
  .col_slider .content {
    padding-right: 0;
  }
  .popup .wrap {
    max-width: 80%;
    padding: 20px;
  }
  .popup {
    padding: 30px;
  }
  .popup h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .popup .close {
    right: -15px;
    top: -20px;
    width: 40px;
    height: 40px;
  }
  .popup p {
    margin-bottom: 20px;
  }
  .popup .btn-default {
    margin-bottom: 25px;
  }
  .card_sec .card {
    padding: 20px;
  }
  section.card_sec {
    padding: 60px 0;
  }
  .card_sec .headings p.heading {
    margin-bottom: 30px;
  }
  section.therapists,
  section.article {
    padding: 40px 0;
  }
  section.map_section,
  section.languages {
    padding: 40px 0;
  }
  .new_design.languages{padding: 0;}
  section.hero {
    background-size: 140%;
    background-position: 0;
  }
  .session_cards .pract {
    flex-wrap: wrap;
  }
  .pricing .short_info {
    margin: 0 0 30px;
  }
  .pricing .prctr_pill {
    gap: 15px;
  }
  .crisis_text {
    padding: 60px 5%;
  }
  .crisis_text p {
    font-size: 22px;
  }
  .pricing .bottom_text {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .popup .close:before,
  .popup .close:after {
    top: 20px;
    left: 5px;
  }
  .supp_sec {
    padding: 60px 0 30px;
  }
  .crisis_data {
    padding: 30px;
  }
  .crisis_data h2 {
    margin-bottom: 10px;
  }
  .crisis_data ul li {
    padding: 15px 0;
  }
  .crisis_data li p {
    font-size: 24px;
  }
  .supp_sec .container {
    padding: 0 20px;
  }
  .supp_sec .bottom_info {
    padding: 30px 0 0;
    font-size: 18px;
  }
  .popup .equana_logo {
    width: 130px;
    margin: 0 auto 25px;
  }
  .supp_sec .bg_div {
    padding: 0 30px;
  }
  .progress {
    padding: 30px 30px 0;
  }
  .therapist_item .content .buttons {
    padding: 0;
  }
  /* see more language */
  .all_lang li.lang-hidden {
    display: none;
  }
  /* .all_lang .more-lang-link{display: none;} */
  .toggle-langs {
    display: block;
    margin-top: 10px;
    color: #f29c1c;
    font-size: 16px;
    font-weight: 500;
    font-family: "Oakes Grotesk", Courier, monospace;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    width: 100%;
    text-align: center;
    background-color: unset;
    border: none;
  }
  .more-lang-ext {
    margin-top: 15px;
    text-align: center;
  }
	.more-lang-ext a {
		background: #fbf8f3;
		border-radius: 20px;
		font-size: 20px;
		padding: 20px 30px;
		font-family: var(--aesthet-font);
		font-weight: 300;
		text-decoration: none;
		color: #000;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0px 0px 11px 0px #00000012;
		border: 1px solid #0000001c;
		width: 100%;
		/* max-width: 280px; */
		box-sizing: border-box;
	}
	.contact_form .form-tabs {
		padding: 30px;
	}
  	.matched_btn{padding: 18px 20px;}

	.therapist_price .wrap{padding: 30px !important;}
	.therapist_item .medicare_logo img{max-width: 90px;}
	body.single-therapist .desc_msg,
	.article .desc_msg{
		position: fixed !important;
		bottom: 0;
		left: 0;
		right: 0;
		border-radius: 0;
		top: unset;
		max-width: 100% !important;
		margin: 0 !important;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 99;
		display: block;
		text-align: center !important;
	}
	.therapist_intro .intro_wrap p{display: inline;}
	.therapist_price .container,
	.appointment_form .container{
		width: 100% !important;
		padding: 0 !important;
	}
	body.single-therapist .therapists .other_therapists .therapist_item{display: block !important;}
	body.single-therapist .therapists .other_therapists .therapist_item .content{
		height: auto !important;
		min-height: auto !important;
	}
	    .therapist_intro .intro_wrap .intro_details {
        max-width: 100%;
        flex-basis: 100% !important;
    }
	.therapist_intro{padding-bottom: 60px !important;}
	.rebate_prices .newdoc,
	.rebate_left{text-align: center;}
	.rebate_left .rebate_logos{justify-content: center !important;}
	.desc_msg{padding: 15px;}
}
@media (max-width: 640px) {
  .color_carousel .card {
    flex: 0 0 100%;
  }
  .languages .icon_box {
    flex: 0 0 100%;
  }
  .footer_logo {
    width: 200px;
  }
  .col_slider .container {
    display: block;
  }
  .col_slider .slider_wrap {
    width: 100%;
    padding: 0 0 50px;
  }
  .col_slider {
    padding: 0 !important;
  }
  .col_slider button {
    right: unset;
    left: unset;
    bottom: 24px;
  }
  .col_slider #prev {
    top: unset;
    left: calc(50% - 70px);
  }
  .col_slider #next {
    top: unset;
    left: calc(50% + 22px);
  }
  .team ul {
    gap: 20px;
  }
  section.full_width_text_box p {
    font-size: 20px;
  }
  .col_boxes .card img {
    max-width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  .pricing .sub.heading {
    font-size: 16px;
  }
  .card_sec .card {
    flex: 0 0 100%;
    padding: 35px;
  }
  .therapists .profile {
    flex: 0 0 100%;
  }
  .simple_hero {
    padding: 60px 20px !important;
  }
  section.faq_small {
    padding: 30px 30px !important;
  }
  .color_carousel {
    padding: 80px 0;
  }
  .faq_small .container {
    padding: 30px !important;
  }
  .popup .wrap {
    max-width: 95%;
    padding: 30px 15px;
  }
  .all_lang li a {
    font-size: 26px;
  }
  .all_lang li {
    flex: 0 0 45%;
  }
  .language_form h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .language_form .card {
    padding: 40px 30px;
  }
  .cards_with_icon .connect_col {
    flex: 0 0 100%;
  }
  .hero.new_design .heading{
	font-size: 32px;
	line-height: 40px;
  }
  .hero.new_design .hero_wrap{padding: 50px 30px;}
  .language_btns .new_doc_rebate{margin-right: 0;}
}
@media (max-width: 540px) {
  .service_blurbs .three_cols .col {
    flex: 0 0 100%;
  }
  .service_blurbs .content h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .two_col img {
    width: 80%;
  }
  .tabs_wrapper li {
    padding: 15px 45px 15px 0;
  }
  .tabs_wrapper li:before,
  .tabs_wrapper li:after {
    top: 30px;
    right: 20px;
  }
  .cta .image {
    padding: 40px 20% 40px 30px;
  }
  .contact_us .wrap {
    padding: 30px;
  }
  .contact_us .wrap {
    gap: 30px;
  }
  .languages .container {
    padding: 0 5%;
  }
  .languages h2 {
    margin-bottom: 20px;
  }
  .how_it_works .headings {
    margin-bottom: 40px;
  }
  .how_it_works h2:after {
    height: 80px;
    bottom: -70px;
  }
  .contact_us .heading {
    font-size: 22px;
  }
  .languages h3 {
    font-size: 20px;
  }
  .btn {
    font-size: 18px;
    padding: 12px 25px;
  }
  .service_blurbs .content .top_arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
  .site-main .eqm-1 img {
    display: none;
  }
  .site-main .eqm-1 .get-match img {
    display: block;
  }
  .site-main .matched_therapists img {
	display: block !important;
  }
  .site-main .matched_therapists .medicare_logo img{
	margin: 0 auto 0 0;
  }
  .header_part {
    padding-bottom: 30px;
  }
  /* .hero:before{background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 80%, transparent 100%);} */
  .hero {
    background-position: 0%;
  }
  .hero_wrap {
    max-width: 90%;
  }
  .languages .icon_box {
    flex: 0 0 100%;
    padding: 50px 20px;
  }
  .languages .swiper-wrapper {
    flex-wrap: wrap;
    padding: 0 5%;
  }
  .home .languages .container {
    padding: 0 5%;
  }
  .footer_logo {
    width: 180px;
  }
  .site-footer h3 img {
    width: 40px;
    flex: 0 0 40px;
  }
  .site-footer h3 img:first-child {
    margin-left: 5px;
  }
  .team li img {
    width: 150px;
    height: 150px;
  }
  .team h3 {
    font-size: 20px;
  }
  .pricing h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .pricing .cards .card {
    padding: 40px 20px;
  }
  .pricing .content {
    margin-bottom: 30px;
  }
  .col_boxes .cards {
    gap: 10px;
  }
  .col_boxes .card_wrap {
    padding: 30px 20px;
  }
  .col_boxes .sub.heading {
    font-size: 20px;
    line-height: 1.3em;
  }
  .all_lang li {
    flex: 0 0 100%;
  }
  .language_form h2 {
    font-size: 32px;
  }
  .more_languages {
    padding-bottom: 0;
  }
  .cards_with_icon {
    padding: 80px 20px;
  }
  .all_lang_pills {
    padding: 20px;
  }
  .more_languages > .container {
    margin-bottom: 30px;
  }
  .language_form {
    padding: 60px 20px;
  }
  .appointment_form .container{
		padding: 0 !important;
		width: auto !important;
		max-width: 100% !important;
	}
	.appointment_form .booking_box{padding: 35px 0 !important;}
	.appointment_form .booking_box h2,
	.appointment_form .booking_box p{padding: 0 15px;}
	.therapist_intro .intro_wrap .intro_author img{
		width: 200px !important;
		height: 200px !important;
	}
}

@media (max-width: 480px) {
  .cta ul {
    padding: 0 0 0 15px;
  }
  .cta .image {
    padding: 30px;
  }
  .contact_us .heading,
  .tabhead {
    font-size: 20px;
    text-align: left;
  }
  h2.heading {
    font-size: 28px;
  }
  .two_col .heading {
    margin-bottom: 20px;
  }
  h1.heading {
    font-size: 38px;
    line-height: 1.2em;
  }
  .hero h1.heading {
    font-size: 26px;
  }
  section.cta {
    padding: 60px 0;
  }
  .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
  h3.heading {
    font-size: 22px;
  }
  .tabs_wrapper h3 {
    font-size: 18px;
  }
  .tabs_wrapper li {
    padding: 15px 60px 15px 5px;
  }
  .tabs_wrapper li:before,
  .tabs_wrapper li:after {
    top: 26px;
    right: 25px;
  }
  .tabs_wrapper li.open {
    padding: 20px 60px 0 5px;
  }
  .hero_wrap {
    max-width: 100%;
  }
  .buttons a {
    padding: 12px 20px;
  }
  .btn-default.bg-yellow {
    padding: 6px 20px;
  }
}
.gform_confirmation_message {
  text-align: center;
}
[dir="rtl"] body,
[dir="rtl"] {
  text-align: right;
}
