@font-face {
  font-family: "OpenSans-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/wp-content/themes/talkingtherapies/assets/fonts/OpenSans-Light.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSans-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/wp-content/themes/talkingtherapies/assets/fonts/OpenSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSans-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/wp-content/themes/talkingtherapies/assets/fonts/OpenSans-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSans-Bold";
  font-style: normal;
  font-weight: 600;
  src: url("/wp-content/themes/talkingtherapies/assets/fonts/OpenSans-Bold.ttf") format("truetype");
}
.crisis__heart {
  transform-origin: bottom center;
  animation: movingheart 4s infinite ease-in-out;
}

@keyframes movingheart {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
#balloon {
  transform-origin: bottom center;
  animation: mymove 10s infinite ease-in-out;
}
#balloon ellipse {
  opacity: 0.2;
  overflow: hidden;
}

#big-balloon {
  transform-origin: 10px 10px;
  animation: rotate 10s ease-in-out infinite alternate, stretch 10s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-11deg);
  }
}
@keyframes stretch {
  0% {
    height: 300px;
  }
  50% {
    height: 100px;
  }
  100% {
    height: 112px;
  }
}
#leaf-1 {
  transform-origin: bottom center;
  animation: mymove 10s infinite ease-in-out;
  position: absolute;
}
#leaf-1 ellipse {
  opacity: 0.2;
  overflow: hidden;
}

#leaf-2 {
  transform-origin: bottom center;
  animation: mymove 10s infinite ease-in-out;
  position: absolute;
}
#leaf-2 ellipse {
  opacity: 0.2;
  overflow: hidden;
}

#leaf-3 {
  transform-origin: bottom center;
  animation: mymove 10s infinite ease-in-out;
  position: absolute;
}
#leaf-3 ellipse {
  opacity: 0.2;
  overflow: hidden;
}

@keyframes mymove {
  0% {
    left: 0px;
  }
  20% {
    transform: rotate(1deg);
    bottom: 5px;
  }
  60% {
    transform: rotate(-1deg);
    bottom: 8px;
  }
  80% {
    transform: rotate(1deg);
    bottom: 15px;
  }
  100% {
    left: 0px;
    transform: rotate(0deg);
  }
}
.about-us__hand-animation {
  animation: pulse 2s infinite;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  40% {
    transform: scale(1) rotate(5deg);
  }
  80% {
    transform: scale(1) rotate(-5deg);
  }
  100% {
    transform: scale(0.9) rotate(0);
  }
}
.moving-arm {
  transform: translate(-143.39295px, -208.67402px);
  animation: movearm 2s infinite;
  transform-origin: center;
}

@keyframes movearm {
  0% {
    transform: translate(-143.39295px, -208.67402px);
  }
  40% {
    transform: translate(-143.39295px, -216.67402px);
  }
  80% {
    transform: translate(-143.39295px, -210.67402px);
  }
  100% {
    transform: translate(-143.39295px, -208.67402px);
  }
}
:root {
  --clr-lighter-grey: rgb(246, 246, 246);
  --clr-light-grey: rgb(236, 236, 236);
  --clr-dark-grey: rgb(217, 217, 217);
  --clr-light-purple: rgb(211, 196, 227);
  --clr-dark-purple: rgb(82, 39, 115);
  --clr-light-green: rgb(196, 228, 139);
  --clr-green: rgb(150, 201, 61);
  --clr-button-hover: rgb(179, 153, 207);
  --border-rad-small: 9px;
  --border-rad-big: 27px;
  --swiper-theme-color: var(--clr-light-purple) !important;
  --swiper-navigation-size: 32px !important;
}

body {
  line-height: 1.4;
  color: black;
  font-family: "OpenSans-Regular", sans-serif;
  font-size: 16px;
}

* {
  font-family: "OpenSans-Regular", sans-serif;
}

p {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

h1 {
  font-weight: unset;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

.title {
  font-size: 2rem;
  font-family: "OpenSans-Bold", sans-serif;
  margin-bottom: 1rem;
  line-height: unset;
  display: inline-block;
}
@media (min-width: 768px) {
  .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.subtitle {
  font-size: 1.5rem;
  font-family: "OpenSans-Bold", sans-serif;
  position: relative;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .subtitle {
    margin-bottom: 2rem;
    font-size: 2.25rem;
  }
}
.subtitle::before {
  content: "";
  height: 100%;
  display: block;
  margin-right: 1rem;
  width: 4px;
  background-color: var(--clr-light-purple);
  position: absolute;
  left: -1rem;
}

.link {
  text-decoration: none;
  color: var(--clr-green);
  position: relative;
}
@media (min-width: 768px) {
  .link::after {
    content: "";
    width: calc(100% + 4px);
    background-color: var(--clr-green);
    display: inline;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: -2px;
    transition: 150ms;
    transform-origin: bottom;
  }
}
.link:hover::after {
  height: 100%;
  opacity: 0.2;
}

strong {
  font-family: "OpenSans-Bold", sans-serif;
}

.blog-post ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .query {
    max-width: 150ch;
    margin: 0 auto;
  }
}

.query {
  position: relative;
}

.query {
  width: min(100% - 4rem, 150ch);
  margin-left: auto;
  margin-right: auto;
}

.journey-wrap {
  width: min(100% - 4rem, 150ch);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(2rem + var(--header-height));
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: calc(12rem + var(--header-height));
  }
}

html,
body {
  min-height: 100%;
  height: 100%;
}

body {
  width: 100%;
  position: relative;
  overflow-x: hidden !important;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  margin-top: var(--header-height);
  padding-top: 2rem;
}

footer {
  flex-shrink: 0;
}

.width-wrapper {
  max-width: 127ch;
  margin-left: auto;
  margin-right: auto;
}

.font--purple {
  color: var(--clr-dark-purple);
}

.font--green {
  color: var(--clr-green);
}

.font--bold {
  font-family: "OpenSans-Bold", sans-serif;
}

.txt--centered {
  text-align: center;
}

.title--underline {
  border-bottom: 4px solid var(--clr-light-purple);
}

.text--reveal {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transform: translateY(-2rem);
  transition: all 1.5s;
}

.text--reveal__horizontal {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: all 1.5s;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.no-scroll {
  overflow-y: hidden;
}

.gtranslate_wrapper {
  display: none !important;
}

#gt_float_wrapper {
  display: none !important;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 150ms;
  text-decoration: none;
  color: black;
  padding: 1rem 2rem;
  background-color: var(--clr-light-purple);
  font-family: "OpenSans-Medium", sans-serif;
  border-radius: var(--border-rad-small);
}
.btn-primary__arrow {
  width: 16px;
  height: 16px;
  margin-left: 1rem;
  transition: 150ms;
}
.btn-primary.btn--header {
  padding: 0.75rem 2rem;
  display: none;
}
@media (min-width: 1024px) {
  .btn-primary.btn--header {
    display: flex;
  }
}
.btn-primary.btn--header-mobile {
  padding: 0;
  width: 100%;
}
.btn-primary.btn--header-mobile a {
  width: 100%;
  display: flex;
  padding: 1rem 2rem;
  text-align: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .btn-primary.btn--header-mobile a {
    display: none;
  }
}
@media (min-width: 768px) {
  .btn-primary.btn--header-mobile {
    display: none;
  }
}
.btn-primary.btn--grey {
  background-color: var(--clr-light-grey);
}
.btn-primary.btn--lightest-grey {
  background-color: #f2f2f2;
}
.btn-primary.btn--green {
  background-color: var(--clr-light-green);
}
.btn-primary.btn--journey {
  display: flex;
  justify-content: center;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .btn-primary.btn--journey {
    display: none;
  }
}
.btn-primary:hover {
  background-color: var(--clr-button-hover);
}
.btn-primary:hover .btn-primary__arrow {
  transform: translateX(5px);
}

.hero__inside {
  padding-bottom: 2rem;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero__inside {
    align-items: center;
    padding-bottom: 4rem;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .hero__inside {
    flex-direction: row;
  }
}
.hero__title {
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--clr-dark-purple);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
.hero__left {
  position: relative;
}
@media (min-width: 1024px) {
  .hero__left {
    max-width: 50%;
  }
}
.hero__right {
  display: none;
}
@media (min-width: 768px) {
  .hero__right {
    display: unset;
    position: relative;
    transition: all 1.5s;
    width: 50%;
    --animated-purp-in: 127%;
    clip-path: polygon(100% 0%, -1000000% 100%, 100% 100%);
  }
  .hero__right::after {
    content: "";
    position: absolute;
    background: var(--clr-light-green);
    transform-origin: top;
    z-index: 1;
    transform: rotate(27deg);
    width: 207%;
    height: 112%;
    top: 47%;
    left: 38%;
  }
  .hero__right::before {
    content: "";
    position: absolute;
    background: var(--clr-light-purple);
    transform-origin: top;
    z-index: 1;
    transform: rotate(-30deg);
    width: 110%;
    height: 100%;
    z-index: 2;
    top: var(--animated-purp-in);
  }
}
.hero__right-scroller-wrap {
  display: none;
}
@media (min-width: 1024px) {
  .hero__right-scroller-wrap {
    display: unset;
    position: absolute;
    right: 6rem;
    bottom: 8rem;
    z-index: 1;
  }
}
.hero__right-scroller {
  display: none;
}
@media (min-width: 1024px) {
  .hero__right-scroller {
    display: unset;
    position: absolute;
    right: 50%;
    bottom: -3rem;
    transform: translateX(50%);
  }
}
.hero__right-scroller-arrow {
  position: absolute;
  z-index: 50;
  right: 50%;
  transform: translateX(50%);
}
.hero__tagline {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: "OpenSans-Bold", sans-serif;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__tagline::before {
    content: "";
    width: 2rem;
    background-color: var(--clr-light-purple);
    height: 4px;
    display: block;
    margin-right: 0.5rem;
  }
}
.hero__tagline span {
  margin-bottom: 0rem;
  margin-right: 4px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .hero__tagline span {
    font-family: "OpenSans-Bold", sans-serif;
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .hero__tagline span {
    font-size: 1.3rem;
  }
}
@media (min-width: 1280px) {
  .hero__tagline span {
    font-size: 1.5rem;
  }
}
.hero__tagline-clr-1 {
  color: #522773;
}
.hero__tagline-clr-2 {
  color: #84679b;
}
.hero__tagline-clr-3 {
  color: #d3c4e3;
}
.hero__content {
  margin-bottom: 2rem;
}
.hero__btns-container {
  display: block;
}
@media (min-width: 768px) {
  .hero__btns-container {
    display: inline-flex;
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .hero__btns-container {
    flex-direction: row;
  }
}
.hero__btns-container .btn-primary:not(:last-of-type) {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero__btns-container .btn-primary:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1280px) {
  .hero__btns-container .btn-primary:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.hero__btns-container .btn-primary:last-of-type {
  display: none;
}
@media (min-width: 768px) {
  .hero__btns-container .btn-primary:last-of-type {
    display: inline-flex;
  }
}
.hero__graphic {
  width: 509px;
  height: 650px;
  z-index: 5;
  position: relative;
}
@media (min-width: 1280px) {
  .hero__graphic {
    width: 650px;
  }
}

.team {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .team {
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .team {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .team__content {
    max-width: 45ch;
  }
}
.team__person-grid {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .team__person-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .team__person-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.team__person {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  transition: opacity 150ms;
  cursor: pointer;
}
.team__person-img {
  border-radius: 50%;
  background-color: rgba(211, 196, 227, 0.35);
  margin-bottom: 0.25rem;
  transition: outline 350ms linear;
  transition: border-width 350ms linear;
  width: 120px;
}
@media (min-width: 768px) {
  .team__person-img {
    width: 135px;
  }
}
@media (min-width: 1024px) {
  .team__person-img {
    width: 160px;
  }
}
@media (min-width: 1280px) {
  .team__person-img {
    width: 177px;
  }
}
.team__person-name {
  margin-bottom: 0;
  margin-bottom: 0.1rem;
  display: block;
}
.team__person-title {
  margin-bottom: 0;
  display: block;
  color: var(--clr-green);
}

.person-detail__name {
  font-size: 2.25rem;
  font-family: "OpenSans-Bold", sans-serif;
  margin-bottom: 1.5rem;
}
.person-detail__title {
  color: #686868;
  font-family: "OpenSans-Medium", sans-serif;
  position: relative;
  margin-left: 3rem;
}
.person-detail__title::before {
  content: "";
  width: 2rem;
  height: 4px;
  background-color: var(--clr-light-purple);
  position: absolute;
  left: -3rem;
  top: 50%;
}
.person-detail__quote {
  font-size: 1.375rem;
  font-family: "OpenSans-Medium", sans-serif;
  margin-bottom: 2rem;
}

.person-content {
  overflow: hidden;
  transition: all 150ms linear;
  max-height: 0;
}
.person-content.person-content__active {
  max-height: 472px;
}

.team__person.current-person .team__person-img {
  border: 4px solid var(--clr-green);
}
.team__person.current-person.opacity-overlay {
  opacity: 1;
}

.opacity-overlay {
  opacity: 0.5;
}

.team__person:first-of-type {
  display: none;
}

.team__person:hover {
  opacity: 1;
}
.team__person:hover .team__person-img {
  border: 4px solid var(--clr-light-green);
  border-radius: 50%;
}

.about-card {
  border: 4px solid var(--clr-light-purple);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--border-rad-big);
  background-color: var(--clr-lighter-grey);
}
.about-card__img {
  width: 60px;
  margin-bottom: 2rem;
}
.about-card__title {
  font-size: 1.5rem;
  font-family: "OpenSans-Bold", sans-serif;
  margin-bottom: 1rem;
}
.about-card__list {
  list-style: disc;
  margin-left: 8px;
}
.about-card:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .about-card:not(:last-of-type) {
    margin-bottom: unset;
  }
}

.about-cards {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
    row-gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.referral-form {
  background-color: var(--clr-light-grey);
  border-radius: var(--border-rad-big);
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .referral-form {
    display: flex;
    background-color: unset;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.referral-form__left {
  padding: 2rem;
}
@media (min-width: 768px) {
  .referral-form__left {
    width: 65%;
    background-color: var(--clr-light-grey);
    border-radius: var(--border-rad-big) 0 0 var(--border-rad-big);
    padding: 3rem;
    transition: all 0.3s ease-in-out;
  }
}
.referral-form__right {
  display: none;
}
@media (min-width: 768px) {
  .referral-form__right {
    display: flex;
    width: 35%;
    background-color: #ddf1b8;
    padding: 3rem;
    border-radius: 0 var(--border-rad-big) var(--border-rad-big) 0;
  }
}
.referral-form__graphic {
  height: 100%;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.referral-form__title {
  font-size: 2rem;
  font-family: "OpenSans-Bold", sans-serif;
  margin-bottom: 1rem;
}
.referral-form p {
  font-family: "OpenSans-Regular", sans-serif;
  margin-bottom: 1rem;
}

.gform_page {
  transition: all 0.3s ease-in-out;
}

.referral-form .gform_required_legend {
  display: none;
}
.referral-form .gf_progressbar_percentage {
  background-color: var(--clr-light-purple) !important;
}
.referral-form .gf_progressbar_percentage span {
  color: black;
}
.referral-form input,
.referral-form select,
.referral-form textarea {
  border-radius: var(--border-rad-small);
  border: 0;
}
.referral-form .gform_page_footer {
  display: flex;
  justify-content: space-between;
}
.referral-form .gform_next_button,
.referral-form .gform_previous_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 150ms;
  cursor: pointer;
  text-decoration: none;
  color: black;
  padding: 1rem 2rem;
  background-color: var(--clr-light-purple);
  font-family: "OpenSans-Medium", sans-serif;
  border-radius: var(--border-rad-small);
  -webkit-appearance: none;
  line-height: unset !important;
}
.referral-form .gform_next_button::after,
.referral-form .gform_previous_button::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url("/wp-content/themes/talkingtherapies/assets/img/side-arrow.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.referral-form .gform_next_button:hover,
.referral-form .gform_previous_button:hover {
  background-color: var(--clr-button-hover);
}
.referral-form .gform_next_button {
  margin-left: auto;
  background-color: var(--clr-green);
}
.referral-form .gform_previous_button {
  background-color: var(--clr-light-purple) !important;
}
.referral-form .gform_previous_button:hover {
  background-color: var(--clr-button-hover) !important;
}
.referral-form #gform_submit_button_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 150ms;
  cursor: pointer;
  text-decoration: none;
  color: black;
  padding: 1rem 2rem;
  background-color: var(--clr-green) !important;
  font-family: "OpenSans-Medium", sans-serif;
  border-radius: var(--border-rad-small);
  -webkit-appearance: none;
  line-height: unset !important;
}
.referral-form #gform_submit_button_1::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url("/wp-content/themes/talkingtherapies/assets/img/side-arrow.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.referral-form #gform_submit_button_1:hover {
  background-color: var(--clr-button-hover);
}

#gform_confirmation_message_1 .subtitle {
  margin-bottom: 0;
}
#gform_confirmation_message_1 h3 {
  font-size: 1.25rem;
  font-family: "OpenSans-Bold", sans-serif;
}
@media (min-width: 1024px) {
  #gform_confirmation_message_1 h3 {
    font-size: 1.5rem;
  }
}
#gform_confirmation_message_1 .form-success {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-family: "OpenSans-Bold", sans-serif;
  text-align: center;
}
@media (min-width: 1024px) {
  #gform_confirmation_message_1 .form-success {
    font-size: 1.5rem;
  }
}

img.gform_ajax_spinner {
  width: 40px;
}

.hwh {
  margin-top: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(to bottom, var(--clr-light-grey), #fff);
}
@media (min-width: 1024px) {
  .hwh {
    margin-top: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.hwh__inside {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hwh__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .hwh__top {
    margin-bottom: 6rem;
  }
}
.hwh__top-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "OpenSans-Bold", sans-serif;
  text-transform: uppercase;
}
.hwh__top-content {
  max-width: 55ch;
  text-align: center;
}
.hwh__block {
  display: flex;
  align-items: center;
  margin-bottom: 8rem;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .hwh__block {
    flex-direction: row;
    margin-bottom: 10rem;
  }
}
.hwh__block:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .hwh__block.hwh__block--reversed {
    flex-direction: row-reverse;
  }
}
.hwh__block-left {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hwh__block-left {
    width: 50%;
  }
}
.hwh__block-img {
  z-index: 2;
  width: 65%;
  max-width: 200px;
}
@media (min-width: 1024px) {
  .hwh__block-img {
    max-width: unset;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hwh__block-right {
  max-width: 40ch;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hwh__block-right {
    max-width: 50ch;
  }
}
@media (min-width: 1024px) {
  .hwh__block-right {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    margin-bottom: 0;
  }
}
.hwh__block-title {
  font-size: 1.5rem;
  font-family: "OpenSans-Bold", sans-serif;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 1024px) {
  .hwh__block-title {
    text-align: unset;
  }
}
.hwh__block-step {
  font-family: "OpenSans-Bold", sans-serif;
  margin-bottom: 1rem;
  color: var(--block-clr);
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .hwh__block-step {
    margin-bottom: 2rem;
    text-align: unset;
    text-transform: unset;
  }
}
.hwh__block-txt {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .hwh__block-txt {
    text-align: unset;
  }
}
.hwh__block-center {
  display: none;
}
@media (min-width: 1280px) {
  .hwh__block-center {
    display: block;
    position: relative;
    position: absolute;
    left: 50%;
  }
}
.hwh__block-number {
  position: absolute;
  left: 50%;
  background-color: var(--block-clr);
  padding: 0.75rem 1.25rem;
  border-radius: 60%;
  font-size: 1.25rem;
  top: 50%;
  transform: scale(0) translate(-50%, -50%);
}
.hwh__block--purple {
  --block-clr: #d3c4e3;
}
.hwh__block--green {
  --block-clr: #96c93d;
}
.hwh__block--pink {
  --block-clr: #ffd3d3;
}

.hwh__block-left {
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .hwh__block-left {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.hwh__block-left {
  --block-animated-right: -803px;
  --block-animated-left: 803px;
}
@media (min-width: 1024px) {
  .hwh__block-left--first::after {
    content: "";
    position: absolute;
    top: 0;
    background-color: var(--block-clr);
    height: 100%;
    width: 1282px;
    transform: rotate(55deg);
    left: var(--block-animated-right);
    z-index: 1;
  }
}
@media (min-width: 1024px) {
  .hwh__block-left--first::before {
    content: "";
    position: absolute;
    background-color: var(--clr-light-green);
    height: 100%;
    left: -803px;
    bottom: -292px;
    width: 957px;
    transform: rotate(43deg);
    z-index: 2;
  }
}
@media (min-width: 1024px) {
  .hwh__block-left--second::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #c4e48b;
    height: 100%;
    width: 1300px;
    transform: rotate(-55deg);
    right: -824px;
    z-index: 1;
  }
}
@media (min-width: 1024px) {
  .hwh__block-left--second::before {
    content: "";
    position: absolute;
    background-color: #ffd3d3;
    height: 100%;
    right: -828px;
    bottom: -292px;
    width: 957px;
    transform: rotate(-55deg);
    z-index: 2;
  }
}
@media (min-width: 1024px) {
  .hwh__block-left--third::after {
    content: "";
    position: absolute;
    top: 0;
    background-color: var(--block-clr);
    height: 100%;
    width: 1282px;
    transform: rotate(55deg);
    left: -803px;
    z-index: 1;
  }
}
@media (min-width: 1024px) {
  .hwh__block-left--third::before {
    content: "";
    position: absolute;
    background-color: var(--clr-light-green);
    height: 100%;
    left: -803px;
    bottom: -292px;
    width: 957px;
    transform: rotate(43deg);
    z-index: 2;
  }
}
@media (min-width: 1024px) {
  .hwh__block-left--fourth::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #c4e48b;
    height: 100%;
    width: 1300px;
    transform: rotate(-55deg);
    right: -824px;
    z-index: 1;
  }
}
@media (min-width: 1024px) {
  .hwh__block-left--fourth::before {
    content: "";
    position: absolute;
    background-color: #ffd3d3;
    height: 100%;
    right: -828px;
    bottom: -292px;
    width: 1085px;
    transform: rotate(-32deg);
    z-index: 2;
  }
}

.split-line {
  overflow: hidden;
}

.line-container {
  position: absolute;
  top: 20rem;
  transform: translateX(-50%);
  height: 100%;
  text-align: center;
  overflow: hidden;
  left: 7.5%;
  display: none;
}
@media (min-width: 1024px) {
  .line-container {
    left: 50%;
    display: unset;
  }
}
.line-container svg {
  display: inline-block;
  height: 100%;
}

.arrow-container {
  display: none;
}
@media (min-width: 1024px) {
  .arrow-container {
    display: unset;
  }
}

.cta {
  background-color: #e6e6e6;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .cta {
    background-color: unset;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.cta__inner {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-rad-small);
  position: relative;
  z-index: 2;
  --cta-animated-right: -76%;
}
@media (min-width: 768px) {
  .cta__inner {
    background-color: #ececec;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .cta__inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: var(--cta-animated-right);
    height: 100%;
    width: 100%;
    background: var(--clr-light-green);
    transform: skew(-15deg);
    transform-origin: top;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .cta__inner-left {
    width: 16.875rem;
    margin-right: 4rem;
    z-index: 2;
  }
}
.cta__graphic {
  display: none;
}
@media (min-width: 768px) {
  .cta__graphic {
    display: unset;
    z-index: 2;
    width: 42%;
  }
}
.cta__title {
  margin-bottom: 2rem;
}
.cta__txt {
  margin-bottom: 2rem;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: -76%;
  height: 100%;
  width: 100%;
  background: var(--clr-green);
  transform: skew(-15deg);
  transform-origin: top;
  z-index: 1;
}
@media (min-width: 768px) {
  .cta::before {
    display: none;
  }
}

.blog-slider {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .blog-slider {
    overflow: unset;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 1024px) {
  .blog-slider__inside {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .blog-slider__right {
    width: 60%;
    position: relative;
    clip-path: inset(-100vw -100vw -100vw 0);
  }
}
.blog-slider__content {
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .blog-slider__left {
    max-width: 40%;
    margin-right: 4rem;
  }
}

.blog-card {
  padding: 2rem;
  background-color: #7b5f90;
  border-radius: 7px;
  color: #fff;
  height: 300px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .blog-card {
    height: 600px;
  }
}
.blog-card__title {
  font-size: 1.5rem;
  font-family: "OpenSans-Bold", sans-serif;
  margin-bottom: 0.75rem;
}
.blog-card__author {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .blog-card__author {
    margin-bottom: 0;
  }
}
.blog-card__author::before {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  margin-right: 0.5rem;
  background-color: var(--clr-green);
}
@media (min-width: 1024px) {
  .blog-card__author::before {
    display: none;
  }
}
.blog-card__btn {
  padding: 0.5rem 1.25rem;
  background-color: var(--clr-light-purple);
  border-radius: var(--border-rad-small);
  text-decoration: none;
  color: black;
  font-family: "OpenSans-Medium", sans-serif;
}
.blog-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .blog-card__top {
    margin-top: auto;
    margin-bottom: 4rem;
  }
}
.blog-card__desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .blog-card__desktop-only {
    display: unset;
  }
}
@media (min-width: 768px) {
  .blog-card__mobile-only {
    display: none;
  }
}

.swiper-slide {
  flex-shrink: 1;
  flex-grow: 1;
}

@media (min-width: 1024px) {
  .overflow-container {
    overflow-x: hidden;
  }
}

.cookies {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  z-index: 9999;
  background-color: var(--clr-light-purple);
  padding: 1rem;
  align-items: center;
  border-radius: var(--border-rad-small);
  display: grid;
  --shadow-color: 0deg 0% 63%;
  --shadow-elevation-medium: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.36),
  	0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.36),
  	2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.36),
  	5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.36);
  box-shadow: var(--shadow-elevation-medium);
}
@media (min-width: 768px) {
  .cookies {
    display: flex;
  }
}
.cookies p {
  font-size: 14px;
  width: 250px;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .cookies p {
    margin-bottom: 0;
  }
}
.cookies img {
  width: 50px;
  margin-right: 1rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .cookies img {
    margin-bottom: 0;
  }
}
.cookies .cookies__button {
  background-color: rgb(227, 210, 244);
  color: var(--clr-white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-rad-small);
  cursor: pointer;
  color: black;
  transition: 150ms;
  font-size: 14px;
  text-decoration: none;
}
.cookies .cookies__button:hover {
  opacity: 0.5;
}
.cookies.cookies--hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
}

footer {
  background-color: #ececec;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
footer .copyrights p {
  margin-bottom: 0.25rem;
}
footer .copyrights a {
  color: black;
  text-decoration: none;
}
@media (min-width: 1024px) {
  footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.footer__logo {
  width: 200px;
  transition: 150ms;
  padding-bottom: 1.5rem;
}
.footer__logo:hover {
  opacity: 0.5;
}
.footer__mobile-nav {
  display: flex;
  justify-content: space-between;
}
.footer__primary-nav ul, .footer__secondary-nav ul {
  margin-bottom: 2rem;
}
.footer__primary-nav .menu-item, .footer__secondary-nav .menu-item {
  margin-bottom: 0.25rem;
}
.footer__primary-nav .menu-item a, .footer__secondary-nav .menu-item a {
  text-decoration: none;
  color: black;
}
.footer__primary-nav .menu-item.current-menu-item a, .footer__secondary-nav .menu-item.current-menu-item a {
  color: var(--clr-green);
}

@media (min-width: 768px) {
  .footer__mobile {
    display: none;
  }
}

.footer-desktop {
  display: none;
}
@media (min-width: 768px) {
  .footer-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-desktop {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.footer-desktop a:not(.btn-primary) {
  color: #7a7a7a;
  text-decoration: none;
}
.footer-desktop__col2 {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}
.footer-desktop__col3 {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.footer-desktop__col4 {
  display: flex;
}
.footer-desktop #menu-footer-menu-4 {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
}
.footer-desktop #menu-footer-menu-4 li.current-menu-item {
  color: var(--clr-green) !important;
}
.footer-desktop__bottom {
  display: none;
}
@media (min-width: 768px) {
  .footer-desktop__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
  }
}
.footer-desktop__copyrights {
  font-size: 14px;
  margin-bottom: 0;
}
.footer-desktop__secondary-nav {
  margin-bottom: 4rem;
}
.footer-desktop__refinery {
  color: black !important;
  font-size: 14px;
  text-decoration: none;
}
.footer-desktop__refinery strong {
  font-size: inherit;
}
@media (min-width: 768px) {
  .footer-desktop__btns {
    display: none;
  }
}
@media (min-width: 1024px) {
  .footer-desktop__btns {
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
  }
  .footer-desktop__btns a:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1600px) {
  .footer-desktop__btns a {
    margin-bottom: 0;
  }
}
.footer-desktop__contact {
  margin-bottom: 3.6rem;
}
.footer-desktop__contact p {
  margin-bottom: 0.5rem;
}
.footer-desktop__contact a {
  display: block;
}
.footer-desktop__contact a:not(:last-of-type) {
  margin-bottom: 0.25rem;
}
.footer-desktop__office p {
  margin-bottom: 0.5rem;
}
.footer-desktop__office address {
  font-style: normal;
  color: #7a7a7a;
}

.footer--title {
  font-size: 20px;
}

.header__inside {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ececec;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.header__logo {
  max-width: 150px;
  transition: 150ms;
}
@media (min-width: 768px) {
  .header__logo {
    max-width: 200px;
  }
}
.header__logo:hover {
  opacity: 0.5;
}
.header__nav-container {
  display: none;
}
@media (min-width: 768px) {
  .header__nav-container {
    display: flex;
    align-items: center;
  }
}
.header__nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.header__nav .menu .menu-item {
  text-decoration: none;
}
@media (min-width: 768px) {
  .header__nav .menu .menu-item:not(:last-of-type) {
    margin-right: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .header__nav .menu .menu-item:not(:last-of-type) {
    margin-right: 2rem;
  }
}
.header__nav .menu .menu-item a {
  color: black;
  text-decoration: none;
  transition: 150ms;
  font-family: "OpenSans-Medium", sans-serif;
}
.header__nav .menu .menu-item a:hover {
  color: var(--clr-green);
}
.header__nav .menu .menu-item.current-menu-item a {
  color: var(--clr-green);
}

:root {
  --header-height: 125px;
}

.header-wrap {
  background-color: #fff;
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  z-index: 10;
  transition: top 0.2s ease-in-out;
}

.nav-up {
  top: calc(var(--header-height) * -1);
}

.header__desktop-nav {
  display: none;
}
@media (min-width: 768px) {
  .header__desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

#nav-icon {
  width: 30px;
  height: 45px;
  position: relative;
  margin: 50px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  position: absolute;
  right: 0rem;
  top: -0.76rem;
}
@media (min-width: 768px) {
  #nav-icon {
    display: none;
  }
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 14px;
}

#nav-icon span:nth-child(4) {
  top: 28px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#menu-header-1 {
  display: none;
  position: absolute;
  top: calc(var(--header-height) + 1rem);
  background-color: white;
  z-index: 999;
  inset: 9rem 0rem auto;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--border-rad-small);
  padding: 3rem 2rem;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.15);
  left: 0;
  place-items: center;
  row-gap: 2rem;
}
#menu-header-1 li.current-menu-item a {
  color: var(--clr-green);
}
#menu-header-1 a {
  color: black;
  font-family: "OpenSans-Medium", sans-serif;
  text-decoration: none;
}
#menu-header-1[data-visible] {
  display: grid;
}
@media (min-width: 768px) {
  #menu-header-1[data-visible] {
    display: none;
  }
}

body[no-scroll] {
  height: 100vh;
}

@media (min-width: 768px) {
  .mobile-navigation {
    display: none;
  }
}

.mobile-navigation::before {
  content: "";
  opacity: 0;
  transition: 150ms opacity;
}

.mobile-navigation[data-overlay]::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  z-index: -1;
  opacity: 1;
}
@media (min-width: 768px) {
  .mobile-navigation[data-overlay]::before {
    display: none;
  }
}

.btn--header-mobile.current-menu-item a {
  color: #5b8600 !important;
}

.menu-item-130 {
  margin-top: -1rem;
}
@media (min-width: 768px) {
  .menu-item-130 {
    display: none;
  }
}

.btn--header-mobile::after {
  content: "";
  background-image: url("/wp-content/themes/talkingtherapies/assets/img/side-arrow.png");
  width: 16px;
  height: 16px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn--header-mobile a {
  width: unset !important;
  padding-right: 1rem !important;
}

.header__right {
  display: flex;
  align-items: center;
}

.lang-switch {
  position: relative;
  margin-right: 3rem;
}
@media (min-width: 768px) {
  .lang-switch {
    margin-right: unset;
  }
}
.lang-switch .langswitch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-right: 0rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: var(--border-rad-small);
  background-color: var(--clr-light-grey);
  cursor: pointer;
}
@media (min-width: 768px) {
  .lang-switch .langswitch-btn {
    height: 47px;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    margin-right: 0.5rem;
  }
}
.lang-switch .current-lang-downarrow {
  width: 15px;
  margin-right: 0.45rem;
}
.lang-switch .current-lang {
  width: 23px;
}
.lang-switch .langswitcher {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background-color: var(--clr-light-grey);
  border-radius: var(--border-rad-small);
  padding: 1rem;
  top: calc(47px + 0.5rem);
  left: -111px;
  width: 180px;
  transition: all 0.3s ease-in-out;
  font-weight: "OpenSans-Bold", sans-serif;
  --shadow-color: 0deg 0% 63%;
  --shadow-elevation-medium: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.36),
  	0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.36),
  	2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.36),
  	5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.36);
  box-shadow: var(--shadow-elevation-medium);
}
.lang-switch .langswitcher__single {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: black;
  text-decoration: none;
  padding: 0.25rem;
  width: 100%;
  border-radius: var(--border-rad-small);
  transition: 150ms;
}
.lang-switch .langswitcher__single:hover {
  background-color: #fff;
}
.lang-switch .langswitcher__single:not(:last-child) {
  margin-bottom: 0.25rem;
}
.lang-switch .langswitcher .lang-col2,
.lang-switch .langswitcher .lang-col3 {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 1s ease-in-out;
}
.lang-switch .langswitcher--active {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  .lang-switch .langswitcher--extra {
    width: 600px;
    left: -531px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.lang-switch .langswitcher--extra .lang-col2,
.lang-switch .langswitcher--extra .lang-col3 {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.lang-switch .langswitcher img {
  width: 23px;
  margin-right: 0.75rem;
}

#gtranslate_wrapper {
  display: none;
}

.skip-to-content {
  cursor: pointer;
  background: var(--clr-light-purple);
  padding: 0.5rem 1rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -100%);
  transition: transform 0.3s;
  text-decoration: underline;
  color: black;
  z-index: 20;
}

.skip-to-content:focus {
  transform: translate(-50%, 0%);
}

.journey {
  --journey-clr: var(--clr-light-purple);
  --journey-txt-clr: #000;
  border: 5px solid var(--journey-clr);
  border-radius: var(--border-rad-big);
  padding: 1rem;
  z-index: 2;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .journey {
    width: 536px;
  }
}
.journey__content {
  display: none;
}
@media (min-width: 1024px) {
  .journey__content {
    display: unset;
    position: absolute;
    left: 3rem;
    top: -14rem;
    max-width: 50ch;
  }
}
.journey__content-title {
  font-size: 2rem;
  font-family: "OpenSans-Bold", sans-serif;
}
.journey__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.journey__number {
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 2rem;
  position: relative;
  left: 1rem;
  color: var(--journey-txt-clr);
}
.journey__number::after {
  content: "";
  background-color: var(--journey-clr);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.journey__img {
  max-width: 132px;
}
.journey__title {
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-family: "OpenSans-Bold", sans-serif;
}
.journey__line {
  content: "";
  height: 5rem;
  display: block;
  width: 6px;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
}
@media (min-width: 768px) {
  .journey__line {
    height: 6px;
    width: 20rem;
    margin-top: auto;
    margin-bottom: auto;
  }
}
.journey__line.purp-to-green {
  background-image: linear-gradient(to bottom, #d3c4e3, #c4e48b);
}
@media (min-width: 768px) {
  .journey__line.purp-to-green {
    background-image: linear-gradient(to right, #d3c4e3, #c4e48b);
  }
}
.journey__line.green-to-pink {
  background-image: linear-gradient(to bottom, #c4e48b, #dbb1bc);
}
@media (min-width: 768px) {
  .journey__line.green-to-pink {
    background-image: linear-gradient(to right, #c4e48b, #dbb1bc);
  }
}
.journey__line.pink-to-purp {
  background-image: linear-gradient(to bottom, #dbb1bc, #d3c4e3);
}
@media (min-width: 768px) {
  .journey__line.pink-to-purp {
    background-image: linear-gradient(to right, #dbb1bc, #d3c4e3);
  }
}
.journey__line-first-mobile {
  background-color: var(--clr-light-purple);
}
@media (min-width: 768px) {
  .journey__line-first-mobile {
    display: none;
  }
}
.journey__first-line {
  height: 6px;
  width: 20rem;
  margin-top: auto;
  margin-bottom: auto;
  background-image: linear-gradient(to right, #d3c4e3, #d3c4e3);
  display: none;
}
@media (min-width: 768px) {
  .journey__first-line {
    display: unset;
  }
}
.journey__first-line::before {
  content: "";
  height: 30rem;
  margin-top: -30rem;
  width: 6px;
  position: absolute;
  display: block;
  background-image: linear-gradient(to bottom, #ececec, #d3c4e3);
}
.journey__last {
  position: relative;
}
.journey__last::after {
  content: "";
  display: block;
  position: absolute;
  height: 24rem;
  width: 6px;
  margin-top: auto;
  margin-bottom: auto;
  background-image: linear-gradient(to bottom, #d3c4e3, #ececec);
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  display: none;
}
@media (min-width: 768px) {
  .journey__last::after {
    display: unset;
  }
}
.journey.journey--green {
  --journey-clr: var(--clr-light-green);
  --journey-txt-clr: #fff;
}
.journey.journey--pink {
  --journey-clr: #dbb1bc;
}

@media (min-width: 1024px) {
  .journey {
    width: unset;
  }
}
@media (min-width: 1024px) {
  .journey__mobile {
    display: none;
  }
}
.journey__desktop {
  display: none;
}
@media (min-width: 1024px) {
  .journey__desktop {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .journey__number {
    position: absolute;
    top: 0rem;
    left: 1rem;
  }
}
@media (min-width: 1024px) {
  .journey__left {
    width: 232px;
    margin-left: 5rem;
    margin-right: 3rem;
    margin-top: 2rem;
  }
}
.journey__desktop-title {
  font-size: 1.25rem;
  font-family: "OpenSans-Bold", sans-serif;
}
.journey__img-desktop {
  width: 250px;
  margin-right: 2rem;
}
.journey__img-desktop-2 {
  position: relative;
  top: 99px;
}

.journey-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .journey-wrap {
    flex-direction: row;
    width: unset;
    margin: unset;
    position: relative;
    left: 5rem;
  }
}

.journey-section {
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .journey-section {
    height: 100vh;
  }
}
@media (min-width: 1024px) {
  .journey-section {
    width: 5000px;
    position: relative;
    left: -14rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .page-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .page-top {
    padding-top: 4rem;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .page-top__left {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-top__left {
    margin-bottom: 0;
    margin-right: 6rem;
    width: 70%;
  }
}
.page-top__left ul {
  list-style: disc;
  margin-left: 1.25rem;
}
@media (min-width: 768px) {
  .page-top__right {
    max-width: 450px;
  }
}
.page-top__graphic {
  display: none;
}
@media (min-width: 768px) {
  .page-top__graphic {
    display: unset;
    max-width: 400px;
    height: 100%;
  }
}

.split-container {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .split-container {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .split-container__left {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .split-container__right {
    width: 45%;
    margin-left: 4rem;
  }
}
@media (min-width: 768px) {
  .split-container--center {
    display: grid;
    place-items: center;
  }
}

.contact-top {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact-top {
    display: flex;
    padding-top: 4rem;
    margin-bottom: 8rem;
  }
}
@media (min-width: 768px) {
  .contact-top__left {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .contact-top__right {
    width: 45%;
    margin-left: 4rem;
  }
}
.contact-top__link {
  color: var(--clr-green);
  display: flex;
  align-items: center;
  font-family: "OpenSans-Bold", sans-serif;
  text-decoration: none;
}
.contact-top__link-icon {
  width: 36px;
  margin-right: 1rem;
}
.contact-top__link:not(:last-child) {
  margin-bottom: 1rem;
}
.contact-top__address {
  font-style: unset;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact-top__address {
    margin-bottom: 0;
  }
}
.contact-top__map {
  width: 100%;
  height: 100%;
  border-radius: var(--border-rad-small);
}

.courses {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .courses {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .courses__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
  }
}
.courses__big-text {
  font-style: 1.25rem;
  line-height: 1.45 !important;
}
@media (min-width: 768px) {
  .courses__big-text {
    font-size: 1.375rem;
  }
}
.courses__subtitle {
  display: inline-block;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--clr-light-purple);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.courses__accordion-item {
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.courses__accordion-item button {
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.courses__accordion-item img {
  width: 17px;
  margin-left: auto;
}

.courses-accordion__item {
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.courses-accordion__toggle {
  cursor: pointer;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.courses-accordion__toggle img {
  width: 15px;
  transition: 150ms;
}
.courses-accordion__title {
  font-family: "OpenSans-Medium", sans-serif;
}
.courses-accordion__inner {
  display: none;
  margin-top: 1rem;
}
.courses-accordion__active {
  display: block;
}
.courses-accordion__icon-rotate {
  transform: rotate(45deg);
}

.testimonials {
  overflow: hidden;
  position: relative;
}

.testimonial {
  width: 80%;
  margin: auto;
  overflow: hidden;
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .testimonial {
    width: 50%;
  }
}
.testimonial-text {
  color: var(--clr-dark-purple);
  font-size: 1.25rem;
  font-style: italic;
}

.blog-post {
  margin-bottom: 4rem;
}
.blog-post h2 {
  font-size: 1.5rem;
  font-family: "OpenSans-Bold", sans-serif;
  position: relative;
  margin-left: 1rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .blog-post h2 {
    margin-bottom: 1rem;
  }
}
.blog-post h2::before {
  content: "";
  height: 100%;
  display: block;
  margin-right: 1rem;
  width: 4px;
  background-color: var(--clr-light-purple);
  position: absolute;
  left: -1rem;
}
.blog-post h3 {
  margin-bottom: 0.5rem;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 1.25rem;
}
.blog-post a {
  color: var(--clr-green);
  text-decoration: underline;
  transition: 150ms;
}
.blog-post a:hover {
  color: var(--clr-dark-purple);
}
.blog-post__img {
  height: 400px;
  object-fit: cover;
  border: 4px solid var(--clr-light-purple);
  border-radius: var(--border-rad-big);
  margin-bottom: 2rem;
}
.blog-post__date {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.blog-post__date::before {
  content: "";
  display: block;
  width: 2rem;
  background-color: var(--clr-light-purple);
  position: relative;
  height: 4px;
  margin-right: 1rem;
  margin-left: 1rem;
}

.accordions-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.accordions-wrapper {
  display: grid;
  row-gap: 0.5rem;
}
@media (min-width: 768px) {
  .accordions-wrapper {
    display: none;
  }
}

.accordion {
  border: 2px solid var(--clr-light-purple);
  border-radius: var(--border-rad-small);
}
.accordion__title {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--clr-light-purple);
  width: 100%;
  cursor: pointer;
}
.accordion__title-inside {
  display: flex;
  justify-content: space-between;
}
.accordion__title-txt {
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 1.125rem;
  color: var(--clr-dark-purple);
}
.accordion__title-icon {
  width: 23px;
  transition: 150ms;
}
.accordion .accordion__title--active .accordion__title-icon {
  transform: rotate(45deg);
}
.accordion__content {
  padding-top: 0rem;
  padding-bottom: 1rem;
  display: none;
  padding-left: 1rem;
  padding-right: 1rem;
}
.accordion__content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.full-width-card {
  --full-width__animated_right: 50%;
  --full-width__animated_right-blue: 58%;
  flex-direction: row-reverse;
  align-items: center;
  padding: 4rem;
  gap: 4rem;
  border-radius: var(--border-rad-small);
  background-color: rgba(211, 196, 227, 0.2);
  position: relative;
  overflow: hidden;
  margin-bottom: 6rem;
  justify-content: space-between;
  display: none;
}
@media (min-width: 768px) {
  .full-width-card {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .full-width-card {
    flex-direction: row-reverse;
  }
}
.full-width-card__svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .full-width-card__content {
    width: 50%;
    z-index: 2;
  }
}
@media (min-width: 1024px) {
  .full-width-card__decoration {
    width: 100%;
    z-index: 3;
    max-width: 300px;
  }
}
@media (min-width: 1280px) {
  .full-width-card__decoration {
    max-width: 400px;
  }
}
@media (min-width: 1024px) {
  .full-width-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: var(--full-width__animated_right);
    height: 100%;
    width: 100%;
    background: #f5ecfe;
    transform: skew(-15deg);
    transform-origin: top;
    z-index: 1;
  }
}
.full-width-card.full-width-card--nobg {
  background: transparent;
}
.full-width-card.full-width-card--nobg::before {
  background: transparent;
}
@media (min-width: 768px) {
  .full-width-card.full-width-card--reverse {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .full-width-card.full-width-card--reverse {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .full-width-card.full-width-card--green-accent::before {
    content: "";
    position: absolute;
    top: 0;
    right: var(--full-width__animated_right-blue);
    height: 100%;
    width: 100%;
    background: #e0e5f2;
    transform: skew(11deg);
    transform-origin: top;
    z-index: 1;
  }
}
.full-width-card__list {
  list-style: disc;
  position: relative;
  left: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .full-width-card__list--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.full-width-card ul {
  list-style: disc;
  position: relative;
  left: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .full-width-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.resources__links {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .resources__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    margin-top: 4rem;
  }
}
.resources__links li {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .resources__links li {
    margin-bottom: 2rem;
  }
}

.partners {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .partners {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.partners__slider {
  width: 100%;
  overflow: hidden;
}
.partners__slider .swiper-wrapper {
  align-items: center;
}
.partners__logo {
  width: 75%;
  height: auto;
}

.crisis-support__left {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .crisis-support__right {
    margin-bottom: 2rem;
  }
}
.crisis-support__bottom {
  margin-bottom: 6rem;
}
@media (min-width: 1024px) {
  .crisis-support__bottom {
    padding-top: 4rem;
  }
}

/*# sourceMappingURL=style.css.map */
