/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. What We Do css
09. Case Study css
10. How It Work css
11. Cta Box Css
12. Our Testimonial css
13. Our FAQs css
14. Our Blog css
15. Our Appointment css
16. Footer css
17. About Us Page css
18. Services Page css
19. Services Single css
20. Blog Archive css
21. Blog Single css
22. Case Study Page css
23. Case Study Single css
24. Team Page css
25. Team Single css 
26. Pricing Page css
27. Testimonial Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. Book Appointment Page cs
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #0F1F1A;
    --secondary-color: #F4EFE6;
    --text-color: #0F1F1A;
    --accent-color: #7A5F2E;
    --soft-accent-color: #7A5F2E;
    --white-color: #F4EFE6;
    --divider-color: #D8CDBB;
    --dark-divider-color: rgba(244, 239, 230, 0.16);
    --error-color: rgb(230, 87, 87);
    --default-font: "Playfair Display", serif;
    --accent-font: "Playfair Display", serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 400;
    line-height: 1.1em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 30px;
    padding-left: 30px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: visible;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    text-transform: capitalize;
    background: #0F1F1A;
    color: var(--white-color);
    border-radius: 10px;
    padding: 16px 20px;
    border: none;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.btn-default:hover {
    background-color: transparent;
}

.btn-default::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 20px;
}

.btn-default.btn-highlighted:hover {
    color: var(--white-color);
}

.readmore-btn {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
    color: var(--primary-color);
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 0;
    transform: translateY(-50%);
    background: url('../images/arrow-accent.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:before {
    filter: brightness(0) invert(0);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-btn {
    text-align: end;
}

.section-title {
    margin-bottom: 40px;
}

.section-title-content p {
    margin: 0;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    padding-left: 18px;
    margin-bottom: 42px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.section-title h1 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 40px;
    margin-bottom: 0;
    font-size: 24px;
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: sticky;
    top: 0;
    background: var(--white-color);
    border-bottom: 1px solid var(--divider-color);
    box-shadow: 0 8px 30px rgba(20, 55, 39, 0.08);
    z-index: 999;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: var(--white-color);
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--white-color);
    border-bottom: 1px solid var(--divider-color);
    box-shadow: 0 8px 30px rgba(20, 55, 39, 0.1);
}

header.main-header .header-sticky.active::before {
    display: none;
}

.navbar {
    padding: 2px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.navbar-brand img {
    width: auto;
    height: 83px;
    max-width: 160px;
    object-fit: contain;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: right;
    margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 400;
    padding: 14px 20px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 268px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 6px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.header-btn {
    margin-left: 20px;
}

.appointment-modal {
    --bs-modal-width: 520px;
    z-index: 9999;
}

.appointment-modal .modal-dialog {
    margin: 20px auto;
    width: calc(100% - 30px);
}

.appointment-modal .modal-content {
    position: relative;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: 0 25px 70px rgba(20, 55, 39, 0.22);
    padding: 34px;
}

.appointment-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.appointment-modal-close:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.appointment-modal-close i {
    font-size: 22px;
    line-height: 1;
}

.appointment-modal-header {
    padding-right: 34px;
    margin-bottom: 24px;
}

.appointment-modal-header h3 {
    font-size: 28px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 8px;
}

.appointment-modal-header p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.appointment-modal-form {
    display: grid;
    gap: 16px;
}

.appointment-modal-form .form-control {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: none;
    color: var(--primary-color);
    background: var(--secondary-color);
    font-size: 15px;
    padding: 14px 16px;
}

.appointment-modal-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.appointment-modal-form .form-control:focus {
    border-color: var(--accent-color);
    background: var(--white-color);
}

.appointment-modal-form .form-control::placeholder {
    color: var(--primary-color);
    opacity: 0.8;
}

.appointment-modal-form .btn-default {
    justify-self: flex-start;
    min-width: 145px;
    background: var(--accent-color);
}

.appointment-modal-form .btn-default::before {
    background: var(--white-color);
}

.appointment-modal-form .btn-default:hover {
    color: var(--primary-color);
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--white-color);
    border-top: 1px solid var(--divider-color);
    box-shadow: 0 18px 30px rgba(20, 55, 39, 0.1);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-180deg);
    color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background: #143727;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 75px 0 60px;
    margin-top: 0;
    height: 500px;
    min-height: 500px;
}

.hero>.container,
.hero>.container>.row {
    min-height: 100%;
}

.hero>.container>.row {
    justify-content: center;
}

.hero::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(15, 31, 26, 0.3) 64.59%, #0F1F1A 101.91%), linear-gradient(270deg, rgba(15, 31, 26, 0) 44.72%, #0F1F1A 117.07%), linear-gradient(180deg, rgba(15, 31, 26, 0) 68.75%, rgba(15, 31, 26, 0.82) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 295px 0;
    min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(15, 31, 26, 0.3) 64.59%, #0F1F1A 101.91%), linear-gradient(270deg, rgba(15, 31, 26, 0) 44.72%, #0F1F1A 117.07%), linear-gradient(180deg, rgba(15, 31, 26, 0) 68.75%, rgba(15, 31, 26, 0.82) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: left;
    padding-left: calc(((100vw - 1300px) / 2));
    z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1041px;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
}

.hero-content .section-title p,
.hero-content .section-title h1,
.hero-content .section-title h3 {
    color: var(--white-color);
}

/* .hero-content .section-title h3::before {
    background: var(--white-color);
}

.hero-content .section-title h3::before {
    left: 50%;
    transform: translateX(-50%);
} */

.hero-content-body {
    display: flex;
    align-items: center;
}

.hero-btn {
    margin-right: 20px;
}

.hero-client-box {
    display: flex;
    align-items: center;
}

.hero-client-box .customer-images {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img {
    position: relative;
    display: inline-block;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.customer-img:first-child {
    margin: 0;
}

.customer-img figure {
    display: block;
}

.customer-img img {
    max-width: 100%;
    border-radius: 50%;
}

.customer-img.add-more {
    width: 52px;
    height: 52px;
    background-color: var(--accent-color);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img.add-more p {
    font-family: var(--accent-font);
    color: var(--white-color);
    margin: 0;
}

.hero-client-content p {
    color: var(--white-color);
    margin: 0;
}

.hero-list {
    position: relative;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 69px;
    padding: 60px 0 0;
    z-index: 1;
}

.hero-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.hero-list ul li {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    color: var(--white-color);
}

.hero-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-color);
    font-size: 20px;
    color: var(--white-color);
    line-height: normal;
}

.hero-list-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
    padding: 60px 0;
}

.about-us-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
}

.about-img-1 {
    width: calc(40% - 15px);
}

.about-img-2 {
    width: calc(60% - 15px);
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-1 figure {
    display: block;
}

.about-img-1 img {
    aspect-ratio: 1 / 1.75;
    object-fit: cover;
}

.about-img-2 figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.about-img-2 img {
    aspect-ratio: 1 / 1.75;
    object-fit: cover;
}

.about-customer-box {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    width: 100%;
    max-width: 237px;
    padding: 12px;
    color: var(--white-color);
    box-shadow: 0 18px 40px rgba(20, 55, 39, 0.18);
}

.about-support-icon,
.about-customer-rating {
    margin-bottom: 15px;
}

.about-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
}

.about-support-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.about-customer-rating span,
.about-customer-rating i {
    font-size: 14px;
    color: var(--accent-color);
}

.about-customer-content {
    margin-bottom: 18px;
}

.about-customer-content h3 {
    color: var(--white-color);
    font-size: 20px;
    margin-bottom: 8px;
}

.about-customer-content p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.about-customer-content p span {
    color: var(--primary-color);
}

.about-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-support-list li {
    position: relative;
    color: var(--white-color);
    font-size: 14px;
    padding-left: 18px;
    margin-bottom: 8px;
}

.about-support-list li:last-child {
    margin-bottom: 0;
}

.about-support-list li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
}

.about-customer-box .customer-images {
    display: flex;
    align-items: center;
}

.about-us-content {
    margin-left: 25px;
}

.about-vision-mission {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    border-bottom: 1px solid var(--divider-color);
    padding: 40px 0;
    margin-bottom: 40px;
}

.vision-mission-content {
    width: calc(50% - 15px);
}

.vision-mission-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.vision-mission-content p {
    margin: 0;
}

.vision-mission-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-mission-content ul li {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vision-mission-content ul li:last-child {
    margin-bottom: 0;
}

.about-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
}

.about-help-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.about-us-content-btn .btn-default.btn-highlighted {
    margin-left: 30px;
}

/************************************/
/***    06. Our Services css      ***/
/************************************/

.our-services {
    background: var(--primary-color);
    padding: 65px 0;
}

.our-services .section-title h2,
.our-services .section-title p,
.our-services .service-get-quote-text p {
    color: var(--white-color);
}

.our-services .section-title h3 {
    color: var(--soft-accent-color);
}

.our-services .section-title h3::before {
    background: var(--soft-accent-color);
}

.service-item {
    position: relative;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.service-image a {
    position: relative;
    display: block;
    cursor: none;
}

.service-image a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 65%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-image img {
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    max-width: 300px;
    z-index: 2;
}

.service-content h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 12px;
}

.service-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.5em;
    margin: 0;
}

.service-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.service-btn .readmore-btn {
    display: block;
    color: var(--white-color);
}

.service-btn .readmore-btn:hover {
    color: var(--accent-color);
}

.service-btn .readmore-btn::before {
    filter: brightness(0) invert(1);
}

.service-get-quote-text {
    text-align: center;
    margin-top: 20px;
}

.service-get-quote-text p {
    margin: 0;
}

.service-get-quote-text p span {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 100px;
    font-weight: 500;
    line-height: 1.1em;
    padding: 2px 10px;
    margin-right: 5px;
}

.service-get-quote-text a {
    font-weight: 700;
    text-decoration: underline;
    color: var(--soft-accent-color);
    transition: all 0.3s ease-in-out;
}

.service-get-quote-text a:hover {
    color: var(--accent-color);
}

/************************************/
/***    07. Why Choose Us css     ***/
/************************************/

.why-choose-us {
    padding: 100px 0;
}

.why-choose-us-box {
    height: 100%;
    display: flex;
    gap: 30px;
}

.why-choose-image {
    position: relative;
    width: 33%;
    height: 100%;
}

.why-choose-image figure {
    height: 100%;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.why-choose-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.62;
    object-fit: cover;
    border-radius: 20px;
}

.contact-circle-img {
    position: absolute;
    right: -15px;
    bottom: 0;
    transform: translate(50%, -50%);
    z-index: 1;
}

.contact-circle-img img {
    max-width: 130px;
    animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.why-choose-content {
    width: 67%;
    height: 100%;
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.why-choose-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.why-choose-item .icon-box {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 20px;
    transition: all 0.5s ease-in-out;
}

.why-choose-item:hover .icon-box {
    background-color: transparent;
}

.why-choose-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item:hover .icon-box::before {
    transform: scale(1);
}

.why-choose-item .icon-box img,
.why-choose-item .icon-box svg {
    position: relative;
    width: 24px;
    height: 24px;
    max-width: 24px;
    fill: var(--white-color);
    z-index: 1;
}

.why-choose-item-content {
    width: calc(100% - 60px);
}

.why-choose-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.why-choose-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.why-choose-body-content,
.why-choose-body-image {
    width: calc(50% - 15px);
}

.why-choose-body-image figure,
.why-choose-body-image img {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    border-radius: 20px;
    height: 580px;
}

.why-choose-body-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.why-choose-body-content p {
    margin-bottom: 18px;
    text-align: justify;
}

/************************************/
/***      08. What We Do css      ***/
/************************************/

.what-we-do {
    background: linear-gradient(180deg, var(--primary-color) 65%, var(--white-color) 35%);
    padding: 70px 0 50px;
}

.what-we-do .section-title h2,
.what-we-do .section-title p {
    color: var(--white-color);
}

.what-we-do .section-title h3 {
    color: var(--soft-accent-color);
}

.what-we-do .section-title h3::before {
    background: var(--soft-accent-color);
}

.intro-video-box {
    position: relative;
    background: var(--primary-color) url('../images/psych-bg-img.png') center center / cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 170px 100px 50px;
}

.intro-video-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(20, 55, 39, 0) 65.21%, rgba(20, 55, 39, 0.82) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
}

.intro-bg-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--primary-color);
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.intro-bg-video.video-resetting video {
    opacity: 0;
}

.video-play-button {
    position: relative;
    z-index: 1;
}

.video-play-button a {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 100%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.video-play-button a:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--divider-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--divider-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a i {
    font-size: 30px;
    color: var(--white-color);
}

.intro-video-counter {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 120px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 50px;
    margin-top: 170px;
    z-index: 1;
}

.video-counter-item h2 {
    font-size: 50px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.video-counter-item p {
    color: var(--white-color);
    text-transform: capitalize;
    opacity: 80%;
    margin: 0;
}

/************************************/
/***      09. Case Study css	  ***/
/************************************/

.case-study {
    padding: 50px 0 70px;
}

.case-study-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.case-study-image {
    border-radius: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

.case-study-image figure,
.case-study-image a {
    display: block;
    cursor: none;
    border-radius: 20px;
}

.case-study-image img {
    width: 100%;
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-content {
    margin-bottom: 30px;
}

.case-study-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.case-study-content h3 a {
    color: inherit;
}

.case-study-content p {
    margin: 0;
}

/************************************/
/***      10. How It Work css	  ***/
/************************************/

.how-it-work {
    background: var(--secondary-color);
    padding: 70px 0;
}

.how-work-step-box {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 45px;
}

.how-work-step-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    min-width: 0;
}

.how-work-step-item::after {
    content: '';
    position: absolute;
    top: 42%;
    right: -42px;
    width: 82px;
    height: 46px;
    background: url('../images/how-work-step-arrow-1.svg') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.how-work-step-item:nth-child(even) {
    flex-direction: column-reverse;
}

.how-work-step-item:nth-child(even)::after {
    top: 36%;
    background-image: url('../images/how-work-step-arrow-2.svg');
}

.how-work-step-item:last-child,
.how-work-step-item:nth-child(5n + 5) {
    background: transparent;
}

.how-work-step-item:last-child::after,
.how-work-step-item:nth-child(5n + 5)::after {
    display: none;
}

.how-work-step-no {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.how-work-step-item:nth-child(even) .how-work-step-no {
    margin: 30px 0 0 0;
}

.how-work-step-no::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.how-work-step-item:hover .how-work-step-no::before {
    transform: scale(1);
}

.how-work-step-no h3 {
    position: relative;
    font-family: var(--default-font);
    font-size: 44px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
    z-index: 1;
}

.how-work-step-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.how-work-step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.how-work-step-content p {
    font-size: 15px;
    line-height: 1.6em;
    margin: 0;
    text-align: justify;
}

/************************************/
/***       11. Cta Box Css        ***/
/************************************/

.cta-section {
    padding: 100px 0 50px;
}

.cta-box {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: end;
    padding: 0 60px 0 30px;
}

.cta-box-image {
    width: 40%;
}

.cta-box-image img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
}

.cta-box-content {
    width: 60%;
    margin: 60px 0 60px 30px;
}

.cta-box-content .section-title h3,
.cta-box-content .section-title h2,
.cta-box-content .section-title p {
    color: var(--white-color);
}

.cta-box-content .section-title h3::before {
    background: var(--white-color);
}

.cta-box-content .cta-box-btn {
    position: relative;
}

.cta-box-content .cta-box-btn:before {
    content: '';
    position: absolute;
    width: 85px;
    height: 42px;
    top: 50%;
    right: 60%;
    transform: translate(0, -50%);
    background: url('../images/arrow-cta-btn.svg') no-repeat right center;
    background-size: cover;
    animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject {
    50% {
        right: 55%;
    }
}

.cta-box-btn .btn-default {
    background: var(--white-color);
    color: var(--accent-color);
}

.cta-box-btn .btn-default:hover {
    color: var(--white-color);
}

/************************************/
/***    12. Our Testimonial css	  ***/
/************************************/

.our-testimonial {
    padding: 50px 0 100px;
}

.testimonial-review-box {
    background: var(--soft-accent-color);
    border-radius: 20px;
    text-align: center;
    padding: 40px 80px;
}

.testimonial-site-logo {
    margin-bottom: 25px;
}

.testimonial-site-logo img {
    width: auto;
    height: 90px;
    max-width: 160px;
    object-fit: contain;
}

.testimonial-review-box .about-customer-rating {
    display: inline-block;
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 15px 20px;
}

.testimonial-review-box .about-customer-rating i {
    font-size: 18px;
    color: var(--white-color);
}

.testimonial-review-box .customer-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider {
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.testimonial-slider-image {
    width: calc(35% - 15px);
}

.testimonial-slider-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-slider-image img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1 / 0.999;
    object-fit: cover;
}

.testimonial-slider-content {
    width: calc(65% - 15px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 2px;
}

.testimonial-rating i:last-child {
    margin-right: 0;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    margin-bottom: 0;
}

.author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.author-content p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-pagination {
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: right;
    z-index: 1;
}

.testimonial-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    position: relative;
    width: 22px;
    border-radius: 100px;
    background-color: var(--accent-color);
}

.testimonial-company-slider {
    margin-top: 80px;
}

.testimonial-company-slider .company-logo {
    text-align: center;
}

.testimonial-company-slider .company-logo img {
    width: 100%;
    max-height: 40px;
}

/************************************/
/***      	13. Our FAQs css	  ***/
/************************************/

.confidentiality-section {
    position: relative;
    background: var(--primary-color);
    padding: 100px 0;
    overflow: hidden;
}

.confidentiality-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.16;
    pointer-events: none;
}

.confidentiality-section::after {
    content: '';
    position: absolute;
    inset: 44px 48px;
    border: 1px solid rgba(244, 241, 232, 0.18);
    pointer-events: none;
}

.confidentiality-section .container {
    position: relative;
    z-index: 1;
}

.confidentiality-title {
    max-width: 760px;
    margin: 0 auto 58px;
}

.confidentiality-title h2 {
    max-width: 680px;
    margin: 0 auto;
    color: var(--white-color);
}

.confidentiality-title p {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.confidentiality-title h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    margin-bottom: 14px;
    padding-left: 40px;
}

.confidentiality-title h3::before,
.confidentiality-title h3::after {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(166, 117, 31, 0.75);
}

.confidentiality-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}

.confidentiality-card {
    position: relative;
    min-height: 178px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(244, 241, 232, 0.16);
    border-radius: 0;
    padding: 30px 32px 28px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.confidentiality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(166, 117, 31, 0.12), transparent 42%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

/* .confidentiality-card::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46px;
    height: 46px;
    border-left: 1px solid rgba(166, 117, 31, 0.2);
    border-top: 1px solid rgba(166, 117, 31, 0.2);
    background: rgba(166, 117, 31, 0.06);
    transition: all 0.3s ease-in-out;
} */

.confidentiality-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(166, 117, 31, 0.48);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.confidentiality-card:hover::before {
    opacity: 1;
}

.confidentiality-card:hover::after {
    width: 58px;
    height: 58px;
    background: rgba(166, 117, 31, 0.12);
}

.confidentiality-mark {
    position: relative;
    z-index: 1;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-bottom: 22px;
    box-shadow: 0 0 0 5px rgba(166, 117, 31, 0.12);
}

.confidentiality-mark::before {
    content: none;
}

.confidentiality-card h3 {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.3em;
    margin-bottom: 14px;
    padding-right: 0;
    color: var(--white-color);
}

.confidentiality-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.7em;
    margin-bottom: 0;
}

.our-faqs {
    position: relative;
    background: url('https://media.istockphoto.com/id/1962581695/photo/clipboard-therapy-and-listening-with-people-hands-for-depression-mental-health-or-psychology.jpg?s=612x612&w=0&k=20&c=CbofSCFXl4e4nCH8ke1BFIWKO7xj9fdRmEnSIhyIoOc=') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0;
}

.our-faqs::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 90%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.our-faqs-content {
    position: relative;
    margin-right: 20px;
    z-index: 1;
}

.our-faqs-content .section-title h3,
.our-faqs-content .section-title h2 {
    color: var(--white-color);
}

.our-faqs-content .section-title h3::before {
    background: var(--white-color);
}

.faq-cta-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    backdrop-filter: blur(50px);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-cta-box::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    opacity: 5%;
    width: 100%;
    height: 100%;
}

.faq-support-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
    z-index: 1;
}

.faq-support-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.faq-cta-box-content h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.faq-cta-box-content p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}

.btn-faqs {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btn-faqs:hover {
    color: var(--soft-accent-color);
}

.btn-faqs-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
}

.btn-faqs-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
    position: relative;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--white-color);
    align-items: start;
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
    margin-right: 5px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 0;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--white-color);
    border-bottom: 2px solid var(--white-color);
    background: transparent;
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(225deg);
    top: 8px;
}

.faq-accordion .accordion-item .accordion-body {
    padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
    padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
    color: var(--white-color);
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}

/************************************/
/***       14. Our Blog css       ***/
/************************************/

.our-blog {
    padding: 100px 0 20px;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image figure a {
    cursor: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-featured-image img {
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 20px;
}

.post-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h3 a {
    color: inherit;
}

/************************************/
/***    15. Our Appointment css	  ***/
/************************************/

.our-appointment {
    background: linear-gradient(180deg, var(--white-color) 50%, var(--primary-color) 50%);
    padding: 50px 0 100px;
}

.our-appointment-box {
    background: var(--white-color);
    box-shadow: 0px 0px 50px 0px #0000000A;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    padding: 100px;
}

.our-appointment-content,
.appointment-form {
    width: calc(50% - 30px);
}

.appointment-form form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder {
    text-transform: capitalize;
    color: var(--text-color);
}

.appointment-form form .form-group select {
    padding: 16px 30px 16px 20px;
}

.appointment-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
}

.appointment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.appointment-item .icon-box {
    margin-right: 20px;
}

.appointment-item .icon-box img {
    max-width: 60px;
}

.appointment-item-content {
    width: calc(100% - 80px);
}

.appointment-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.appointment-item-content p {
    margin: 0;
}

.our-partner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}

.partner-logo-box,
.our-partner-content {
    width: calc(50% - 15px);
}

.our-partner-content .section-title {
    margin-bottom: 0;
}

.our-partner-content .section-title h3,
.our-partner-content .section-title h2,
.our-partner-content .section-title p {
    color: var(--white-color);
}

.our-partner-content .section-title h3::before {
    background: var(--white-color);
}

.partner-logo-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.partner-logo-image {
    width: calc(33.33% - 33.33px);
    text-align: center;
}

.partner-logo-image img {
    width: 100%;
    max-height: 40px;
    transition: all 0.3s ease-in-out;
}

.partner-logo-image img:hover {
    filter: invert(1);
}

/************************************/
/***    	16. Footer css		  ***/
/************************************/

.footer-cta-box {
    background: var(--primary-color);
    padding: 30px 0;
}

.footer-cta-content .section-title {
    margin-bottom: 0;
}

.footer-cta-content .section-title h2 {
    color: var(--white-color);
}

.footer-cta-btn {
    text-align: right;
}

.footer-cta-btn .btn-default i {
    font-size: 18px;
    margin-right: 5px;
    color: var(--white-color);
}

.footer-cta-btn .btn-default.btn-phone {
    background: var(--dark-divider-color);
}

.footer-cta-btn .btn-default.btn-phone::before {
    background: var(--accent-color);
}

.footer-cta-btn .btn-default.btn-comment {
    margin-left: 30px;
}

.footer-cta-btn .btn-default.btn-comment::before {
    background: var(--dark-divider-color);
}

.main-footer {
    background: var(--soft-accent-color);
    padding: 60px 0 0;
}

/* Keep all footer text readable on the dark-gold footer background. */
.main-footer,
.main-footer p,
.main-footer h3,
.main-footer li,
.main-footer a,
.main-footer span {
    color: #FFFFFF !important;
}

.main-footer a:hover,
.main-footer .psych-developed-link:hover {
    color: var(--secondary-color) !important;
}

.psych-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.15fr;
    gap: 45px;
    align-items: start;
}

.psych-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.psych-footer-logo img {
    width: auto;
    height: 90px;
    max-width: 170px;
    object-fit: contain;
}

.psych-footer-brand p,
.psych-footer-bottom p {
    color: var(--primary-color);
    margin: 0;
}

.psych-footer-brand p {
    max-width: 340px;
    margin-bottom: 24px;
}

.psych-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.psych-footer-social a,
.psych-footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.psych-footer-social a {
    width: 40px;
    height: 40px;
}

.psych-footer-social a:hover,
.psych-footer-contact li:hover .psych-footer-icon {
    background: var(--accent-color);
}

.psych-footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.psych-footer-col h3 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 22px;
}

.psych-footer-links,
.psych-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.psych-footer-links li {
    margin-bottom: 12px;
}

.psych-footer-links li:last-child,
.psych-footer-contact li:last-child {
    margin-bottom: 0;
}

.psych-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.psych-footer-links a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(20, 55, 39, 0.1);
    color: var(--accent-color);
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.psych-footer-links a:hover {
    color: var(--accent-color);
}

.psych-footer-links a:hover span {
    background: var(--accent-color);
    color: var(--white-color);
}

.psych-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--primary-color);
    overflow-wrap: anywhere;
}

.psych-footer-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
}

.psych-footer-icon i {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: inherit;
}

.psych-footer-contact a,
.psych-footer-contact span:not(.psych-footer-icon) {
    color: var(--primary-color);
    line-height: 1.5em;
    transition: all 0.3s ease-in-out;
}

.psych-footer-contact a:hover {
    color: var(--accent-color);
}

.psych-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(20, 55, 39, 0.16);
    padding: 24px 0;
    margin-top: 50px;
}

.psych-developed-link {
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.psych-developed-link:hover {
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    width: auto;
    height: 90px;
    max-width: 160px;
    object-fit: contain;
}

.footer-contact-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer-contact-item p {
    text-transform: capitalize;
    margin-bottom: 10px;
}

.footer-contact-item h3 {
    font-size: 20px;
}

.footer-social-links h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.footer-social-links p {
    margin-bottom: 25px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    border-color: var(--primary-color);
}

.footer-social-links ul li a i {
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
    color: var(--primary-color);
}

.footer-copyright {
    position: relative;
    border-top: 1px solid var(--divider-color);
    padding: 50px 0;
    margin-top: 50px;
    z-index: 1;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-menu ul li {
    display: inline-block;
    margin-right: 50px;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-menu ul li a {
    font-family: var(--accent-font);
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a {
    color: var(--accent-color);
}

.footer-copyright-text {
    text-align: end;
}

.footer-copyright-text p {
    margin: 0;
}

/************************************/
/***    17. About Us Page css	  ***/
/************************************/

.page-header {
    position: relative;
    background: url('../images/page-header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 160px 0 150px;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(20, 55, 39, 0) 75.27%, rgba(20, 55, 39, 0.82) 100%), linear-gradient(270deg, rgba(20, 55, 39, 0) 45.18%, #143727 105.08%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box {
    position: relative;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 70px;
    color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "FontAwesome";
    font-size: 8px;
    color: var(--white-color);
}

.our-approach {
    background: var(--secondary-color);
    padding: 100px 0;
}

.our-approach-list {
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.our-approach-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 35px;
}

.our-approach-item::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 22px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 0;
    left: 0;
}

.our-approach-item:last-child {
    margin-bottom: 0;
}

.approach-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.approach-item-content p {
    margin: 0;
}

.our-approach-image {
    position: relative;
    padding: 0 0 100px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.our-approach-img-1 figure,
.our-approach-img-2 figure,
.our-approach-img-1 img,
.our-approach-img-2 img {
    display: block;
    border-radius: 20px;
}

.our-approach-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
}

.our-approach-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 525px;
}

.our-approach-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.our-team {
    padding: 50px 0 100px;
}

.our-team-content {
    position: sticky;
    top: 30px;
}

.mental-therapy-counter {
    display: inline-block;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px 60px;
}

.mental-therapy-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mental-therapy-header .icon-box {
    margin-right: 26px;
}

.mental-therapy-header .icon-box img {
    max-width: 44px;
}

.mental-therapy-header h2 {
    width: calc(100% - 70px);
    font-size: 40px;
}

.mental-therapy-body p {
    text-transform: capitalize;
    margin: 0;
}

.team-member-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 15px;
}

.team-member-item {
    width: calc(50% - 15px);
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
}

.team-image a {
    display: block;
    cursor: none;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 0.98;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
    transform: scale(1.1);
}

.team-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.team-content,
.team-social-icon {
    width: calc(50% - 10px);
}

.team-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    text-transform: capitalize;
    margin: 0;
}

.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.team-social-icon ul li {
    display: inline-block;
    margin-right: 5px;
}

.team-social-icon ul li:last-child {
    margin-right: 0;
}

.team-social-icon ul li a {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.team-social-icon ul li a i {
    color: inherit;
    font-size: 18px;
}

.our-benefit {
    background: var(--secondary-color);
    padding: 100px 0;
}

.our-benefit-btn {
    margin-bottom: 60px;
}

.our-benefit-img figure {
    display: block;
    border-radius: 20px;
}

.our-benefit-img img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 20px;
}

.our-benefit-box {
    margin-left: 15px;
}

.benefit-box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.our-benefit-item {
    position: relative;
    width: calc(50% - 15px);
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px 20px;
    overflow: hidden;
}

.our-benefit-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.our-benefit-item:hover::after {
    top: 0;
}

.our-benefit-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    z-index: 1;
}

.our-benefit-item .icon-box::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.our-benefit-item:hover .icon-box:after {
    transform: scale(1);
}

.our-benefit-item .icon-box img {
    position: relative;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.our-benefit-item:hover .icon-box img {
    filter: invert(1);
}

.benefit-item-content {
    position: relative;
    z-index: 1;
}

.benefit-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.benefit-item-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p {
    color: var(--white-color);
}

.our-benefit-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.our-benefit-list ul li {
    position: relative;
    width: calc(50% - 15px);
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
}

.our-benefit-list ul li:after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

/************************************/
/***     18. Services Page css	  ***/
/************************************/

.page-services {
    padding: 100px 0 70px;
}

.why-choose-us.page-why-choose-us {
    background: var(--secondary-color);
}

/************************************/
/***    19. Services Single css   ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.service-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.service-catagery-list h3 {
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.service-catagery-list ul li {
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
    margin-bottom: 0;
}

.service-catagery-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    background-color: var(--white-color);
    border-radius: 15px;
    color: var(--text-color);
    padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.service-catagery-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
    filter: brightness(0) invert(1);
}

.faq-cta-box.sidebar-cta-box {
    max-width: 100%;
    background-color: var(--accent-color);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.faq-cta-box.sidebar-cta-box::before {
    display: none;
}

.service-feature-image {
    margin-bottom: 40px;
}

.service-feature-image figure {
    display: block;
    border-radius: 20px;
}

.service-feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry {
    margin-bottom: 40px;
}

.service-entry h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li {
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    width: calc(50% - 5px);
    padding-left: 34px;
}

.service-entry ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.service-therapy-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin: 40px 0;
}

.therapy-benefits-content,
.therapy-benefits-image {
    width: calc(50% - 15px);
}

.therapy-benefits-content ul {
    margin-bottom: 0;
}

.therapy-benefits-content ul li {
    width: 100%;
}

.therapy-benefits-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.therapy-benefits-image img {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    border-radius: 20px;
}

.therapy-benefits-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
    padding: 60px;
    margin-bottom: 40px;
}

.therapy-benefits-item {
    position: relative;
    width: calc(50% - 40px);
}

.therapy-benefits-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background-color: var(--divider-color);
    width: 1px;
    height: 100%;
}

.therapy-benefits-item:nth-of-type(2n + 2):before,
.therapy-benefits-item:last-child:before {
    display: none;
}

.therapy-benefits-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.therapy-benefits-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapy-benefits-item:hover .icon-box::before {
    transform: scale(1);
}

.therapy-benefits-item .icon-box img {
    position: relative;
    max-width: 30px;
    z-index: 1;
}

.therapy-benefits-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.therapy-benefits-item-content p {
    margin-bottom: 0;
}

.service-therapy-steps {
    margin: 40px 0;
}

.therapy-step-item {
    display: flex;
    margin-bottom: 30px;
}

.therapy-step-item:last-child {
    margin-bottom: 0;
}

.therapy-step-no {
    position: relative;
    height: 80px;
    width: 80px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    overflow: hidden;
}

.therapy-step-no::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapy-step-item:hover .therapy-step-no::before {
    transform: scale(1);
}

.therapy-step-no h2 {
    font-family: var(--default-font);
    font-size: 40px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 0;
    z-index: 1;
}

.therapy-step-content {
    width: calc(100% - 100px);
}

.therapy-step-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.therapy-step-content p {
    margin-bottom: 0;
}

.service-entry-video-image {
    position: relative;
    margin-top: 30px;
}

.service-entry-video-image .video-image a {
    cursor: none;
}

.service-entry-video-image .video-image figure {
    border-radius: 20px;
    overflow: hidden;
}

.service-entry-video-image .video-image img {
    width: 100%;
    aspect-ratio: 1 / 0.478;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(70%);
}

.service-entry-video-image .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-accordion.page-faq-accordion .accordion-item {
    border-bottom-color: var(--divider-color);
}

.faq-accordion.page-faq-accordion .accordion-header .accordion-button {
    color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-button::after,
.faq-accordion.page-faq-accordion .accordion-item .accordion-button.collapsed::after {
    border-color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-body p {
    color: var(--text-color);
}

/************************************/
/***     20. Blog Archive css	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-blog .post-item {
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--divider-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 500;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***     21. Blog Single css	  ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 20px;
}

.post-image figure,
.post-image img {
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 20px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 0.6em;
}

.post-entry h1 {
    font-size: 70px;
}

.post-entry h2 {
    font-size: 48px;
}

.post-entry h3 {
    font-size: 46px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ol li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: url(../images/icon-blockquote.svg), var(--accent-color);
    background-repeat: no-repeat;
    background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--white-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 6px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***   22. Case Study Page css	  ***/
/************************************/

.page-case-study {
    padding: 100px 0 70px;
}

/************************************/
/***   23. Case Study Single css  ***/
/************************************/

.page-case-study-single {
    padding: 100px 0;
}

.case-study-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.case-study-detail-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
}

.case-study-detail-box h2 {
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.case-study-list-box {
    padding: 30px;
}

.case-study-list-item {
    padding: 15px 20px;
    background-color: var(--white-color);
    border-radius: 15px;
    margin-bottom: 20px;
}

.case-study-list-item:last-child {
    margin-bottom: 0;
}

.case-study-list-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.case-study-list-item p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.case-study-featured-image {
    margin-bottom: 40px;
}

.case-study-featured-image figure {
    display: block;
    border-radius: 20px;
}

.case-study-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 20px;
}

.case-study-entry {
    margin-bottom: 40px;
}

.case-study-entry h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.case-study-entry p {
    margin-bottom: 20px;
}

.case-study-entry p:last-child {
    margin-bottom: 0;
}

.case-study-entry ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.case-study-entry ul li {
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    padding-left: 34px;
    margin-bottom: 20px;
}

.case-study-entry ul li:last-child {
    margin-bottom: 0;
}

.case-study-entry ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.therapeutic-approach-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.therapeutic-approach-item {
    width: 50%;
}

.therapeutic-approach-item {
    padding: 50px 50px 50px 0;
    border-bottom: 1px solid var(--divider-color);
    border-right: 1px solid var(--divider-color);
}

.therapeutic-approach-item:nth-of-type(2n + 2) {
    padding: 50px 0 50px 50px;
    border-bottom: 1px solid var(--divider-color);
    border-right: none;
}

.therapeutic-approach-item:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: none;
}

.therapeutic-approach-item:nth-child(-n + 2) {
    padding-top: 0;
}

.therapeutic-approach-item .icon-box {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}

.therapeutic-approach-item .icon-box img {
    max-width: 30px;
    z-index: 1;
}

.therapeutic-approach-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapeutic-approach-item:hover .icon-box::before {
    transform: scale(1);
}

.therapeutic-approach-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.case-study-image-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.case-study-list,
.case-study-entry-image {
    width: calc(50% - 15px);
}

.case-study-list ul {
    margin-bottom: 0;
}

.case-study-entry-image figure {
    display: block;
    border-radius: 20px;
}

.case-study-entry-image img {
    width: 100%;
    aspect-ratio: 1 / 0.714;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***       24. Team Page css 	  ***/
/************************************/

.page-team {
    padding: 100px 0 70px;
}

.page-team .team-member-item {
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***      25. Team Single css 	  ***/
/************************************/

.page-team-single {
    padding: 100px 0;
}

.team-single-sidebar {
    position: sticky;
    top: 30px;
}

.team-sidebar-box {
    border-radius: 20px;
    overflow: hidden;
}

.team-sidebar-image figure {
    display: block;
}

.team-sidebar-image img {
    width: 100%;
    aspect-ratio: 1 / 0.975;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.team-sidebar-body {
    background-color: var(--secondary-color);
    padding: 30px;
}

.team-sidebar-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-sidebar-body ul li {
    display: inline-flex;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider-color);
}

.team-sidebar-body ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-sidebar-body ul li span {
    font-family: var(--accent-font);
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    width: 40%;
}

.team-sidebar-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 30px;
    background-color: var(--accent-color);
    border-radius: 0 0 20px 20px;
}

.team-sidebar-footer span {
    font-family: var(--accent-font);
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
}

.team-sidebar-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-sidebar-footer ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.team-sidebar-footer ul li a {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a {
    border-color: var(--primary-color);
}

.team-sidebar-footer ul li a i {
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a i {
    color: var(--primary-color);
}

.team-single-content {
    margin-left: 30px;
}

.team-single-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    cursor: none;
}

.team-single-content p {
    margin-bottom: 20px;
}

.team-single-content p:last-child {
    margin-bottom: 0;
}

.team-member-info,
.team-member-experience,
.team-member-expertise {
    margin-bottom: 60px;
}

.team-member-experience {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.member-experience-info,
.team-member-skills {
    width: calc(50% - 15px);
}

.member-experience-info-item {
    margin-bottom: 30px;
}

.member-experience-info-item:last-child {
    margin-bottom: 0;
}

.member-experience-info-item h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.skills-progress-bar {
    margin-bottom: 30px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skills-progress-bar .skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title {
    font-size: 15px;
    text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no {
    font-size: 15px;
    color: var(--primary-color);
    margin-left: 20px;
}

.skills-progress-bar .skillbar .skill-progress {
    width: 100%;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 100px;
    position: relative;
}

.skills-progress-bar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--accent-color);
    border-radius: 100px;
}

.team-contact-form {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

/************************************/
/***      26. Pricing Page css 	  ***/
/************************************/

.page-pricing {
    padding: 100px 0;
}

.pricing-box {
    height: calc(100% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 40px;
}

.pricing-box.highlight-box {
    background-color: var(--accent-color);
    border-color: transparent;
}

.pricing-box-header {
    margin-bottom: 40px;
}

.pricing-title {
    margin-bottom: 30px;
}

.pricing-title h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.pricing-box.highlight-box .pricing-title h3 {
    color: var(--white-color);
}

.pricing-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-box.highlight-box .pricing-title h2 {
    color: var(--white-color);
}

.pricing-title h2 sub {
    font-family: var(--default-font);
    font-size: 16px;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlight-box .pricing-title h2 sub {
    color: var(--secondary-color);
}

.pricing-title p {
    margin-bottom: 0;
}

.pricing-box.highlight-box .pricing-title p {
    color: var(--secondary-color);
}

.pricing-btn .btn-default {
    width: 100%;
    text-align: center;
}

.pricing-box.highlight-box .pricing-btn .btn-default {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.pricing-box.highlight-box .btn-default:hover {
    color: var(--white-color);
}

.pricing-list-title {
    margin-bottom: 20px;
}

.pricing-list-title h3 {
    font-size: 20px;
}

.pricing-box.highlight-box .pricing-list-title h3 {
    color: var(--white-color);
}

.pricing-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-list ul li {
    position: relative;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 20px;
}

.pricing-list ul li:last-child {
    margin-bottom: 0;
}

.pricing-box.highlight-box .pricing-list ul li {
    color: var(--secondary-color);
}

.pricing-list ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.pricing-box.highlight-box .pricing-list ul li::before {
    color: var(--white-color);
}

.pricing-benefit-list {
    margin-top: 30px;
}

.pricing-benefit-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
}

.pricing-benefit-list ul li {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img {
    max-width: 20px;
    margin-right: 15px;
}

.our-testimonial.pricing-testimonial {
    padding: 100px 0;
}

/************************************/
/***    27. Testimonial Page css  ***/
/************************************/

.page-testimonial {
    padding: 100px 0 70px;
}

.client-testimonial-item {
    position: relative;
    height: calc(100% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
}

.client-testimonial-item::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.client-testimonial-item:hover::before {
    top: 0;
    height: 100%;
}

.client-testimonial-header {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 40px;
    z-index: 1;
}

.client-testimonial-author {
    width: calc(68% - 5px);
    display: flex;
    align-items: center;
}

.client-author-image {
    margin-right: 15px;
}

.client-author-image figure {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.client-author-image img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.client-author-content {
    width: calc(100% - 75px);
}

.client-author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.client-author-content p {
    text-transform: capitalize;
    margin: 0;
}

.client-testimonial-rating {
    width: calc(32% - 5px);
    text-align: right;
}

.client-testimonial-rating i {
    font-size: 14px;
    color: var(--accent-color);
}

.client-testimonial-body {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.client-testimonial-body p:last-child {
    margin-bottom: 0;
}

.client-testimonial-quote {
    position: relative;
    z-index: 1;
}

.client-testimonial-quote img {
    max-width: 40px;
}

/************************************/
/***     28. Image Gallery css 	  ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    aspect-ratio: 1 / 0.794;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***     29. Video Gallery css 	  ***/
/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.video-gallery-image {
    border-radius: 20px;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    aspect-ratio: 1 / 0.794;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***      30. FAQs Page css 	  ***/
/************************************/

.page-faqs {
    padding: 100px 0;
}

.faq-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.faq-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
}

.faq-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-catagery-list ul li {
    margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child {
    margin-bottom: 0;
}

.faq-catagery-list ul li a {
    position: relative;
    display: block;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 15px;
    text-transform: capitalize;
    padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a {
    color: var(--white-color);
    background-color: var(--accent-color);
}

.faq-catagery-list ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::after {
    filter: brightness(0) invert(1);
}

.faq-accordion.page-faq-accordion {
    margin-bottom: 60px;
}

.faq-accordion.page-faq-accordion:last-child {
    margin-bottom: 0;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
    padding: 100px 0;
}

.contact-form-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    text-align: center;
    padding: 80px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    background-color: var(--white-color);
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

.contact-info-box {
    background-color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
    padding: 80px;
    margin-top: 100px;
}

.contact-info-item {
    width: calc(33.33% - 40px);
    display: flex;
    flex-wrap: wrap;
}

.contact-info-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--white-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box {
    background-color: transparent;
}

.contact-info-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}

.contact-info-item .icon-box img {
    max-width: 35px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.contact-info-content {
    width: calc(100% - 80px);
}

.contact-info-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 15px;
}

.contact-info-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    height: 600px;
    width: 100%;
}

.google-map-iframe iframe {
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover {
    filter: grayscale(0);
}

/*************************************/
/*** 32. Book Appointment Page css ***/
/*************************************/

.page-book-appointment {
    padding: 100px 0;
}

/************************************/
/***    33. 404 Error Page css 	  ***/
/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 80px;
}

.error-page-image img {
    width: 100%;
    max-width: 50%;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 20px;
}

.error-page-content-body p {
    margin-bottom: 20px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {

    .main-menu ul li {
        margin: 0;
    }

    .our-appointment-box {
        padding: 50px;
    }
}

@media only screen and (max-width: 991px) {

    .navbar {
        padding: 2px 0;
    }

    .main-menu ul li.highlighted-menu {
        display: block;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        margin-bottom: 15px;
    }

    .section-title h1 {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .section-title p {
        margin-top: 15px;
        font-size: 17px;
    }

    .section-title-content {
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        padding: 100px 0 50px;
        margin-top: 0;
        height: auto;
        min-height: auto;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 200px 0 150px;
        min-height: auto;
    }

    .hero.hero-slider-layout .hero-pagination {
        padding-left: 15px;
        bottom: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-list {
        margin-top: 90px;
        padding: 50px 0 0;
        z-index: 1;
    }

    .hero-list ul {
        gap: 20px;
    }

    .hero-list ul li {
        font-size: 14px;
    }

    .hero-list-icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .hero-list-icon svg {
        width: 18px;
        height: 18px;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-us-images {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .about-customer-box {
        max-width: 345px;
        padding: 20px;
    }

    .about-us-content {
        margin-left: 0px;
    }

    .about-vision-mission {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .vision-mission-content h3 {
        margin-bottom: 20px;
    }

    .vision-mission-content ul li {
        margin-bottom: 15px;
    }

    .our-services {
        padding: 50px 0;
    }

    .service-image img {
        aspect-ratio: 1 / 0.87;
    }

    .service-content {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .service-btn {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .service-get-quote-text {
        margin-top: 10px;
    }

    .service-get-quote-text p {
        font-size: 14px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-us-box {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .why-choose-image {
        position: relative;
        width: 100%;
        height: auto;
    }

    .why-choose-content {
        width: 100%;
        height: auto;
    }

    .why-choose-image figure img {
        height: auto;
        aspect-ratio: 1 / 0.8;
    }

    .contact-circle-img {
        position: absolute;
        right: auto;
        left: 0;
        top: -15px;
        bottom: auto;
        transform: translate(50%, -50%);
    }

    .why-choose-list {
        margin-bottom: 30px;
    }

    .why-choose-item .icon-box {
        margin-right: 10px;
    }

    .why-choose-item-content {
        width: calc(100% - 50px);
    }

    .why-choose-item-content h3 {
        font-size: 18px;
    }

    .why-choose-body-image img {
        aspect-ratio: 1 / 0.85;
    }

    .what-we-do {
        padding: 50px 0 25px;
    }

    .intro-video-box {
        padding: 150px 15px 25px;
    }

    .video-play-button a {
        width: 70px;
        height: 70px;
    }

    .video-play-button a i {
        font-size: 24px;
    }

    .intro-video-counter {
        gap: 30px;
        padding-top: 25px;
        margin-top: 150px;
    }

    .video-counter-item h2 {
        font-size: 40px;
    }

    .case-study {
        padding: 25px 0 20px;
    }

    .case-study-image {
        margin-bottom: 20px;
    }

    .case-study-content {
        margin-bottom: 20px;
    }

    .how-it-work {
        padding: 50px 0;
    }

    .how-work-step-item {
        background: transparent;
    }

    .how-work-step-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 60px;
    }

    .how-work-step-item:nth-child(even) {
        background: transparent;
    }

    .how-work-step-item::after {
        display: block;
        top: 42%;
        right: -52px;
        width: 78px;
        height: 44px;
    }

    .how-work-step-item:nth-child(even)::after {
        top: 36%;
    }

    .how-work-step-item:nth-child(2n)::after,
    .how-work-step-item:last-child::after {
        display: none;
    }

    .how-work-step-no {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .how-work-step-item:nth-child(even) .how-work-step-no {
        margin: 20px 0 0 0;
    }

    .how-work-step-no h3 {
        font-size: 40px;
    }

    .how-work-step-content {
        max-width: 100%;
    }

    .cta-section {
        padding: 50px 0 25px;
    }

    .cta-box {
        padding: 0 15px;
    }

    .cta-box-image {
        width: 43%;
    }

    .cta-box-content {
        width: 57%;
        margin: 20px 0 20px 10px;
    }

    .cta-box-content .cta-box-btn:before {
        right: 20%;
    }

    @keyframes ctamoveobject {
        50% {
            right: 30%;
        }
    }

    .our-testimonial {
        padding: 25px 0 50px;
    }

    .testimonial-review-box {
        padding: 30px 40px;
        margin-bottom: 30px;
    }

    .testimonial-review-box .about-customer-rating {
        padding: 10px 15px;
    }

    .testimonial-review-box .about-customer-rating i {
        font-size: 16px;
    }

    .testimonial-slider {
        padding: 20px;
    }

    .testimonial-rating {
        margin-bottom: 10px;
    }

    .testimonial-content {
        margin-bottom: 20px;
    }

    .testimonial-company-slider {
        margin-top: 40px;
    }

    .confidentiality-section {
        padding: 50px 0;
    }

    .confidentiality-section::after {
        inset: 24px 18px;
    }

    .confidentiality-title {
        margin-bottom: 36px;
    }

    .confidentiality-grid {
        gap: 14px;
    }

    .confidentiality-card {
        min-height: 0;
        padding: 26px 24px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .faq-cta-box {
        gap: 14px;
        padding: 20px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .our-blog {
        padding: 50px 0 0px;
    }

    .our-appointment {
        padding: 25px 0 50px;
    }

    .our-appointment-box {
        padding: 30px 15px;
        gap: 30px;
    }

    .our-appointment-content,
    .appointment-form {
        width: 100%;
    }

    .appointment-form form .form-control {
        padding: 10px 15px;
    }

    .appointment-form form .form-group select {
        padding: 10px 30px 10px 15px;
    }

    .appointment-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .appointment-item .icon-box {
        margin-right: 10px;
    }

    .appointment-item .icon-box img {
        max-width: 50px;
    }

    .appointment-item-content {
        width: calc(100% - 60px);
    }

    .our-partner {
        margin-top: 50px;
        gap: 20px;
    }

    .partner-logo-box,
    .our-partner-content {
        width: calc(50% - 10px);
    }

    .partner-logo-box {
        gap: 20px 30px;
    }

    .partner-logo-image {
        width: calc(33.33% - 20px);
    }

    .footer-cta-box {
        padding: 20px 0;
    }

    .footer-cta-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-cta-btn {
        text-align: center;
    }

    .main-footer {
        padding: 40px 0 0;
    }

    .about-footer,
    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-contact-box {
        gap: 25px;
    }

    .footer-contact-item h3 {
        font-size: 18px;
    }

    .footer-social-links p {
        margin-bottom: 15px;
    }

    .footer-copyright {
        padding: 20px 0;
        margin-top: 30px;
    }

    .footer-menu ul li {
        margin-right: 15px;
    }

    .page-header {
        padding: 100px 0 80px;
        margin-top: 0;
    }

    .page-header-box h1 {
        font-size: 50px;
    }

    .our-approach {
        padding: 50px 0;
    }

    .our-approach-content {
        margin-bottom: 30px;
    }

    .our-approach-list {
        padding-top: 30px;
    }

    .our-approach-item {
        margin-bottom: 30px;
        padding-left: 30px;
    }

    .our-approach-item::before {
        font-size: 20px;
    }

    .approach-item-content h3 {
        margin-bottom: 5px;
    }

    .our-team {
        padding: 25px 0 50px;
    }

    .our-team-content {
        margin-bottom: 30px;
    }

    .mental-therapy-counter {
        padding: 30px 40px;
    }

    .mental-therapy-header h2 {
        font-size: 34px;
    }

    .team-member-list {
        margin-left: 0;
    }

    .team-body {
        padding: 20px;
    }

    .team-content,
    .team-social-icon {
        width: 100%;
    }

    .team-social-icon ul {
        text-align: left;
    }

    .our-benefit {
        padding: 50px 0;
    }

    .our-benefit-content {
        margin-bottom: 30px;
    }

    .our-benefit-btn {
        margin-bottom: 30px;
    }

    .our-benefit-box {
        margin-left: 0px;
    }

    .benefit-box-list {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .our-benefit-item {
        padding: 20px;
    }

    .our-benefit-item .icon-box {
        margin-bottom: 30px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .service-catagery-list {
        margin-bottom: 30px;
    }

    .service-catagery-list h3,
    .service-catagery-list ul {
        padding: 20px;
    }

    .service-catagery-list ul li a {
        padding: 12px 45px 12px 15px;
    }

    .service-catagery-list ul li a::before {
        right: 15px;
    }

    .service-feature-image {
        margin-bottom: 30px;
    }

    .service-entry {
        margin-bottom: 30px;
    }

    .service-entry h2 {
        font-size: 38px;
    }

    .service-entry ul {
        gap: 15px 10px;
    }

    .service-entry ul li {
        padding-left: 25px;
    }

    .service-entry ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .service-therapy-benefits {
        margin: 30px 0;
    }

    .therapy-benefits-box {
        gap: 40px 60px;
        padding: 40px;
        margin-bottom: 30px;
    }

    .therapy-benefits-item {
        width: calc(50% - 30px);
    }

    .therapy-benefits-item::before {
        right: -30px;
    }

    .therapy-benefits-item .icon-box {
        margin-bottom: 20px;
    }

    .therapy-benefits-item-content h3 {
        margin-bottom: 10px;
    }

    .therapy-step-item {
        margin-bottom: 20px;
    }

    .service-therapy-steps {
        margin: 30px 0;
    }

    .therapy-step-no {
        height: 60px;
        width: 60px;
    }

    .therapy-step-no h2 {
        font-size: 30px;
    }

    .therapy-step-content {
        width: calc(100% - 80px);
    }

    .therapy-step-content h3 {
        margin-bottom: 10px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-blog .post-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h2 {
        font-size: 38px;
    }

    .post-entry ul li {
        font-size: 16px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .tag-links {
        font-size: 22px;
    }

    .post-tags .tag-links a {
        font-size: 16px;
        padding: 6px 15px;
    }

    .page-case-study {
        padding: 50px 0 20px;
    }

    .page-case-study-single {
        padding: 50px 0;
    }

    .case-study-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .case-study-detail-box h2,
    .case-study-list-box {
        padding: 20px;
    }

    .case-study-detail-box {
        margin-bottom: 30px;
    }

    .case-study-list-item {
        padding: 12px 15px;
        margin-bottom: 15px;
    }

    .case-study-featured-image {
        margin-bottom: 30px;
    }

    .case-study-entry {
        margin-bottom: 30px;
    }

    .case-study-entry h2 {
        font-size: 38px;
    }

    .therapeutic-approach-list {
        margin-bottom: 30px;
    }

    .therapeutic-approach-item {
        padding: 30px 30px 30px 0;
    }

    .therapeutic-approach-item:nth-of-type(2n + 2) {
        padding: 30px 0 30px 30px;
    }

    .therapeutic-approach-item:nth-last-child(-n + 2) {
        padding-bottom: 0;
    }

    .therapeutic-approach-item:nth-child(-n + 2) {
        padding-top: 0;
    }

    .case-study-image-list {
        gap: 20px;
    }

    .case-study-list {
        width: calc(55% - 10px);
    }

    .case-study-entry-image {
        width: calc(45% - 10px);
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-single-sidebar {
        position: initial;
        margin-bottom: 30px;
    }

    .team-sidebar-image img {
        aspect-ratio: 1 / 0.65;
        object-position: top center;
    }

    .team-sidebar-body {
        padding: 20px;
    }

    .team-sidebar-body ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .team-sidebar-footer {
        padding: 12px 20px;
    }

    .team-single-content {
        margin-left: 0;
    }

    .team-member-info,
    .team-member-experience,
    .team-member-expertise {
        margin-bottom: 40px;
    }

    .team-single-content h2 {
        font-size: 38px;
    }

    .member-experience-info-item {
        margin-bottom: 20px;
    }

    .team-contact-form {
        padding: 30px;
    }

    .page-pricing {
        padding: 50px 0;
    }

    .pricing-box {
        padding: 30px;
    }

    .pricing-box-header {
        margin-bottom: 30px;
    }

    .pricing-title {
        margin-bottom: 20px;
    }

    .pricing-title h2 {
        font-size: 38px;
    }

    .pricing-list ul li {
        margin-bottom: 10px;
    }

    .pricing-list ul li::before {
        font-size: 18px;
    }

    .pricing-benefit-list {
        margin-top: 10px;
    }

    .our-testimonial.pricing-testimonial {
        padding: 50px 0;
    }

    .page-testimonial {
        padding: 50px 0 20px;
    }

    .client-testimonial-item {
        padding: 20px;
    }

    .client-testimonial-header {
        margin-bottom: 30px;
    }

    .client-author-image {
        margin-right: 10px;
    }

    .client-author-image img {
        width: 50px;
        height: 50px;
    }

    .client-author-content {
        width: calc(100% - 60px);
    }

    .client-author-content h3 {
        font-size: 18px;
    }

    .client-author-content p {
        font-size: 14px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .faq-sidebar {
        position: initial;
        top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .faq-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .faq-accordion.page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 40px 0;
    }

    .contact-form-box {
        padding: 50px;
    }

    .contact-form .form-control {
        padding: 10px 15px;
    }

    .contact-info-box {
        gap: 10px;
        padding: 40px 15px;
        margin-top: 50px;
    }

    .contact-info-item {
        width: calc(33.33% - 6.66px);
    }

    .contact-info-item .icon-box {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }

    .contact-info-item .icon-box img {
        max-width: 25px;
    }

    .contact-info-content {
        width: calc(100% - 50px);
    }

    .contact-info-content p {
        font-size: 14px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
    }

    .page-book-appointment {
        padding: 50px 0;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 40px;
    }

    .error-page-image img {
        max-width: 80%;
    }
}

@media only screen and (max-width: 767px) {

    .btn-default {
        padding: 14px 20px;
    }

    .btn-default.btn-highlighted {
        padding: 13px 20px;
    }

    .appointment-modal .modal-dialog {
        margin: 12px auto;
        width: calc(100% - 20px);
    }

    .appointment-modal .modal-content {
        padding: 26px 18px 20px;
    }

    .appointment-modal-close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
    }

    .appointment-modal-header {
        padding-right: 34px;
        margin-bottom: 18px;
    }

    .appointment-modal-header h3 {
        font-size: 22px;
    }

    .appointment-modal-header p {
        font-size: 14px;
    }

    .appointment-modal-form {
        gap: 12px;
    }

    .appointment-modal-form .form-control {
        min-height: 50px;
        font-size: 14px;
        padding: 12px 14px;
    }

    .appointment-modal-form textarea.form-control {
        min-height: 105px;
    }

    .appointment-modal-form .btn-default {
        width: 100%;
        text-align: center;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content-body {
        display: block;
    }

    .hero-btn {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .hero-slide .hero-content .hero-btn {
        margin-bottom: 0;
    }

    .hero-list ul {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .hero-list ul li {
        width: calc(50% - 10px);
        font-size: 12px;
    }

    .hero-list-icon {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .hero-list-icon svg {
        width: 16px;
        height: 16px;
    }

    .about-us-images {
        max-width: 100%;
        gap: 20px;
    }

    .about-img-1 {
        width: calc(40% - 10px);
    }

    .about-img-2 {
        width: calc(60% - 10px);
    }

    .about-customer-box {
        max-width: 230px;
        padding: 16px;
    }

    .about-support-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
    }

    .about-support-icon svg {
        width: 20px;
        height: 20px;
    }

    .about-customer-content {
        margin-bottom: 10px;
    }

    .about-customer-content h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .about-customer-content p,
    .about-support-list li {
        font-size: 12px;
    }

    .about-support-list li {
        margin-bottom: 5px;
    }

    .about-vision-mission {
        gap: 20px;
    }

    .vision-mission-content {
        width: 100%;
    }

    .vision-mission-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .vision-mission-content ul li {
        margin-bottom: 10px;
    }

    .about-help-icon {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .about-help-icon svg {
        width: 16px;
        height: 16px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .why-choose-list {
        gap: 20px;
    }

    .why-choose-item {
        width: 100%;
    }

    .why-choose-body {
        flex-direction: column-reverse;
    }

    .why-choose-body-content,
    .why-choose-body-image {
        width: 100%;
    }

    .contact-circle-img {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .contact-circle-img img {
        max-width: 110px;
    }

    .why-choose-body-image img {
        aspect-ratio: 1 / 0.8;
    }

    .intro-video-box {
        background-position: right center;
        padding: 100px 15px 25px;
    }

    .intro-video-counter {
        gap: 20px;
        padding-top: 25px;
        margin-top: 100px;
    }

    .video-counter-item {
        width: calc(50% - 10px);
    }

    .video-counter-item h2 {
        font-size: 30px;
    }

    .video-counter-item p {
        font-size: 14px;
    }

    .case-study-content {
        margin-bottom: 15px;
    }

    .how-work-step-box {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .how-work-step-item {
        width: 100%;
        flex-wrap: nowrap;
        align-items: flex-start;
        padding-bottom: 30px;
    }

    .how-work-step-item:nth-child(even) {
        flex-direction: row;
    }

    .how-work-step-item::after,
    .how-work-step-item:nth-child(even)::after {
        display: block;
        top: auto;
        right: auto;
        bottom: -18px;
        left: 16px;
        width: 64px;
        height: 36px;
        transform: rotate(90deg);
        background-image: url('../images/how-work-step-arrow-1.svg');
    }

    .how-work-step-item:last-child {
        padding-bottom: 0;
    }

    .how-work-step-item:last-child::after {
        display: none;
    }

    .how-work-step-no {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .how-work-step-item:nth-child(even) .how-work-step-no {
        margin: 0px 15px 0 0;
    }

    .how-work-step-no h3 {
        font-size: 30px;
    }

    .how-work-step-content {
        width: auto;
        flex: 1 1 auto;
        max-width: 100%;
        min-width: 0;
    }

    .how-work-step-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .cta-box {
        flex-direction: column-reverse;
        padding: 50px 15px 0;
    }

    .cta-box-image {
        width: 100%;
    }

    .cta-box-content {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .cta-box-content .cta-box-btn:before {
        right: 20px;
    }

    @keyframes ctamoveobject {
        50% {
            right: 50px;
        }
    }

    .testimonial-review-box {
        padding: 20px 30px;
    }

    .testimonial-review-box .about-customer-rating {
        margin-bottom: 15px;
    }

    .testimonial-item {
        gap: 20px;
    }

    .testimonial-slider-image,
    .testimonial-slider-content {
        width: 100%;
    }

    .author-content h3 {
        font-size: 18px;
    }

    .testimonial-company-slider {
        margin-top: 30px;
    }

    .confidentiality-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .confidentiality-card {
        padding: 24px 20px;
    }

    .confidentiality-card::after {
        width: 38px;
        height: 38px;
    }

    .confidentiality-mark {
        width: 7px;
        height: 7px;
        margin-bottom: 18px;
    }

    .confidentiality-card h3 {
        font-size: 18px;
    }

    .faq-cta-box {
        display: block;
        max-width: 100%;
    }

    .faq-support-icon {
        margin-bottom: 15px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding-right: 0px;
    }

    .post-item-content {
        margin-bottom: 15px;
    }

    .post-item-content h3 {
        font-size: 18px;
    }

    .appointment-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .appointment-item-content h3 {
        font-size: 18px;
    }

    .partner-logo-box,
    .our-partner-content {
        width: 100%;
    }

    .footer-cta-btn .btn-default {
        font-size: 14px;
        padding: 12px 15px;
    }

    .footer-cta-btn .btn-default i {
        font-size: 16px;
    }

    .footer-cta-btn .btn-default.btn-comment {
        margin-left: 15px;
    }

    .about-footer .section-title h2 {
        font-size: 24px;
    }

    .footer-contact-box {
        display: block;
    }

    .footer-contact-item {
        margin-bottom: 20px;
    }

    .footer-contact-item:last-child {
        margin-bottom: 0;
    }

    .footer-contact-item p {
        margin-bottom: 5px;
    }

    .footer-social-links h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-copyright {
        padding: 15px 0;
    }

    .footer-menu ul {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-menu ul li {
        margin-right: 10px;
    }

    .footer-copyright-text {
        text-align: center;
    }

    .page-header-box h1 {
        font-size: 32px;
    }

    .our-approach-item::before {
        font-size: 18px;
    }

    .approach-item-content h3 {
        font-size: 18px;
    }

    .our-approach-image {
        padding: 0 0 50px 80px;
    }

    .our-approach-img-2 {
        max-width: 270px;
    }

    .mental-therapy-header .icon-box {
        margin-right: 16px;
    }

    .mental-therapy-header .icon-box img {
        max-width: 34px;
    }

    .mental-therapy-header h2 {
        width: calc(100% - 50px);
        font-size: 28px;
    }

    .team-member-item {
        width: 100%;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .our-benefit-item {
        width: 100%;
    }

    .benefit-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .our-benefit-list ul {
        gap: 15px;
    }

    .our-benefit-list ul li {
        width: 100%;
    }

    .service-catagery-list h3 {
        font-size: 18px;
    }

    .service-feature-image {
        margin-bottom: 20px;
    }

    .service-feature-image img {
        aspect-ratio: 1 / 0.7;
    }

    .service-entry h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry ul {
        margin-bottom: 15px;
    }

    .service-entry ul li {
        width: 100%;
    }

    .service-therapy-benefits {
        gap: 20px;
        margin: 20px 0;
    }

    .therapy-benefits-content ul {
        margin-bottom: 0;
    }

    .therapy-benefits-content,
    .therapy-benefits-image {
        width: 100%;
    }

    .therapy-benefits-image img {
        aspect-ratio: 1 / 0.72;
    }

    .therapy-benefits-box {
        gap: 30px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .therapy-benefits-item {
        width: 100%;
    }

    .therapy-benefits-item::before {
        top: auto;
        right: 0;
        left: 0;
        bottom: -15px;
        height: 1px;
        width: 100%;
    }

    .therapy-step-no {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }

    .therapy-step-no h2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .service-therapy-steps {
        margin: 20px 0;
    }

    .therapy-step-content {
        width: calc(100% - 50px);
    }

    .therapy-step-content h3 {
        font-size: 18px;
    }

    .service-entry-video-image {
        margin-top: 20px;
    }

    .service-entry-video-image .video-image img {
        aspect-ratio: 1 / 0.58;
    }

    .service-entry-video-image .video-play-button a {
        width: 50px;
        height: 50px;
    }

    .service-entry-video-image .video-play-button a:after,
    .service-entry-video-image .video-play-button a:before {
        top: -50%;
        left: -50%;
    }

    .service-entry-video-image .video-play-button a i {
        font-size: 20px;
    }

    .post-image figure,
    .post-image img {
        aspect-ratio: 1 / 0.70;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 20px;
    }

    .case-study-detail-box h2,
    .case-study-list-item h3 {
        font-size: 18px;
    }

    .case-study-featured-image {
        margin-bottom: 20px;
    }

    .case-study-featured-image img {
        aspect-ratio: 1 / 0.7;
    }

    .case-study-entry h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .case-study-entry p {
        margin-bottom: 15px;
    }

    .therapeutic-approach-item {
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        border-right: none;
        margin-bottom: 20px;
        padding: 0 0 20px 0;
    }

    .therapeutic-approach-item:nth-of-type(2n + 2) {
        padding: 0 0 20px 0;
    }

    .therapeutic-approach-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 20px;
    }

    .therapeutic-approach-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .therapeutic-approach-item .icon-box {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .therapeutic-approach-item .icon-box img {
        max-width: 25px;
    }

    .therapeutic-approach-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .case-study-list,
    .case-study-entry-image {
        width: 100%;
    }

    .case-study-entry ul li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 28px;
    }

    .case-study-entry ul li::before {
        font-size: 18px;
    }

    .case-study-entry-image img {
        aspect-ratio: 1 / 0.68;
    }

    .team-sidebar-image img {
        aspect-ratio: 1 / 0.86;
        object-position: initial;
    }

    .team-sidebar-body ul li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .team-sidebar-body ul li span,
    .team-sidebar-footer span {
        font-size: 18px;
    }

    .team-member-info,
    .team-member-experience,
    .team-member-expertise {
        margin-bottom: 30px;
    }

    .team-single-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .team-single-content p {
        margin-bottom: 15px;
    }

    .team-member-experience {
        gap: 20px;
    }

    .member-experience-info,
    .team-member-skills {
        width: 100%;
    }

    .member-experience-info-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .skills-progress-bar {
        margin-bottom: 20px;
    }

    .pricing-box {
        padding: 20px;
    }

    .pricing-box-header {
        margin-bottom: 20px;
    }

    .pricing-title h3 {
        font-size: 18px;
    }

    .pricing-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .pricing-title h2 sub {
        font-size: 14px;
    }

    .pricing-list-title {
        margin-bottom: 15px;
    }

    .pricing-list-title h3 {
        font-size: 18px;
    }

    .pricing-benefit-list ul {
        gap: 10px 15px;
    }

    .pricing-benefit-list ul li {
        width: calc(50% - 7.5px);
        font-size: 12px;
    }

    .pricing-benefit-list ul li img {
        max-width: 18px;
        margin-right: 5px;
    }

    .client-testimonial-header {
        margin-bottom: 20px;
    }

    .client-testimonial-rating i {
        font-size: 12px;
    }

    .client-testimonial-body {
        margin-bottom: 10px;
    }

    .client-testimonial-quote img {
        max-width: 30px;
    }

    .faq-catagery-list ul li a {
        padding: 12px 45px 12px 15px;
    }

    .contact-form-box {
        padding: 20px;
    }

    .contact-info-box {
        gap: 25px;
        padding: 20px;
    }

    .contact-info-item {
        width: 100%;
    }

    .contact-info-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .error-page-image {
        margin-bottom: 20px;
    }
}

/* extra css */
.about-us-para {
    font-size: 19px !important;
}

@media only screen and (max-width: 991px) {
    .psych-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px 30px;
    }

    .psych-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 40px;
        padding: 22px 0;
    }

    .confidentiality-title p {
        font-size: 11px !important;
    }
}

@media only screen and (max-width: 767px) {
    .psych-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .psych-footer-logo {
        margin-bottom: 16px;
    }

    .psych-footer-logo img {
        height: 78px;
    }

    .psych-footer-brand p {
        max-width: 100%;
        margin-bottom: 18px;
    }

    .psych-footer-col h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .psych-footer-links li {
        margin-bottom: 9px;
    }

    .psych-footer-contact li {
        margin-bottom: 12px;
    }

    .psych-footer-bottom {
        text-align: left;
        margin-top: 30px;
    }
}

/* Responsive inner page hero */
.psych-page-hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(90deg, rgba(20, 55, 39, 0.94), rgba(20, 55, 39, 0.78) 48%, rgba(20, 55, 39, 0.32)), var(--psych-hero-image, url('../images/hero-bg.jpg'));
    background-position: center, center 42%;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white-color);
}

.psych-page-hero__container {
    display: flex;
    align-items: center;
    min-height: clamp(280px, 30vw, 440px);
    padding-block: clamp(64px, 8vw, 112px);
}

.psych-page-hero__content {
    width: 100%;
    max-width: 850px;
    overflow-wrap: anywhere;
}

.psych-page-hero__eyebrow {
    margin: 0 0 5px;
    color: var(--secondary-color);
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.psych-page-hero__title {
    margin: 0;
    color: var(--white-color);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.psych-page-hero__breadcrumb {
    margin-top: clamp(20px, 3vw, 30px);
}

.psych-page-hero__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: clamp(13px, 1.3vw, 15px);
    line-height: 1.6;
}

.psych-page-hero__item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.psych-page-hero__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--white-color);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: rgba(255, 255, 255, 0.55);
}

.psych-page-hero__link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.psych-page-hero__link:focus-visible {
    outline: 2px solid var(--white-color);
    outline-offset: 5px;
    border-radius: 2px;
}

.psych-page-hero__separator {
    color: var(--soft-accent-color);
}

@media (max-width: 575px) {
    .psych-page-hero {
        background-position: center, 65% center;
        background-image: linear-gradient(90deg, rgba(20, 55, 39, 0.94), rgba(20, 55, 39, 0.72)), var(--psych-hero-image, url('../images/hero-bg.jpg'));
    }

    .psych-page-hero__container {
        padding-inline: 24px;
    }
}

/* Psych Serenity contact page */
.psy-contact {
    padding: clamp(48px, 7vw, 96px) 0;
    background: #faf9f5;
}

.psy-contact__intro {
    max-width: 760px;
    margin-bottom: 40px;
}

.psy-contact__eyebrow {
    color: #796020;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.psy-contact__intro h2 {
    font-size: clamp(29px, 4vw, 46px);
    line-height: 1.2;
    letter-spacing: -.035em;
    margin-bottom: 20px;
}

.psy-contact__intro>p:last-child {
    margin-bottom: 0;
}

.psy-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr);
    gap: 30px;
    align-items: start;
}

.psy-contact__details {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.psy-contact__card,
.psy-contact__form-card {
    padding: clamp(24px, 3vw, 40px);
    border: 1px solid var(--divider-color);
    border-radius: 24px;
    background: var(--white-color);
}

.psy-contact h3 {
    font-size: clamp(23px, 2.5vw, 29px);
    line-height: 1.25;
    margin-bottom: 14px;
}

.psy-contact__address {
    font-style: normal;
    margin: 26px 0;
    display: grid;
    gap: 22px;
}

.psy-contact__contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--primary-color);
    overflow-wrap: anywhere;
}

.psy-contact__contact-link>span:last-child {
    min-width: 0;
}

.psy-contact__contact-link strong {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 500;
}

.psy-contact__label {
    display: block;
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 3px;
}

.psy-contact__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    font-size: 22px;
}

.psy-contact__facts {
    border-top: 1px solid var(--divider-color);
    margin: 0;
    padding-top: 24px;
    display: grid;
    gap: 18px;
}

.psy-contact__facts dt {
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 4px;
}

.psy-contact__facts dd {
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.psy-contact__social-card {
    padding: 28px;
    background: var(--primary-color);
    border-radius: 24px;
    color: var(--secondary-color);
}

.psy-contact__social-card h4 {
    color: var(--white-color);
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.psy-contact__social-card p {
    margin-bottom: 20px;
}

.psy-contact__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.psy-contact__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 9px 14px;
    border: 1px solid #81958a;
    border-radius: 30px;
    color: var(--white-color);
    font-size: 14px;
}

.psy-contact__socials a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.psy-contact__form-intro {
    margin-bottom: 26px;
}

.psy-contact__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.psy-contact__field {
    min-width: 0;
}

.psy-contact__field--wide {
    grid-column: 1 / -1;
}

.psy-contact__field label {
    display: block;
    margin-bottom: 9px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.psy-contact__input {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    border: 1px solid #c6cec7;
    border-radius: 10px;
    padding: 13px 14px;
    background: #fdfdfa;
    color: var(--primary-color);
    font: inherit;
    font-size: 16px;
    line-height: 1.5;
}

.psy-contact__input::placeholder {
    color: #68736a;
    opacity: 1;
}

textarea.psy-contact__input {
    resize: vertical;
    min-height: 144px;
}

.psy-contact__input:focus {
    border-color: var(--primary-color);
    outline: 3px solid #14372726;
    outline-offset: 1px;
}

.psy-contact__note {
    font-size: 12px;
    line-height: 1.7;
    margin: 18px 0 22px;
}

.psy-contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 14px 26px;
    background: var(--primary-color);
    color: white;
    border: 0;
    border-radius: 30px;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.psy-contact__submit:hover {
    background: #24563e;
}

.psy-contact__submit:disabled {
    opacity: .65;
    cursor: wait;
}

.psy-contact a:focus-visible,
.psy-contact__submit:focus-visible {
    outline: 3px solid #a6751f;
    outline-offset: 4px;
}

.psy-contact__status {
    margin: 16px 0 0;
    color: #a12c23;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.psy-contact__status:empty {
    display: none;
}

@media (max-width: 991px) {
    .psy-contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .psy-contact>.container {
        padding-inline: 20px;
    }

    .psy-contact__fields {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .psy-contact__card,
    .psy-contact__form-card,
    .psy-contact__social-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .psy-contact__submit {
        width: 100%;
    }

    .psy-contact__intro {
        margin-bottom: 28px;
    }
}

.psych-footer-contact>li>a,
.psych-footer-contact>li>span:not(.psych-footer-icon) {
    min-width: 0;
    padding-block: 6px;
}


/* Individual counselling introduction */
.psy-private-intro {
    padding-block: clamp(48px, 5.5vw, 96px);
    background: var(--white-color);
}

.psy-private-intro__layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: stretch;
}

.psy-private-intro__heading-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(30px, 4vw, 52px);
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, rgba(20, 55, 39, .88), rgba(20, 55, 39, .72)), var(--psych-intro-image, url('../images/counselling.webp'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px 64px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.psy-private-intro__accent {
    display: block;
    width: 54px;
    height: 3px;
    margin-bottom: 26px;
    background: var(--soft-accent-color);
}

.psy-private-intro__title {
    color: var(--secondary-color);
    font-size: clamp(28px, 3.3vw, 44px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: balance;
    margin: 0;
}

.psy-private-intro__decoration {
    position: absolute;
    z-index: -1;
    width: 240px;
    height: 240px;
    right: -125px;
    bottom: -145px;
    border: 1px solid #ffffff24;
    border-radius: 50%;
    box-shadow: 0 0 0 28px #ffffff05, 0 0 0 56px #ffffff05;
    pointer-events: none;
}

.psy-private-intro__content {
    min-width: 0;
    padding-block: 8px;
}

.psy-private-intro__content p {
    margin: 0 0 24px;
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.85;
    color: var(--text-color);
}

.psy-private-intro__content .psy-private-intro__lead {
    color: var(--primary-color);
}

.psy-private-intro__content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.psy-private-intro__note {
    padding: 22px 26px;
    background: var(--secondary-color);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 14px 14px 0;
}

.psy-private-intro__note p {
    margin: 0;
    color: var(--primary-color);
    font-size: 15px;
}

@media (max-width: 991px) {
    .psy-private-intro__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-private-intro__heading-panel {
        padding: 36px;
    }

    .psy-private-intro__title {
        max-width: 680px;
        text-wrap: pretty;
    }

    .psy-private-intro__content {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .psy-private-intro>.container {
        padding-inline: 22px;
    }

    .psy-private-intro__heading-panel {
        padding: 30px 24px;
        border-radius: 20px 44px 20px 20px;
    }

    .psy-private-intro__title {
        font-size: clamp(26px, 6.5vw, 34px);
    }

    .psy-private-intro__accent {
        margin-bottom: 20px;
    }

    .psy-private-intro__note {
        padding: 20px;
    }
}

/* Individual counselling: when counselling may be helpful */
.psy-helpful {
    padding-block: clamp(48px, 5.5vw, 96px);
    background: var(--secondary-color);
}

.psy-helpful__intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(24px, 5vw, 72px);
    margin-bottom: 38px;
}

.psy-helpful__title {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.psy-helpful__description {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.85;
}

.psy-helpful__list-intro {
    padding-top: 28px;
    border-top: 1px solid var(--divider-color);
    margin: 0 0 24px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.psy-helpful__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.psy-helpful__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    min-width: 0;
    padding: 26px 24px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 18px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.psy-helpful__icon {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.psy-helpful__note {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 26px 32px;
    border-radius: 16px;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.psy-helpful__note-icon {
    flex-shrink: 0;
    font-size: 30px;
    line-height: 1;
}

.psy-helpful__note p {
    margin: 0;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .psy-helpful__intro {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .psy-helpful__title {
        max-width: 620px;
        text-wrap: pretty;
    }

    .psy-helpful__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .psy-helpful>.container {
        padding-inline: 22px;
    }

    .psy-helpful__intro {
        margin-bottom: 28px;
    }

    .psy-helpful__description {
        font-size: 15px;
    }

    .psy-helpful__list {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .psy-helpful__item {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 20px;
        font-size: 15px;
    }

    .psy-helpful__icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .psy-helpful__note {
        align-items: flex-start;
        padding: 24px 20px;
        gap: 14px;
    }
}

/* Individual counselling: lived experience and session approach */
.psy-inner-life,
.psy-session-approach {
    padding-block: clamp(48px, 7vw, 96px);
}

.psy-inner-life {
    background: var(--white-color);
}

.psy-inner-life__layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

.psy-inner-life__heading,
.psy-inner-life__content {
    min-width: 0;
}

.psy-inner-life__icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
}

.psy-inner-life__title,
.psy-session-approach__title {
    margin: 0 0 24px;
    color: var(--primary-color);
    font-size: clamp(28px, 3.2vw, 55px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: pretty;
}

.psy-inner-life p,
.psy-session-approach p {
    margin: 0 0 24px;
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.85;
}

.psy-inner-life .psy-inner-life__lead {
    max-width: 420px;
    margin: 0;
    color: var(--primary-color);
    font-size: 25px;
    line-height: 1.2;
}

.psy-inner-life__content {
    border-left: 1px solid var(--divider-color);
    padding-left: clamp(28px, 4vw, 48px);
}

.psy-inner-life__example {
    margin-bottom: 26px;
    padding: clamp(22px, 3vw, 32px);
    background: var(--secondary-color);
    border-radius: 18px;
    border-top: 3px solid var(--soft-accent-color);
}

.psy-inner-life__example p {
    margin: 0;
}

.psy-inner-life .psy-inner-life__closing {
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.psy-session-approach {
    background: var(--secondary-color);
}





.psy-session-approach__layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}













@media (max-width: 991px) {

    .psy-inner-life__layout,
    .psy-session-approach__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-inner-life__content {
        padding-left: 0;
        border-left: 0;
    }

    .psy-inner-life .psy-inner-life__lead {
        max-width: none;
    }


}

@media (max-width: 575px) {

    .psy-inner-life>.container,
    .psy-session-approach>.container {
        padding-inline: 22px;
    }

    .psy-inner-life__title,
    .psy-session-approach__title {
        font-size: clamp(26px, 6.5vw, 34px);
    }






}

/* Image-led individual counselling approach */
.psy-session-approach__photo {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 100px 24px 24px 24px;
    background: #dfe3d7;
}

.psy-session-approach__photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.psy-session-approach__copy {
    min-width: 0;
    padding-block: 8px;
}

.psy-session-approach__copy>p:last-child {
    margin-bottom: 0;
}

.psy-session-approach__emphasis {
    border-left: 3px solid var(--accent-color);
    padding: 18px 24px;
    margin-bottom: 24px;
    background: var(--white-color);
    border-radius: 0 14px 14px 0;
}

.psy-session-approach__emphasis p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 991px) {
    .psy-session-approach__photo {
        aspect-ratio: 16 / 10;
        border-radius: 56px 20px 20px 20px;
    }

    .psy-session-approach__copy {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .psy-session-approach__photo {
        aspect-ratio: 4 / 3;
    }

    .psy-session-approach__emphasis {
        padding: 18px 20px;
    }
}

/* Individual counselling: areas to explore */
.psy-explore {
    padding-block: clamp(48px, 7vw, 40px);
    background: var(--white-color);
}

.psy-explore__intro {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

.psy-explore__title {
    margin: 0 0 20px;
    color: var(--primary-color);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.psy-explore__intro p {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

.psy-explore__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.psy-explore__card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
    padding: clamp(26px, 3.5vw, 40px);
    border: 1px solid var(--divider-color);
    border-radius: 22px;
    background: var(--secondary-color);
}

.psy-explore__icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 18px 18px 18px 4px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 27px;
    line-height: 1;
}

.psy-explore__copy {
    min-width: 0;
}

.psy-explore__copy h3 {
    margin: 0 0 14px;
    color: var(--primary-color);
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.psy-explore__copy p {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.85;
}

@media (min-width: 768px) and (max-width: 991px) {
    .psy-explore__card {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .psy-explore__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .psy-explore__intro {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .psy-explore>.container {
        padding-inline: 22px;
    }

    .psy-explore__card {
        padding: 24px 20px;
        gap: 18px;
        border-radius: 18px;
    }

    .psy-explore__icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 23px;
        border-radius: 14px 14px 14px 4px;
    }

    .psy-explore__copy p {
        font-size: 15px;
    }
}

@media (max-width: 359px) {
    .psy-explore__card {
        flex-direction: column;
    }

    .psy-explore__icon {
        flex-basis: auto;
    }
}

/* Individual counselling: executives and families */
.psy-family-support {
    padding-block: clamp(48px, 5vw, 96px);
    background: var(--secondary-color);
}

.psy-family-support__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    margin-bottom: 40px;
}

.psy-family-support__title {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: pretty;
}

.psy-family-support__intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
}

.psy-family-support__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: stretch;
}

.psy-family-support__photo {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    background: #d6dacc;
}

.psy-family-support__photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.psy-family-support__panel {
    min-width: 0;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 0 24px 24px 0;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.psy-family-support__icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border: 1px solid #ffffff38;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 25px;
    line-height: 1;
}

.psy-family-support__lead {
    margin: 0 0 26px;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.65;
    font-weight: 500;
}

.psy-family-support__note {
    border-top: 1px solid #ffffff38;
    padding-top: 24px;
}

.psy-family-support__note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
}

.psy-family-support__note strong {
    font-weight: 600;
    color: var(--white-color);
}

@media (max-width: 991px) {
    .psy-family-support__intro {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-family-support__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-family-support__photo {
        aspect-ratio: 3 / 2;
        border-radius: 24px 24px 0 0;
    }

    .psy-family-support__panel {
        border-radius: 0 0 24px 24px;
    }
}

@media (max-width: 575px) {
    .psy-family-support>.container {
        padding-inline: 22px;
    }

    .psy-family-support__intro {
        margin-bottom: 28px;
    }

    .psy-family-support__intro p {
        font-size: 15px;
    }

    .psy-family-support__panel {
        padding: 28px 24px;
    }
}

/* Individual counselling: closing conversation and FAQs */
.psy-closing,
.psy-service-faq {
    padding-block: clamp(48px, 5vw, 96px);
}

.psy-closing {
    background: var(--white-color);
}

.psy-closing__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
}

.psy-closing__intro,
.psy-closing__conversation {
    min-width: 0;
}

.psy-closing__title,
.psy-service-faq__title {
    margin: 0 0 26px;
    color: var(--primary-color);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: pretty;
}

.psy-closing p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.85;
}

.psy-closing__intro>p:last-child,
.psy-closing__conversation>p:last-child {
    margin-bottom: 0;
}

.psy-closing__conversation {
    padding: clamp(28px, 4vw, 44px);
    border-radius: 24px;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.psy-closing__icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    background: #ffffff14;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
}

.psy-closing__subtitle {
    margin: 0 0 22px;
    font-size: clamp(24px, 2.5vw, 30px);
    font-weight: 500;
    line-height: 1.4;
}

.psy-closing__subtitle a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 44px;
    color: var(--white-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
}

.psy-closing__subtitle a:hover {
    color: #e1cf9e;
}

.psy-closing__subtitle a:focus-visible {
    outline: 3px solid var(--soft-accent-color);
    outline-offset: 6px;
    border-radius: 4px;
}

.psy-closing__subtitle i {
    flex-shrink: 0;
    font-size: 26px;
}

.psy-closing .psy-closing__statement {
    padding-bottom: 22px;
    border-bottom: 1px solid #ffffff30;
    font-size: 19px;
    line-height: 1.7;
}

.psy-closing__statement strong {
    font-weight: 500;
}

.psy-service-faq {
    background: var(--secondary-color);
}

.psy-service-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.psy-service-faq__accent {
    display: block;
    width: 54px;
    height: 3px;
    margin-bottom: 24px;
    background: var(--accent-color);
}

.psy-service-faq__title {
    margin-bottom: 0;
}

.psy-service-faq__list {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.psy-service-faq__item {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
}

.psy-service-faq__item[open] {
    border-color: #9bab9c;
}

.psy-service-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    list-style: none;
    cursor: pointer;
    border-radius: 16px;
}

.psy-service-faq__question::-webkit-details-marker {
    display: none;
}

.psy-service-faq__question::marker {
    content: '';
}

.psy-service-faq__question h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    min-width: 0;
}

.psy-service-faq__question:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.psy-service-faq__toggle {
    position: relative;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
}

.psy-service-faq__toggle::before,
.psy-service-faq__toggle::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 9px;
    width: 12px;
    height: 2px;
    background: currentColor;
}

.psy-service-faq__toggle::after {
    transform: rotate(90deg);
}

.psy-service-faq__item[open] .psy-service-faq__toggle::after {
    display: none;
}

.psy-service-faq__answer {
    padding: 0 28px 26px;
}

.psy-service-faq__answer p {
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--divider-color);
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
}

@media (max-width: 991px) {

    .psy-closing__layout,
    .psy-service-faq__layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575px) {

    .psy-closing>.container,
    .psy-service-faq>.container {
        padding-inline: 22px;
    }

    .psy-closing__conversation {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .psy-closing p,
    .psy-service-faq__answer p {
        font-size: 15px;
    }

    .psy-service-faq__question {
        padding: 20px;
        gap: 14px;
    }

    .psy-service-faq__question h3 {
        font-size: 16px;
    }

    .psy-service-faq__answer {
        padding: 0 20px 22px;
    }
}

/* Group counselling: accessible support */
.psy-group-access {
    padding-block: clamp(56px, 5vw, 110px);
    background: var(--white-color);
}

.psy-group-access>.container {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.psy-group-access__header {
    min-width: 0;
}

.psy-group-access__icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 26px;
    border: 1px solid var(--divider-color);
    border-radius: 16px;
    color: var(--primary-color);
    font-size: 27px;
    line-height: 1;
}

.psy-group-access__title {
    margin: 0 0 26px;
    color: var(--primary-color);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -.04em;
    text-wrap: pretty;
}

.psy-group-access__lead {
    margin: 0;
    padding-left: 22px;
    border-left: 3px solid var(--accent-color);
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.85;
}

.psy-group-access__body {
    position: relative;
    min-width: 0;
    padding-bottom: 8px;
}

.psy-group-access__explanation {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 48px) clamp(28px, 4vw, 44px) 64px;
    margin-right: 32px;
    border-radius: 40px 40px 8px 40px;
    background: var(--primary-color);
}

.psy-group-access__explanation::before {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    margin-bottom: 24px;
    background: var(--soft-accent-color);
}

.psy-group-access__explanation p {
    position: relative;
    margin: 0;
    color: var(--secondary-color);
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.8;
}

.psy-group-access__reflection {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: -28px 0 0 48px;
    padding: 28px;
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 8px 24px 24px 24px;
    box-shadow: 0 14px 30px #1437270a;
}

.psy-group-access__reflection-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 25px;
    line-height: 1;
}

.psy-group-access__reflection p {
    margin: 0;
    min-width: 0;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .psy-group-access>.container {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-group-access__title {
        max-width: 700px;
    }
}

@media (max-width: 575px) {
    .psy-group-access>.container {
        padding-inline: 22px;
        gap: 30px;
    }

    .psy-group-access__title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .psy-group-access__lead {
        font-size: 15px;
        padding-left: 18px;
    }

    .psy-group-access__explanation {
        margin-right: 12px;
        padding: 28px 24px 48px;
        border-radius: 28px 28px 8px 28px;
    }

    .psy-group-access__reflection {
        margin-left: 12px;
        margin-top: -20px;
        padding: 24px 20px;
        gap: 14px;
    }

    .psy-group-access__reflection p {
        font-size: 15px;
    }

    .psy-group-access__reflection-icon {
        flex-basis: 34px;
        height: 34px;
        font-size: 22px;
    }
}

/* Justified text across counselling page content */
:is(.psy-private-intro, .psy-helpful, .psy-inner-life, .psy-session-approach,
    .psy-explore, .psy-family-support, .psy-closing, .psy-service-faq,
    .psy-group-access) :is(p, li) {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: start;
}

/* About Psych Serenity: considered care */
.psy-about-care {
    padding-block: clamp(48px, 7vw, 96px);
    background: var(--white-color);
}

.psy-about-care__layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 5vw, 68px);
    align-items: stretch;
}

.psy-about-care__image {
    position: relative;
    isolation: isolate;
    min-width: 0;
    margin: 0 0 16px 16px;
    background: var(--secondary-color);
    border-radius: 100px 24px 24px 24px;
}

.psy-about-care__image::before {
    content: '';
    position: absolute;
    inset: 30px 24px -16px -16px;
    border: 1px solid var(--soft-accent-color);
    border-radius: 80px 24px 24px 24px;
    z-index: -1;
}

.psy-about-care__image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
    border-radius: inherit;
}

.psy-about-care__content {
    min-width: 0;
    padding-block: 8px;
}

.psy-about-care__accent {
    display: block;
    width: 52px;
    height: 3px;
    margin-bottom: 22px;
    background: var(--accent-color);
}

.psy-about-care__title {
    margin: 0 0 24px;
    color: var(--primary-color);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: pretty;
}

.psy-about-care__content p {
    margin: 0 0 22px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.85;
    text-align: justify;
    text-align-last: start;
}

.psy-about-care__content .psy-about-care__lead {
    color: var(--primary-color);
    font-size: 18px;
}

.psy-about-care__statement {
    padding: 22px 26px;
    margin-bottom: 24px;
    background: var(--secondary-color);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 16px 16px 0;
}

.psy-about-care__statement p {
    margin: 0;
    color: var(--primary-color);
}

.psy-about-care__statement strong {
    font-weight: 500;
}

.psy-about-care__content>p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .psy-about-care__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-about-care__image {
        aspect-ratio: 16 / 10;
    }

    .psy-about-care__content {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .psy-about-care>.container {
        padding-inline: 22px;
    }

    .psy-about-care__image {
        aspect-ratio: 4 / 3;
        border-radius: 60px 20px 20px 20px;
    }

    .psy-about-care__title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .psy-about-care__content p {
        font-size: 15px;
    }

    .psy-about-care__statement {
        padding: 20px;
    }
}

/* About: counselling formats */
.psy-about-formats {
    padding-block: clamp(48px, 7vw, 96px);
    background: var(--secondary-color);
}

.psy-about-formats__intro {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(24px, 5vw, 64px);
    margin-bottom: 40px;
}

.psy-about-formats__title {
    margin: 0;
    padding-left: 22px;
    border-left: 3px solid var(--accent-color);
    color: var(--primary-color);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: pretty;
}

.psy-about-formats__intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
    text-align: justify;
}

.psy-about-formats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.psy-about-formats__card {
    position: relative;
    min-width: 0;
    padding: clamp(26px, 3.5vw, 40px);
    border: 1px solid var(--divider-color);
    border-radius: 22px;
    background: var(--white-color);
}

.psy-about-formats__icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 16px 16px 16px 4px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 27px;
    line-height: 1;
}

.psy-about-formats__card h3 {
    margin: 0 0 18px;
    font-size: clamp(22px, 2.3vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.025em;
}

.psy-about-formats__card h3 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    color: var(--primary-color);
    text-decoration: none;
}

.psy-about-formats__card h3 a i {
    flex-shrink: 0;
    font-size: 24px;
}

.psy-about-formats__card h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.psy-about-formats__card h3 a:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 5px;
    border-radius: 4px;
}

.psy-about-formats__card p {
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--divider-color);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.85;
    text-align: justify;
}

.psy-about-formats__card:first-child {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.psy-about-formats__card:first-child .psy-about-formats__icon {
    background: #ffffff14;
    color: var(--secondary-color);
}

.psy-about-formats__card:first-child h3 a {
    color: var(--white-color);
}

.psy-about-formats__card:first-child p {
    color: var(--secondary-color);
    border-color: #ffffff30;
}

@media (max-width: 991px) {
    .psy-about-formats__intro {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .psy-about-formats__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .psy-about-formats>.container {
        padding-inline: 22px;
    }

    .psy-about-formats__intro {
        margin-bottom: 28px;
    }

    .psy-about-formats__card {
        padding: 26px 22px;
        border-radius: 18px;
    }

    .psy-about-formats__intro p,
    .psy-about-formats__card p {
        font-size: 15px;
    }
}


/* =========================================================
   PSYCH SERENITY
   UNDERSTANDING THE PRESSURES SECTION
   ========================================================= */

.ps-pressure-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: #BDBAA2;
    color: #143727;
}


/* Decorative Background */

.ps-pressure-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -210px;
    right: -140px;
    border: 1px solid rgba(20, 55, 39, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.ps-pressure-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -150px;
    left: -110px;
    border: 1px solid rgba(20, 55, 39, 0.10);
    border-radius: 50%;
    pointer-events: none;
}


/* Main Layout */

.ps-pressure-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.85fr 1.5fr;

    gap: 80px;
    align-items: start;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.ps-pressure-intro {
    position: sticky;
    top: 100px;
}


.ps-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: #143727;
}


.ps-section-label::before {
    content: "";

    width: 32px;
    height: 1px;

    background: #143727;
}


.ps-pressure-intro h2 {
    max-width: 470px;

    margin: 0;

    font-size: clamp(42px, 4.2vw, 68px);
    font-weight: 500;
    line-height: 1.04;

    letter-spacing: -2.5px;

    color: #143727;
}


.ps-pressure-intro h2 span {
    display: block;

    font-style: italic;
    font-weight: 400;
}


.ps-intro-line {
    width: 70px;
    height: 4px;

    margin-top: 32px;

    background: #143727;
    border-radius: 10px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.ps-pressure-image {
    position: relative;

    margin-top: 45px;

    width: 100%;
    max-width: 520px;

    overflow: hidden;

    border-radius: 2px;
}


.ps-pressure-image img {
    display: block;

    width: 100%;
    height: 565px;

    object-fit: cover;

    filter: saturate(0.78);

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}


/* Image Hover */

.ps-pressure-image:hover img {
    transform: scale(1.04);
    filter: saturate(0.95);
}


/* Image Overlay */

.ps-pressure-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(20, 55, 39, 0.72),
            rgba(20, 55, 39, 0.02) 60%);

    pointer-events: none;
}


/* Image Caption */

.ps-image-caption {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;

    z-index: 2;

    display: flex;
    align-items: flex-end;
    gap: 15px;
}


.ps-image-caption span {
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #BDBAA2;
}


.ps-image-caption p {
    margin: 0;

    max-width: 260px;

    font-size: 14px;
    line-height: 1.45;

    color: #BDBAA2;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.ps-pressure-content {
    max-width: 850px;
}


.ps-pressure-lead {
    max-width: 780px;

    margin: 0 0 15px;

    font-size: 21px;
    line-height: 1.75;

    font-weight: 500;

    color: #143727;
}


/* =========================================================
   PRESSURE CARDS
   ========================================================= */

.ps-pressure-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.ps-pressure-card {
    position: relative;

    min-height: 205px;

    padding: 30px;

    border: 1px solid rgba(20, 55, 39, 0.22);

    background: rgba(255, 255, 255, 0.18);

    border-radius: 2px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.ps-pressure-card:hover {
    transform: translateY(-6px);

    background: #143727;

    border-color: #143727;
}


.ps-card-number {
    display: block;

    margin-bottom: 30px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #143727;

    transition: color 0.35s ease;
}


.ps-pressure-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #143727;

    transition: color 0.35s ease;
}


.ps-pressure-card:hover .ps-card-number,
.ps-pressure-card:hover p {
    color: #BDBAA2;
}


/* =========================================================
   CLOSING CONTENT
   ========================================================= */

.ps-pressure-closing {
    position: relative;

    margin-top: 20px;

    padding: 42px 45px;

    background: #143727;

    color: #BDBAA2;

    border-radius: 2px;
}


.ps-pressure-closing p {
    max-width: 760px;

    margin: 0 0 20px;

    font-size: 17px;
    line-height: 1.75;

    color: #BDBAA2;
}


.ps-pressure-closing p:last-child {
    margin-bottom: 0;
}


.ps-pressure-closing .ps-closing-highlight {
    position: relative;

    margin-top: 28px;
    padding-top: 25px;

    font-size: 19px;
    line-height: 1.7;

    font-weight: 500;
}


.ps-pressure-closing .ps-closing-highlight::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 55px;
    height: 2px;

    background: #BDBAA2;
}


/* =========================================================
   DECORATIVE ICON
   ========================================================= */





/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .ps-pressure-section {
        padding: 100px 0;
    }

    .ps-pressure-grid {
        grid-template-columns: 0.8fr 1.4fr;
        gap: 55px;
    }

    .ps-pressure-intro h2 {
        font-size: clamp(40px, 5vw, 58px);
    }

    .ps-pressure-lead {
        font-size: 19px;
    }

    .ps-pressure-image img {
        height: 310px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ps-pressure-section {
        padding: 85px 0;
    }

    .ps-pressure-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ps-pressure-intro {
        position: static;
    }

    .ps-pressure-intro h2 {
        max-width: 650px;
    }

    .ps-pressure-image {
        max-width: 100%;
        margin-top: 35px;
    }

    .ps-pressure-image img {
        height: 390px;
    }

    .ps-pressure-content {
        max-width: 100%;
    }

    .ps-pressure-lead {
        margin-bottom: 35px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ps-pressure-section {
        padding: 70px 0;
    }

    .ps-pressure-grid {
        gap: 38px;
    }

    .ps-section-label {
        margin-bottom: 17px;

        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .ps-pressure-intro h2 {
        font-size: clamp(38px, 10vw, 50px);

        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .ps-intro-line {
        width: 55px;
        height: 3px;

        margin-top: 24px;
    }

    .ps-pressure-image {
        margin-top: 30px;
    }

    .ps-pressure-image img {
        height: 300px;
    }

    .ps-pressure-lead {
        margin-bottom: 28px;

        font-size: 17px;
        line-height: 1.7;
    }

    .ps-pressure-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ps-pressure-card {
        min-height: auto;
        padding: 25px;
    }

    .ps-card-number {
        margin-bottom: 20px;
    }

    .ps-pressure-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .ps-pressure-closing {
        margin-top: 35px;
        padding: 32px 25px;
    }

    .ps-pressure-closing p {
        font-size: 15px;
        line-height: 1.7;
    }

    .ps-pressure-closing .ps-closing-highlight {
        font-size: 17px;
    }

    .ps-closing-icon {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .ps-pressure-section {
        padding: 58px 0;
    }

    .ps-pressure-intro h2 {
        font-size: 37px;
    }

    .ps-pressure-image img {
        height: 250px;
    }

    .ps-image-caption {
        left: 20px;
        right: 20px;
        bottom: 18px;
    }

    .ps-image-caption p {
        font-size: 13px;
    }

    .ps-pressure-card {
        padding: 22px;
    }

    .ps-pressure-closing {
        padding: 27px 21px;
    }
}

/* About Us: counselling settings */
.psy-settings {
    padding: clamp(56px, 4vw, 104px) 0;
    background: #f4f1e8;
}

.psy-settings__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.65fr);
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
}

.psy-settings__accent {
    display: block;
    width: 48px;
    height: 3px;
    margin-bottom: 24px;
    background: #a6751f;
}

.psy-settings__title {
    margin: 0 0 24px;
    color: #143727;
    font-size: clamp(32px, 3.5vw, 50px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.psy-settings__title span {
    display: block;
    color: #805919;
}

.psy-settings__lead {
    max-width: 36ch;
    margin: 0;
    color: #526157;
    font-size: 17px;
    line-height: 1.8;
}

.psy-settings__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.psy-settings__card {
    min-width: 0;
    padding: clamp(24px, 2.6vw, 38px);
    border: 1px solid #dedfce;
    border-radius: 24px;
    background: #fffdf8;
}

.psy-settings__card--online {
    border-color: #143727;
    background: #143727;
}

.psy-settings__card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 38px;
}

.psy-settings__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid #dedfce;
    border-radius: 18px;
    background: #f4f1e8;
    color: #143727;
    font-size: 28px;
}

.psy-settings__number {
    color: #6c715f;
    font-size: 13px;
    letter-spacing: 2px;
}

.psy-settings__card h3 {
    margin: 0 0 16px;
    color: #143727;
    font-size: clamp(22px, 2vw, 27px);
    line-height: 1.3;
    letter-spacing: -0.6px;
}

.psy-settings__card p {
    margin: 0;
    color: #526157;
    font-size: 15px;
    line-height: 1.85;
}

.psy-settings__card--online .psy-settings__icon {
    border-color: #496253;
    background: #294a39;
    color: #eee1b8;
}

.psy-settings__card--online h3 {
    color: #fffdf8;
}

.psy-settings__card--online p,
.psy-settings__card--online .psy-settings__number {
    color: #d5dfd7;
}

.psy-settings__note {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: clamp(32px, 4vw, 52px);
    padding-top: 28px;
    border-top: 1px solid #d9d8ca;
}

.psy-settings__note-icon {
    flex: 0 0 auto;
    color: #805919;
    font-size: 28px;
}

.psy-settings__note p {
    max-width: 85ch;
    margin: 0;
    color: #526157;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .psy-settings__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .psy-settings__lead {
        max-width: 60ch;
    }
}

@media (max-width: 575px) {
    .psy-settings>.container {
        padding-inline: 20px;
    }

    .psy-settings__options {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .psy-settings__card {
        border-radius: 20px;
    }

    .psy-settings__card-top {
        margin-bottom: 26px;
    }

    .psy-settings__title {
        letter-spacing: -1px;
    }

    .psy-settings__note {
        align-items: flex-start;
        gap: 14px;
    }
}

/* About Us: areas of focus */
.psy-focus {
    padding: clamp(56px, 5vw, 110px) 0;
    background: #fffdf8;
}

.psy-focus__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    align-items: start;
    gap: clamp(32px, 5vw, 80px);
}

.psy-focus__motif {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 74px;
    margin-bottom: 24px;
    border: 1px solid #d9dece;
    border-radius: 40px 40px 12px 12px;
    background: #eef1e7;
    color: #365a40;
    font-size: 32px;
}

.psy-focus__title {
    margin: 0 0 22px;
    color: #143727;
    font-size: clamp(34px, 3.7vw, 52px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.psy-focus__title span {
    color: #805919;
}

.psy-focus__lead {
    max-width: 39ch;
    margin: 0;
    color: #526157;
    font-size: 16px;
    line-height: 1.85;
}

.psy-focus__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.psy-focus__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    padding: 30px 0;
    border-bottom: 1px solid #dedfd2;
}

.psy-focus__item:nth-child(-n + 2) {
    border-top: 1px solid #dedfd2;
}

.psy-focus__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0eadb;
    color: #805919;
    font-size: 12px;
    font-weight: 500;
}

.psy-focus__name {
    margin: 3px 0 0;
    color: #143727;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.psy-focus__closing {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 38px);
    margin-top: clamp(32px, 4.5vw, 60px);
    padding: clamp(24px, 3.5vw, 44px);
    border-radius: 4px 32px 32px 4px;
    border-left: 4px solid #bca469;
    background: #143727;
}

.psy-focus__closing-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    height: 64px;
    border: 1px solid #506b58;
    border-radius: 50%;
    color: #e6d6a6;
    font-size: 30px;
}

.psy-focus__closing-copy {
    min-width: 0;
}

.psy-focus__closing-copy p {
    max-width: 85ch;
    margin: 0;
    color: #d5dfd7;
    font-size: 15px;
    line-height: 1.8;
}

.psy-focus__closing-copy .psy-focus__closing-lead {
    margin-bottom: 9px;
    color: #fffdf8;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.45;
}

@media (max-width: 991px) {
    .psy-focus__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-focus__lead {
        max-width: 65ch;
    }
}

@media (max-width: 575px) {
    .psy-focus>.container {
        padding-inline: 20px;
    }

    .psy-focus__list {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-focus__item {
        padding: 22px 0;
    }

    .psy-focus__item:nth-child(2) {
        border-top: 0;
    }

    .psy-focus__closing {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 4px 24px 24px 4px;
    }

    .psy-focus__closing-mark {
        flex-basis: auto;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

/* About Us: our approach to counselling */
.psy-approach {
    padding: clamp(56px, 5vw, 108px) 0;
    background: #f4f1e8;
}

.psy-approach__heading {
    max-width: 780px;
    margin: 0 auto clamp(32px, 4.5vw, 60px);
    text-align: center;
}

.psy-approach__accent {
    display: block;
    width: 48px;
    height: 3px;
    margin: 0 auto 22px;
    background: #a6751f;
}

.psy-approach__title {
    margin: 0 0 22px;
    color: #143727;
    font-size: clamp(32px, 3.6vw, 50px);
    line-height: 1.18;
    letter-spacing: -1.3px;
}

.psy-approach__title span {
    color: #805919;
}

.psy-approach__heading p {
    max-width: 68ch;
    margin: 0 auto;
    color: #526157;
    font-size: 16px;
    line-height: 1.85;
}

.psy-approach__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
}

.psy-approach__visual {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dcdccc;
    border-radius: 80px 20px 20px 20px;
    background: #fffdf8;
}

.psy-approach__image {
    margin: 0;
}

.psy-approach__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 640 / 359;
    object-fit: cover;
}

.psy-approach__reflection {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: clamp(24px, 3vw, 38px);
}

.psy-approach__reflection-icon {
    flex: 0 0 auto;
    color: #805919;
    font-size: 28px;
    line-height: 1.4;
}

.psy-approach__reflection p {
    margin: 0;
    color: #143727;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.55;
}

.psy-approach__reflection p span {
    display: block;
    margin-top: 12px;
    color: #526157;
    font-size: 15px;
    line-height: 1.8;
}

.psy-approach__content {
    min-width: 0;
}

.psy-approach__lead {
    margin: 0 0 24px;
    color: #143727;
    font-size: clamp(19px, 1.9vw, 24px);
    line-height: 1.65;
}

.psy-approach__list-intro {
    margin: 0 0 16px;
    color: #526157;
    font-size: 16px;
    line-height: 1.8;
}

.psy-approach__principles {
    margin: 0;
    padding: 0;
    list-style: none;
}

.psy-approach__principles li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #dcdccc;
    color: #143727;
    font-size: 16px;
    line-height: 1.6;
}

.psy-approach__principles li:last-child {
    border-bottom: 0;
}

.psy-approach__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8db;
    color: #31523b;
    font-size: 17px;
}

@media (max-width: 991px) {
    .psy-approach__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-approach__visual {
        width: 100%;
        max-width: 640px;
        margin-inline: auto;
    }
}

@media (max-width: 575px) {
    .psy-approach>.container {
        padding-inline: 20px;
    }

    .psy-approach__title {
        letter-spacing: -0.8px;
    }

    .psy-approach__visual {
        border-radius: 48px 16px 16px 16px;
    }

    .psy-approach__reflection {
        flex-direction: column;
        gap: 12px;
    }

    .psy-approach__principles li {
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
    }
}

/* About Us: why Psych Serenity and closing invitation */
.psy-why-serenity {
    padding: clamp(56px, 7vw, 100px) 0 clamp(36px, 4vw, 56px);
    background: #fffdf8;
}

.psy-why-serenity__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: clamp(32px, 7vw, 100px);
}

.psy-why-serenity__accent {
    display: block;
    width: 48px;
    height: 3px;
    margin-bottom: 24px;
    background: #a6751f;
}

.psy-why-serenity__title {
    margin: 0 0 24px;
    color: #143727;
    font-size: clamp(34px, 3.8vw, 54px);
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.psy-why-serenity__title span {
    display: block;
    color: #805919;
}

.psy-why-serenity__lead {
    max-width: 30ch;
    margin: 0;
    color: #526157;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.7;
}

.psy-why-serenity__content p {
    margin: 0 0 24px;
    color: #526157;
    font-size: 16px;
    line-height: 1.85;
}

.psy-why-serenity__content .psy-why-serenity__statement {
    padding-left: 24px;
    border-left: 3px solid #b49a62;
    color: #143727;
    font-size: clamp(21px, 2.1vw, 28px);
    line-height: 1.5;
}

.psy-why-serenity__content p:last-child {
    margin-bottom: 0;
}

.psy-why-serenity__pause {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: clamp(32px, 4vw, 56px);
    padding-top: 30px;
    border-top: 1px solid #dedfd2;
}

.psy-why-serenity__pause-icon {
    flex: 0 0 auto;
    color: #805919;
    font-size: 28px;
}

.psy-why-serenity__pause p {
    margin: 0;
    color: #143727;
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.6;
}

.psy-begin {
    padding: 0 0 clamp(56px, 7vw, 100px);
    background: #fffdf8;
}

.psy-begin__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr);
    gap: 40px clamp(28px, 5vw, 68px);
    padding: clamp(28px, 5vw, 68px);
    border-radius: 36px;
    background: radial-gradient(ellipse at top left, #2c513d 0%, #143727 65%);
}

.psy-begin__title {
    margin: 0 0 26px;
    color: #fffdf8;
    font-size: clamp(30px, 3.3vw, 46px);
    line-height: 1.2;
    letter-spacing: -1px;
}

.psy-begin__summary {
    margin: 0 0 20px;
    color: #e2e9df;
    font-size: 16px;
    line-height: 1.85;
}

.psy-begin__summary strong {
    font-weight: 500;
}

.psy-begin__reassurance {
    margin: 0;
    color: #eadbb2;
    font-size: 17px;
    line-height: 1.75;
}

.psy-begin__invitation {
    align-self: center;
    padding-left: clamp(24px, 3vw, 40px);
    border-left: 1px solid #59705d;
}

.psy-begin__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid #6b7c63;
    border-radius: 16px;
    color: #eadbb2;
    font-size: 27px;
}

.psy-begin__subtitle {
    margin: 0 0 20px;
    color: #fffdf8;
    font-size: clamp(23px, 2.2vw, 29px);
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.psy-begin__invitation p {
    margin: 0;
    color: #d5dfd7;
    font-size: 15px;
    line-height: 1.85;
}

.psy-begin__link {
    color: #f1dfaa;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.psy-begin__link:hover {
    color: #ffffff;
}

.psy-begin__link:focus-visible {
    outline: 2px solid #f1dfaa;
    outline-offset: 5px;
    border-radius: 2px;
}

.psy-begin__signature {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 28px;
    border-top: 1px solid #59705d;
    color: #eadbb2;
    text-align: center;
    font-size: clamp(17px, 1.8vw, 23px);
    line-height: 1.6;
}

.psy-begin__signature strong {
    font-weight: 500;
}

@media (max-width: 991px) {

    .psy-why-serenity__layout,
    .psy-begin__panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .psy-why-serenity__lead {
        max-width: 55ch;
    }

    .psy-begin__invitation {
        padding: 28px 0 0;
        border-left: 0;
        border-top: 1px solid #59705d;
    }
}

@media (max-width: 575px) {

    .psy-why-serenity>.container,
    .psy-begin>.container {
        padding-inline: 20px;
    }

    .psy-why-serenity__pause {
        align-items: flex-start;
        gap: 12px;
    }

    .psy-why-serenity__content .psy-why-serenity__statement {
        padding-left: 18px;
    }

    .psy-begin__panel {
        padding: 28px 22px;
        gap: 28px;
        border-radius: 24px;
    }

    .psy-begin__title {
        font-size: clamp(26px, 7vw, 34px);
        letter-spacing: -0.7px;
    }
}

/* Premium editorial treatment, scoped exclusively to the About page. */
.psy-about-mansi {
    --about-ink: #0F1F1A;
    --about-muted: #0F1F1A;
    --about-paper: #F4EFE6;
    --about-gold: #7A5F2E;
    background: var(--about-paper);
    font-family: var(--default-font);
    -webkit-font-smoothing: antialiased;
}

.psy-about-mansi>section>.container {
    max-width: 1200px;
    padding-inline: 32px;
}

.psy-about-mansi h2 {
    font-size: clamp(38px, 4.3vw, 68px);
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.psy-about-mansi p {
    text-wrap: pretty;
}

.psy-about-mansi .psych-page-hero {
    position: relative;
    overflow: hidden;
    background: #F4EFE6;
    color: var(--about-ink);
    border-bottom: 1px solid #F4EFE6;
}

.psy-about-mansi .psych-page-hero::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 620px;
    right: 6%;
    top: -210px;
    border: 1px solid #0F1F1A;
    border-radius: 50%;
    transform: rotate(35deg);
    box-shadow: 0 0 0 55px #F4EFE6, 0 0 0 56px #F4EFE6, 0 0 0 112px #F4EFE6;
    pointer-events: none;
}

.psy-about-mansi .psych-page-hero__container {
    min-height: 360px;
    padding-block: 70px;
    position: relative;
    z-index: 1;
}

.psy-about-mansi .psych-page-hero__content {
    max-width: none;
}

.psy-about-mansi .psych-page-hero__title {
    max-width: 850px;
    color: var(--about-ink);
    font-size: clamp(52px, 7.5vw, 100px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.055em;
}

.psy-about-mansi .psych-page-hero__title span {
    display: block;
}

.psy-about-mansi .psych-page-hero__title em {
    font-weight: 400;
    color: #0F1F1A;
}

.psy-about-mansi .psych-page-hero__breadcrumb {
    margin-top: 26px;
}

.psy-about-mansi .psych-page-hero__list {
    font-size: 12px;
    letter-spacing: .08em;
}

.psy-about-mansi .psych-page-hero__link {
    color: var(--about-ink);
    text-decoration-color: #0F1F1A;
}

.psy-about-mansi .psych-page-hero__link:focus-visible {
    outline-color: var(--about-ink);
}

.psy-about-mansi .psy-about-care {
    padding-block: 100px;
    background: var(--about-paper);
}

.psy-about-mansi .psy-about-care__layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: center;
}

.psy-about-mansi .psy-about-care__image {
    margin: 0 20px 20px 0;
    height: 540px;
    border-radius: 220px 220px 4px 4px;
}

.psy-about-mansi .psy-about-care__image::before {
    inset: 24px -20px -20px 20px;
    border: 1px solid #C9A961;
    border-radius: inherit;
}

.psy-about-mansi .psy-about-care__image img {
    object-position: 45% center;
    filter: saturate(.65);
}

.psy-about-mansi .psy-about-care__accent,
.psy-about-mansi .psy-why-serenity__accent,
.psy-about-mansi .psy-approach__accent {
    width: 48px;
    height: 1px;
    background: var(--about-gold);
    margin-bottom: 25px;
}

.psy-about-mansi .psy-about-care__title {
    margin-bottom: 30px;
}

.psy-about-mansi .psy-about-care__content p {
    text-align: left;
    font-size: 19px;
    line-height: 1.95;
    color: var(--about-muted);
    text-align: justify;
}

.psy-about-mansi .psy-about-care__content p:last-child {
    padding-top: 24px;
    border-top: 1px solid #F4EFE6;
}

.psy-about-mansi .psy-about-mansi__tinted {
    background: #0F1F1A;
    padding-block: 86px;
    position: relative;
}

.psy-about-mansi .psy-about-mansi__tinted .psy-why-serenity__layout {
    grid-template-columns: .85fr 1.15fr;
    gap: 95px;
}

.psy-about-mansi .psy-about-mansi__tinted h2 {
    color: #F4EFE6;
    font-size: 5vw;
}

.psy-about-mansi .psy-about-mansi__tinted .psy-why-serenity__accent {
    background: #C9A961;
}

.psy-about-mansi .psy-about-mansi__tinted p {
    color: #F4EFE6;
    font-size: 16px;
    line-height: 1.9;
}

.psy-about-mansi .psy-about-mansi__tinted p:first-child {
    color: #F4EFE6;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(23px, 2.2vw, 29px);
    line-height: 1.55;
}

.psy-about-mansi .psy-focus {
    padding-block: 100px;
    background: var(--about-paper);
}

.psy-about-mansi .psy-focus__layout {
    grid-template-columns: .85fr 1.15fr;
    gap: 95px;
}

.psy-about-mansi .psy-focus__intro {
    position: sticky;
    top: 115px;
}

.psy-about-mansi .psy-focus__motif {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border-color: #C9A961;
    color: var(--about-gold);
    font-size: 24px;
    margin-bottom: 28px;
}

.psy-about-mansi .psy-focus__lead {
    max-width: 28ch;
    font-size: 15px;
    line-height: 1.8;
    color: var(--about-muted);
}

.psy-about-mansi .psy-focus__list {
    grid-template-columns: 1fr;
}

.psy-about-mansi .psy-focus__item {
    align-items: center;
    padding: 23px 0;
    gap: 24px;
    border-color: #F4EFE6;
}

.psy-about-mansi .psy-focus__item:nth-child(2) {
    border-top: 0;
}

.psy-about-mansi .psy-focus__name {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 1.8vw, 25px);
    line-height: 1.4;
    font-weight: 400;
    color: var(--about-ink);
}

.psy-about-mansi .psy-about-mansi__bullet {
    margin: 0;
    flex-basis: 6px;
    height: 6px;
    background: var(--about-gold);
    transform: rotate(45deg);
    border-radius: 0;
}

.psy-about-mansi .psy-approach {
    padding-block: 95px;
    background: #F4EFE6;
}

.psy-about-mansi .psy-approach__heading {
    max-width: 700px;
    margin: 0 0 52px;
    text-align: left;
}

.psy-about-mansi .psy-approach__accent {
    margin-left: 0;
}

.psy-about-mansi .psy-approach__heading p {
    margin: 24px 0 0;
    font-size: 16px;
    color: var(--about-muted);
    line-height: 1.85;
}

.psy-about-mansi .psy-approach__layout {
    gap: 70px;
    grid-template-columns: .95fr 1.05fr;
}

.psy-about-mansi .psy-approach__visual {
    border: 0;
    border-radius: 3px;
}

.psy-about-mansi .psy-approach__image img {
    height: 450px;
    aspect-ratio: auto;
    filter: saturate(.6);
    object-position: center;
}

.psy-about-mansi .psy-approach__principles {
    margin: 0;
}

.psy-about-mansi .psy-approach__principles li {
    align-items: flex-start;
    gap: 19px;
    padding: 22px 0;
    font-size: 16px;
    line-height: 1.7;
    border-bottom: 1px solid #F4EFE6;
    color: var(--about-ink);
}

.psy-about-mansi .psy-approach__principles li:first-child {
    padding-top: 0;
}

.psy-about-mansi .psy-approach__check {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 2px;
    border: 1px solid #0F1F1A;
    border-radius: 50%;
    background: transparent;
    color: #0F1F1A;
    font-size: 13px;
}

.psy-about-mansi .psy-about-mansi__reflection {
    margin-top: 56px;
    padding: 30px 0 0;
    border-top: 1px solid #F4EFE6;
    border-radius: 0;
    gap: 22px;
    align-items: center;
}

.psy-about-mansi .psy-about-mansi__reflection p {
    max-width: 880px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(21px, 2.1vw, 28px);
    line-height: 1.6;
}

.psy-about-mansi .psy-about-mansi__reflection .psy-approach__reflection-icon {
    font-size: 34px;
}

.psy-about-mansi .psy-about-mansi__philosophy {
    padding-block: 105px;
    background: #C9A961;
}

.psy-about-mansi .psy-about-mansi__philosophy .psy-why-serenity__layout {
    display: block;
    max-width: 1165px;
    margin: auto;
    text-align: center;
}

.psy-about-mansi .psy-about-mansi__philosophy .psy-why-serenity__accent {
    margin-inline: auto;
}

.psy-about-mansi .psy-about-mansi__philosophy h2 {
    margin-bottom: 32px;
}

.psy-about-mansi .psy-about-mansi__philosophy p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.3vw, 30px);
    line-height: 1.75;
    color: #0F1F1A;
}

.psy-about-mansi .psy-begin {
    padding: 0 0 90px;
    background: var(--about-paper);
}

.psy-about-mansi .psy-about-mansi__vision {
    position: relative;
    overflow: hidden;
    grid-template-columns: .85fr 1.15fr;
    gap: 65px;
    padding: 70px 60px;
    border-radius: 3px;
    background: #0F1F1A;
    border-top: 3px solid #C9A961;
}

/* 
.psy-about-mansi .psy-about-mansi__vision::after {
    content: '';
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid #0F1F1A;
    border-radius: 50%;
    right: -190px;
    bottom: -200px;
    box-shadow: 0 0 0 30px #0F1F1A, 0 0 0 31px #0F1F1A;
    pointer-events: none;
} */

.psy-about-mansi .psy-begin__title {
    color: #F4EFE6;
    font-size: clamp(36px, 4vw, 54px);
}

.psy-about-mansi .psy-begin__summary {
    color: #F4EFE6;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {

    .psy-about-mansi .psy-about-care__layout,
    .psy-about-mansi .psy-about-mansi__tinted .psy-why-serenity__layout,
    .psy-about-mansi .psy-focus__layout,
    .psy-about-mansi .psy-approach__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .psy-about-mansi .psy-about-care__image {
        height: 480px;
        max-width: 580px;
        width: calc(100% - 20px);
        aspect-ratio: auto;
    }

    .psy-about-mansi .psy-focus__intro {
        position: static;
    }

    .psy-about-mansi .psy-focus__lead {
        max-width: none;
    }

    .psy-about-mansi .psy-about-mansi__vision {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 48px;
    }

    .psy-about-mansi .psy-approach__image img {
        height: 380px;
    }

    .psy-about-mansi .psych-page-hero::after {
        right: -240px;
        opacity: .6;
    }
}

@media (max-width: 575px) {
    .psy-about-mansi>section>.container {
        padding-inline: 24px;
    }

    .psy-about-mansi .psych-page-hero__container {
        min-height: 310px;
        padding-block: 54px;
    }

    .psy-about-mansi .psych-page-hero__title {
        font-size: clamp(44px, 12vw, 66px);
    }

    .psy-about-mansi .psy-about-care,
    .psy-about-mansi .psy-about-mansi__tinted,
    .psy-about-mansi .psy-focus,
    .psy-about-mansi .psy-approach,
    .psy-about-mansi .psy-about-mansi__philosophy {
        padding-block: 64px;
    }

    .psy-about-mansi .psy-about-care__image {
        height: 360px;
    }

    .psy-about-mansi .psy-about-care__layout {
        gap: 48px;
    }

    .psy-about-mansi .psy-about-care__content p {
        font-size: 15px;
        line-height: 1.85;
    }

    .psy-about-mansi .psy-approach__image img {
        height: 300px;
    }

    .psy-about-mansi .psy-about-mansi__reflection {
        align-items: flex-start;
        gap: 14px;
        margin-top: 35px;
    }

    .psy-about-mansi .psy-about-mansi__reflection .psy-approach__reflection-icon {
        font-size: 25px;
    }

    .psy-about-mansi .psy-about-mansi__vision {
        padding: 38px 26px;
    }

    .psy-about-mansi .psy-begin {
        padding-bottom: 64px;
    }
}

/* About page: approved brand palette and three feature layouts. */
.psy-about-mansi {
    --about-ink: #0F1F1A;
    --about-muted: #0F1F1A;
    --about-paper: #F4EFE6;
    --about-gold: #7A5F2E;
}

.psy-about-mansi h2,
.psy-about-mansi .psy-approach__reflection p {
    color: #0F1F1A;
}

.psy-about-mansi .psy-about-care__content p:last-child,
.psy-about-mansi .psy-approach__principles li {
    border-color: #C9A961;
}

.psy-about-mansi .psy-focus__motif,
.psy-about-mansi .psy-approach__check {
    border-color: #C9A961;
    color: #7A5F2E;
}

.psy-about-mansi .psy-about-mansi__vision {
    align-items: center;
}

.psy-about-mansi .psy-about-mansi__vision h2 {
    color: #F4EFE6;
}

.psy-about-mansi .psy-about-mansi__vision h2,
.psy-about-mansi .psy-about-mansi__vision p {
    margin: 0;
}

.psy-about-mansi .psy-about-mansi__vision::after {
    border-color: #C9A961;
    box-shadow: none;
}

.psy-about-mansi .psych-page-hero {
    background: #0F1F1A;
    color: #F4EFE6;
    border-bottom: 1px solid #C9A961;
}

.psy-about-mansi .psych-page-hero::after {
    display: none;
}

.psy-about-mansi .psych-page-hero__container {
    min-height: 480px;
    padding-block: 72px;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 50px;
}

.psy-about-mansi .psych-page-hero__title {
    color: #F4EFE6;
    font-size: clamp(60px, 7.5vw, 100px);
    line-height: 1.14;
    letter-spacing: -.055em;
}

.psy-about-mansi .psych-page-hero__title .psy-hero__overline {
    font-family: var(--default-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .32em;
    color: #C9A961;
    margin-bottom: 24px;
}

.psy-about-mansi .psych-page-hero__title em {
    color: #C9A961;
}

.psy-about-mansi .psych-page-hero__breadcrumb {
    margin-top: 32px;
}

.psy-about-mansi .psych-page-hero__link {
    color: #F4EFE6;
    text-decoration-color: #C9A961;
}

.psy-about-mansi .psych-page-hero__link:hover,
.psy-about-mansi .psych-page-hero__separator {
    color: #C9A961;
}

.psy-about-mansi .psych-page-hero__link:focus-visible {
    outline-color: #C9A961;
}

.psy-hero__art {
    position: relative;
    height: 330px;
    width: 100%;
    max-width: 330px;
    justify-self: end;
}

.psy-hero__arch {
    position: absolute;
    inset: 0 35px 0 35px;
    border: 1px solid #C9A961;
    border-radius: 160px 160px 0 0;
}

.psy-hero__arch::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid #C9A961;
    border-radius: inherit;
}

.psy-hero__arch::after {
    content: '';
    position: absolute;
    left: -36px;
    right: -36px;
    bottom: 42px;
    height: 1px;
    background: #C9A961;
}

.psy-hero__arch span {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #C9A961;
    left: 50%;
    top: 65px;
    transform: translateX(-50%);
}

.psy-hero__orbit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 71px;
    height: 85px;
    border: 1px solid #C9A961;
    border-radius: 50%;
    transform: rotate(-25deg);
    background: #0F1F1A;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__layout {
    grid-template-columns: .8fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__intro {
    position: static;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__motif {
    display: none;
}



.psy-about-mansi .psy-focus--editorial .psy-focus__lead {
    max-width: none;
}

.psy-focus__photograph {
    margin: 34px 0 0;
    padding: 10px;
    border: 1px solid #C9A961;
    border-radius: 140px 140px 3px 3px;
}

.psy-focus__photograph img {
    display: block;
    width: 100%;
    height: 415px;
    object-fit: cover;
    object-position: 40% center;
    border-radius: 130px 130px 0 0;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 150px;
    gap: 18px;
    padding: 25px;
    border: 1px solid #C9A961;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__item:last-child {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 92px;
    background: #0F1F1A;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__item:last-child .psy-focus__name {
    color: #F4EFE6;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__item:last-child .psy-about-mansi__bullet {
    background: #C9A961;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__name {
    font-size: 21px;
    line-height: 1.4;
}

.psy-about-mansi .psy-approach {
    background: #0F1F1A;
    color: #F4EFE6;
}

.psy-about-mansi .psy-approach__heading {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 0 64px;
    max-width: none;
    align-items: center;
    margin-bottom: 55px;
}

.psy-about-mansi .psy-approach__heading .psy-approach__accent {
    grid-column: 1 / -1;
    background: #C9A961;
}

.psy-about-mansi .psy-approach__title {
    color: #F4EFE6;
    margin: 0;
}

.psy-about-mansi .psy-approach__heading p {
    color: #F4EFE6;
    margin: 0;
}

.psy-about-mansi .psy-approach__layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: stretch;
}

.psy-about-mansi .psy-approach__visual {
    background: #0F1F1A;
    border: 1px solid #C9A961;
    border-radius: 3px;
    padding: 12px;
}

.psy-about-mansi .psy-approach__image {
    height: 100%;
}

.psy-about-mansi .psy-approach__image img {
    height: 100%;
    min-height: 440px;
    filter: none;
}

.psy-about-mansi .psy-approach__content {
    padding: 30px;
    background: #F4EFE6;
}

.psy-about-mansi .psy-approach__content .psy-approach__principles {
    counter-reset: approach;
}

.psy-about-mansi .psy-approach__content .psy-approach__principles li {
    counter-increment: approach;
    padding: 21px 0;
    gap: 20px;
    font-size: 15px;
    color: #0F1F1A;
    border-color: #C9A961;
}

.psy-about-mansi .psy-approach__content .psy-approach__principles li:first-child {
    padding-top: 0;
}

.psy-about-mansi .psy-approach__content .psy-approach__principles li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.psy-about-mansi .psy-approach__content .psy-approach__check {
    border: 0;
    width: 32px;
    height: auto;
    flex-basis: 32px;
    border-radius: 0;
    color: #7A5F2E;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 25px;
    line-height: 1;
}

.psy-about-mansi .psy-approach__content .psy-approach__check i {
    display: none;
}

.psy-about-mansi .psy-approach__content .psy-approach__check::before {
    content: counter(approach, decimal-leading-zero);
}

.psy-about-mansi .psy-about-mansi__reflection {
    border-color: #C9A961;
    margin-top: 44px;
}

.psy-about-mansi .psy-about-mansi__reflection p {
    color: #F4EFE6;
}

.psy-about-mansi .psy-about-mansi__reflection .psy-approach__reflection-icon {
    color: #C9A961;
}

@media (max-width: 991px) {
    .psy-about-mansi .psych-page-hero__container {
        grid-template-columns: 1fr .5fr;
        gap: 25px;
    }

    .psy-hero__art {
        height: 270px;
    }

    .psy-hero__arch {
        inset-inline: 15px;
    }

    .psy-hero__arch span {
        width: 65px;
        height: 65px;
    }

    .psy-about-mansi .psy-focus--editorial .psy-focus__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .psy-about-mansi .psy-focus--editorial .psy-focus__title {
        max-width: none;
    }

    .psy-focus__photograph {
        max-width: 500px;
        border-radius: 3px;
    }

    .psy-focus__photograph img {
        border-radius: 0;
        height: 300px;
    }

    .psy-about-mansi .psy-approach__heading,
    .psy-about-mansi .psy-approach__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .psy-about-mansi .psy-approach__heading .psy-approach__accent {
        margin: 0;
    }

    .psy-about-mansi .psy-approach__image img {
        height: 360px;
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .psy-about-mansi .psych-page-hero__container {
        display: block;
        min-height: 320px;
        padding-block: 58px;
    }

    .psy-about-mansi .psych-page-hero__content {
        position: relative;
        z-index: 2;
    }

    .psy-about-mansi .psych-page-hero__title {
        font-size: clamp(44px, 11vw, 62px);
    }

    .psy-hero__art {
        display: none;
    }

    .psy-about-mansi .psy-focus--editorial .psy-focus__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .psy-about-mansi .psy-focus--editorial .psy-focus__item,
    .psy-about-mansi .psy-focus--editorial .psy-focus__item:last-child {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        min-height: 88px;
        padding: 20px;
        gap: 18px;
    }

    .psy-about-mansi .psy-focus--editorial .psy-focus__name {
        font-size: 20px;
    }

    .psy-about-mansi .psy-approach__content {
        padding: 25px 20px;
    }

    .psy-about-mansi .psy-approach__image img {
        height: 280px;
    }

    .psy-about-mansi .psy-approach__heading {
        margin-bottom: 32px;
    }
}

.psy-about-mansi .psy-about-mansi__bullet {
    display: block;
    flex-shrink: 0;
    width: 6px;
}

.psy-about-mansi .psy-focus--editorial .psy-focus__item {
    flex-shrink: 0;
}

/* Individual service banner images; shared banner sizing and overlays remain. */
.psych-page-hero--individual {
    --psych-hero-image: url('https://www.rit.edu/counseling/sites/rit.edu.counseling/files/images/paragraph/banner-item-2/CaPS-Individual-Counseling-banner_Resized.jpg');
}

.psych-page-hero--couples {
    --psych-hero-image: url('https://media.istockphoto.com/id/1326452693/photo/couple-talking-at-session-with-male-therapist.jpg?s=612x612&w=0&k=20&c=IErxwUk3bb2uaLpLvNWJoLw7hBkDzDpaZeR7LIxECAc=');
}

.psych-page-hero--family {
    --psych-hero-image: url('https://tanuchoksi.in/wp-content/uploads/2024/08/shutterstock_1105725563-scaled-1.webp');
}

.psych-page-hero--group {
    --psych-hero-image: url('https://media.istockphoto.com/id/2227837167/photo/counseling-group-session-with-teens-at-school.jpg?s=612x612&w=0&k=20&c=WFQcGOMvmPrcD4o45yFMIH7n-hanM3s2e-SO-JI4Zng=');
}

/* Service about/introduction images, independent of the banner images. */
.psy-private-intro--individual {
    --psych-intro-image: url('https://unravellingminds.in/wp-content/uploads/2021/12/AdobeStock_52601999-e1570713835533.jpeg');
}

.psy-private-intro--couples {
    --psych-intro-image: url('https://media.istockphoto.com/id/2038150156/photo/couple-therapy-insight-focus-on-therapists-notebook-with-young-married-couple-in-background.jpg?s=612x612&w=0&k=20&c=sscJGCZFx3xnd-gkqVj4Cyf-XS1jUahA7XefxP5MFV4=');
}

.psy-private-intro--family {
    --psych-intro-image: url('https://resiliencecft.com/wp-content/uploads/2013/04/family-with-parents-arguing-in-background.jpg');
}

.psy-private-intro--group {
    --psych-intro-image: url('https://media.istockphoto.com/id/1132974918/photo/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other.jpg?s=612x612&w=0&k=20&c=3KloVsaC48DNBou5bmNKK2P1gQH-koQhmmQvEMRUuGM=');
}